Class CfnMatchingWorkflow.ProviderPropertiesProperty
An object containing the providerServiceARN , intermediateSourceConfiguration , and providerConfiguration .
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.EntityResolution
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnMatchingWorkflow.ProviderPropertiesProperty : CfnMatchingWorkflow.IProviderPropertiesProperty
Syntax (vb)
Public Class CfnMatchingWorkflow.ProviderPropertiesProperty Implements CfnMatchingWorkflow.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
Constructors
| ProviderPropertiesProperty() | An object containing the |
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. |
Constructors
ProviderPropertiesProperty()
An object containing the providerServiceARN , intermediateSourceConfiguration , and providerConfiguration .
public ProviderPropertiesProperty()
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" }
}
};
Properties
IntermediateSourceConfiguration
The Amazon S3 location that temporarily stores your data while it processes.
public object? IntermediateSourceConfiguration { get; set; }
Property Value
Remarks
Your information won't be saved permanently.
Type union: either IResolvable or CfnMatchingWorkflow.IIntermediateSourceConfigurationProperty
ProviderConfiguration
The required configuration fields to use with the provider service.
public object? ProviderConfiguration { get; set; }
Property Value
Remarks
ProviderServiceArn
The ARN of the provider service.
public string ProviderServiceArn { get; set; }