interface AddKeyEntryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Logs.CfnTransformer.AddKeyEntryProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awslogs#CfnTransformer_AddKeyEntryProperty |
Java | software.amazon.awscdk.services.logs.CfnTransformer.AddKeyEntryProperty |
Python | aws_cdk.aws_logs.CfnTransformer.AddKeyEntryProperty |
TypeScript | aws-cdk-lib » aws_logs » CfnTransformer » AddKeyEntryProperty |
This object defines one key that will be added with the addKeys processor.
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 addKeyEntryProperty: logs.CfnTransformer.AddKeyEntryProperty = {
key: 'key',
value: 'value',
// the properties below are optional
overwriteIfExists: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| key | string | The key of the new entry to be added to the log event. |
| value | string | The value of the new entry to be added to the log event. |
| overwrite | boolean | IResolvable | Specifies whether to overwrite the value if the key already exists in the log event. |
key
Type:
string
The key of the new entry to be added to the log event.
value
Type:
string
The value of the new entry to be added to the log event.
overwriteIfExists?
Type:
boolean | IResolvable
(optional)
Specifies whether to overwrite the value if the key already exists in the log event.
If you omit this, the default is false .

.NET
Go
Java
Python
TypeScript