Class: Aws::SecurityAgent::Types::MembershipConfig

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb

Overview

Note:

MembershipConfig is a union - when making an API calls you must set exactly one of the members.

Note:

MembershipConfig is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of MembershipConfig corresponding to the set member.

Member-specific configuration

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



2807
2808
2809
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 2807

def unknown
  @unknown
end

#userTypes::UserConfig

Configuration for user members

Returns:



2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 2807

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

  class User < MembershipConfig; end
  class Unknown < MembershipConfig; end
end