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

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

Instance Attribute Details

#group_idString

The identifier for a group in the identity store.

Returns:

  • (String)


1104
1105
1106
1107
1108
1109
1110
# File 'gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb', line 1104

class GroupMembershipExistenceResult < Struct.new(
  :group_id,
  :member_id,
  :membership_exists)
  SENSITIVE = [:membership_exists]
  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:



1104
1105
1106
1107
1108
1109
1110
# File 'gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb', line 1104

class GroupMembershipExistenceResult < Struct.new(
  :group_id,
  :member_id,
  :membership_exists)
  SENSITIVE = [:membership_exists]
  include Aws::Structure
end

#membership_existsBoolean

Indicates whether a membership relation exists or not.

Returns:

  • (Boolean)


1104
1105
1106
1107
1108
1109
1110
# File 'gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb', line 1104

class GroupMembershipExistenceResult < Struct.new(
  :group_id,
  :member_id,
  :membership_exists)
  SENSITIVE = [:membership_exists]
  include Aws::Structure
end