@pulumi/aws-native
Version:
The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)
94 lines (93 loc) • 3.97 kB
TypeScript
export declare const TableBucketEncryptionConfigurationSseAlgorithm: {
readonly Aes256: "AES256";
readonly Awskms: "aws:kms";
};
/**
* Server-side encryption algorithm
*/
export type TableBucketEncryptionConfigurationSseAlgorithm = (typeof TableBucketEncryptionConfigurationSseAlgorithm)[keyof typeof TableBucketEncryptionConfigurationSseAlgorithm];
export declare const TableBucketMetricsConfigurationStatus: {
readonly Enabled: "Enabled";
readonly Disabled: "Disabled";
};
/**
* Indicates whether Metrics are enabled.
*/
export type TableBucketMetricsConfigurationStatus = (typeof TableBucketMetricsConfigurationStatus)[keyof typeof TableBucketMetricsConfigurationStatus];
export declare const TableBucketStorageClassConfigurationStorageClass: {
readonly Standard: "STANDARD";
readonly IntelligentTiering: "INTELLIGENT_TIERING";
};
/**
* The storage class for the table bucket
*/
export type TableBucketStorageClassConfigurationStorageClass = (typeof TableBucketStorageClassConfigurationStorageClass)[keyof typeof TableBucketStorageClassConfigurationStorageClass];
export declare const TableBucketUnreferencedFileRemovalStatus: {
readonly Enabled: "Enabled";
readonly Disabled: "Disabled";
};
/**
* Indicates whether the Unreferenced File Removal maintenance action is enabled.
*/
export type TableBucketUnreferencedFileRemovalStatus = (typeof TableBucketUnreferencedFileRemovalStatus)[keyof typeof TableBucketUnreferencedFileRemovalStatus];
export declare const TableCompactionStatus: {
readonly Enabled: "enabled";
readonly Disabled: "disabled";
};
/**
* Indicates whether the Compaction maintenance action is enabled.
*/
export type TableCompactionStatus = (typeof TableCompactionStatus)[keyof typeof TableCompactionStatus];
export declare const TableIcebergSchemaV2SchemaV2FieldType: {
readonly Struct: "struct";
};
/**
* The type of the top-level schema, which is always 'struct'
*/
export type TableIcebergSchemaV2SchemaV2FieldType = (typeof TableIcebergSchemaV2SchemaV2FieldType)[keyof typeof TableIcebergSchemaV2SchemaV2FieldType];
export declare const TableIcebergSortFieldDirection: {
readonly Asc: "asc";
readonly Desc: "desc";
};
/**
* Sort direction (asc or desc)
*/
export type TableIcebergSortFieldDirection = (typeof TableIcebergSortFieldDirection)[keyof typeof TableIcebergSortFieldDirection];
export declare const TableIcebergSortFieldNullOrder: {
readonly NullsFirst: "nulls-first";
readonly NullsLast: "nulls-last";
};
/**
* Null value ordering (nulls-first or nulls-last)
*/
export type TableIcebergSortFieldNullOrder = (typeof TableIcebergSortFieldNullOrder)[keyof typeof TableIcebergSortFieldNullOrder];
export declare const TableOpenTableFormat: {
readonly Iceberg: "ICEBERG";
};
/**
* Format of the table.
*/
export type TableOpenTableFormat = (typeof TableOpenTableFormat)[keyof typeof TableOpenTableFormat];
export declare const TableSnapshotManagementStatus: {
readonly Enabled: "enabled";
readonly Disabled: "disabled";
};
/**
* Indicates whether the SnapshotManagement maintenance action is enabled.
*/
export type TableSnapshotManagementStatus = (typeof TableSnapshotManagementStatus)[keyof typeof TableSnapshotManagementStatus];
export declare const TableStorageClassConfigurationStorageClass: {
readonly Standard: "STANDARD";
readonly IntelligentTiering: "INTELLIGENT_TIERING";
};
/**
* The storage class for the table
*/
export type TableStorageClassConfigurationStorageClass = (typeof TableStorageClassConfigurationStorageClass)[keyof typeof TableStorageClassConfigurationStorageClass];
export declare const TableWithoutMetadata: {
readonly Yes: "Yes";
};
/**
* Indicates that you don't want to specify a schema for the table. This property is mutually exclusive to 'IcebergMetadata', and its only possible value is 'Yes'.
*/
export type TableWithoutMetadata = (typeof TableWithoutMetadata)[keyof typeof TableWithoutMetadata];