interface MoveKeysProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Logs.Mixins.CfnTransformerPropsMixin.MoveKeysProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslogs/mixins#CfnTransformerPropsMixin_MoveKeysProperty |
Java | software.amazon.awscdk.mixins.preview.services.logs.mixins.CfnTransformerPropsMixin.MoveKeysProperty |
Python | aws_cdk.mixins_preview.aws_logs.mixins.CfnTransformerPropsMixin.MoveKeysProperty |
TypeScript | @aws-cdk/mixins-preview » aws_logs » mixins » 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 { mixins as logs_mixins } from '@aws-cdk/mixins-preview/aws-logs';
const moveKeysProperty: logs_mixins.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