Class: AWSCDK::Interfaces::AWSAppflow::ConnectorProfileReference

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
interfaces/aws_appflow/connector_profile_reference.rb

Overview

A reference to a ConnectorProfile resource.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(connector_profile_arn:, connector_profile_name:) ⇒ ConnectorProfileReference

Returns a new instance of ConnectorProfileReference.

Parameters:

  • connector_profile_arn (String)

    The ARN of the ConnectorProfile resource.

  • connector_profile_name (String)

    The ConnectorProfileName of the ConnectorProfile resource.



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_arnString (readonly)

The ARN of the ConnectorProfile resource.

Returns:

  • (String)


19
20
21
# File 'interfaces/aws_appflow/connector_profile_reference.rb', line 19

def connector_profile_arn
  @connector_profile_arn
end

#connector_profile_nameString (readonly)

The ConnectorProfileName of the ConnectorProfile resource.

Returns:

  • (String)


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_propertiesObject



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_jsiiObject



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