Interface CfnMatchingWorkflow.ProviderPropertiesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMatchingWorkflow.ProviderPropertiesProperty.Jsii$Proxy
- Enclosing class:
CfnMatchingWorkflow
@Stability(Stable)
public static interface CfnMatchingWorkflow.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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMatchingWorkflow.ProviderPropertiesPropertystatic final classAn implementation forCfnMatchingWorkflow.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.
Returns union: either
IResolvableorCfnMatchingWorkflow.IntermediateSourceConfigurationProperty- See Also:
-
getProviderConfiguration
The required configuration fields to use with the provider service.Returns union: either Mapinvalid input: '<'String,
String> orIResolvable- See Also:
-
builder
-