interface CopyValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Logs.CfnTransformer.CopyValueProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awslogs#CfnTransformer_CopyValueProperty |
Java | software.amazon.awscdk.services.logs.CfnTransformer.CopyValueProperty |
Python | aws_cdk.aws_logs.CfnTransformer.CopyValueProperty |
TypeScript | aws-cdk-lib » aws_logs » CfnTransformer » CopyValueProperty |
This processor copies values within a log event.
You can also use this processor to add metadata to log events by copying the values of the following metadata keys into the log events: @logGroupName , @logGroupStream , @accountId , @regionName .
For more information about this processor including examples, see copyValue 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-lib';
const copyValueProperty: logs.CfnTransformer.CopyValueProperty = {
entries: [{
source: 'source',
target: 'target',
// the properties below are optional
overwriteIfExists: false,
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| entries | IResolvable | (IResolvable | Copy)[] | An array of CopyValueEntry objects, where each object contains the information about one field value to copy. |
entries
Type:
IResolvable | (IResolvable | Copy)[]
An array of CopyValueEntry objects, where each object contains the information about one field value to copy.

.NET
Go
Java
Python
TypeScript