Class: Aws::IdentityStore::Types::MemberId
- Inherits:
-
Struct
- Object
- Struct
- Aws::IdentityStore::Types::MemberId
- 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.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#unknown ⇒ Object
Returns the value of attribute unknown.
-
#user_id ⇒ String
An object containing the identifiers of resources that can be members.
Instance Attribute Details
#unknown ⇒ Object
Returns the value of attribute unknown
1405 1406 1407 |
# File 'gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb', line 1405 def unknown @unknown end |
#user_id ⇒ String
An object containing the identifiers of resources that can be members.
1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 |
# File 'gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb', line 1405 class MemberId < Struct.new( :user_id, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class UserId < MemberId; end class Unknown < MemberId; end end |