Class: Aws::IdentityStore::Types::GroupMembershipExistenceResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::IdentityStore::Types::GroupMembershipExistenceResult
- Defined in:
- gems/aws-sdk-identitystore/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 =
[:membership_exists]
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.
929 930 931 932 933 934 935 |
# File 'gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb', line 929 class GroupMembershipExistenceResult < Struct.new( :group_id, :member_id, :membership_exists) SENSITIVE = [:membership_exists] 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.
929 930 931 932 933 934 935 |
# File 'gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb', line 929 class GroupMembershipExistenceResult < Struct.new( :group_id, :member_id, :membership_exists) SENSITIVE = [:membership_exists] include Aws::Structure end |
#membership_exists ⇒ Boolean
Indicates whether a membership relation exists or not.
929 930 931 932 933 934 935 |
# File 'gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb', line 929 class GroupMembershipExistenceResult < Struct.new( :group_id, :member_id, :membership_exists) SENSITIVE = [:membership_exists] include Aws::Structure end |