@aws-sdk/client-s3tables 3.787.0 → 3.796.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/README.md +33 -1
  2. package/dist-cjs/S3Tables.js +8 -0
  3. package/dist-cjs/commands/DeleteTableBucketEncryptionCommand.js +26 -0
  4. package/dist-cjs/commands/GetTableBucketEncryptionCommand.js +26 -0
  5. package/dist-cjs/commands/GetTableEncryptionCommand.js +26 -0
  6. package/dist-cjs/commands/PutTableBucketEncryptionCommand.js +26 -0
  7. package/dist-cjs/commands/index.js +4 -0
  8. package/dist-cjs/models/models_0.js +5 -1
  9. package/dist-cjs/protocols/Aws_restJson1.js +113 -2
  10. package/dist-es/S3Tables.js +8 -0
  11. package/dist-es/commands/DeleteTableBucketEncryptionCommand.js +22 -0
  12. package/dist-es/commands/GetTableBucketEncryptionCommand.js +22 -0
  13. package/dist-es/commands/GetTableEncryptionCommand.js +22 -0
  14. package/dist-es/commands/PutTableBucketEncryptionCommand.js +22 -0
  15. package/dist-es/commands/index.js +4 -0
  16. package/dist-es/models/models_0.js +4 -0
  17. package/dist-es/protocols/Aws_restJson1.js +103 -0
  18. package/dist-types/S3Tables.d.ts +29 -1
  19. package/dist-types/S3TablesClient.d.ts +7 -3
  20. package/dist-types/commands/CreateTableBucketCommand.d.ts +12 -1
  21. package/dist-types/commands/CreateTableCommand.d.ts +16 -2
  22. package/dist-types/commands/DeleteTableBucketEncryptionCommand.d.ts +95 -0
  23. package/dist-types/commands/GetNamespaceCommand.d.ts +2 -0
  24. package/dist-types/commands/GetTableBucketCommand.d.ts +1 -0
  25. package/dist-types/commands/GetTableBucketEncryptionCommand.d.ts +99 -0
  26. package/dist-types/commands/GetTableCommand.d.ts +2 -0
  27. package/dist-types/commands/GetTableEncryptionCommand.d.ts +101 -0
  28. package/dist-types/commands/ListNamespacesCommand.d.ts +2 -0
  29. package/dist-types/commands/ListTableBucketsCommand.d.ts +1 -0
  30. package/dist-types/commands/ListTablesCommand.d.ts +2 -0
  31. package/dist-types/commands/PutTableBucketEncryptionCommand.d.ts +103 -0
  32. package/dist-types/commands/index.d.ts +4 -0
  33. package/dist-types/index.d.ts +1 -1
  34. package/dist-types/models/models_0.d.ts +171 -12
  35. package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
  36. package/dist-types/ts3.4/S3Tables.d.ts +68 -0
  37. package/dist-types/ts3.4/S3TablesClient.d.ts +24 -0
  38. package/dist-types/ts3.4/commands/DeleteTableBucketEncryptionCommand.d.ts +47 -0
  39. package/dist-types/ts3.4/commands/GetTableBucketEncryptionCommand.d.ts +51 -0
  40. package/dist-types/ts3.4/commands/GetTableEncryptionCommand.d.ts +51 -0
  41. package/dist-types/ts3.4/commands/PutTableBucketEncryptionCommand.d.ts +47 -0
  42. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  43. package/dist-types/ts3.4/models/models_0.d.ts +42 -0
  44. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
  45. package/package.json +5 -5
