AWSChimeSDKMessagingListChannelsRequest

Objective-C

@interface AWSChimeSDKMessagingListChannelsRequest

Swift

class AWSChimeSDKMessagingListChannelsRequest
  • The ARN of the AppInstance.

    Declaration

    Objective-C

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

    Swift

    var appInstanceArn: String? { get set }
  • The ARN of the AppInstanceUser or AppInstanceBot that makes the API call.

    Declaration

    Objective-C

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

    Swift

    var chimeBearer: String? { get set }
  • The maximum number of channels that you want to return.

    Declaration

    Objective-C

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

    Swift

    var maxResults: NSNumber? { get set }
  • The token passed by previous API calls until all requested channels are returned.

    Declaration

    Objective-C

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

    Swift

    var nextToken: String? { get set }
  • The privacy setting. PUBLIC retrieves all the public channels. PRIVATE retrieves private channels. Only an AppInstanceAdmin can retrieve private channels.

    Declaration

    Objective-C

    @property (nonatomic) AWSChimeSDKMessagingChannelPrivacy privacy;

    Swift

    var privacy: AWSChimeSDKMessagingChannelPrivacy { get set }