Module: AWSCDK::Logs::JsonMutatorType
- Defined in:
- logs/json_mutator_type.rb
Overview
Types of JSON mutation operations.
Defines operations that can be performed to modify the JSON structure of log events.
Constant Summary collapse
- ADD_KEYS =
Deprecated.Note:
Default:
Add new keys to the log event.
Jsii::Enum.new("aws-cdk-lib.aws_logs.JsonMutatorType", "ADD_KEYS")
- DELETE_KEYS =
Deprecated.Note:
Default:
Delete keys from the log event.
Jsii::Enum.new("aws-cdk-lib.aws_logs.JsonMutatorType", "DELETE_KEYS")
- MOVE_KEYS =
Deprecated.Note:
Default:
Move keys to different locations.
Jsii::Enum.new("aws-cdk-lib.aws_logs.JsonMutatorType", "MOVE_KEYS")
- RENAME_KEYS =
Deprecated.Note:
Default:
Rename keys in the log event.
Jsii::Enum.new("aws-cdk-lib.aws_logs.JsonMutatorType", "RENAME_KEYS")
- COPY_VALUE =
Deprecated.Note:
Default:
Copy values between keys.
Jsii::Enum.new("aws-cdk-lib.aws_logs.JsonMutatorType", "COPY_VALUE")
- LIST_TO_MAP =
Deprecated.Note:
Default:
Convert a list to a map.
Jsii::Enum.new("aws-cdk-lib.aws_logs.JsonMutatorType", "LIST_TO_MAP")