@aws-sdk/client-s3tables 3.825.0 → 3.828.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 (38) hide show
  1. package/dist-cjs/protocols/Aws_restJson1.js +11 -5
  2. package/dist-es/protocols/Aws_restJson1.js +11 -5
  3. package/dist-types/S3Tables.d.ts +1 -0
  4. package/dist-types/commands/CreateNamespaceCommand.d.ts +2 -9
  5. package/dist-types/commands/CreateTableBucketCommand.d.ts +2 -16
  6. package/dist-types/commands/CreateTableCommand.d.ts +2 -22
  7. package/dist-types/commands/DeleteNamespaceCommand.d.ts +2 -9
  8. package/dist-types/commands/DeleteTableBucketCommand.d.ts +2 -9
  9. package/dist-types/commands/DeleteTableBucketEncryptionCommand.d.ts +2 -9
  10. package/dist-types/commands/DeleteTableBucketPolicyCommand.d.ts +2 -9
  11. package/dist-types/commands/DeleteTableCommand.d.ts +2 -9
  12. package/dist-types/commands/DeleteTablePolicyCommand.d.ts +2 -9
  13. package/dist-types/commands/GetNamespaceCommand.d.ts +2 -9
  14. package/dist-types/commands/GetTableBucketCommand.d.ts +2 -9
  15. package/dist-types/commands/GetTableBucketEncryptionCommand.d.ts +1 -7
  16. package/dist-types/commands/GetTableBucketMaintenanceConfigurationCommand.d.ts +2 -9
  17. package/dist-types/commands/GetTableBucketPolicyCommand.d.ts +2 -9
  18. package/dist-types/commands/GetTableCommand.d.ts +7 -13
  19. package/dist-types/commands/GetTableEncryptionCommand.d.ts +1 -7
  20. package/dist-types/commands/GetTableMaintenanceConfigurationCommand.d.ts +2 -9
  21. package/dist-types/commands/GetTableMaintenanceJobStatusCommand.d.ts +2 -9
  22. package/dist-types/commands/GetTableMetadataLocationCommand.d.ts +2 -9
  23. package/dist-types/commands/GetTablePolicyCommand.d.ts +2 -9
  24. package/dist-types/commands/ListNamespacesCommand.d.ts +2 -9
  25. package/dist-types/commands/ListTableBucketsCommand.d.ts +2 -9
  26. package/dist-types/commands/ListTablesCommand.d.ts +2 -9
  27. package/dist-types/commands/PutTableBucketEncryptionCommand.d.ts +2 -13
  28. package/dist-types/commands/PutTableBucketMaintenanceConfigurationCommand.d.ts +2 -10
  29. package/dist-types/commands/PutTableBucketPolicyCommand.d.ts +2 -10
  30. package/dist-types/commands/PutTableMaintenanceConfigurationCommand.d.ts +2 -10
  31. package/dist-types/commands/PutTablePolicyCommand.d.ts +2 -10
  32. package/dist-types/commands/RenameTableCommand.d.ts +2 -9
  33. package/dist-types/commands/UpdateTableMetadataLocationCommand.d.ts +2 -9
  34. package/dist-types/models/models_0.d.ts +18 -32
  35. package/dist-types/ts3.4/S3Tables.d.ts +1 -0
  36. package/dist-types/ts3.4/commands/GetTableCommand.d.ts +1 -1
  37. package/dist-types/ts3.4/models/models_0.d.ts +4 -3
  38. package/package.json +12 -12
@@ -138,12 +138,15 @@ exports.se_GetNamespaceCommand = se_GetNamespaceCommand;
138
138
  const se_GetTableCommand = async (input, context) => {
139
139
  const b = (0, core_2.requestBuilder)(input, context);
140
140
  const headers = {};
141
- b.bp("/tables/{tableBucketARN}/{namespace}/{name}");
142
- b.p("tableBucketARN", () => input.tableBucketARN, "{tableBucketARN}", false);
143
- b.p("namespace", () => input.namespace, "{namespace}", false);
144
- b.p("name", () => input.name, "{name}", false);
141
+ b.bp("/get-table");
142
+ const query = (0, smithy_client_1.map)({
143
+ [_tBARN]: [, input[_tBARN]],
144
+ [_n]: [, input[_n]],
145
+ [_na]: [, input[_na]],
146
+ [_tA]: [, input[_tA]],
147
+ });
145
148
  let body;
146
- b.m("GET").h(headers).b(body);
149
+ b.m("GET").h(headers).q(query).b(body);
147
150
  return b.build();
148
151
  };
149
152
  exports.se_GetTableCommand = se_GetTableCommand;
@@ -1062,5 +1065,8 @@ const _mB = "maxBuckets";
1062
1065
  const _mN = "maxNamespaces";
1063
1066
  const _mT = "maxTables";
1064
1067
  const _n = "namespace";
1068
+ const _na = "name";
1065
1069
  const _p = "prefix";
1070
+ const _tA = "tableArn";
1071
+ const _tBARN = "tableBucketARN";
1066
1072
  const _vT = "versionToken";
