Class: AWSCDK::Interfaces::AWSAppflow::ConnectorProfileReference
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Interfaces::AWSAppflow::ConnectorProfileReference
- Defined in:
- interfaces/aws_appflow/connector_profile_reference.rb
Overview
A reference to a ConnectorProfile resource.
Instance Attribute Summary collapse
-
#connector_profile_arn ⇒ String
readonly
The ARN of the ConnectorProfile resource.
-
#connector_profile_name ⇒ String
readonly
The ConnectorProfileName of the ConnectorProfile resource.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(connector_profile_arn:, connector_profile_name:) ⇒ ConnectorProfileReference
constructor
A new instance of ConnectorProfileReference.
- #to_jsii ⇒ Object
Constructor Details
#initialize(connector_profile_arn:, connector_profile_name:) ⇒ ConnectorProfileReference
Returns a new instance of ConnectorProfileReference.
9 10 11 12 13 14 |
# File 'interfaces/aws_appflow/connector_profile_reference.rb', line 9 def initialize(connector_profile_arn:, connector_profile_name:) @connector_profile_arn = connector_profile_arn Jsii::Type.check_type(@connector_profile_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "connectorProfileArn") @connector_profile_name = connector_profile_name Jsii::Type.check_type(@connector_profile_name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "connectorProfileName") end |
Instance Attribute Details
#connector_profile_arn ⇒ String (readonly)
The ARN of the ConnectorProfile resource.
19 20 21 |
# File 'interfaces/aws_appflow/connector_profile_reference.rb', line 19 def connector_profile_arn @connector_profile_arn end |
#connector_profile_name ⇒ String (readonly)
The ConnectorProfileName of the ConnectorProfile resource.
23 24 25 |
# File 'interfaces/aws_appflow/connector_profile_reference.rb', line 23 def connector_profile_name @connector_profile_name end |
Class Method Details
.jsii_properties ⇒ Object
25 26 27 28 29 30 |
# File 'interfaces/aws_appflow/connector_profile_reference.rb', line 25 def self.jsii_properties { :connector_profile_arn => "connectorProfileArn", :connector_profile_name => "connectorProfileName", } end |
Instance Method Details
#to_jsii ⇒ Object
32 33 34 35 36 37 38 39 |
# File 'interfaces/aws_appflow/connector_profile_reference.rb', line 32 def to_jsii result = {} result.merge!({ "connectorProfileArn" => @connector_profile_arn, "connectorProfileName" => @connector_profile_name, }) result.compact end |