Interface RenameKeyEntryProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
RenameKeyEntryProperty.Jsii$Proxy
@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)",
date="2025-07-24T11:33:17.336Z")
@Stability(Stable)
public interface RenameKeyEntryProperty
extends software.amazon.jsii.JsiiSerializable
This object defines one key that will be renamed with the renameKey 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.*; RenameKeyEntryProperty renameKeyEntryProperty = RenameKeyEntryProperty.builder() .key("key") .renameTo("renameTo") // the properties below are optional .overwriteIfExists(false) .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forRenameKeyEntryProperty
static final class
An implementation forRenameKeyEntryProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKey
The key to rename. -
getRenameTo
The string to use for the new key name. -
getOverwriteIfExists
Whether to overwrite the target key if it already exists.Default: false
-
builder
- Returns:
- a
RenameKeyEntryProperty.Builder
ofRenameKeyEntryProperty
-