interface TransformerOptions
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Logs.TransformerOptions |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awslogs#TransformerOptions |
Java | software.amazon.awscdk.services.logs.TransformerOptions |
Python | aws_cdk.aws_logs.TransformerOptions |
TypeScript (source) | aws-cdk-lib » aws_logs » TransformerOptions |
Properties for Transformer created from LogGroup.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_logs as logs } from 'aws-cdk-lib';
declare const processor: logs.IProcessor;
const transformerOptions: logs.TransformerOptions = {
transformerConfig: [processor],
transformerName: 'transformerName',
};
Properties
| Name | Type | Description |
|---|---|---|
| transformer | IProcessor[] | List of processors in a transformer. |
| transformer | string | Name of the transformer. |
transformerConfig
Type:
IProcessor[]
List of processors in a transformer.
transformerName
Type:
string
Name of the transformer.

.NET
Go
Java
Python
TypeScript (