Interface RenameKeysProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
RenameKeysProperty.Jsii$Proxy
@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)",
date="2025-07-29T17:51:03.409Z")
@Stability(Stable)
public interface RenameKeysProperty
extends software.amazon.jsii.JsiiSerializable
Use this processor to rename keys in a log event.
For more information about this processor including examples, see renameKeys 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 software.amazon.awscdk.services.logs.*; RenameKeysProperty renameKeysProperty = RenameKeysProperty.builder() .entries(List.of(RenameKeyEntryProperty.builder() .key("key") .renameTo("renameTo") // the properties below are optional .overwriteIfExists(false) .build())) .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forRenameKeysProperty
static final class
An implementation forRenameKeysProperty
-
Method Summary
Modifier and TypeMethodDescriptionstatic RenameKeysProperty.Builder
builder()
An array of RenameKeyEntry objects, where each object contains information about one key to rename.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEntries
An array of RenameKeyEntry objects, where each object contains information about one key to rename. -
builder
- Returns:
- a
RenameKeysProperty.Builder
ofRenameKeysProperty
-