UpdateContactRequest
public struct UpdateContactRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The ARN of the contact to update.
Declaration
Swift
public let contactArn: String
-
The updated display name of the contact.
Declaration
Swift
public let displayName: String?
-
The updated first name of the contact.
Declaration
Swift
public let firstName: String?
-
The updated last name of the contact.
Declaration
Swift
public let lastName: String?
-
The updated phone number of the contact. The phone number type defaults to WORK. You can either specify PhoneNumber or PhoneNumbers. We recommend that you use PhoneNumbers, which lets you specify the phone number type and multiple numbers.
Declaration
Swift
public let phoneNumber: String?
-
The list of phone numbers for the contact.
Declaration
Swift
public let phoneNumbers: [PhoneNumber]?
-
The list of SIP addresses for the contact.
Declaration
Swift
public let sipAddresses: [SipAddress]?
-
Undocumented
Declaration
Swift
public init(contactArn: String, displayName: String? = nil, firstName: String? = nil, lastName: String? = nil, phoneNumber: String? = nil, phoneNumbers: [PhoneNumber]? = nil, sipAddresses: [SipAddress]? = nil)
-
Declaration
Swift
public func validate(name: String) throws