Interface CopyValueEntryProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CopyValueEntryProperty.Jsii$Proxy
@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)",
date="2025-07-29T17:51:03.367Z")
@Stability(Stable)
public interface 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.services.logs.*; CopyValueEntryProperty copyValueEntryProperty = CopyValueEntryProperty.builder() .source("source") .target("target") // the properties below are optional .overwriteIfExists(false) .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCopyValueEntryProperty
static final class
An implementation forCopyValueEntryProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSource
The key to copy. -
getTarget
The key of the field to copy the value to. -
getOverwriteIfExists
Specifies whether to overwrite the value if the target key already exists.Default: false
-
builder
- Returns:
- a
CopyValueEntryProperty.Builder
ofCopyValueEntryProperty
-