Class: Aws::DevOpsAgent::Types::PrivateConnectionMode
- Inherits:
-
Struct
- Object
- Struct
- Aws::DevOpsAgent::Types::PrivateConnectionMode
- Defined in:
- gems/aws-sdk-devopsagent/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.
Defined Under Namespace
Classes: SelfManaged, ServiceManaged, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#self_managed ⇒ Types::SelfManagedInput
Caller manages their own resource configuration.
-
#service_managed ⇒ Types::ServiceManagedInput
Service manages the Resource Gateway lifecycle.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#self_managed ⇒ Types::SelfManagedInput
Caller manages their own resource configuration.
3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 |
# File 'gems/aws-sdk-devopsagent/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_managed ⇒ Types::ServiceManagedInput
Service manages the Resource Gateway lifecycle.
3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 |
# File 'gems/aws-sdk-devopsagent/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 |
#unknown ⇒ Object
Returns the value of attribute unknown
3145 3146 3147 |
# File 'gems/aws-sdk-devopsagent/lib/aws-sdk-devopsagent/types.rb', line 3145 def unknown @unknown end |