Class: Aws::ChimeSDKMessaging::Types::BatchCreateChannelMembershipRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ChimeSDKMessaging::Types::BatchCreateChannelMembershipRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-chimesdkmessaging/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#channel_arn ⇒ String
The ARN of the channel to which you’re adding users or bots.
-
#chime_bearer ⇒ String
The ARN of the ‘AppInstanceUser` or `AppInstanceBot` that makes the API call.
-
#member_arns ⇒ Array<String>
The ARNs of the members you want to add to the channel.
-
#sub_channel_id ⇒ String
The ID of the SubChannel in the request.
-
#type ⇒ String
The membership type of a user, ‘DEFAULT` or `HIDDEN`.
Instance Attribute Details
#channel_arn ⇒ String
The ARN of the channel to which you’re adding users or bots.
171 172 173 174 175 176 177 178 179 |
# File 'lib/aws-sdk-chimesdkmessaging/types.rb', line 171 class BatchCreateChannelMembershipRequest < Struct.new( :channel_arn, :type, :member_arns, :chime_bearer, :sub_channel_id) SENSITIVE = [] include Aws::Structure end |
#chime_bearer ⇒ String
The ARN of the ‘AppInstanceUser` or `AppInstanceBot` that makes the API call.
171 172 173 174 175 176 177 178 179 |
# File 'lib/aws-sdk-chimesdkmessaging/types.rb', line 171 class BatchCreateChannelMembershipRequest < Struct.new( :channel_arn, :type, :member_arns, :chime_bearer, :sub_channel_id) SENSITIVE = [] include Aws::Structure end |
#member_arns ⇒ Array<String>
The ARNs of the members you want to add to the channel. Only ‘AppInstanceUsers` and `AppInstanceBots` can be added as a channel member.
171 172 173 174 175 176 177 178 179 |
# File 'lib/aws-sdk-chimesdkmessaging/types.rb', line 171 class BatchCreateChannelMembershipRequest < Struct.new( :channel_arn, :type, :member_arns, :chime_bearer, :sub_channel_id) SENSITIVE = [] include Aws::Structure end |
#sub_channel_id ⇒ String
The ID of the SubChannel in the request.
<note markdown=“1”> Only required when creating membership in a SubChannel for a moderator in an elastic channel.
</note>
171 172 173 174 175 176 177 178 179 |
# File 'lib/aws-sdk-chimesdkmessaging/types.rb', line 171 class BatchCreateChannelMembershipRequest < Struct.new( :channel_arn, :type, :member_arns, :chime_bearer, :sub_channel_id) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The membership type of a user, ‘DEFAULT` or `HIDDEN`. Default members are always returned as part of `ListChannelMemberships`. Hidden members are only returned if the type filter in `ListChannelMemberships` equals `HIDDEN`. Otherwise hidden members are not returned. This is only supported by moderators.
171 172 173 174 175 176 177 178 179 |
# File 'lib/aws-sdk-chimesdkmessaging/types.rb', line 171 class BatchCreateChannelMembershipRequest < Struct.new( :channel_arn, :type, :member_arns, :chime_bearer, :sub_channel_id) SENSITIVE = [] include Aws::Structure end |