interface MoveKeysProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Logs.CfnTransformerPropsMixin.MoveKeysProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslogs#CfnTransformerPropsMixin_MoveKeysProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.logs.CfnTransformerPropsMixin.MoveKeysProperty |
Python | aws_cdk.cfn_property_mixins.aws_logs.CfnTransformerPropsMixin.MoveKeysProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_logs » CfnTransformerPropsMixin » MoveKeysProperty |
This processor moves a key from one field to another. The original key is deleted.
For more information about this processor including examples, see moveKeys 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 moveKeysProperty: logs.CfnTransformerPropsMixin.MoveKeysProperty = {
entries: [{
overwriteIfExists: false,
source: 'source',
target: 'target',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| entries? | IResolvable | (IResolvable | Move)[] | An array of objects, where each object contains the information about one key to move. |
entries?
Type:
IResolvable | (IResolvable | Move)[]
(optional)
An array of objects, where each object contains the information about one key to move.

.NET
Go
Java
Python
TypeScript