interface ProviderPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EntityResolution.Mixins.CfnMatchingWorkflowPropsMixin.ProviderPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsentityresolution/mixins#CfnMatchingWorkflowPropsMixin_ProviderPropertiesProperty |
Java | software.amazon.awscdk.mixins.preview.services.entityresolution.mixins.CfnMatchingWorkflowPropsMixin.ProviderPropertiesProperty |
Python | aws_cdk.mixins_preview.aws_entityresolution.mixins.CfnMatchingWorkflowPropsMixin.ProviderPropertiesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_entityresolution » mixins » CfnMatchingWorkflowPropsMixin » 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 { mixins as entityresolution_mixins } from '@aws-cdk/mixins-preview/aws-entityresolution';
const providerPropertiesProperty: entityresolution_mixins.CfnMatchingWorkflowPropsMixin.ProviderPropertiesProperty = {
intermediateSourceConfiguration: {
intermediateS3Path: 'intermediateS3Path',
},
providerConfiguration: {
providerConfigurationKey: 'providerConfiguration',
},
providerServiceArn: 'providerServiceArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| 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. |
| provider | 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.
providerServiceArn?
Type:
string
(optional)
The ARN of the provider service.

.NET
Go
Java
Python
TypeScript