Class: AWSCDK::EntityResolution::CfnIdMappingWorkflow::ProviderPropertiesProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
entity_resolution/cfn_id_mapping_workflow.rb

Overview

An object containing the providerServiceARN , intermediateSourceConfiguration , and providerConfiguration .

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(provider_service_arn:, intermediate_source_configuration: nil, provider_configuration: nil) ⇒ ProviderPropertiesProperty

Returns a new instance of ProviderPropertiesProperty.

Parameters:



945
946
947
948
949
950
951
952
# File 'entity_resolution/cfn_id_mapping_workflow.rb', line 945

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::CfnIdMappingWorkflow::IntermediateSourceConfigurationProperty.new(**intermediate_source_configuration.transform_keys(&:to_sym)) : intermediate_source_configuration
  Jsii::Type.check_type(@intermediate_source_configuration, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19lbnRpdHlyZXNvbHV0aW9uLkNmbklkTWFwcGluZ1dvcmtmbG93LkludGVybWVkaWF0ZVNvdXJjZUNvbmZpZ3VyYXRpb25Qcm9wZXJ0eSJ9XX19")), "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_configurationAWSCDK::IResolvable, ... (readonly)

The Amazon S3 location that temporarily stores your data while it processes.

Your information won't be saved permanently.



965
966
967
# File 'entity_resolution/cfn_id_mapping_workflow.rb', line 965

def intermediate_source_configuration
  @intermediate_source_configuration
end

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

The required configuration fields to use with the provider service.



970
971
972
# File 'entity_resolution/cfn_id_mapping_workflow.rb', line 970

def provider_configuration
  @provider_configuration
end

#provider_service_arnString (readonly)

The ARN of the provider service.



958
959
960
# File 'entity_resolution/cfn_id_mapping_workflow.rb', line 958

def provider_service_arn
  @provider_service_arn
end

Class Method Details

.jsii_propertiesObject



972
973
974
975
976
977
978
# File 'entity_resolution/cfn_id_mapping_workflow.rb', line 972

def self.jsii_properties
  {
    :provider_service_arn => "providerServiceArn",
    :intermediate_source_configuration => "intermediateSourceConfiguration",
    :provider_configuration => "providerConfiguration",
  }
end

Instance Method Details

#to_jsiiObject



980
981
982
983
984
985
986
987
988
# File 'entity_resolution/cfn_id_mapping_workflow.rb', line 980

def to_jsii
  result = {}
  result.merge!({
    "providerServiceArn" => @provider_service_arn,
    "intermediateSourceConfiguration" => @intermediate_source_configuration,
    "providerConfiguration" => @provider_configuration,
  })
  result.compact
end