AWSConnectClaimedPhoneNumberSummary
Objective-C
@interface AWSConnectClaimedPhoneNumberSummary
Swift
class AWSConnectClaimedPhoneNumberSummary
Information about a phone number that has been claimed to your Amazon Connect instance or traffic distribution group.
-
The phone number. Phone numbers are formatted
[+] [country code] [subscriber number including area code]
.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable phoneNumber;
Swift
var phoneNumber: String? { get set }
-
The Amazon Resource Name (ARN) of the phone number.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable phoneNumberArn;
Swift
var phoneNumberArn: String? { get set }
-
The ISO country code.
Declaration
Objective-C
@property (nonatomic) AWSConnectPhoneNumberCountryCode phoneNumberCountryCode;
Swift
var phoneNumberCountryCode: AWSConnectPhoneNumberCountryCode { get set }
-
The description of the phone number.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable phoneNumberDescription;
Swift
var phoneNumberDescription: String? { get set }
-
A unique identifier for the phone number.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable phoneNumberId;
Swift
var phoneNumberId: String? { get set }
-
The status of the phone number.
CLAIMED
means the previous ClaimedPhoneNumber or UpdatePhoneNumber operation succeeded.IN_PROGRESS
means a ClaimedPhoneNumber or UpdatePhoneNumber operation is still in progress and has not yet completed. You can call DescribePhoneNumber at a later time to verify if the previous operation has completed.FAILED
indicates that the previous ClaimedPhoneNumber or UpdatePhoneNumber operation has failed. It will include a message indicating the failure reason. A common reason for a failure may be that theTargetArn
value you are claiming or updating a phone number to has reached its limit of total claimed numbers. If you received aFAILED
status from aClaimPhoneNumber
API call, you have one day to retry claiming the phone number before the number is released back to the inventory for other customers to claim.
You will not be billed for the phone number during the 1-day period if number claiming fails.
Declaration
Objective-C
@property (nonatomic, strong) AWSConnectPhoneNumberStatus *_Nullable phoneNumberStatus;
Swift
var phoneNumberStatus: AWSConnectPhoneNumberStatus? { get set }
-
The type of phone number.
Declaration
Objective-C
@property (nonatomic) AWSConnectPhoneNumberType phoneNumberType;
Swift
var phoneNumberType: AWSConnectPhoneNumberType { get set }
-
The tags used to organize, track, or control access for this resource. For example, { “tags”: {“key1”:“value1”, “key2”:“value2”} }.
Declaration
Objective-C
@property (nonatomic, strong) NSDictionary<NSString *, NSString *> *_Nullable tags;
Swift
var tags: [String : String]? { get set }
-
The Amazon Resource Name (ARN) for Amazon Connect instances or traffic distribution groups that phone numbers are claimed to.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable targetArn;
Swift
var targetArn: String? { get set }