AWSChimeSDKMessagingListChannelMembershipsRequest

Objective-C

@interface AWSChimeSDKMessagingListChannelMembershipsRequest

Swift

class AWSChimeSDKMessagingListChannelMembershipsRequest
  • The maximum number of channel memberships that you want returned.

    Declaration

    Objective-C

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

    Swift

    var channelArn: 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 channel memberships that you want returned.

    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 channel memberships are returned.

    Declaration

    Objective-C

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

    Swift

    var nextToken: String? { get set }
  • The ID of the SubChannel in the request.

    Only required when listing a user’s memberships in a particular sub-channel of an elastic channel.

    Declaration

    Objective-C

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

    Swift

    var subChannelId: String? { get set }
  • The membership type of a user, DEFAULT or HIDDEN. Default members are returned as part of ListChannelMemberships if no type is specified. Hidden members are only returned if the type filter in ListChannelMemberships equals HIDDEN.

    Declaration

    Objective-C

    @property (nonatomic) AWSChimeSDKMessagingChannelMembershipType types;

    Swift

    var types: AWSChimeSDKMessagingChannelMembershipType { get set }