Class: Aws::SecurityAgent::Types::PrivateConnectionMode

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

Overview

Note:

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

The configuration for a private connection. Specify either a service-managed or a self-managed mode.

Defined Under Namespace

Classes: SelfManaged, ServiceManaged, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#self_managed ⇒ Types::SelfManagedInput

The configuration for a self-managed private connection, where you manage your own resource configuration.



6672
6673
6674
6675
6676
6677
6678
6679
6680
6681
6682
6683
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 6672

class PrivateConnectionMode < Struct.new(
  :service_managed,
  :self_managed,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class ServiceManaged < PrivateConnectionMode; end
  class SelfManaged < PrivateConnectionMode; end
  class Unknown < PrivateConnectionMode; end
end

#service_managed ⇒ Types::ServiceManagedInput

The configuration for a service-managed private connection, where the service manages the resource gateway lifecycle.



6672
6673
6674
6675
6676
6677
6678
6679
6680
6681
6682
6683
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 6672

class PrivateConnectionMode < Struct.new(
  :service_managed,
  :self_managed,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class ServiceManaged < PrivateConnectionMode; end
  class SelfManaged < PrivateConnectionMode; end
  class Unknown < PrivateConnectionMode; end
end

#unknown ⇒ Object

Returns the value of attribute unknown

Returns:

  • (Object) —

    the current value of unknown



6672
6673
6674
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 6672

def unknown
  @unknown
end