TransformerOptions
- class aws_cdk.aws_logs.TransformerOptions(*, transformer_config, transformer_name)
Bases:
object
Properties for Transformer created from LogGroup.
- Parameters:
transformer_config (
Sequence
[IProcessor
]) – List of processors in a transformer.transformer_name (
str
) – Name of the transformer.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_logs as logs # processor: logs.IProcessor transformer_options = logs.TransformerOptions( transformer_config=[processor], transformer_name="transformerName" )
Attributes
- transformer_config
List of processors in a transformer.
- transformer_name
Name of the transformer.