AWSConnectListPhoneNumbersRequest

Objective-C

@interface AWSConnectListPhoneNumbersRequest

Swift

class AWSConnectListPhoneNumbersRequest
  • The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable instanceId;

    Swift

    var instanceId: String? { get set }
  • The maximum number of results to return per page. The default MaxResult size is 100.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable maxResults;

    Swift

    var maxResults: NSNumber? { get set }
  • The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable nextToken;

    Swift

    var nextToken: String? { get set }
  • The ISO country code.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSString *> *_Nullable phoneNumberCountryCodes;

    Swift

    var phoneNumberCountryCodes: [String]? { get set }
  • The type of phone number.

    We recommend using ListPhoneNumbersV2 to return phone number types. While ListPhoneNumbers returns number types UIFN, SHARED, THIRD_PARTY_TF, and THIRD_PARTY_DID, it incorrectly lists them as TOLL_FREE or DID.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSString *> *_Nullable phoneNumberTypes;

    Swift

    var phoneNumberTypes: [String]? { get set }