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
1247 1248 1249 |
# File 'gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb', line 1247 def unknown @unknown end |
#user_id ⇒ String
An object containing the identifiers of resources that can be members.
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 |