interface ProviderPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_entityresolution.CfnMatchingWorkflow.ProviderPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsentityresolution#CfnMatchingWorkflow_ProviderPropertiesProperty |
Java | software.amazon.awscdk.services.entityresolution.CfnMatchingWorkflow.ProviderPropertiesProperty |
Python | aws_cdk.aws_entityresolution.CfnMatchingWorkflow.ProviderPropertiesProperty |
TypeScript | aws-cdk-lib » aws_entityresolution » CfnMatchingWorkflow » ProviderPropertiesProperty |
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 { aws_entityresolution as entityresolution } from 'aws-cdk-lib';
const providerPropertiesProperty: entityresolution.CfnMatchingWorkflow.ProviderPropertiesProperty = {
providerServiceArn: 'providerServiceArn',
// the properties below are optional
intermediateSourceConfiguration: {
intermediateS3Path: 'intermediateS3Path',
},
providerConfiguration: {
providerConfigurationKey: 'providerConfiguration',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| provider | string | The ARN of the provider service. |
| intermediate | IResolvable | Intermediate | The Amazon S3 location that temporarily stores your data while it processes. |
| provider | { [string]: string } | IResolvable | The required configuration fields to use with the provider service. |
providerServiceArn
Type:
string
The ARN of the provider service.
intermediateSourceConfiguration?
Type:
IResolvable | Intermediate
(optional)
The Amazon S3 location that temporarily stores your data while it processes.
Your information won't be saved permanently.
providerConfiguration?
Type:
{ [string]: string } | IResolvable
(optional)
The required configuration fields to use with the provider service.

.NET
Go
Java
Python
TypeScript