Class: Aws::WorkMail::Types::AssociateMemberToGroupRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::WorkMail::Types::AssociateMemberToGroupRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-workmail/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#group_id ⇒ String
The group to which the member (user or group) is associated.
-
#member_id ⇒ String
The member (user or group) to associate to the group.
-
#organization_id ⇒ String
The organization under which the group exists.
Instance Attribute Details
#group_id ⇒ String
The group to which the member (user or group) is associated.
The identifier can accept GroupId, Groupname, or email. The following identity formats are available:
-
Group ID: 12345678-1234-1234-1234-123456789012 or S-1-1-12-1234567890-123456789-123456789-1234
-
Email address: [email protected]
-
Group name: group
170 171 172 173 174 175 176 |
# File 'lib/aws-sdk-workmail/types.rb', line 170 class AssociateMemberToGroupRequest < Struct.new( :organization_id, :group_id, :member_id) SENSITIVE = [] include Aws::Structure end |
#member_id ⇒ String
The member (user or group) to associate to the group.
The member ID can accept *UserID or GroupId*, *Username or Groupname*, or email.
-
Member: 12345678-1234-1234-1234-123456789012 or S-1-1-12-1234567890-123456789-123456789-1234
-
Email address: [email protected]
-
Member name: member
170 171 172 173 174 175 176 |
# File 'lib/aws-sdk-workmail/types.rb', line 170 class AssociateMemberToGroupRequest < Struct.new( :organization_id, :group_id, :member_id) SENSITIVE = [] include Aws::Structure end |
#organization_id ⇒ String
The organization under which the group exists.
170 171 172 173 174 175 176 |
# File 'lib/aws-sdk-workmail/types.rb', line 170 class AssociateMemberToGroupRequest < Struct.new( :organization_id, :group_id, :member_id) SENSITIVE = [] include Aws::Structure end |