interface MoveKeyEntryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Logs.CfnTransformerPropsMixin.MoveKeyEntryProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslogs#CfnTransformerPropsMixin_MoveKeyEntryProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.logs.CfnTransformerPropsMixin.MoveKeyEntryProperty |
Python | aws_cdk.cfn_property_mixins.aws_logs.CfnTransformerPropsMixin.MoveKeyEntryProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_logs » CfnTransformerPropsMixin » MoveKeyEntryProperty |
This object defines one key that will be moved with the moveKey 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/cfn-property-mixins';
const moveKeyEntryProperty: logs.CfnTransformerPropsMixin.MoveKeyEntryProperty = {
overwriteIfExists: false,
source: 'source',
target: 'target',
};
Properties
| Name | Type | Description |
|---|---|---|
| overwrite | boolean | IResolvable | Specifies whether to overwrite the value if the destination key already exists. |
| source? | string | The key to move. |
| target? | string | The key to move to. |
overwriteIfExists?
Type:
boolean | IResolvable
(optional)
Specifies whether to overwrite the value if the destination key already exists.
If you omit this, the default is false .
source?
Type:
string
(optional)
The key to move.
target?
Type:
string
(optional)
The key to move to.

.NET
Go
Java
Python
TypeScript