LambdaEnrichmentProps

class aws_cdk.aws_pipes_enrichments_alpha.LambdaEnrichmentProps(*, input_transformation=None)

Bases: object

(experimental) Properties for a LambdaEnrichment.

Parameters:

input_transformation (Optional[InputTransformation]) – (experimental) The input transformation for the enrichment. Default: - None

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
import aws_cdk.aws_pipes_enrichments_alpha as pipes_enrichments_alpha

# input_transformation: pipes_alpha.InputTransformation

lambda_enrichment_props = pipes_enrichments_alpha.LambdaEnrichmentProps(
    input_transformation=input_transformation
)

Attributes

input_transformation

(experimental) The input transformation for the enrichment.

Default:
  • None

See:

https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-input-transformation.html

Stability:

experimental