interface LowerCaseStringProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Logs.CfnTransformerPropsMixin.LowerCaseStringProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslogs#CfnTransformerPropsMixin_LowerCaseStringProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.logs.CfnTransformerPropsMixin.LowerCaseStringProperty |
Python | aws_cdk.cfn_property_mixins.aws_logs.CfnTransformerPropsMixin.LowerCaseStringProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_logs » CfnTransformerPropsMixin » LowerCaseStringProperty |
This processor converts a string to lowercase.
For more information about this processor including examples, see lowerCaseString 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/cfn-property-mixins';
const lowerCaseStringProperty: logs.CfnTransformerPropsMixin.LowerCaseStringProperty = {
withKeys: ['withKeys'],
};
Properties
| Name | Type | Description |
|---|---|---|
| with | string[] | The array caontaining the keys of the fields to convert to lowercase. |
withKeys?
Type:
string[]
(optional)
The array caontaining the keys of the fields to convert to lowercase.

.NET
Go
Java
Python
TypeScript