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.

Contains metadata about a member. This is a union type that contains member-type-specific metadata.

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



3786
3787
3788
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 3786

def unknown
  @unknown
end

#userTypes::UserMetadata

The user metadata for the member.

Returns:



3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 3786

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

  class User < MemberMetadata; end
  class Unknown < MemberMetadata; end
end