Class: Aws::DevOpsAgent::Types::PrivateConnectionMode

Inherits:
Struct
  • Object
show all
Includes:
Structure, Structure::Union
Defined in:
lib/aws-sdk-devopsagent/types.rb

Overview

Note:

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

Private Connection mode — either service-managed or self-managed.

Direct Known Subclasses

SelfManaged, ServiceManaged, Unknown

Defined Under Namespace

Classes: SelfManaged, ServiceManaged, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#self_managedTypes::SelfManagedInput

Caller manages their own resource configuration.



3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
# File 'lib/aws-sdk-devopsagent/types.rb', line 3145

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_managedTypes::ServiceManagedInput

Service manages the Resource Gateway lifecycle.



3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
# File 'lib/aws-sdk-devopsagent/types.rb', line 3145

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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



3145
3146
3147
# File 'lib/aws-sdk-devopsagent/types.rb', line 3145

def unknown
  @unknown
end