Interface CfnIdMappingWorkflow.IProviderPropertiesProperty
An object containing the providerServiceARN , intermediateSourceConfiguration , and providerConfiguration .
Namespace: Amazon.CDK.AWS.EntityResolution
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnIdMappingWorkflow.IProviderPropertiesProperty
Syntax (vb)
Public Interface CfnIdMappingWorkflow.IProviderPropertiesProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EntityResolution;
var providerPropertiesProperty = new ProviderPropertiesProperty {
ProviderServiceArn = "providerServiceArn",
// the properties below are optional
IntermediateSourceConfiguration = new IntermediateSourceConfigurationProperty {
IntermediateS3Path = "intermediateS3Path"
},
ProviderConfiguration = new Dictionary<string, string> {
{ "providerConfigurationKey", "providerConfiguration" }
}
};
Synopsis
Properties
| IntermediateSourceConfiguration | The Amazon S3 location that temporarily stores your data while it processes. |
| ProviderConfiguration | The required configuration fields to use with the provider service. |
| ProviderServiceArn | The ARN of the provider service. |
Properties
IntermediateSourceConfiguration
The Amazon S3 location that temporarily stores your data while it processes.
object? IntermediateSourceConfiguration { get; }
Property Value
Remarks
Your information won't be saved permanently.
Type union: either IResolvable or CfnIdMappingWorkflow.IIntermediateSourceConfigurationProperty
ProviderConfiguration
The required configuration fields to use with the provider service.
object? ProviderConfiguration { get; }
Property Value
Remarks
ProviderServiceArn
The ARN of the provider service.
string ProviderServiceArn { get; }