EnrichmentParametersConfig
- class aws_cdk.aws_pipes_alpha.EnrichmentParametersConfig(*, enrichment_parameters)
Bases:
object
(experimental) The parameters required to set up enrichment on your pipe.
- Parameters:
enrichment_parameters (
Union
[PipeEnrichmentParametersProperty
,Dict
[str
,Any
]]) – (experimental) The parameters for the enrichment target.- See:
- Stability:
experimental
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_pipes_alpha as pipes_alpha enrichment_parameters_config = pipes_alpha.EnrichmentParametersConfig( enrichment_parameters=PipeEnrichmentParametersProperty( http_parameters=PipeEnrichmentHttpParametersProperty( header_parameters={ "header_parameters_key": "headerParameters" }, path_parameter_values=["pathParameterValues"], query_string_parameters={ "query_string_parameters_key": "queryStringParameters" } ), input_template="inputTemplate" ) )
Attributes
- enrichment_parameters
(experimental) The parameters for the enrichment target.
- Stability:
experimental