UpdateProfileRequest
public struct UpdateProfileRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The updated address for the room profile.
Declaration
Swift
public let address: String?
-
The updated distance unit for the room profile.
Declaration
Swift
public let distanceUnit: DistanceUnit?
-
Sets the profile as default if selected. If this is missing, no update is done to the default status.
Declaration
Swift
public let isDefault: Bool?
-
The updated locale for the room profile. (This is currently only available to a limited preview audience.)
Declaration
Swift
public let locale: String?
-
The updated maximum volume limit for the room profile.
Declaration
Swift
public let maxVolumeLimit: Int?
-
The updated meeting room settings of a room profile.
Declaration
Swift
public let meetingRoomConfiguration: UpdateMeetingRoomConfiguration?
-
The ARN of the room profile to update. Required.
Declaration
Swift
public let profileArn: String?
-
The updated name for the room profile.
Declaration
Swift
public let profileName: String?
-
Whether the PSTN setting of the room profile is enabled.
Declaration
Swift
public let pSTNEnabled: Bool?
-
Whether the setup mode of the profile is enabled.
Declaration
Swift
public let setupModeDisabled: Bool?
-
The updated temperature unit for the room profile.
Declaration
Swift
public let temperatureUnit: TemperatureUnit?
-
The updated timezone for the room profile.
Declaration
Swift
public let timezone: String?
-
The updated wake word for the room profile.
Declaration
Swift
public let wakeWord: WakeWord?
-
init(address:distanceUnit:isDefault:locale:maxVolumeLimit:meetingRoomConfiguration:profileArn:profileName:pSTNEnabled:setupModeDisabled:temperatureUnit:timezone:wakeWord:)
Undocumented
Declaration
Swift
public init(address: String? = nil, distanceUnit: DistanceUnit? = nil, isDefault: Bool? = nil, locale: String? = nil, maxVolumeLimit: Int? = nil, meetingRoomConfiguration: UpdateMeetingRoomConfiguration? = nil, profileArn: String? = nil, profileName: String? = nil, pSTNEnabled: Bool? = nil, setupModeDisabled: Bool? = nil, temperatureUnit: TemperatureUnit? = nil, timezone: String? = nil, wakeWord: WakeWord? = nil)
-
Declaration
Swift
public func validate(name: String) throws