Class: Aws::IdentityStore::Types::MemberId

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb

Overview

Note:

MemberId is a union - when making an API calls you must set exactly one of the members.

Note:

MemberId is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of MemberId corresponding to the set member.

An object containing the identifier of a group member.

Direct Known Subclasses

Unknown, UserId

Defined Under Namespace

Classes: Unknown, UserId

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1247
1248
1249
# File 'gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb', line 1247

def unknown
  @unknown
end

#user_idString

An object containing the identifiers of resources that can be members.

Returns:

  • (String)


1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
# File 'gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb', line 1247

class MemberId < Struct.new(
  :user_id,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class UserId < MemberId; end
  class Unknown < MemberId; end
end