Show / Hide Table of Contents

Class CfnMatchingWorkflowPropsMixin.ProviderPropertiesProperty

An object containing the providerServiceARN , intermediateSourceConfiguration , and providerConfiguration .

Inheritance
object
CfnMatchingWorkflowPropsMixin.ProviderPropertiesProperty
Implements
CfnMatchingWorkflowPropsMixin.IProviderPropertiesProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-providerproperties.html

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 providerServiceARN , intermediateSourceConfiguration , and providerConfiguration .

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-providerproperties.html

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

object

Remarks

Your information won't be saved permanently.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-providerproperties.html#cfn-entityresolution-matchingworkflow-providerproperties-intermediatesourceconfiguration

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-providerproperties.html#cfn-entityresolution-matchingworkflow-providerproperties-providerconfiguration

Type union: either Dictionary<string, string> or IResolvable

ProviderServiceArn

The ARN of the provider service.

public string? ProviderServiceArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-providerproperties.html#cfn-entityresolution-matchingworkflow-providerproperties-providerservicearn

Implements

CfnMatchingWorkflowPropsMixin.IProviderPropertiesProperty
Back to top Generated by DocFX