Class CfnMatchingWorkflowPropsMixin.ProviderPropertiesProperty
An object containing the providerServiceARN , intermediateSourceConfiguration , and providerConfiguration .
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.EntityResolution.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnMatchingWorkflowPropsMixin.ProviderPropertiesProperty : CfnMatchingWorkflowPropsMixin.IProviderPropertiesProperty
Syntax (vb)
Public Class CfnMatchingWorkflowPropsMixin.ProviderPropertiesProperty Implements CfnMatchingWorkflowPropsMixin.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.Mixins.Preview.AWS.EntityResolution.Mixins;
var providerPropertiesProperty = new ProviderPropertiesProperty {
IntermediateSourceConfiguration = new IntermediateSourceConfigurationProperty {
IntermediateS3Path = "intermediateS3Path"
},
ProviderConfiguration = new Dictionary<string, string> {
{ "providerConfigurationKey", "providerConfiguration" }
},
ProviderServiceArn = "providerServiceArn"
};
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.Mixins.Preview.AWS.EntityResolution.Mixins;
var providerPropertiesProperty = new ProviderPropertiesProperty {
IntermediateSourceConfiguration = new IntermediateSourceConfigurationProperty {
IntermediateS3Path = "intermediateS3Path"
},
ProviderConfiguration = new Dictionary<string, string> {
{ "providerConfigurationKey", "providerConfiguration" }
},
ProviderServiceArn = "providerServiceArn"
};
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 CfnMatchingWorkflowPropsMixin.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; }