AWSConnectSearchRoutingProfilesResponse

Objective-C

@interface AWSConnectSearchRoutingProfilesResponse

Swift

class AWSConnectSearchRoutingProfilesResponse
  • The total number of routing profiles which matched your search query.

    Declaration

    Objective-C

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

    Swift

    var approximateTotalCount: NSNumber? { get set }
  • If there are additional results, this is the token for the next set of results.

    Declaration

    Objective-C

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

    Swift

    var nextToken: String? { get set }
  • Information about the routing profiles.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSConnectRoutingProfile *> *_Nullable routingProfiles;

    Swift

    var routingProfiles: [AWSConnectRoutingProfile]? { get set }