Class: Aws::IdentityStore::Types::GroupMembershipExistenceResult

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#group_idString

The identifier for a group in the identity store.

Returns:

  • (String)


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_idTypes::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.

Returns:



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_existsBoolean

Indicates whether a membership relation exists or not.

Returns:

  • (Boolean)


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