Class: AWSCDK::DevOpsAgent::CfnPrivateConnection::SelfManagedModeProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
dev_ops_agent/cfn_private_connection.rb

Overview

Configuration for a self-managed Private Connection.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(resource_configuration_id:) ⇒ SelfManagedModeProperty

Returns a new instance of SelfManagedModeProperty.

Parameters:

  • resource_configuration_id (String)

    The ARN of the Resource Configuration.



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_idString (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_propertiesObject



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_jsiiObject



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