Interface CfnIdMappingWorkflow.ProviderPropertiesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIdMappingWorkflow.ProviderPropertiesProperty.Jsii$Proxy
- Enclosing class:
CfnIdMappingWorkflow
@Stability(Stable)
public static interface CfnIdMappingWorkflow.ProviderPropertiesProperty
extends software.amazon.jsii.JsiiSerializable
An object containing the
providerServiceARN
, intermediateSourceConfiguration
, and providerConfiguration
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.entityresolution.*; ProviderPropertiesProperty providerPropertiesProperty = ProviderPropertiesProperty.builder() .providerServiceArn("providerServiceArn") // the properties below are optional .intermediateSourceConfiguration(IntermediateSourceConfigurationProperty.builder() .intermediateS3Path("intermediateS3Path") .build()) .providerConfiguration(Map.of( "providerConfigurationKey", "providerConfiguration")) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnIdMappingWorkflow.ProviderPropertiesProperty
static final class
An implementation forCfnIdMappingWorkflow.ProviderPropertiesProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getProviderServiceArn
The ARN of the provider service.- See Also:
-
getIntermediateSourceConfiguration
The Amazon S3 location that temporarily stores your data while it processes.Your information won't be saved permanently.
- See Also:
-
getProviderConfiguration
The required configuration fields to use with the provider service.- See Also:
-
builder
-