ProcessorDeleteKeysProperty

class aws_cdk.aws_logs.ProcessorDeleteKeysProperty(*, with_keys)

Bases: object

This processor adds new key-value pairs to the log event.

For more information about this processor including examples, see addKeys in the CloudWatch Logs User Guide.

Parameters:

with_keys (Sequence[str]) – A list of keys to delete.

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_delete_keys_property = logs.ProcessorDeleteKeysProperty(
    with_keys=["withKeys"]
)

Attributes

with_keys

A list of keys to delete.