interface UpperCaseStringProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Logs.CfnTransformer.UpperCaseStringProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awslogs#CfnTransformer_UpperCaseStringProperty |
Java | software.amazon.awscdk.services.logs.CfnTransformer.UpperCaseStringProperty |
Python | aws_cdk.aws_logs.CfnTransformer.UpperCaseStringProperty |
TypeScript | aws-cdk-lib » aws_logs » CfnTransformer » UpperCaseStringProperty |
This processor converts a string field to uppercase.
For more information about this processor including examples, see upperCaseString in the CloudWatch Logs User Guide .
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';
const upperCaseStringProperty: logs.CfnTransformer.UpperCaseStringProperty = {
withKeys: ['withKeys'],
};
Properties
| Name | Type | Description |
|---|---|---|
| with | string[] | The array of containing the keys of the field to convert to uppercase. |
withKeys
Type:
string[]
The array of containing the keys of the field to convert to uppercase.

.NET
Go
Java
Python
TypeScript