Class: Aws::CleanRooms::Types::MemberChangeSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::MemberChangeSpecification
- Defined in:
- gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb
Overview
Specifies changes to collaboration membership, including adding new members with their abilities and display names.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#account_id ⇒ String
The Amazon Web Services account ID of the member to add to the collaboration.
-
#display_name ⇒ String
Specifies the display name that will be shown for this member in the collaboration.
-
#member_abilities ⇒ Array<String>
The abilities granted to the collaboration member.
Instance Attribute Details
#account_id ⇒ String
The Amazon Web Services account ID of the member to add to the collaboration.
6373 6374 6375 6376 6377 6378 6379 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 6373 class MemberChangeSpecification < Struct.new( :account_id, :member_abilities, :display_name) SENSITIVE = [] include Aws::Structure end |
#display_name ⇒ String
Specifies the display name that will be shown for this member in the collaboration. While this field is required when inviting new members, it becomes optional when modifying abilities of existing collaboration members.
6373 6374 6375 6376 6377 6378 6379 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 6373 class MemberChangeSpecification < Struct.new( :account_id, :member_abilities, :display_name) SENSITIVE = [] include Aws::Structure end |
#member_abilities ⇒ Array<String>
The abilities granted to the collaboration member. These determine what actions the member can perform within the collaboration.
CAN_QUERY
,
CAN_RECEIVE_RESULTS,
and CAN_RUN_JOB
.
Set the value of memberAbilities
to []
to allow a member to
contribute data.
6373 6374 6375 6376 6377 6378 6379 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 6373 class MemberChangeSpecification < Struct.new( :account_id, :member_abilities, :display_name) SENSITIVE = [] include Aws::Structure end |