Interface CfnTransformerPropsMixin.CopyValueEntryProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTransformerPropsMixin.CopyValueEntryProperty.Jsii$Proxy
- Enclosing class:
CfnTransformerPropsMixin
@Stability(Stable)
public static interface CfnTransformerPropsMixin.CopyValueEntryProperty
extends software.amazon.jsii.JsiiSerializable
This object defines one value to be copied with the copyValue processor.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.logs.mixins.*;
CopyValueEntryProperty copyValueEntryProperty = CopyValueEntryProperty.builder()
.overwriteIfExists(false)
.source("source")
.target("target")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTransformerPropsMixin.CopyValueEntryPropertystatic final classAn implementation forCfnTransformerPropsMixin.CopyValueEntryProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOverwriteIfExists
Specifies whether to overwrite the value if the destination key already exists.If you omit this, the default is
false.Returns union: either
BooleanorIResolvable- See Also:
-
getSource
The key to copy.- See Also:
-
getTarget
The key of the field to copy the value to.- See Also:
-
builder
-