Class: AWSCDK::AppFlow::CfnConnector::ConnectorProvisioningConfigProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
app_flow/cfn_connector.rb

Overview

Contains information about the configuration of the connector being registered.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(lambda: nil) ⇒ ConnectorProvisioningConfigProperty

Returns a new instance of ConnectorProvisioningConfigProperty.

Parameters:



577
578
579
580
# File 'app_flow/cfn_connector.rb', line 577

def initialize(lambda: nil)
  @lambda = lambda.is_a?(Hash) ? ::AWSCDK::AppFlow::CfnConnector::LambdaConnectorProvisioningConfigProperty.new(**lambda.transform_keys(&:to_sym)) : lambda
  Jsii::Type.check_type(@lambda, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19hcHBmbG93LkNmbkNvbm5lY3Rvci5MYW1iZGFDb25uZWN0b3JQcm92aXNpb25pbmdDb25maWdQcm9wZXJ0eSJ9XX19")), "lambda") unless @lambda.nil?
end

Instance Attribute Details

#lambdaAWSCDK::IResolvable, ... (readonly)

Contains information about the configuration of the lambda which is being registered as the connector.



586
587
588
# File 'app_flow/cfn_connector.rb', line 586

def lambda
  @lambda
end

Class Method Details

.jsii_propertiesObject



588
589
590
591
592
# File 'app_flow/cfn_connector.rb', line 588

def self.jsii_properties
  {
    :lambda => "lambda",
  }
end

Instance Method Details

#to_jsiiObject



594
595
596
597
598
599
600
# File 'app_flow/cfn_connector.rb', line 594

def to_jsii
  result = {}
  result.merge!({
    "lambda" => @lambda,
  })
  result.compact
end