Show / Hide Table of Contents

Class CfnMatchingWorkflow.ProviderPropertiesProperty

An object containing the providerServiceARN , intermediateSourceConfiguration , and providerConfiguration .

Inheritance
object
CfnMatchingWorkflow.ProviderPropertiesProperty
Implements
CfnMatchingWorkflow.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.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

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.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 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.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

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 CfnMatchingWorkflow.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

CfnMatchingWorkflow.IProviderPropertiesProperty
Back to top Generated by DocFX