Class: Aws::SecurityAgent::Types::MemberMetadata
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityAgent::Types::MemberMetadata
- Defined in:
- gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb
Overview
Note:
MemberMetadata is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of MemberMetadata corresponding to the set member.
Metadata associated with the member
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#unknown ⇒ Object
Returns the value of attribute unknown.
-
#user ⇒ Types::UserMetadata
User metadata for USER members.
Instance Attribute Details
#unknown ⇒ Object
Returns the value of attribute unknown
2784 2785 2786 |
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 2784 def unknown @unknown end |
#user ⇒ Types::UserMetadata
User metadata for USER members
2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 |
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 2784 class MemberMetadata < Struct.new( :user, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class User < MemberMetadata; end class Unknown < MemberMetadata; end end |