Class: Aws::ChimeSDKMessaging::Types::CreateChannelMembershipRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ChimeSDKMessaging::Types::CreateChannelMembershipRequest
- Defined in:
- gems/aws-sdk-chimesdkmessaging/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.
-
#chime_bearer ⇒ String
The ARN of the
AppInstanceUser
orAppInstanceBot
that makes the API call. -
#member_arn ⇒ String
The
AppInstanceUserArn
of the member 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
orHIDDEN
.
Instance Attribute Details
#channel_arn ⇒ String
The ARN of the channel to which you're adding users.
1091 1092 1093 1094 1095 1096 1097 1098 1099 |
# File 'gems/aws-sdk-chimesdkmessaging/lib/aws-sdk-chimesdkmessaging/types.rb', line 1091 class CreateChannelMembershipRequest < Struct.new( :channel_arn, :member_arn, :type, :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.
1091 1092 1093 1094 1095 1096 1097 1098 1099 |
# File 'gems/aws-sdk-chimesdkmessaging/lib/aws-sdk-chimesdkmessaging/types.rb', line 1091 class CreateChannelMembershipRequest < Struct.new( :channel_arn, :member_arn, :type, :chime_bearer, :sub_channel_id) SENSITIVE = [] include Aws::Structure end |
#member_arn ⇒ String
The AppInstanceUserArn
of the member you want to add to the
channel.
1091 1092 1093 1094 1095 1096 1097 1098 1099 |
# File 'gems/aws-sdk-chimesdkmessaging/lib/aws-sdk-chimesdkmessaging/types.rb', line 1091 class CreateChannelMembershipRequest < Struct.new( :channel_arn, :member_arn, :type, :chime_bearer, :sub_channel_id) SENSITIVE = [] include Aws::Structure end |
#sub_channel_id ⇒ String
The ID of the SubChannel in the request.
1091 1092 1093 1094 1095 1096 1097 1098 1099 |
# File 'gems/aws-sdk-chimesdkmessaging/lib/aws-sdk-chimesdkmessaging/types.rb', line 1091 class CreateChannelMembershipRequest < Struct.new( :channel_arn, :member_arn, :type, :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.
1091 1092 1093 1094 1095 1096 1097 1098 1099 |
# File 'gems/aws-sdk-chimesdkmessaging/lib/aws-sdk-chimesdkmessaging/types.rb', line 1091 class CreateChannelMembershipRequest < Struct.new( :channel_arn, :member_arn, :type, :chime_bearer, :sub_channel_id) SENSITIVE = [] include Aws::Structure end |