@@ -124,12 +124,15 @@ export const se_GetNamespaceCommand = async (input, context) => {
124
124
  export const se_GetTableCommand = async (input, context) => {
125
125
  const b = rb(input, context);
126
126
  const headers = {};
127
- b.bp("/tables/{tableBucketARN}/{namespace}/{name}");
128
- b.p("tableBucketARN", () => input.tableBucketARN, "{tableBucketARN}", false);
129
- b.p("namespace", () => input.namespace, "{namespace}", false);
130
- b.p("name", () => input.name, "{name}", false);
127
+ b.bp("/get-table");
128
+ const query = map({
129
+ [_tBARN]: [, input[_tBARN]],
130
+ [_n]: [, input[_n]],
131
+ [_na]: [, input[_na]],
132
+ [_tA]: [, input[_tA]],
133
+ });
131
134
  let body;
132
- b.m("GET").h(headers).b(body);
135
+ b.m("GET").h(headers).q(query).b(body);
133
136
  return b.build();
134
137
  };
135
138
  export const se_GetTableBucketCommand = async (input, context) => {
@@ -998,5 +1001,8 @@ const _mB = "maxBuckets";
998
1001
  const _mN = "maxNamespaces";
999
1002
  const _mT = "maxTables";
1000
1003
  const _n = "namespace";
1004
+ const _na = "name";
1001
1005
  const _p = "prefix";
1006
+ const _tA = "tableArn";
1007
+ const _tBARN = "tableBucketARN";
1002
1008
  const _vT = "versionToken";
@@ -94,6 +94,7 @@ export interface S3Tables {
94
94
  /**
95
95
  * @see {@link GetTableCommand}
96
96
  */
97
+ getTable(): Promise<GetTableCommandOutput>;
97
98
  getTable(args: GetTableCommandInput, options?: __HttpHandlerOptions): Promise<GetTableCommandOutput>;
98
99
  getTable(args: GetTableCommandInput, cb: (err: any, data?: GetTableCommandOutput) => void): void;
99
100
  getTable(args: GetTableCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTableCommandOutput) => void): void;
@@ -27,13 +27,7 @@ declare const CreateNamespaceCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Creates a namespace. A namespace is a logical grouping of tables within your table bucket, which you can use to organize tables. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-namespace-create.html">Create a namespace</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p>
31
- * <dl>
32
- * <dt>Permissions</dt>
33
- * <dd>
34
- * <p>You must have the <code>s3tables:CreateNamespace</code> permission to use this operation. </p>
35
- * </dd>
36
- * </dl>
30
+ * <p>Creates a namespace. A namespace is a logical grouping of tables within your table bucket, which you can use to organize tables. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-namespace-create.html">Create a namespace</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3tables:CreateNamespace</code> permission to use this operation. </p> </dd> </dl>
37
31
  * @example
38
32
  * Use a bare-bones client and the command you need to make an API call.
39
33
  * ```javascript
@@ -67,8 +61,7 @@ declare const CreateNamespaceCommand_base: {
67
61
  * <p>The request is invalid or malformed.</p>
68
62
  *
69
63
  * @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>
64
+ * <p>The request failed because there is a conflict with a previous write. You can retry the request.</p>
72
65
  *
73
66
  * @throws {@link ForbiddenException} (client fault)
74
67
  * <p>The caller isn't authorized to make the request.</p>
@@ -27,20 +27,7 @@ declare const CreateTableBucketCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Creates a table bucket. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-buckets-create.html">Creating a table bucket</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p>
31
- * <dl>
32
- * <dt>Permissions</dt>
33
- * <dd>
34
- * <ul>
35
- * <li>
36
- * <p>You must have the <code>s3tables:CreateTableBucket</code> permission to use this operation. </p>
37
- * </li>
38
- * <li>
39
- * <p>If you use this operation with the optional <code>encryptionConfiguration</code> parameter you must have the <code>s3tables:PutTableBucketEncryption</code> permission.</p>
40
- * </li>
41
- * </ul>
42
- * </dd>
43
- * </dl>
30
+ * <p>Creates a table bucket. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-buckets-create.html">Creating a table bucket</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p> <dl> <dt>Permissions</dt> <dd> <ul> <li> <p>You must have the <code>s3tables:CreateTableBucket</code> permission to use this operation. </p> </li> <li> <p>If you use this operation with the optional <code>encryptionConfiguration</code> parameter you must have the <code>s3tables:PutTableBucketEncryption</code> permission.</p> </li> </ul> </dd> </dl>
44
31
  * @example
45
32
  * Use a bare-bones client and the command you need to make an API call.
46
33
  * ```javascript
@@ -72,8 +59,7 @@ declare const CreateTableBucketCommand_base: {
72
59
  * <p>The request is invalid or malformed.</p>
73
60
  *
74
61
  * @throws {@link ConflictException} (client fault)
75
- * <p>The request failed because there is a conflict with a previous write. You can retry the
76
- * request.</p>
62
+ * <p>The request failed because there is a conflict with a previous write. You can retry the request.</p>
77
63
  *
78
64
  * @throws {@link ForbiddenException} (client fault)
79
65
  * <p>The caller isn't authorized to make the request.</p>
@@ -27,26 +27,7 @@ declare const CreateTableCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Creates a new table associated with the given namespace in a table bucket. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-create.html">Creating an Amazon S3 table</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p>
31
- * <dl>
32
- * <dt>Permissions</dt>
33
- * <dd>
34
- * <ul>
35
- * <li>
36
- * <p>You must have the <code>s3tables:CreateTable</code> permission to use this operation. </p>
37
- * </li>
38
- * <li>
39
- * <p>If you use this operation with the optional <code>metadata</code> request parameter you must have the <code>s3tables:PutTableData</code> permission. </p>
40
- * </li>
41
- * <li>
42
- * <p>If you use this operation with the optional <code>encryptionConfiguration</code> request parameter you must have the <code>s3tables:PutTableEncryption</code> permission. </p>
43
- * </li>
44
- * </ul>
45
- * <note>
46
- * <p>Additionally, </p>
47
- * </note>
48
- * </dd>
49
- * </dl>
30
+ * <p>Creates a new table associated with the given namespace in a table bucket. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-create.html">Creating an Amazon S3 table</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p> <dl> <dt>Permissions</dt> <dd> <ul> <li> <p>You must have the <code>s3tables:CreateTable</code> permission to use this operation. </p> </li> <li> <p>If you use this operation with the optional <code>metadata</code> request parameter you must have the <code>s3tables:PutTableData</code> permission. </p> </li> <li> <p>If you use this operation with the optional <code>encryptionConfiguration</code> request parameter you must have the <code>s3tables:PutTableEncryption</code> permission. </p> </li> </ul> <note> <p>Additionally, 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="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-kms-permissions.html">Permissions requirements for S3 Tables SSE-KMS encryption</a>. </p> </note> </dd> </dl>
50
31
  * @example
51
32
  * Use a bare-bones client and the command you need to make an API call.
52
33
  * ```javascript
@@ -95,8 +76,7 @@ declare const CreateTableCommand_base: {
95
76
  * <p>The request is invalid or malformed.</p>
96
77
  *
97
78
  * @throws {@link ConflictException} (client fault)
98
- * <p>The request failed because there is a conflict with a previous write. You can retry the
99
- * request.</p>
79
+ * <p>The request failed because there is a conflict with a previous write. You can retry the request.</p>
100
80
  *
101
81
  * @throws {@link ForbiddenException} (client fault)
102
82
  * <p>The caller isn't authorized to make the request.</p>
@@ -27,13 +27,7 @@ declare const DeleteNamespaceCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Deletes a namespace. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-namespace-delete.html">Delete a namespace</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p>
31
- * <dl>
32
- * <dt>Permissions</dt>
33
- * <dd>
34
- * <p>You must have the <code>s3tables:DeleteNamespace</code> permission to use this operation. </p>
35
- * </dd>
36
- * </dl>
30
+ * <p>Deletes a namespace. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-namespace-delete.html">Delete a namespace</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3tables:DeleteNamespace</code> permission to use this operation. </p> </dd> </dl>
37
31
  * @example
38
32
  * Use a bare-bones client and the command you need to make an API call.
39
33
  * ```javascript
@@ -60,8 +54,7 @@ declare const DeleteNamespaceCommand_base: {
60
54
  * <p>The request is invalid or malformed.</p>
61
55
  *
62
56
  * @throws {@link ConflictException} (client fault)
63
- * <p>The request failed because there is a conflict with a previous write. You can retry the
64
- * request.</p>
57
+ * <p>The request failed because there is a conflict with a previous write. You can retry the request.</p>
65
58
  *
66
59
  * @throws {@link ForbiddenException} (client fault)
67
60
  * <p>The caller isn't authorized to make the request.</p>
@@ -27,13 +27,7 @@ declare const DeleteTableBucketCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Deletes a table bucket. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-buckets-delete.html">Deleting a table bucket</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p>
31
- * <dl>
32
- * <dt>Permissions</dt>
33
- * <dd>
34
- * <p>You must have the <code>s3tables:DeleteTableBucket</code> permission to use this operation. </p>
35
- * </dd>
36
- * </dl>
30
+ * <p>Deletes a table bucket. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-buckets-delete.html">Deleting a table bucket</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3tables:DeleteTableBucket</code> permission to use this operation. </p> </dd> </dl>
37
31
  * @example
38
32
  * Use a bare-bones client and the command you need to make an API call.
39
33
  * ```javascript
@@ -59,8 +53,7 @@ declare const DeleteTableBucketCommand_base: {
59
53
  * <p>The request is invalid or malformed.</p>
60
54
  *
61
55
  * @throws {@link ConflictException} (client fault)
62
- * <p>The request failed because there is a conflict with a previous write. You can retry the
63
- * request.</p>
56
+ * <p>The request failed because there is a conflict with a previous write. You can retry the request.</p>
64
57
  *
65
58
  * @throws {@link ForbiddenException} (client fault)
66
59
  * <p>The caller isn't authorized to make the request.</p>
@@ -27,13 +27,7 @@ declare const DeleteTableBucketEncryptionCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Deletes the encryption configuration for a table bucket.</p>
31
- * <dl>
32
- * <dt>Permissions</dt>
33
- * <dd>
34
- * <p>You must have the <code>s3tables:DeleteTableBucketEncryption</code> permission to use this operation.</p>
35
- * </dd>
36
- * </dl>
30
+ * <p>Deletes the encryption configuration for a table bucket.</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3tables:DeleteTableBucketEncryption</code> permission to use this operation.</p> </dd> </dl>
37
31
  * @example
38
32
  * Use a bare-bones client and the command you need to make an API call.
39
33
  * ```javascript
@@ -59,8 +53,7 @@ declare const DeleteTableBucketEncryptionCommand_base: {
59
53
  * <p>The request is invalid or malformed.</p>
60
54
  *
61
55
  * @throws {@link ConflictException} (client fault)
62
- * <p>The request failed because there is a conflict with a previous write. You can retry the
63
- * request.</p>
56
+ * <p>The request failed because there is a conflict with a previous write. You can retry the request.</p>
64
57
  *
65
58
  * @throws {@link ForbiddenException} (client fault)
66
59
  * <p>The caller isn't authorized to make the request.</p>
@@ -27,13 +27,7 @@ declare const DeleteTableBucketPolicyCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Deletes a table bucket policy. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-bucket-policy.html#table-bucket-policy-delete">Deleting a table bucket policy</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p>
31
- * <dl>
32
- * <dt>Permissions</dt>
33
- * <dd>
34
- * <p>You must have the <code>s3tables:DeleteTableBucketPolicy</code> permission to use this operation. </p>
35
- * </dd>
36
- * </dl>
30
+ * <p>Deletes a table bucket policy. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-bucket-policy.html#table-bucket-policy-delete">Deleting a table bucket policy</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3tables:DeleteTableBucketPolicy</code> permission to use this operation. </p> </dd> </dl>
37
31
  * @example
38
32
  * Use a bare-bones client and the command you need to make an API call.
39
33
  * ```javascript
@@ -59,8 +53,7 @@ declare const DeleteTableBucketPolicyCommand_base: {
59
53
  * <p>The request is invalid or malformed.</p>
60
54
  *
61
55
  * @throws {@link ConflictException} (client fault)
62
- * <p>The request failed because there is a conflict with a previous write. You can retry the
63
- * request.</p>
56
+ * <p>The request failed because there is a conflict with a previous write. You can retry the request.</p>
64
57
  *
65
58
  * @throws {@link ForbiddenException} (client fault)
66
59
  * <p>The caller isn't authorized to make the request.</p>
@@ -27,13 +27,7 @@ declare const DeleteTableCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Deletes a table. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-delete.html">Deleting an Amazon S3 table</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p>
31
- * <dl>
32
- * <dt>Permissions</dt>
33
- * <dd>
34
- * <p>You must have the <code>s3tables:DeleteTable</code> permission to use this operation. </p>
35
- * </dd>
36
- * </dl>
30
+ * <p>Deletes a table. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-delete.html">Deleting an Amazon S3 table</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3tables:DeleteTable</code> permission to use this operation. </p> </dd> </dl>
37
31
  * @example
38
32
  * Use a bare-bones client and the command you need to make an API call.
39
33
  * ```javascript
@@ -62,8 +56,7 @@ declare const DeleteTableCommand_base: {
62
56
  * <p>The request is invalid or malformed.</p>
63
57
  *
64
58
  * @throws {@link ConflictException} (client fault)
65
- * <p>The request failed because there is a conflict with a previous write. You can retry the
66
- * request.</p>
59
+ * <p>The request failed because there is a conflict with a previous write. You can retry the request.</p>
67
60
  *
68
61
  * @throws {@link ForbiddenException} (client fault)
69
62
  * <p>The caller isn't authorized to make the request.</p>
@@ -27,13 +27,7 @@ declare const DeleteTablePolicyCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Deletes a table policy. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-table-policy.html#table-policy-delete">Deleting a table policy</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p>
31
- * <dl>
32
- * <dt>Permissions</dt>
33
- * <dd>
34
- * <p>You must have the <code>s3tables:DeleteTablePolicy</code> permission to use this operation. </p>
35
- * </dd>
36
- * </dl>
30
+ * <p>Deletes a table policy. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-table-policy.html#table-policy-delete">Deleting a table policy</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3tables:DeleteTablePolicy</code> permission to use this operation. </p> </dd> </dl>
37
31
  * @example
38
32
  * Use a bare-bones client and the command you need to make an API call.
39
33
  * ```javascript
@@ -61,8 +55,7 @@ declare const DeleteTablePolicyCommand_base: {
61
55
  * <p>The request is invalid or malformed.</p>
62
56
  *
63
57
  * @throws {@link ConflictException} (client fault)
64
- * <p>The request failed because there is a conflict with a previous write. You can retry the
65
- * request.</p>
58
+ * <p>The request failed because there is a conflict with a previous write. You can retry the request.</p>
66
59
  *
67
60
  * @throws {@link ForbiddenException} (client fault)
68
61
  * <p>The caller isn't authorized to make the request.</p>
@@ -27,13 +27,7 @@ declare const GetNamespaceCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Gets details about a namespace. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-namespace.html">Table namespaces</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p>
31
- * <dl>
32
- * <dt>Permissions</dt>
33
- * <dd>
34
- * <p>You must have the <code>s3tables:GetNamespace</code> permission to use this operation. </p>
35
- * </dd>
36
- * </dl>
30
+ * <p>Gets details about a namespace. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-namespace.html">Table namespaces</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3tables:GetNamespace</code> permission to use this operation. </p> </dd> </dl>
37
31
  * @example
38
32
  * Use a bare-bones client and the command you need to make an API call.
39
33
  * ```javascript
@@ -72,8 +66,7 @@ declare const GetNamespaceCommand_base: {
72
66
  * <p>The request is invalid or malformed.</p>
73
67
  *
74
68
  * @throws {@link ConflictException} (client fault)
75
- * <p>The request failed because there is a conflict with a previous write. You can retry the
76
- * request.</p>
69
+ * <p>The request failed because there is a conflict with a previous write. You can retry the request.</p>
77
70
  *
78
71
  * @throws {@link ForbiddenException} (client fault)
79
72
  * <p>The caller isn't authorized to make the request.</p>
@@ -27,13 +27,7 @@ declare const GetTableBucketCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Gets details on a table bucket. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-buckets-details.html">Viewing details about an Amazon S3 table bucket</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p>
31
- * <dl>
32
- * <dt>Permissions</dt>
33
- * <dd>
34
- * <p>You must have the <code>s3tables:GetTableBucket</code> permission to use this operation. </p>
35
- * </dd>
36
- * </dl>
30
+ * <p>Gets details on a table bucket. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-buckets-details.html">Viewing details about an Amazon S3 table bucket</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3tables:GetTableBucket</code> permission to use this operation. </p> </dd> </dl>
37
31
  * @example
38
32
  * Use a bare-bones client and the command you need to make an API call.
39
33
  * ```javascript
@@ -68,8 +62,7 @@ declare const GetTableBucketCommand_base: {
68
62
  * <p>The request is invalid or malformed.</p>
69
63
  *
70
64
  * @throws {@link ConflictException} (client fault)
71
- * <p>The request failed because there is a conflict with a previous write. You can retry the
72
- * request.</p>
65
+ * <p>The request failed because there is a conflict with a previous write. You can retry the request.</p>
73
66
  *
74
67
  * @throws {@link ForbiddenException} (client fault)
75
68
  * <p>The caller isn't authorized to make the request.</p>
@@ -27,13 +27,7 @@ declare const GetTableBucketEncryptionCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
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>
30
+ * <p>Gets the encryption configuration for a table bucket.</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3tables:GetTableBucketEncryption</code> permission to use this operation.</p> </dd> </dl>
37
31
  * @example
38
32
  * Use a bare-bones client and the command you need to make an API call.
39
33
  * ```javascript
@@ -27,13 +27,7 @@ declare const GetTableBucketMaintenanceConfigurationCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Gets details about a maintenance configuration for a given table bucket. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-table-buckets-maintenance.html">Amazon S3 table bucket maintenance</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p>
31
- * <dl>
32
- * <dt>Permissions</dt>
33
- * <dd>
34
- * <p>You must have the <code>s3tables:GetTableBucketMaintenanceConfiguration</code> permission to use this operation. </p>
35
- * </dd>
36
- * </dl>
30
+ * <p>Gets details about a maintenance configuration for a given table bucket. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-table-buckets-maintenance.html">Amazon S3 table bucket maintenance</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3tables:GetTableBucketMaintenanceConfiguration</code> permission to use this operation. </p> </dd> </dl>
37
31
  * @example
38
32
  * Use a bare-bones client and the command you need to make an API call.
39
33
  * ```javascript
@@ -72,8 +66,7 @@ declare const GetTableBucketMaintenanceConfigurationCommand_base: {
72
66
  * <p>The request is invalid or malformed.</p>
73
67
  *
74
68
  * @throws {@link ConflictException} (client fault)
75
- * <p>The request failed because there is a conflict with a previous write. You can retry the
76
- * request.</p>
69
+ * <p>The request failed because there is a conflict with a previous write. You can retry the request.</p>
77
70
  *
78
71
  * @throws {@link ForbiddenException} (client fault)
79
72
  * <p>The caller isn't authorized to make the request.</p>
@@ -27,13 +27,7 @@ declare const GetTableBucketPolicyCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Gets details about a table bucket policy. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-bucket-policy.html#table-bucket-policy-get">Viewing a table bucket policy</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p>
31
- * <dl>
32
- * <dt>Permissions</dt>
33
- * <dd>
34
- * <p>You must have the <code>s3tables:GetTableBucketPolicy</code> permission to use this operation. </p>
35
- * </dd>
36
- * </dl>
30
+ * <p>Gets details about a table bucket policy. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-bucket-policy.html#table-bucket-policy-get">Viewing a table bucket policy</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3tables:GetTableBucketPolicy</code> permission to use this operation. </p> </dd> </dl>
37
31
  * @example
38
32
  * Use a bare-bones client and the command you need to make an API call.
39
33
  * ```javascript
@@ -61,8 +55,7 @@ declare const GetTableBucketPolicyCommand_base: {
61
55
  * <p>The request is invalid or malformed.</p>
62
56
  *
63
57
  * @throws {@link ConflictException} (client fault)
64
- * <p>The request failed because there is a conflict with a previous write. You can retry the
65
- * request.</p>
58
+ * <p>The request failed because there is a conflict with a previous write. You can retry the request.</p>
66
59
  *
67
60
  * @throws {@link ForbiddenException} (client fault)
68
61
  * <p>The caller isn't authorized to make the request.</p>
@@ -23,17 +23,11 @@ export interface GetTableCommandOutput extends GetTableResponse, __MetadataBeare
23
23
  }
24
24
  declare const GetTableCommand_base: {
25
25
  new (input: GetTableCommandInput): import("@smithy/smithy-client").CommandImpl<GetTableCommandInput, GetTableCommandOutput, S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: GetTableCommandInput): import("@smithy/smithy-client").CommandImpl<GetTableCommandInput, GetTableCommandOutput, S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [GetTableCommandInput]): import("@smithy/smithy-client").CommandImpl<GetTableCommandInput, GetTableCommandOutput, S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Gets details about a table. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-tables.html">S3 Tables</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p>
31
- * <dl>
32
- * <dt>Permissions</dt>
33
- * <dd>
34
- * <p>You must have the <code>s3tables:GetTable</code> permission to use this operation. </p>
35
- * </dd>
36
- * </dl>
30
+ * <p>Gets details about a table. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-tables.html">S3 Tables</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3tables:GetTable</code> permission to use this operation. </p> </dd> </dl>
37
31
  * @example
38
32
  * Use a bare-bones client and the command you need to make an API call.
39
33
  * ```javascript
@@ -41,9 +35,10 @@ declare const GetTableCommand_base: {
41
35
  * // const { S3TablesClient, GetTableCommand } = require("@aws-sdk/client-s3tables"); // CommonJS import
42
36
  * const client = new S3TablesClient(config);
43
37
  * const input = { // GetTableRequest
44
- * tableBucketARN: "STRING_VALUE", // required
45
- * namespace: "STRING_VALUE", // required
46
- * name: "STRING_VALUE", // required
38
+ * tableBucketARN: "STRING_VALUE",
39
+ * namespace: "STRING_VALUE",
40
+ * name: "STRING_VALUE",
41
+ * tableArn: "STRING_VALUE",
47
42
  * };
48
43
  * const command = new GetTableCommand(input);
49
44
  * const response = await client.send(command);
@@ -83,8 +78,7 @@ declare const GetTableCommand_base: {
83
78
  * <p>The request is invalid or malformed.</p>
84
79
  *
85
80
  * @throws {@link ConflictException} (client fault)
86
- * <p>The request failed because there is a conflict with a previous write. You can retry the
87
- * request.</p>
81
+ * <p>The request failed because there is a conflict with a previous write. You can retry the request.</p>
88
82
  *
89
83
  * @throws {@link ForbiddenException} (client fault)
90
84
  * <p>The caller isn't authorized to make the request.</p>
@@ -27,13 +27,7 @@ declare const GetTableEncryptionCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
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>
30
+ * <p>Gets the encryption configuration for a table.</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3tables:GetTableEncryption</code> permission to use this operation.</p> </dd> </dl>
37
31
  * @example
38
32
  * Use a bare-bones client and the command you need to make an API call.
39
33
  * ```javascript
@@ -27,13 +27,7 @@ declare const GetTableMaintenanceConfigurationCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Gets details about the maintenance configuration of a table. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-maintenance.html">S3 Tables maintenance</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p>
31
- * <dl>
32
- * <dt>Permissions</dt>
33
- * <dd>
34
- * <p>You must have the <code>s3tables:GetTableMaintenanceConfiguration</code> permission to use this operation. </p>
35
- * </dd>
36
- * </dl>
30
+ * <p>Gets details about the maintenance configuration of a table. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-maintenance.html">S3 Tables maintenance</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3tables:GetTableMaintenanceConfiguration</code> permission to use this operation. </p> </dd> </dl>
37
31
  * @example
38
32
  * Use a bare-bones client and the command you need to make an API call.
39
33
  * ```javascript
@@ -77,8 +71,7 @@ declare const GetTableMaintenanceConfigurationCommand_base: {
77
71
  * <p>The request is invalid or malformed.</p>
78
72
  *
79
73
  * @throws {@link ConflictException} (client fault)
80
- * <p>The request failed because there is a conflict with a previous write. You can retry the
81
- * request.</p>
74
+ * <p>The request failed because there is a conflict with a previous write. You can retry the request.</p>
82
75
  *
83
76
  * @throws {@link ForbiddenException} (client fault)
84
77
  * <p>The caller isn't authorized to make the request.</p>
@@ -27,13 +27,7 @@ declare const GetTableMaintenanceJobStatusCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Gets the status of a maintenance job for a table. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-maintenance.html">S3 Tables maintenance</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p>
31
- * <dl>
32
- * <dt>Permissions</dt>
33
- * <dd>
34
- * <p>You must have the <code>s3tables:GetTableMaintenanceJobStatus</code> permission to use this operation. </p>
35
- * </dd>
36
- * </dl>
30
+ * <p>Gets the status of a maintenance job for a table. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-maintenance.html">S3 Tables maintenance</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3tables:GetTableMaintenanceJobStatus</code> permission to use this operation. </p> </dd> </dl>
37
31
  * @example
38
32
  * Use a bare-bones client and the command you need to make an API call.
39
33
  * ```javascript
@@ -70,8 +64,7 @@ declare const GetTableMaintenanceJobStatusCommand_base: {
70
64
  * <p>The request is invalid or malformed.</p>
71
65
  *
72
66
  * @throws {@link ConflictException} (client fault)
73
- * <p>The request failed because there is a conflict with a previous write. You can retry the
74
- * request.</p>
67
+ * <p>The request failed because there is a conflict with a previous write. You can retry the request.</p>
75
68
  *
76
69
  * @throws {@link ForbiddenException} (client fault)
77
70
  * <p>The caller isn't authorized to make the request.</p>
@@ -27,13 +27,7 @@ declare const GetTableMetadataLocationCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Gets the location of the table metadata.</p>
31
- * <dl>
32
- * <dt>Permissions</dt>
33
- * <dd>
34
- * <p>You must have the <code>s3tables:GetTableMetadataLocation</code> permission to use this operation. </p>
35
- * </dd>
36
- * </dl>
30
+ * <p>Gets the location of the table metadata.</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3tables:GetTableMetadataLocation</code> permission to use this operation. </p> </dd> </dl>
37
31
  * @example
38
32
  * Use a bare-bones client and the command you need to make an API call.
39
33
  * ```javascript
@@ -65,8 +59,7 @@ declare const GetTableMetadataLocationCommand_base: {
65
59
  * <p>The request is invalid or malformed.</p>
66
60
  *
67
61
  * @throws {@link ConflictException} (client fault)
68
- * <p>The request failed because there is a conflict with a previous write. You can retry the
69
- * request.</p>
62
+ * <p>The request failed because there is a conflict with a previous write. You can retry the request.</p>
70
63
  *
71
64
  * @throws {@link ForbiddenException} (client fault)
72
65
  * <p>The caller isn't authorized to make the request.</p>
@@ -27,13 +27,7 @@ declare const GetTablePolicyCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Gets details about a table policy. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-table-policy.html#table-policy-get">Viewing a table policy</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p>
31
- * <dl>
32
- * <dt>Permissions</dt>
33
- * <dd>
34
- * <p>You must have the <code>s3tables:GetTablePolicy</code> permission to use this operation. </p>
35
- * </dd>
36
- * </dl>
30
+ * <p>Gets details about a table policy. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-table-policy.html#table-policy-get">Viewing a table policy</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3tables:GetTablePolicy</code> permission to use this operation. </p> </dd> </dl>
37
31
  * @example
38
32
  * Use a bare-bones client and the command you need to make an API call.
39
33
  * ```javascript
@@ -63,8 +57,7 @@ declare const GetTablePolicyCommand_base: {
63
57
  * <p>The request is invalid or malformed.</p>
64
58
  *
65
59
  * @throws {@link ConflictException} (client fault)
66
- * <p>The request failed because there is a conflict with a previous write. You can retry the
67
- * request.</p>
60
+ * <p>The request failed because there is a conflict with a previous write. You can retry the request.</p>
68
61
  *
69
62
  * @throws {@link ForbiddenException} (client fault)
70
63
  * <p>The caller isn't authorized to make the request.</p>
@@ -27,13 +27,7 @@ declare const ListNamespacesCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Lists the namespaces within a table bucket. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-namespace.html">Table namespaces</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p>
31
- * <dl>
32
- * <dt>Permissions</dt>
33
- * <dd>
34
- * <p>You must have the <code>s3tables:ListNamespaces</code> permission to use this operation. </p>
35
- * </dd>
36
- * </dl>
30
+ * <p>Lists the namespaces within a table bucket. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-namespace.html">Table namespaces</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3tables:ListNamespaces</code> permission to use this operation. </p> </dd> </dl>
37
31
  * @example
38
32
  * Use a bare-bones client and the command you need to make an API call.
39
33
  * ```javascript
@@ -79,8 +73,7 @@ declare const ListNamespacesCommand_base: {
79
73
  * <p>The request is invalid or malformed.</p>
80
74
  *
81
75
  * @throws {@link ConflictException} (client fault)
82
- * <p>The request failed because there is a conflict with a previous write. You can retry the
83
- * request.</p>
76
+ * <p>The request failed because there is a conflict with a previous write. You can retry the request.</p>
84
77
  *
85
78
  * @throws {@link ForbiddenException} (client fault)
86
79
  * <p>The caller isn't authorized to make the request.</p>
@@ -27,13 +27,7 @@ declare const ListTableBucketsCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Lists table buckets for your account. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-buckets.html">S3 Table buckets</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p>
31
- * <dl>
32
- * <dt>Permissions</dt>
33
- * <dd>
34
- * <p>You must have the <code>s3tables:ListTableBuckets</code> permission to use this operation. </p>
35
- * </dd>
36
- * </dl>
30
+ * <p>Lists table buckets for your account. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-buckets.html">S3 Table buckets</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3tables:ListTableBuckets</code> permission to use this operation. </p> </dd> </dl>
37
31
  * @example
38
32
  * Use a bare-bones client and the command you need to make an API call.
39
33
  * ```javascript
@@ -75,8 +69,7 @@ declare const ListTableBucketsCommand_base: {
75
69
  * <p>The request is invalid or malformed.</p>
76
70
  *
77
71
  * @throws {@link ConflictException} (client fault)
78
- * <p>The request failed because there is a conflict with a previous write. You can retry the
79
- * request.</p>
72
+ * <p>The request failed because there is a conflict with a previous write. You can retry the request.</p>
80
73
  *
81
74
  * @throws {@link ForbiddenException} (client fault)
82
75
  * <p>The caller isn't authorized to make the request.</p>
@@ -27,13 +27,7 @@ declare const ListTablesCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>List tables in the given table bucket. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-tables.html">S3 Tables</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p>
31
- * <dl>
32
- * <dt>Permissions</dt>
33
- * <dd>
34
- * <p>You must have the <code>s3tables:ListTables</code> permission to use this operation. </p>
35
- * </dd>
36
- * </dl>
30
+ * <p>List tables in the given table bucket. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-tables.html">S3 Tables</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3tables:ListTables</code> permission to use this operation. </p> </dd> </dl>
37
31
  * @example
38
32
  * Use a bare-bones client and the command you need to make an API call.
39
33
  * ```javascript
@@ -79,8 +73,7 @@ declare const ListTablesCommand_base: {
79
73
  * <p>The request is invalid or malformed.</p>
80
74
  *
81
75
  * @throws {@link ConflictException} (client fault)
82
- * <p>The request failed because there is a conflict with a previous write. You can retry the
83
- * request.</p>
76
+ * <p>The request failed because there is a conflict with a previous write. You can retry the request.</p>
84
77
  *
85
78
  * @throws {@link ForbiddenException} (client fault)
86
79
  * <p>The caller isn't authorized to make the request.</p>
@@ -27,17 +27,7 @@ declare const PutTableBucketEncryptionCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
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>
30
+ * <p>Sets the encryption configuration for a table bucket.</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3tables:PutTableBucketEncryption</code> permission to use this operation.</p> <note> <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="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-kms-permissions.html">Permissions requirements for S3 Tables SSE-KMS encryption</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p> </note> </dd> </dl>
41
31
  * @example
42
32
  * Use a bare-bones client and the command you need to make an API call.
43
33
  * ```javascript
@@ -67,8 +57,7 @@ declare const PutTableBucketEncryptionCommand_base: {
67
57
  * <p>The request is invalid or malformed.</p>
68
58
  *
69
59
  * @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>
60
+ * <p>The request failed because there is a conflict with a previous write. You can retry the request.</p>
72
61
  *
73
62
  * @throws {@link ForbiddenException} (client fault)
74
63
  * <p>The caller isn't authorized to make the request.</p>
@@ -27,14 +27,7 @@ declare const PutTableBucketMaintenanceConfigurationCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Creates a new maintenance configuration or replaces an existing maintenance configuration
31
- * for a table bucket. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-table-buckets-maintenance.html">Amazon S3 table bucket maintenance</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p>
32
- * <dl>
33
- * <dt>Permissions</dt>
34
- * <dd>
35
- * <p>You must have the <code>s3tables:PutTableBucketMaintenanceConfiguration</code> permission to use this operation. </p>
36
- * </dd>
37
- * </dl>
30
+ * <p>Creates a new maintenance configuration or replaces an existing maintenance configuration for a table bucket. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-table-buckets-maintenance.html">Amazon S3 table bucket maintenance</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3tables:PutTableBucketMaintenanceConfiguration</code> permission to use this operation. </p> </dd> </dl>
38
31
  * @example
39
32
  * Use a bare-bones client and the command you need to make an API call.
40
33
  * ```javascript
@@ -70,8 +63,7 @@ declare const PutTableBucketMaintenanceConfigurationCommand_base: {
70
63
  * <p>The request is invalid or malformed.</p>
71
64
  *
72
65
  * @throws {@link ConflictException} (client fault)
73
- * <p>The request failed because there is a conflict with a previous write. You can retry the
74
- * request.</p>
66
+ * <p>The request failed because there is a conflict with a previous write. You can retry the request.</p>
75
67
  *
76
68
  * @throws {@link ForbiddenException} (client fault)
77
69
  * <p>The caller isn't authorized to make the request.</p>
@@ -27,14 +27,7 @@ declare const PutTableBucketPolicyCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Creates a new maintenance configuration or replaces an existing table bucket policy for a
31
- * table bucket. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-bucket-policy.html#table-bucket-policy-add">Adding a table bucket policy</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p>
32
- * <dl>
33
- * <dt>Permissions</dt>
34
- * <dd>
35
- * <p>You must have the <code>s3tables:PutTableBucketPolicy</code> permission to use this operation. </p>
36
- * </dd>
37
- * </dl>
30
+ * <p>Creates a new maintenance configuration or replaces an existing table bucket policy for a table bucket. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-bucket-policy.html#table-bucket-policy-add">Adding a table bucket policy</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3tables:PutTableBucketPolicy</code> permission to use this operation. </p> </dd> </dl>
38
31
  * @example
39
32
  * Use a bare-bones client and the command you need to make an API call.
40
33
  * ```javascript
@@ -61,8 +54,7 @@ declare const PutTableBucketPolicyCommand_base: {
61
54
  * <p>The request is invalid or malformed.</p>
62
55
  *
63
56
  * @throws {@link ConflictException} (client fault)
64
- * <p>The request failed because there is a conflict with a previous write. You can retry the
65
- * request.</p>
57
+ * <p>The request failed because there is a conflict with a previous write. You can retry the request.</p>
66
58
  *
67
59
  * @throws {@link ForbiddenException} (client fault)
68
60
  * <p>The caller isn't authorized to make the request.</p>
@@ -27,14 +27,7 @@ declare const PutTableMaintenanceConfigurationCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Creates a new maintenance configuration or replaces an existing maintenance configuration
31
- * for a table. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-maintenance.html">S3 Tables maintenance</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p>
32
- * <dl>
33
- * <dt>Permissions</dt>
34
- * <dd>
35
- * <p>You must have the <code>s3tables:PutTableMaintenanceConfiguration</code> permission to use this operation. </p>
36
- * </dd>
37
- * </dl>
30
+ * <p>Creates a new maintenance configuration or replaces an existing maintenance configuration for a table. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-maintenance.html">S3 Tables maintenance</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3tables:PutTableMaintenanceConfiguration</code> permission to use this operation. </p> </dd> </dl>
38
31
  * @example
39
32
  * Use a bare-bones client and the command you need to make an API call.
40
33
  * ```javascript
@@ -75,8 +68,7 @@ declare const PutTableMaintenanceConfigurationCommand_base: {
75
68
  * <p>The request is invalid or malformed.</p>
76
69
  *
77
70
  * @throws {@link ConflictException} (client fault)
78
- * <p>The request failed because there is a conflict with a previous write. You can retry the
79
- * request.</p>
71
+ * <p>The request failed because there is a conflict with a previous write. You can retry the request.</p>
80
72
  *
81
73
  * @throws {@link ForbiddenException} (client fault)
82
74
  * <p>The caller isn't authorized to make the request.</p>
@@ -27,14 +27,7 @@ declare const PutTablePolicyCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Creates a new maintenance configuration or replaces an existing table policy for a table. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-table-policy.html#table-policy-add">Adding a table policy</a> in the <i>Amazon Simple Storage Service User Guide</i>.
31
- * </p>
32
- * <dl>
33
- * <dt>Permissions</dt>
34
- * <dd>
35
- * <p>You must have the <code>s3tables:PutTablePolicy</code> permission to use this operation. </p>
36
- * </dd>
37
- * </dl>
30
+ * <p>Creates a new maintenance configuration or replaces an existing table policy for a table. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-table-policy.html#table-policy-add">Adding a table policy</a> in the <i>Amazon Simple Storage Service User Guide</i>. </p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3tables:PutTablePolicy</code> permission to use this operation. </p> </dd> </dl>
38
31
  * @example
39
32
  * Use a bare-bones client and the command you need to make an API call.
40
33
  * ```javascript
@@ -63,8 +56,7 @@ declare const PutTablePolicyCommand_base: {
63
56
  * <p>The request is invalid or malformed.</p>
64
57
  *
65
58
  * @throws {@link ConflictException} (client fault)
66
- * <p>The request failed because there is a conflict with a previous write. You can retry the
67
- * request.</p>
59
+ * <p>The request failed because there is a conflict with a previous write. You can retry the request.</p>
68
60
  *
69
61
  * @throws {@link ForbiddenException} (client fault)
70
62
  * <p>The caller isn't authorized to make the request.</p>
@@ -27,13 +27,7 @@ declare const RenameTableCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Renames a table or a namespace. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-tables.html">S3 Tables</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p>
31
- * <dl>
32
- * <dt>Permissions</dt>
33
- * <dd>
34
- * <p>You must have the <code>s3tables:RenameTable</code> permission to use this operation. </p>
35
- * </dd>
36
- * </dl>
30
+ * <p>Renames a table or a namespace. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-tables.html">S3 Tables</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3tables:RenameTable</code> permission to use this operation. </p> </dd> </dl>
37
31
  * @example
38
32
  * Use a bare-bones client and the command you need to make an API call.
39
33
  * ```javascript
@@ -64,8 +58,7 @@ declare const RenameTableCommand_base: {
64
58
  * <p>The request is invalid or malformed.</p>
65
59
  *
66
60
  * @throws {@link ConflictException} (client fault)
67
- * <p>The request failed because there is a conflict with a previous write. You can retry the
68
- * request.</p>
61
+ * <p>The request failed because there is a conflict with a previous write. You can retry the request.</p>
69
62
  *
70
63
  * @throws {@link ForbiddenException} (client fault)
71
64
  * <p>The caller isn't authorized to make the request.</p>
@@ -27,13 +27,7 @@ declare const UpdateTableMetadataLocationCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Updates the metadata location for a table. The metadata location of a table must be an S3 URI that begins with the table's warehouse location. The metadata location for an Apache Iceberg table must end with <code>.metadata.json</code>, or if the metadata file is Gzip-compressed, <code>.metadata.json.gz</code>.</p>
31
- * <dl>
32
- * <dt>Permissions</dt>
33
- * <dd>
34
- * <p>You must have the <code>s3tables:UpdateTableMetadataLocation</code> permission to use this operation. </p>
35
- * </dd>
36
- * </dl>
30
+ * <p>Updates the metadata location for a table. The metadata location of a table must be an S3 URI that begins with the table's warehouse location. The metadata location for an Apache Iceberg table must end with <code>.metadata.json</code>, or if the metadata file is Gzip-compressed, <code>.metadata.json.gz</code>.</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3tables:UpdateTableMetadataLocation</code> permission to use this operation. </p> </dd> </dl>
37
31
  * @example
38
32
  * Use a bare-bones client and the command you need to make an API call.
39
33
  * ```javascript
@@ -71,8 +65,7 @@ declare const UpdateTableMetadataLocationCommand_base: {
71
65
  * <p>The request is invalid or malformed.</p>
72
66
  *
73
67
  * @throws {@link ConflictException} (client fault)
74
- * <p>The request failed because there is a conflict with a previous write. You can retry the
75
- * request.</p>
68
+ * <p>The request failed because there is a conflict with a previous write. You can retry the request.</p>
76
69
  *
77
70
  * @throws {@link ForbiddenException} (client fault)
78
71
  * <p>The caller isn't authorized to make the request.</p>
@@ -25,8 +25,7 @@ export declare class BadRequestException extends __BaseException {
25
25
  constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
26
26
  }
27
27
  /**
28
- * <p>The request failed because there is a conflict with a previous write. You can retry the
29
- * request.</p>
28
+ * <p>The request failed because there is a conflict with a previous write. You can retry the request.</p>
30
29
  * @public
31
30
  */
32
31
  export declare class ConflictException extends __BaseException {
@@ -257,10 +256,7 @@ export interface CreateTableRequest {
257
256
  */
258
257
  metadata?: TableMetadata | undefined;
259
258
  /**
260
- * <p>The encryption configuration to use for the table. This configuration specifies the encryption algorithm and, if using SSE-KMS, the KMS key to use for encrypting the table. </p>
261
- * <note>
262
- * <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="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-kms-permissions.html">Permissions requirements for S3 Tables SSE-KMS encryption</a>.</p>
263
- * </note>
259
+ * <p>The encryption configuration to use for the table. This configuration specifies the encryption algorithm and, if using SSE-KMS, the KMS key to use for encrypting the table. </p> <note> <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="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-kms-permissions.html">Permissions requirements for S3 Tables SSE-KMS encryption</a>.</p> </note>
264
260
  * @public
265
261
  */
266
262
  encryptionConfiguration?: EncryptionConfiguration | undefined;
@@ -453,17 +449,22 @@ export interface GetTableRequest {
453
449
  * <p>The Amazon Resource Name (ARN) of the table bucket associated with the table.</p>
454
450
  * @public
455
451
  */
456
- tableBucketARN: string | undefined;
452
+ tableBucketARN?: string | undefined;
457
453
  /**
458
454
  * <p>The name of the namespace the table is associated with.</p>
459
455
  * @public
460
456
  */
461
- namespace: string | undefined;
457
+ namespace?: string | undefined;
462
458
  /**
463
459
  * <p>The name of the table.</p>
464
460
  * @public
465
461
  */
466
- name: string | undefined;
462
+ name?: string | undefined;
463
+ /**
464
+ * <p>The Amazon Resource Name (ARN) of the table.</p>
465
+ * @public
466
+ */
467
+ tableArn?: string | undefined;
467
468
  }
468
469
  /**
469
470
  * @public
@@ -627,8 +628,7 @@ export interface GetTableBucketEncryptionResponse {
627
628
  */
628
629
  export interface GetTableBucketMaintenanceConfigurationRequest {
629
630
  /**
630
- * <p>The Amazon Resource Name (ARN) of the table bucket associated with the maintenance
631
- * configuration.</p>
631
+ * <p>The Amazon Resource Name (ARN) of the table bucket associated with the maintenance configuration.</p>
632
632
  * @public
633
633
  */
634
634
  tableBucketARN: string | undefined;
@@ -723,8 +723,7 @@ export interface TableBucketMaintenanceConfigurationValue {
723
723
  */
724
724
  export interface GetTableBucketMaintenanceConfigurationResponse {
725
725
  /**
726
- * <p>The Amazon Resource Name (ARN) of the table bucket associated with the maintenance
727
- * configuration.</p>
726
+ * <p>The Amazon Resource Name (ARN) of the table bucket associated with the maintenance configuration.</p>
728
727
  * @public
729
728
  */
730
729
  tableBucketARN: string | undefined;
@@ -926,9 +925,7 @@ export interface GetTableMaintenanceJobStatusRequest {
926
925
  */
927
926
  tableBucketARN: string | undefined;
928
927
  /**
929
- * <p>The name of the namespace the table is associated with.
930
- *
931
- * </p>
928
+ * <p>The name of the namespace the table is associated with. </p>
932
929
  * @public
933
930
  */
934
931
  namespace: string | undefined;
@@ -1086,10 +1083,7 @@ export interface ListNamespacesRequest {
1086
1083
  */
1087
1084
  prefix?: string | undefined;
1088
1085
  /**
1089
- * <p>
1090
- * <code>ContinuationToken</code> indicates to Amazon S3 that the list is being continued on
1091
- * this bucket with a token. <code>ContinuationToken</code> is obfuscated and is not a real key.
1092
- * You can use this <code>ContinuationToken</code> for pagination of the list results.</p>
1086
+ * <p> <code>ContinuationToken</code> indicates to Amazon S3 that the list is being continued on this bucket with a token. <code>ContinuationToken</code> is obfuscated and is not a real key. You can use this <code>ContinuationToken</code> for pagination of the list results.</p>
1093
1087
  * @public
1094
1088
  */
1095
1089
  continuationToken?: string | undefined;
@@ -1160,10 +1154,7 @@ export interface ListTableBucketsRequest {
1160
1154
  */
1161
1155
  prefix?: string | undefined;
1162
1156
  /**
1163
- * <p>
1164
- * <code>ContinuationToken</code> indicates to Amazon S3 that the list is being continued on
1165
- * this bucket with a token. <code>ContinuationToken</code> is obfuscated and is not a real key.
1166
- * You can use this <code>ContinuationToken</code> for pagination of the list results.</p>
1157
+ * <p> <code>ContinuationToken</code> indicates to Amazon S3 that the list is being continued on this bucket with a token. <code>ContinuationToken</code> is obfuscated and is not a real key. You can use this <code>ContinuationToken</code> for pagination of the list results.</p>
1167
1158
  * @public
1168
1159
  */
1169
1160
  continuationToken?: string | undefined;
@@ -1239,10 +1230,7 @@ export interface ListTablesRequest {
1239
1230
  */
1240
1231
  prefix?: string | undefined;
1241
1232
  /**
1242
- * <p>
1243
- * <code>ContinuationToken</code> indicates to Amazon S3 that the list is being continued on
1244
- * this bucket with a token. <code>ContinuationToken</code> is obfuscated and is not a real key.
1245
- * You can use this <code>ContinuationToken</code> for pagination of the list results.</p>
1233
+ * <p> <code>ContinuationToken</code> indicates to Amazon S3 that the list is being continued on this bucket with a token. <code>ContinuationToken</code> is obfuscated and is not a real key. You can use this <code>ContinuationToken</code> for pagination of the list results.</p>
1246
1234
  * @public
1247
1235
  */
1248
1236
  continuationToken?: string | undefined;
@@ -1333,8 +1321,7 @@ export interface PutTableBucketEncryptionRequest {
1333
1321
  */
1334
1322
  export interface PutTableBucketMaintenanceConfigurationRequest {
1335
1323
  /**
1336
- * <p>The Amazon Resource Name (ARN) of the table bucket associated with the maintenance
1337
- * configuration.</p>
1324
+ * <p>The Amazon Resource Name (ARN) of the table bucket associated with the maintenance configuration.</p>
1338
1325
  * @public
1339
1326
  */
1340
1327
  tableBucketARN: string | undefined;
@@ -1369,8 +1356,7 @@ export interface PutTableBucketPolicyRequest {
1369
1356
  */
1370
1357
  export interface PutTableMaintenanceConfigurationRequest {
1371
1358
  /**
1372
- * <p>The Amazon Resource Name (ARN) of the table associated with the maintenance
1373
- * configuration.</p>
1359
+ * <p>The Amazon Resource Name (ARN) of the table associated with the maintenance configuration.</p>
1374
1360
  * @public
1375
1361
  */
1376
1362
  tableBucketARN: string | undefined;
@@ -251,6 +251,7 @@ export interface S3Tables {
251
251
  options: __HttpHandlerOptions,
252
252
  cb: (err: any, data?: GetNamespaceCommandOutput) => void
253
253
  ): void;
254
+ getTable(): Promise<GetTableCommandOutput>;
254
255
  getTable(
255
256
  args: GetTableCommandInput,
256
257
  options?: __HttpHandlerOptions
@@ -23,7 +23,7 @@ declare const GetTableCommand_base: {
23
23
  ServiceOutputTypes
24
24
  >;
25
25
  new (
26
- input: GetTableCommandInput
26
+ ...[input]: [] | [GetTableCommandInput]
27
27
  ): import("@smithy/smithy-client").CommandImpl<
28
28
  GetTableCommandInput,
29
29
  GetTableCommandOutput,
@@ -150,9 +150,10 @@ export interface GetNamespaceResponse {
150
150
  tableBucketId?: string | undefined;
151
151
  }
152
152
  export interface GetTableRequest {
153
- tableBucketARN: string | undefined;
154
- namespace: string | undefined;
155
- name: string | undefined;
153
+ tableBucketARN?: string | undefined;
154
+ namespace?: string | undefined;
155
+ name?: string | undefined;
156
+ tableArn?: string | undefined;
156
157
  }
157
158
  export declare const TableType: {
158
159
  readonly AWS: "aws";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-s3tables",
3
3
  "description": "AWS SDK for JavaScript S3tables Client for Node.js, Browser and React Native",
4
- "version": "3.825.0",
4
+ "version": "3.828.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,38 +20,38 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.825.0",
24
- "@aws-sdk/credential-provider-node": "3.825.0",
23
+ "@aws-sdk/core": "3.826.0",
24
+ "@aws-sdk/credential-provider-node": "3.828.0",
25
25
  "@aws-sdk/middleware-host-header": "3.821.0",
26
26
  "@aws-sdk/middleware-logger": "3.821.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.821.0",
28
- "@aws-sdk/middleware-user-agent": "3.825.0",
28
+ "@aws-sdk/middleware-user-agent": "3.828.0",
29
29
  "@aws-sdk/region-config-resolver": "3.821.0",
30
30
  "@aws-sdk/types": "3.821.0",
31
- "@aws-sdk/util-endpoints": "3.821.0",
31
+ "@aws-sdk/util-endpoints": "3.828.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.821.0",
33
- "@aws-sdk/util-user-agent-node": "3.825.0",
33
+ "@aws-sdk/util-user-agent-node": "3.828.0",
34
34
  "@smithy/config-resolver": "^4.1.4",
35
- "@smithy/core": "^3.5.2",
35
+ "@smithy/core": "^3.5.3",
36
36
  "@smithy/fetch-http-handler": "^5.0.4",
37
37
  "@smithy/hash-node": "^4.0.4",
38
38
  "@smithy/invalid-dependency": "^4.0.4",
39
39
  "@smithy/middleware-content-length": "^4.0.4",
40
- "@smithy/middleware-endpoint": "^4.1.10",
41
- "@smithy/middleware-retry": "^4.1.11",
40
+ "@smithy/middleware-endpoint": "^4.1.11",
41
+ "@smithy/middleware-retry": "^4.1.12",
42
42
  "@smithy/middleware-serde": "^4.0.8",
43
43
  "@smithy/middleware-stack": "^4.0.4",
44
44
  "@smithy/node-config-provider": "^4.1.3",
45
45
  "@smithy/node-http-handler": "^4.0.6",
46
46
  "@smithy/protocol-http": "^5.1.2",
47
- "@smithy/smithy-client": "^4.4.2",
47
+ "@smithy/smithy-client": "^4.4.3",
48
48
  "@smithy/types": "^4.3.1",
49
49
  "@smithy/url-parser": "^4.0.4",
50
50
  "@smithy/util-base64": "^4.0.0",
51
51
  "@smithy/util-body-length-browser": "^4.0.0",
52
52
  "@smithy/util-body-length-node": "^4.0.0",
53
- "@smithy/util-defaults-mode-browser": "^4.0.18",
54
- "@smithy/util-defaults-mode-node": "^4.0.18",
53
+ "@smithy/util-defaults-mode-browser": "^4.0.19",
54
+ "@smithy/util-defaults-mode-node": "^4.0.19",
55
55
  "@smithy/util-endpoints": "^3.0.6",
56
56
  "@smithy/util-middleware": "^4.0.4",
57
57
  "@smithy/util-retry": "^4.0.5",