Interface S3TableProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable,TableBaseProps
- All Known Implementing Classes:
S3TableProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-17T14:54:30.158Z")
@Stability(Deprecated)
@Deprecated
public interface S3TableProps
extends software.amazon.jsii.JsiiSerializable, TableBaseProps
Deprecated.
Example:
Database myDatabase;
S3Table.Builder.create(this, "MyTable")
.database(myDatabase)
.columns(List.of(Column.builder()
.name("data")
.type(Schema.STRING)
.build()))
.partitionKeys(List.of(Column.builder()
.name("date")
.type(Schema.STRING)
.build()))
.dataFormat(DataFormat.JSON)
.partitionProjection(Map.of(
"date", PartitionProjectionConfiguration.date(DatePartitionProjectionConfigurationProps.builder()
.min("NOW-3YEARS")
.max("NOW")
.format("yyyy-MM-dd")
.build())))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classDeprecated.static final classDeprecated. -
Method Summary
Modifier and TypeMethodDescriptionstatic S3TableProps.Builderbuilder()Deprecated.default TableClientSideEncryptionDeprecated.default StringDeprecated.default S3TableStorageDeprecated.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJsonMethods inherited from interface software.amazon.awscdk.services.glue.alpha.TableBaseProps
getColumns, getCompressed, getDatabase, getDataFormat, getDescription, getEnablePartitionFiltering, getHasEncryptedData, getParameters, getPartitionIndexes, getPartitionKeys, getPartitionProjection, getStorageParameters, getStoredAsSubDirectories, getTableName
-
Method Details
-
getClientSideEncryption
@Stability(Deprecated) @Deprecated @Nullable default TableClientSideEncryption getClientSideEncryption()Deprecated.(deprecated) Client-side encryption (CSE-KMS) for the table's data.Independent of the bucket's server-side encryption, and valid whether the bucket is managed or provided.
Default: - no client-side encryption
-
getS3Prefix
Deprecated.(deprecated) S3 prefix under which table objects are stored.When the table shares a bucket with other tables or consumers, set this so that the
grant*methods scope S3 access to this table's data. Without a prefix, those grants cover the entire bucket.Default: - No prefix. The data will be stored under the root of the bucket.
-
getStorage
Deprecated.(deprecated) Where the table's data is stored: a bucket created and managed by the table, or an existing bucket you provide.Default: - a managed bucket with S3-managed (SSE-S3) encryption
-
builder
Deprecated.- Returns:
- a
S3TableProps.BuilderofS3TableProps
-