Class: AWSCDK::EntityResolution::CfnMatchingWorkflow::ProviderPropertiesProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::EntityResolution::CfnMatchingWorkflow::ProviderPropertiesProperty
- Defined in:
- entity_resolution/cfn_matching_workflow.rb
Overview
An object containing the providerServiceARN , intermediateSourceConfiguration , and providerConfiguration .
Instance Attribute Summary collapse
-
#intermediate_source_configuration ⇒ AWSCDK::IResolvable, ...
readonly
The Amazon S3 location that temporarily stores your data while it processes.
-
#provider_configuration ⇒ AWSCDK::IResolvable, ...
readonly
The required configuration fields to use with the provider service.
-
#provider_service_arn ⇒ String
readonly
The ARN of the provider service.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(provider_service_arn:, intermediate_source_configuration: nil, provider_configuration: nil) ⇒ ProviderPropertiesProperty
constructor
A new instance of ProviderPropertiesProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(provider_service_arn:, intermediate_source_configuration: nil, provider_configuration: nil) ⇒ ProviderPropertiesProperty
Returns a new instance of ProviderPropertiesProperty.
980 981 982 983 984 985 986 987 |
# File 'entity_resolution/cfn_matching_workflow.rb', line 980 def initialize(provider_service_arn:, intermediate_source_configuration: nil, provider_configuration: nil) @provider_service_arn = provider_service_arn Jsii::Type.check_type(@provider_service_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "providerServiceArn") @intermediate_source_configuration = intermediate_source_configuration.is_a?(Hash) ? ::AWSCDK::EntityResolution::CfnMatchingWorkflow::IntermediateSourceConfigurationProperty.new(**intermediate_source_configuration.transform_keys(&:to_sym)) : intermediate_source_configuration Jsii::Type.check_type(@intermediate_source_configuration, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19lbnRpdHlyZXNvbHV0aW9uLkNmbk1hdGNoaW5nV29ya2Zsb3cuSW50ZXJtZWRpYXRlU291cmNlQ29uZmlndXJhdGlvblByb3BlcnR5In1dfX0=")), "intermediateSourceConfiguration") unless @intermediate_source_configuration.nil? @provider_configuration = provider_configuration Jsii::Type.check_type(@provider_configuration, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImNvbGxlY3Rpb24iOnsiZWxlbWVudHR5cGUiOnsicHJpbWl0aXZlIjoic3RyaW5nIn0sImtpbmQiOiJtYXAifX1dfX0=")), "providerConfiguration") unless @provider_configuration.nil? end |
Instance Attribute Details
#intermediate_source_configuration ⇒ AWSCDK::IResolvable, ... (readonly)
The Amazon S3 location that temporarily stores your data while it processes.
Your information won't be saved permanently.
1000 1001 1002 |
# File 'entity_resolution/cfn_matching_workflow.rb', line 1000 def intermediate_source_configuration @intermediate_source_configuration end |
#provider_configuration ⇒ AWSCDK::IResolvable, ... (readonly)
The required configuration fields to use with the provider service.
1005 1006 1007 |
# File 'entity_resolution/cfn_matching_workflow.rb', line 1005 def provider_configuration @provider_configuration end |
#provider_service_arn ⇒ String (readonly)
The ARN of the provider service.
993 994 995 |
# File 'entity_resolution/cfn_matching_workflow.rb', line 993 def provider_service_arn @provider_service_arn end |
Class Method Details
.jsii_properties ⇒ Object
1007 1008 1009 1010 1011 1012 1013 |
# File 'entity_resolution/cfn_matching_workflow.rb', line 1007 def self.jsii_properties { :provider_service_arn => "providerServiceArn", :intermediate_source_configuration => "intermediateSourceConfiguration", :provider_configuration => "providerConfiguration", } end |
Instance Method Details
#to_jsii ⇒ Object
1015 1016 1017 1018 1019 1020 1021 1022 1023 |
# File 'entity_resolution/cfn_matching_workflow.rb', line 1015 def to_jsii result = {} result.merge!({ "providerServiceArn" => @provider_service_arn, "intermediateSourceConfiguration" => @intermediate_source_configuration, "providerConfiguration" => @provider_configuration, }) result.compact end |