@aws-sdk/client-glue 3.814.0 → 3.816.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.
@@ -53,6 +53,7 @@ declare const CreateIntegrationTablePropertiesCommand_base: {
53
53
  * { // IntegrationPartition
54
54
  * FieldName: "STRING_VALUE",
55
55
  * FunctionSpec: "STRING_VALUE",
56
+ * ConversionSpec: "STRING_VALUE",
56
57
  * },
57
58
  * ],
58
59
  * TargetTableName: "STRING_VALUE",
@@ -59,6 +59,7 @@ declare const GetIntegrationTablePropertiesCommand_base: {
59
59
  * // { // IntegrationPartition
60
60
  * // FieldName: "STRING_VALUE",
61
61
  * // FunctionSpec: "STRING_VALUE",
62
+ * // ConversionSpec: "STRING_VALUE",
62
63
  * // },
63
64
  * // ],
64
65
  * // TargetTableName: "STRING_VALUE",
@@ -54,6 +54,7 @@ declare const UpdateIntegrationTablePropertiesCommand_base: {
54
54
  * { // IntegrationPartition
55
55
  * FieldName: "STRING_VALUE",
56
56
  * FunctionSpec: "STRING_VALUE",
57
+ * ConversionSpec: "STRING_VALUE",
57
58
  * },
58
59
  * ],
59
60
  * TargetTableName: "STRING_VALUE",
@@ -2322,6 +2322,48 @@ export interface IntegrationPartition {
2322
2322
  * @public
2323
2323
  */
2324
2324
  FunctionSpec?: string | undefined;
2325
+ /**
2326
+ * <p>Specifies the timestamp format of the source data. Valid values are:</p>
2327
+ * <ul>
2328
+ * <li>
2329
+ * <p>
2330
+ * <code>epoch_sec</code> - Unix epoch timestamp in seconds</p>
2331
+ * </li>
2332
+ * <li>
2333
+ * <p>
2334
+ * <code>epoch_milli</code> - Unix epoch timestamp in milliseconds</p>
2335
+ * </li>
2336
+ * <li>
2337
+ * <p>
2338
+ * <code>iso</code> - ISO 8601 formatted timestamp</p>
2339
+ * </li>
2340
+ * </ul>
2341
+ * <note>
2342
+ * <p>
2343
+ * Only specify <code>ConversionSpec</code> when using timestamp-based partition functions (year, month, day, or hour).
2344
+ * Glue Zero-ETL uses this parameter to correctly transform source data into timestamp format before partitioning.
2345
+ * </p>
2346
+ * <p>
2347
+ * Do not use high-cardinality columns with the <code>identity</code> partition function. High-cardinality columns include:
2348
+ * </p>
2349
+ * <ul>
2350
+ * <li>
2351
+ * <p>Primary keys</p>
2352
+ * </li>
2353
+ * <li>
2354
+ * <p>Timestamp fields (such as <code>LastModifiedTimestamp</code>, <code>CreatedDate</code>)</p>
2355
+ * </li>
2356
+ * <li>
2357
+ * <p>System-generated timestamps</p>
2358
+ * </li>
2359
+ * </ul>
2360
+ * <p>
2361
+ * Using high-cardinality columns with identity partitioning creates many small partitions, which can significantly degrade ingestion performance.
2362
+ * </p>
2363
+ * </note>
2364
+ * @public
2365
+ */
2366
+ ConversionSpec?: string | undefined;
2325
2367
  }
2326
2368
  /**
2327
2369
  * @public
@@ -2362,7 +2404,10 @@ export interface TargetTableConfig {
2362
2404
  */
2363
2405
  export interface CreateIntegrationTablePropertiesRequest {
2364
2406
  /**
2365
- * <p>The connection ARN of the source, or the database ARN of the target.</p>
2407
+ * <p>The Amazon Resource Name (ARN) of the target table for which to create integration table properties. Currently, this API only supports creating
2408
+ * integration table properties for target tables, and the provided ARN should be the ARN of the target table in the Glue Data Catalog. Support for
2409
+ * creating integration table properties for source connections (using the connection ARN) is not yet implemented and will be added in a future release.
2410
+ * </p>
2366
2411
  * @public
2367
2412
  */
2368
2413
  ResourceArn: string | undefined;
@@ -1790,7 +1790,10 @@ export interface GetIntegrationResourcePropertyResponse {
1790
1790
  */
1791
1791
  export interface GetIntegrationTablePropertiesRequest {
1792
1792
  /**
1793
- * <p>The connection ARN of the source, or the database ARN of the target.</p>
1793
+ * <p>The Amazon Resource Name (ARN) of the target table for which to retrieve integration table properties. Currently, this API only supports retrieving
1794
+ * properties for target tables, and the provided ARN should be the ARN of the target table in the Glue Data Catalog. Support for retrieving integration
1795
+ * table properties for source connections (using the connection ARN) is not yet implemented and will be added in a future release.
1796
+ * </p>
1794
1797
  * @public
1795
1798
  */
1796
1799
  ResourceArn: string | undefined;
@@ -1805,7 +1808,10 @@ export interface GetIntegrationTablePropertiesRequest {
1805
1808
  */
1806
1809
  export interface GetIntegrationTablePropertiesResponse {
1807
1810
  /**
1808
- * <p>The connection ARN of the source, or the database ARN of the target.</p>
1811
+ * <p>The Amazon Resource Name (ARN) of the target table for which to retrieve integration table properties. Currently, this API only supports retrieving
1812
+ * properties for target tables, and the provided ARN should be the ARN of the target table in the Glue Data Catalog. Support for retrieving integration
1813
+ * table properties for source connections (using the connection ARN) is not yet implemented and will be added in a future release.
1814
+ * </p>
1809
1815
  * @public
1810
1816
  */
1811
1817
  ResourceArn?: string | undefined;
@@ -673,6 +673,7 @@ export interface SourceTableConfig {
673
673
  export interface IntegrationPartition {
674
674
  FieldName?: string | undefined;
675
675
  FunctionSpec?: string | undefined;
676
+ ConversionSpec?: string | undefined;
676
677
  }
677
678
  export declare const UnnestSpec: {
678
679
  readonly FULL: "FULL";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-glue",
3
3
  "description": "AWS SDK for JavaScript Glue Client for Node.js, Browser and React Native",
4
- "version": "3.814.0",
4
+ "version": "3.816.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-glue",
@@ -20,17 +20,17 @@
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.812.0",
24
- "@aws-sdk/credential-provider-node": "3.812.0",
23
+ "@aws-sdk/core": "3.816.0",
24
+ "@aws-sdk/credential-provider-node": "3.816.0",
25
25
  "@aws-sdk/middleware-host-header": "3.804.0",
26
26
  "@aws-sdk/middleware-logger": "3.804.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.804.0",
28
- "@aws-sdk/middleware-user-agent": "3.812.0",
28
+ "@aws-sdk/middleware-user-agent": "3.816.0",
29
29
  "@aws-sdk/region-config-resolver": "3.808.0",
30
30
  "@aws-sdk/types": "3.804.0",
31
31
  "@aws-sdk/util-endpoints": "3.808.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.804.0",
33
- "@aws-sdk/util-user-agent-node": "3.812.0",
33
+ "@aws-sdk/util-user-agent-node": "3.816.0",
34
34
  "@smithy/config-resolver": "^4.1.2",
35
35
  "@smithy/core": "^3.3.3",
36
36
  "@smithy/fetch-http-handler": "^5.0.2",