interface DeleteKeysProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Logs.CfnTransformerPropsMixin.DeleteKeysProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslogs#CfnTransformerPropsMixin_DeleteKeysProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.logs.CfnTransformerPropsMixin.DeleteKeysProperty |
Python | aws_cdk.cfn_property_mixins.aws_logs.CfnTransformerPropsMixin.DeleteKeysProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_logs » CfnTransformerPropsMixin » DeleteKeysProperty |
This processor deletes entries from a log event. These entries are key-value pairs.
For more information about this processor including examples, see deleteKeys 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 deleteKeysProperty: logs.CfnTransformerPropsMixin.DeleteKeysProperty = {
withKeys: ['withKeys'],
};
Properties
| Name | Type | Description |
|---|---|---|
| with | string[] | The list of keys to delete. |
withKeys?
Type:
string[]
(optional)
The list of keys to delete.

.NET
Go
Java
Python
TypeScript