Class: AWSCDK::DevOpsAgent::CfnPrivateConnection::SelfManagedModeProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::DevOpsAgent::CfnPrivateConnection::SelfManagedModeProperty
- Defined in:
- dev_ops_agent/cfn_private_connection.rb
Overview
Configuration for a self-managed Private Connection.
Instance Attribute Summary collapse
-
#resource_configuration_id ⇒ String
readonly
The ARN of the Resource Configuration.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(resource_configuration_id:) ⇒ SelfManagedModeProperty
constructor
A new instance of SelfManagedModeProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(resource_configuration_id:) ⇒ SelfManagedModeProperty
Returns a new instance of SelfManagedModeProperty.
614 615 616 617 |
# File 'dev_ops_agent/cfn_private_connection.rb', line 614 def initialize(resource_configuration_id:) @resource_configuration_id = resource_configuration_id Jsii::Type.check_type(@resource_configuration_id, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "resourceConfigurationId") end |
Instance Attribute Details
#resource_configuration_id ⇒ String (readonly)
The ARN of the Resource Configuration.
623 624 625 |
# File 'dev_ops_agent/cfn_private_connection.rb', line 623 def resource_configuration_id @resource_configuration_id end |
Class Method Details
.jsii_properties ⇒ Object
625 626 627 628 629 |
# File 'dev_ops_agent/cfn_private_connection.rb', line 625 def self.jsii_properties { :resource_configuration_id => "resourceConfigurationId", } end |
Instance Method Details
#to_jsii ⇒ Object
631 632 633 634 635 636 637 |
# File 'dev_ops_agent/cfn_private_connection.rb', line 631 def to_jsii result = {} result.merge!({ "resourceConfigurationId" => @resource_configuration_id, }) result.compact end |