Class: Aws::IdentityStore::Types::GroupMembershipExistenceResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::IdentityStore::Types::GroupMembershipExistenceResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-identitystore/types.rb
Overview
Indicates whether a resource is a member of a group in the identity store.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#group_id ⇒ String
The identifier for a group in the identity store.
-
#member_id ⇒ Types::MemberId
An object that contains the identifier of a group member.
-
#membership_exists ⇒ Boolean
Indicates whether a membership relation exists or not.
Instance Attribute Details
#group_id ⇒ String
The identifier for a group in the identity store.
1114 1115 1116 1117 1118 1119 1120 |
# File 'lib/aws-sdk-identitystore/types.rb', line 1114 class GroupMembershipExistenceResult < Struct.new( :group_id, :member_id, :membership_exists) SENSITIVE = [] include Aws::Structure end |
#member_id ⇒ Types::MemberId
An object that contains the identifier of a group member. Setting the UserID field to the specific identifier for a user indicates that the user is a member of the group.
1114 1115 1116 1117 1118 1119 1120 |
# File 'lib/aws-sdk-identitystore/types.rb', line 1114 class GroupMembershipExistenceResult < Struct.new( :group_id, :member_id, :membership_exists) SENSITIVE = [] include Aws::Structure end |
#membership_exists ⇒ Boolean
Indicates whether a membership relation exists or not.
1114 1115 1116 1117 1118 1119 1120 |
# File 'lib/aws-sdk-identitystore/types.rb', line 1114 class GroupMembershipExistenceResult < Struct.new( :group_id, :member_id, :membership_exists) SENSITIVE = [] include Aws::Structure end |