Show / Hide Table of Contents

Class EnrichmentParametersConfig

(experimental) The parameters required to set up enrichment on your pipe.

Inheritance
object
EnrichmentParametersConfig
Implements
IEnrichmentParametersConfig
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.Pipes.Alpha
Assembly: Amazon.CDK.AWS.Pipes.Alpha.dll
Syntax (csharp)
public class EnrichmentParametersConfig : IEnrichmentParametersConfig
Syntax (vb)
Public Class EnrichmentParametersConfig Implements IEnrichmentParametersConfig
Remarks

Stability: Experimental

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipeenrichmentparameters.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.Pipes.Alpha;

             var enrichmentParametersConfig = new EnrichmentParametersConfig {
                 EnrichmentParameters = new PipeEnrichmentParametersProperty {
                     HttpParameters = new PipeEnrichmentHttpParametersProperty {
                         HeaderParameters = new Dictionary<string, string> {
                             { "headerParametersKey", "headerParameters" }
                         },
                         PathParameterValues = new [] { "pathParameterValues" },
                         QueryStringParameters = new Dictionary<string, string> {
                             { "queryStringParametersKey", "queryStringParameters" }
                         }
                     },
                     InputTemplate = "inputTemplate"
                 }
             };

Synopsis

Constructors

EnrichmentParametersConfig()

(experimental) The parameters required to set up enrichment on your pipe.

Properties

EnrichmentParameters

(experimental) The parameters for the enrichment target.

Constructors

EnrichmentParametersConfig()

(experimental) The parameters required to set up enrichment on your pipe.

public EnrichmentParametersConfig()
Remarks

Stability: Experimental

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipeenrichmentparameters.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.Pipes.Alpha;

             var enrichmentParametersConfig = new EnrichmentParametersConfig {
                 EnrichmentParameters = new PipeEnrichmentParametersProperty {
                     HttpParameters = new PipeEnrichmentHttpParametersProperty {
                         HeaderParameters = new Dictionary<string, string> {
                             { "headerParametersKey", "headerParameters" }
                         },
                         PathParameterValues = new [] { "pathParameterValues" },
                         QueryStringParameters = new Dictionary<string, string> {
                             { "queryStringParametersKey", "queryStringParameters" }
                         }
                     },
                     InputTemplate = "inputTemplate"
                 }
             };

Properties

EnrichmentParameters

(experimental) The parameters for the enrichment target.

public CfnPipe.IPipeEnrichmentParametersProperty EnrichmentParameters { get; set; }
Property Value

CfnPipe.IPipeEnrichmentParametersProperty

Remarks

Stability: Experimental

Implements

IEnrichmentParametersConfig
Back to top Generated by DocFX