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.
Direct Known Subclasses
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.
3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 |
# File 'gems/aws-sdk-devopsagent/lib/aws-sdk-devopsagent/types.rb', line 3077 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.
3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 |
# File 'gems/aws-sdk-devopsagent/lib/aws-sdk-devopsagent/types.rb', line 3077 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
3077 3078 3079 |
# File 'gems/aws-sdk-devopsagent/lib/aws-sdk-devopsagent/types.rb', line 3077 def unknown @unknown end |