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)


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_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:



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_existsBoolean

Indicates whether a membership relation exists or not.

Returns:

  • (Boolean)


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