@@ -0,0 +1,99 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { GetTableBucketEncryptionRequest, GetTableBucketEncryptionResponse } from "../models/models_0";
4
+ import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetTableBucketEncryptionCommand}.
14
+ */
15
+ export interface GetTableBucketEncryptionCommandInput extends GetTableBucketEncryptionRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetTableBucketEncryptionCommand}.
21
+ */
22
+ export interface GetTableBucketEncryptionCommandOutput extends GetTableBucketEncryptionResponse, __MetadataBearer {
23
+ }
24
+ declare const GetTableBucketEncryptionCommand_base: {
25
+ new (input: GetTableBucketEncryptionCommandInput): import("@smithy/smithy-client").CommandImpl<GetTableBucketEncryptionCommandInput, GetTableBucketEncryptionCommandOutput, S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: GetTableBucketEncryptionCommandInput): import("@smithy/smithy-client").CommandImpl<GetTableBucketEncryptionCommandInput, GetTableBucketEncryptionCommandOutput, S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Gets the encryption configuration for a table bucket.</p>
31
+ * <dl>
32
+ * <dt>Permissions</dt>
33
+ * <dd>
34
+ * <p>You must have the <code>s3tables:GetTableBucketEncryption</code> permission to use this operation.</p>
35
+ * </dd>
36
+ * </dl>
37
+ * @example
38
+ * Use a bare-bones client and the command you need to make an API call.
39
+ * ```javascript
40
+ * import { S3TablesClient, GetTableBucketEncryptionCommand } from "@aws-sdk/client-s3tables"; // ES Modules import
41
+ * // const { S3TablesClient, GetTableBucketEncryptionCommand } = require("@aws-sdk/client-s3tables"); // CommonJS import
42
+ * const client = new S3TablesClient(config);
43
+ * const input = { // GetTableBucketEncryptionRequest
44
+ * tableBucketARN: "STRING_VALUE", // required
45
+ * };
46
+ * const command = new GetTableBucketEncryptionCommand(input);
47
+ * const response = await client.send(command);
48
+ * // { // GetTableBucketEncryptionResponse
49
+ * // encryptionConfiguration: { // EncryptionConfiguration
50
+ * // sseAlgorithm: "AES256" || "aws:kms", // required
51
+ * // kmsKeyArn: "STRING_VALUE",
52
+ * // },
53
+ * // };
54
+ *
55
+ * ```
56
+ *
57
+ * @param GetTableBucketEncryptionCommandInput - {@link GetTableBucketEncryptionCommandInput}
58
+ * @returns {@link GetTableBucketEncryptionCommandOutput}
59
+ * @see {@link GetTableBucketEncryptionCommandInput} for command's `input` shape.
60
+ * @see {@link GetTableBucketEncryptionCommandOutput} for command's `response` shape.
61
+ * @see {@link S3TablesClientResolvedConfig | config} for S3TablesClient's `config` shape.
62
+ *
63
+ * @throws {@link AccessDeniedException} (client fault)
64
+ * <p>The action cannot be performed because you do not have the required permission.</p>
65
+ *
66
+ * @throws {@link BadRequestException} (client fault)
67
+ * <p>The request is invalid or malformed.</p>
68
+ *
69
+ * @throws {@link ForbiddenException} (client fault)
70
+ * <p>The caller isn't authorized to make the request.</p>
71
+ *
72
+ * @throws {@link InternalServerErrorException} (server fault)
73
+ * <p>The request failed due to an internal server error.</p>
74
+ *
75
+ * @throws {@link NotFoundException} (client fault)
76
+ * <p>The request was rejected because the specified resource could not be found.</p>
77
+ *
78
+ * @throws {@link TooManyRequestsException} (client fault)
79
+ * <p>The limit on the number of requests per second was exceeded.</p>
80
+ *
81
+ * @throws {@link S3TablesServiceException}
82
+ * <p>Base exception class for all service exceptions from S3Tables service.</p>
83
+ *
84
+ *
85
+ * @public
86
+ */
87
+ export declare class GetTableBucketEncryptionCommand extends GetTableBucketEncryptionCommand_base {
88
+ /** @internal type navigation helper, not in runtime. */
89
+ protected static __types: {
90
+ api: {
91
+ input: GetTableBucketEncryptionRequest;
92
+ output: GetTableBucketEncryptionResponse;
93
+ };
94
+ sdk: {
95
+ input: GetTableBucketEncryptionCommandInput;
96
+ output: GetTableBucketEncryptionCommandOutput;
97
+ };
98
+ };
99
+ }
@@ -54,6 +54,7 @@ declare const GetTableCommand_base: {
54
54
  * // namespace: [ // NamespaceList // required
55
55
  * // "STRING_VALUE",
56
56
  * // ],
57
+ * // namespaceId: "STRING_VALUE",
57
58
  * // versionToken: "STRING_VALUE", // required
58
59
  * // metadataLocation: "STRING_VALUE",
59
60
  * // warehouseLocation: "STRING_VALUE", // required
@@ -64,6 +65,7 @@ declare const GetTableCommand_base: {
64
65
  * // modifiedBy: "STRING_VALUE", // required
65
66
  * // ownerAccountId: "STRING_VALUE", // required
66
67
  * // format: "ICEBERG", // required
68
+ * // tableBucketId: "STRING_VALUE",
67
69
  * // };
68
70
  *
69
71
  * ```
@@ -0,0 +1,101 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { GetTableEncryptionRequest, GetTableEncryptionResponse } from "../models/models_0";
4
+ import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetTableEncryptionCommand}.
14
+ */
15
+ export interface GetTableEncryptionCommandInput extends GetTableEncryptionRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetTableEncryptionCommand}.
21
+ */
22
+ export interface GetTableEncryptionCommandOutput extends GetTableEncryptionResponse, __MetadataBearer {
23
+ }
24
+ declare const GetTableEncryptionCommand_base: {
25
+ new (input: GetTableEncryptionCommandInput): import("@smithy/smithy-client").CommandImpl<GetTableEncryptionCommandInput, GetTableEncryptionCommandOutput, S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: GetTableEncryptionCommandInput): import("@smithy/smithy-client").CommandImpl<GetTableEncryptionCommandInput, GetTableEncryptionCommandOutput, S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Gets the encryption configuration for a table.</p>
31
+ * <dl>
32
+ * <dt>Permissions</dt>
33
+ * <dd>
34
+ * <p>You must have the <code>s3tables:GetTableEncryption</code> permission to use this operation.</p>
35
+ * </dd>
36
+ * </dl>
37
+ * @example
38
+ * Use a bare-bones client and the command you need to make an API call.
39
+ * ```javascript
40
+ * import { S3TablesClient, GetTableEncryptionCommand } from "@aws-sdk/client-s3tables"; // ES Modules import
41
+ * // const { S3TablesClient, GetTableEncryptionCommand } = require("@aws-sdk/client-s3tables"); // CommonJS import
42
+ * const client = new S3TablesClient(config);
43
+ * const input = { // GetTableEncryptionRequest
44
+ * tableBucketARN: "STRING_VALUE", // required
45
+ * namespace: "STRING_VALUE", // required
46
+ * name: "STRING_VALUE", // required
47
+ * };
48
+ * const command = new GetTableEncryptionCommand(input);
49
+ * const response = await client.send(command);
50
+ * // { // GetTableEncryptionResponse
51
+ * // encryptionConfiguration: { // EncryptionConfiguration
52
+ * // sseAlgorithm: "AES256" || "aws:kms", // required
53
+ * // kmsKeyArn: "STRING_VALUE",
54
+ * // },
55
+ * // };
56
+ *
57
+ * ```
58
+ *
59
+ * @param GetTableEncryptionCommandInput - {@link GetTableEncryptionCommandInput}
60
+ * @returns {@link GetTableEncryptionCommandOutput}
61
+ * @see {@link GetTableEncryptionCommandInput} for command's `input` shape.
62
+ * @see {@link GetTableEncryptionCommandOutput} for command's `response` shape.
63
+ * @see {@link S3TablesClientResolvedConfig | config} for S3TablesClient's `config` shape.
64
+ *
65
+ * @throws {@link AccessDeniedException} (client fault)
66
+ * <p>The action cannot be performed because you do not have the required permission.</p>
67
+ *
68
+ * @throws {@link BadRequestException} (client fault)
69
+ * <p>The request is invalid or malformed.</p>
70
+ *
71
+ * @throws {@link ForbiddenException} (client fault)
72
+ * <p>The caller isn't authorized to make the request.</p>
73
+ *
74
+ * @throws {@link InternalServerErrorException} (server fault)
75
+ * <p>The request failed due to an internal server error.</p>
76
+ *
77
+ * @throws {@link NotFoundException} (client fault)
78
+ * <p>The request was rejected because the specified resource could not be found.</p>
79
+ *
80
+ * @throws {@link TooManyRequestsException} (client fault)
81
+ * <p>The limit on the number of requests per second was exceeded.</p>
82
+ *
83
+ * @throws {@link S3TablesServiceException}
84
+ * <p>Base exception class for all service exceptions from S3Tables service.</p>
85
+ *
86
+ *
87
+ * @public
88
+ */
89
+ export declare class GetTableEncryptionCommand extends GetTableEncryptionCommand_base {
90
+ /** @internal type navigation helper, not in runtime. */
91
+ protected static __types: {
92
+ api: {
93
+ input: GetTableEncryptionRequest;
94
+ output: GetTableEncryptionResponse;
95
+ };
96
+ sdk: {
97
+ input: GetTableEncryptionCommandInput;
98
+ output: GetTableEncryptionCommandOutput;
99
+ };
100
+ };
101
+ }
@@ -57,6 +57,8 @@ declare const ListNamespacesCommand_base: {
57
57
  * // createdAt: new Date("TIMESTAMP"), // required
58
58
  * // createdBy: "STRING_VALUE", // required
59
59
  * // ownerAccountId: "STRING_VALUE", // required
60
+ * // namespaceId: "STRING_VALUE",
61
+ * // tableBucketId: "STRING_VALUE",
60
62
  * // },
61
63
  * // ],
62
64
  * // continuationToken: "STRING_VALUE",
@@ -54,6 +54,7 @@ declare const ListTableBucketsCommand_base: {
54
54
  * // name: "STRING_VALUE", // required
55
55
  * // ownerAccountId: "STRING_VALUE", // required
56
56
  * // createdAt: new Date("TIMESTAMP"), // required
57
+ * // tableBucketId: "STRING_VALUE",
57
58
  * // },
58
59
  * // ],
59
60
  * // continuationToken: "STRING_VALUE",
@@ -60,6 +60,8 @@ declare const ListTablesCommand_base: {
60
60
  * // tableARN: "STRING_VALUE", // required
61
61
  * // createdAt: new Date("TIMESTAMP"), // required
62
62
  * // modifiedAt: new Date("TIMESTAMP"), // required
63
+ * // namespaceId: "STRING_VALUE",
64
+ * // tableBucketId: "STRING_VALUE",
63
65
  * // },
64
66
  * // ],
65
67
  * // continuationToken: "STRING_VALUE",
@@ -0,0 +1,103 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { PutTableBucketEncryptionRequest } from "../models/models_0";
4
+ import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link PutTableBucketEncryptionCommand}.
14
+ */
15
+ export interface PutTableBucketEncryptionCommandInput extends PutTableBucketEncryptionRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link PutTableBucketEncryptionCommand}.
21
+ */
22
+ export interface PutTableBucketEncryptionCommandOutput extends __MetadataBearer {
23
+ }
24
+ declare const PutTableBucketEncryptionCommand_base: {
25
+ new (input: PutTableBucketEncryptionCommandInput): import("@smithy/smithy-client").CommandImpl<PutTableBucketEncryptionCommandInput, PutTableBucketEncryptionCommandOutput, S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: PutTableBucketEncryptionCommandInput): import("@smithy/smithy-client").CommandImpl<PutTableBucketEncryptionCommandInput, PutTableBucketEncryptionCommandOutput, S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Sets the encryption configuration for a table bucket.</p>
31
+ * <dl>
32
+ * <dt>Permissions</dt>
33
+ * <dd>
34
+ * <p>You must have the <code>s3tables:PutTableBucketEncryption</code> permission to use this operation.</p>
35
+ * <note>
36
+ * <p>If you choose SSE-KMS encryption you must grant the S3 Tables maintenance principal access to your KMS key. For more information, see <a href="AmazonS3/latest/userguide/s3-tables-kms-permissions.html">Permissions requirements for S3 Tables SSE-KMS encryption</a>
37
+ * </p>
38
+ * </note>
39
+ * </dd>
40
+ * </dl>
41
+ * @example
42
+ * Use a bare-bones client and the command you need to make an API call.
43
+ * ```javascript
44
+ * import { S3TablesClient, PutTableBucketEncryptionCommand } from "@aws-sdk/client-s3tables"; // ES Modules import
45
+ * // const { S3TablesClient, PutTableBucketEncryptionCommand } = require("@aws-sdk/client-s3tables"); // CommonJS import
46
+ * const client = new S3TablesClient(config);
47
+ * const input = { // PutTableBucketEncryptionRequest
48
+ * tableBucketARN: "STRING_VALUE", // required
49
+ * encryptionConfiguration: { // EncryptionConfiguration
50
+ * sseAlgorithm: "AES256" || "aws:kms", // required
51
+ * kmsKeyArn: "STRING_VALUE",
52
+ * },
53
+ * };
54
+ * const command = new PutTableBucketEncryptionCommand(input);
55
+ * const response = await client.send(command);
56
+ * // {};
57
+ *
58
+ * ```
59
+ *
60
+ * @param PutTableBucketEncryptionCommandInput - {@link PutTableBucketEncryptionCommandInput}
61
+ * @returns {@link PutTableBucketEncryptionCommandOutput}
62
+ * @see {@link PutTableBucketEncryptionCommandInput} for command's `input` shape.
63
+ * @see {@link PutTableBucketEncryptionCommandOutput} for command's `response` shape.
64
+ * @see {@link S3TablesClientResolvedConfig | config} for S3TablesClient's `config` shape.
65
+ *
66
+ * @throws {@link BadRequestException} (client fault)
67
+ * <p>The request is invalid or malformed.</p>
68
+ *
69
+ * @throws {@link ConflictException} (client fault)
70
+ * <p>The request failed because there is a conflict with a previous write. You can retry the
71
+ * request.</p>
72
+ *
73
+ * @throws {@link ForbiddenException} (client fault)
74
+ * <p>The caller isn't authorized to make the request.</p>
75
+ *
76
+ * @throws {@link InternalServerErrorException} (server fault)
77
+ * <p>The request failed due to an internal server error.</p>
78
+ *
79
+ * @throws {@link NotFoundException} (client fault)
80
+ * <p>The request was rejected because the specified resource could not be found.</p>
81
+ *
82
+ * @throws {@link TooManyRequestsException} (client fault)
83
+ * <p>The limit on the number of requests per second was exceeded.</p>
84
+ *
85
+ * @throws {@link S3TablesServiceException}
86
+ * <p>Base exception class for all service exceptions from S3Tables service.</p>
87
+ *
88
+ *
89
+ * @public
90
+ */
91
+ export declare class PutTableBucketEncryptionCommand extends PutTableBucketEncryptionCommand_base {
92
+ /** @internal type navigation helper, not in runtime. */
93
+ protected static __types: {
94
+ api: {
95
+ input: PutTableBucketEncryptionRequest;
96
+ output: {};
97
+ };
98
+ sdk: {
99
+ input: PutTableBucketEncryptionCommandInput;
100
+ output: PutTableBucketEncryptionCommandOutput;
101
+ };
102
+ };
103
+ }
@@ -3,14 +3,17 @@ export * from "./CreateTableBucketCommand";
3
3
  export * from "./CreateTableCommand";
4
4
  export * from "./DeleteNamespaceCommand";
5
5
  export * from "./DeleteTableBucketCommand";
6
+ export * from "./DeleteTableBucketEncryptionCommand";
6
7
  export * from "./DeleteTableBucketPolicyCommand";
7
8
  export * from "./DeleteTableCommand";
8
9
  export * from "./DeleteTablePolicyCommand";
9
10
  export * from "./GetNamespaceCommand";
10
11
  export * from "./GetTableBucketCommand";
12
+ export * from "./GetTableBucketEncryptionCommand";
11
13
  export * from "./GetTableBucketMaintenanceConfigurationCommand";
12
14
  export * from "./GetTableBucketPolicyCommand";
13
15
  export * from "./GetTableCommand";
16
+ export * from "./GetTableEncryptionCommand";
14
17
  export * from "./GetTableMaintenanceConfigurationCommand";
15
18
  export * from "./GetTableMaintenanceJobStatusCommand";
16
19
  export * from "./GetTableMetadataLocationCommand";
@@ -18,6 +21,7 @@ export * from "./GetTablePolicyCommand";
18
21
  export * from "./ListNamespacesCommand";
19
22
  export * from "./ListTableBucketsCommand";
20
23
  export * from "./ListTablesCommand";
24
+ export * from "./PutTableBucketEncryptionCommand";
21
25
  export * from "./PutTableBucketMaintenanceConfigurationCommand";
22
26
  export * from "./PutTableBucketPolicyCommand";
23
27
  export * from "./PutTableMaintenanceConfigurationCommand";
@@ -1,5 +1,5 @@
1
1
  /**
2
- * <p>An Amazon S3 table represents a structured dataset consisting of tabular data in <a href="https://parquet.apache.org/docs/">Apache Parquet</a> format and related metadata. This data is stored inside an S3 table as a subresource. All tables in a table bucket are stored in the <a href="https://iceberg.apache.org/docs/latest/">Apache Iceberg</a> table format. Through integration with the <a href="https://docs.aws.amazon.com/https:/docs.aws.amazon.com/glue/latest/dg/catalog-and-crawler.html">AWS Glue Data Catalog</a> you can interact with your tables using AWS analytics services, such as <a href="https://docs.aws.amazon.com/https:/docs.aws.amazon.com/athena/">Amazon Athena</a> and <a href="https://docs.aws.amazon.com/https:/docs.aws.amazon.com/redshift/">Amazon Redshift</a>. Amazon S3 manages maintenance of your tables through automatic file compaction and snapshot management. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-buckets.html">Amazon S3 table buckets</a>.</p>
2
+ * <p>An Amazon S3 table represents a structured dataset consisting of tabular data in <a href="https://parquet.apache.org/docs/">Apache Parquet</a> format and related metadata. This data is stored inside an S3 table as a subresource. All tables in a table bucket are stored in the <a href="https://iceberg.apache.org/docs/latest/">Apache Iceberg</a> table format. Through integration with the <a href="https://docs.aws.amazon.com/https:/docs.aws.amazon.com/glue/latest/dg/catalog-and-crawler.html">Amazon Web Services Glue Data Catalog</a> you can interact with your tables using Amazon Web Services analytics services, such as <a href="https://docs.aws.amazon.com/https:/docs.aws.amazon.com/athena/">Amazon Athena</a> and <a href="https://docs.aws.amazon.com/https:/docs.aws.amazon.com/redshift/">Amazon Redshift</a>. Amazon S3 manages maintenance of your tables through automatic file compaction and snapshot management. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-buckets.html">Amazon S3 table buckets</a>.</p>
3
3
  *
4
4
  * @packageDocumentation
5
5
  */