Interface TablePropertyEntry
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
TablePropertyEntry.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-02T21:55:36.216Z")
@Stability(Experimental)
public interface TablePropertyEntry
extends software.amazon.jsii.JsiiSerializable
(experimental) A single table property key-value pair for Iceberg table configuration.
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.s3tables.alpha.*;
TablePropertyEntry tablePropertyEntry = TablePropertyEntry.builder()
.key("key")
.value("value")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forTablePropertyEntrystatic final classAn implementation forTablePropertyEntry -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKey
(experimental) The property key. -
getValue
(experimental) The property value. -
builder
- Returns:
- a
TablePropertyEntry.BuilderofTablePropertyEntry
-