Class: Aws::SecurityAgent::Types::MemberMetadata

Inherits:
Struct
  • Object
show all
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

Direct Known Subclasses

Unknown, User

Defined Under Namespace

Classes: Unknown, User

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



2784
2785
2786
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 2784

def unknown
  @unknown
end

#userTypes::UserMetadata

User metadata for USER members

Returns:



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