CreateRoomRequest

public struct CreateRoomRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • A unique, user-specified identifier for this request that ensures idempotency.

    Declaration

    Swift

    public let clientRequestToken: String?
  • The description for the room.

    Declaration

    Swift

    public let description: String?
  • The profile ARN for the room. This is required.

    Declaration

    Swift

    public let profileArn: String?
  • The calendar ARN for the room.

    Declaration

    Swift

    public let providerCalendarId: String?
  • The name for the room.

    Declaration

    Swift

    public let roomName: String
  • The tags for the room.

    Declaration

    Swift

    public let tags: [Tag]?
  • Undocumented

    Declaration

    Swift

    public init(clientRequestToken: String? = CreateRoomRequest.idempotencyToken(), description: String? = nil, profileArn: String? = nil, providerCalendarId: String? = nil, roomName: String, tags: [Tag]? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws