@aws-sdk/client-glue 3.868.0 → 3.869.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.
package/dist-cjs/index.js CHANGED
@@ -10925,6 +10925,7 @@ var de_ModifyIntegrationResponse = /* @__PURE__ */ __name((output, context) => {
10925
10925
  Description: import_smithy_client.expectString,
10926
10926
  Errors: import_smithy_client._json,
10927
10927
  IntegrationArn: import_smithy_client.expectString,
10928
+ IntegrationConfig: import_smithy_client._json,
10928
10929
  IntegrationName: import_smithy_client.expectString,
10929
10930
  KmsKeyId: import_smithy_client.expectString,
10930
10931
  SourceArn: import_smithy_client.expectString,
@@ -8205,6 +8205,7 @@ const de_ModifyIntegrationResponse = (output, context) => {
8205
8205
  Description: __expectString,
8206
8206
  Errors: _json,
8207
8207
  IntegrationArn: __expectString,
8208
+ IntegrationConfig: _json,
8208
8209
  IntegrationName: __expectString,
8209
8210
  KmsKeyId: __expectString,
8210
8211
  SourceArn: __expectString,
@@ -55,6 +55,7 @@ declare const CreateIntegrationCommand_base: {
55
55
  * SourceProperties: { // IntegrationSourcePropertiesMap
56
56
  * "<keys>": "STRING_VALUE",
57
57
  * },
58
+ * ContinuousSync: true || false,
58
59
  * },
59
60
  * };
60
61
  * const command = new CreateIntegrationCommand(input);
@@ -89,6 +90,7 @@ declare const CreateIntegrationCommand_base: {
89
90
  * // SourceProperties: { // IntegrationSourcePropertiesMap
90
91
  * // "<keys>": "STRING_VALUE",
91
92
  * // },
93
+ * // ContinuousSync: true || false,
92
94
  * // },
93
95
  * // };
94
96
  *
@@ -55,6 +55,7 @@ declare const DescribeInboundIntegrationsCommand_base: {
55
55
  * // SourceProperties: { // IntegrationSourcePropertiesMap
56
56
  * // "<keys>": "STRING_VALUE",
57
57
  * // },
58
+ * // ContinuousSync: true || false,
58
59
  * // },
59
60
  * // Errors: [ // IntegrationErrorList
60
61
  * // { // IntegrationError
@@ -74,6 +74,7 @@ declare const DescribeIntegrationsCommand_base: {
74
74
  * // SourceProperties: { // IntegrationSourcePropertiesMap
75
75
  * // "<keys>": "STRING_VALUE",
76
76
  * // },
77
+ * // ContinuousSync: true || false,
77
78
  * // },
78
79
  * // Errors: [ // IntegrationErrorList
79
80
  * // { // IntegrationError
@@ -38,6 +38,13 @@ declare const ModifyIntegrationCommand_base: {
38
38
  * IntegrationIdentifier: "STRING_VALUE", // required
39
39
  * Description: "STRING_VALUE",
40
40
  * DataFilter: "STRING_VALUE",
41
+ * IntegrationConfig: { // IntegrationConfig
42
+ * RefreshInterval: "STRING_VALUE",
43
+ * SourceProperties: { // IntegrationSourcePropertiesMap
44
+ * "<keys>": "STRING_VALUE",
45
+ * },
46
+ * ContinuousSync: true || false,
47
+ * },
41
48
  * IntegrationName: "STRING_VALUE",
42
49
  * };
43
50
  * const command = new ModifyIntegrationCommand(input);
@@ -67,6 +74,13 @@ declare const ModifyIntegrationCommand_base: {
67
74
  * // },
68
75
  * // ],
69
76
  * // DataFilter: "STRING_VALUE",
77
+ * // IntegrationConfig: { // IntegrationConfig
78
+ * // RefreshInterval: "STRING_VALUE",
79
+ * // SourceProperties: { // IntegrationSourcePropertiesMap
80
+ * // "<keys>": "STRING_VALUE",
81
+ * // },
82
+ * // ContinuousSync: true || false,
83
+ * // },
70
84
  * // };
71
85
  *
72
86
  * ```
@@ -2622,6 +2622,12 @@ export interface IntegrationConfig {
2622
2622
  * @public
2623
2623
  */
2624
2624
  SourceProperties?: Record<string, string> | undefined;
2625
+ /**
2626
+ * <p>Enables continuous synchronization for on-demand data extractions from SaaS applications to Amazon Web Services data services like Amazon Redshift
2627
+ * and Amazon S3.</p>
2628
+ * @public
2629
+ */
2630
+ ContinuousSync?: boolean | undefined;
2625
2631
  }
2626
2632
  /**
2627
2633
  * <p>The <code>Tag</code> object represents a label that you can assign to an Amazon Web Services resource. Each tag consists of a key and an optional value, both of which you define.</p>
@@ -3021,9 +3027,29 @@ export interface IntegrationPartition {
3021
3027
  */
3022
3028
  FieldName?: string | undefined;
3023
3029
  /**
3024
- * <p>Specifies the function used to partition data on the target. The only accepted value for this parameter is `'identity'` (string).
3025
- * The `'identity'` function ensures that the data partitioning on the target follows the same scheme as the source. In other words, the partitioning
3026
- * structure of the source data is preserved in the target destination.</p>
3030
+ * <p>Specifies the function used to partition data on the target. The accepted values for this parameter are:</p>
3031
+ * <ul>
3032
+ * <li>
3033
+ * <p>
3034
+ * <code>identity</code> - Uses source values directly without transformation</p>
3035
+ * </li>
3036
+ * <li>
3037
+ * <p>
3038
+ * <code>year</code> - Extracts the year from timestamp values (e.g., 2023)</p>
3039
+ * </li>
3040
+ * <li>
3041
+ * <p>
3042
+ * <code>month</code> - Extracts the month from timestamp values (e.g., 2023-01)</p>
3043
+ * </li>
3044
+ * <li>
3045
+ * <p>
3046
+ * <code>day</code> - Extracts the day from timestamp values (e.g., 2023-01-15)</p>
3047
+ * </li>
3048
+ * <li>
3049
+ * <p>
3050
+ * <code>hour</code> - Extracts the hour from timestamp values (e.g., 2023-01-15-14)</p>
3051
+ * </li>
3052
+ * </ul>
3027
3053
  * @public
3028
3054
  */
3029
3055
  FunctionSpec?: string | undefined;
@@ -1,7 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { GlueServiceException as __BaseException } from "./GlueServiceException";
3
3
  import { Action, Aggregate, AmazonRedshiftSource, AmazonRedshiftTarget, AthenaConnectorSource, AuthenticationConfigurationInput, BasicCatalogTarget, CatalogDeltaSource, CatalogHudiSource, CatalogIcebergSource, CatalogKafkaSource, CatalogKinesisSource, CatalogSource, Column, ConnectionsList, ConnectorDataSource, ConnectorDataTarget, CrawlerTargets, CustomCode, DataSource, DirectJDBCSource, DirectKafkaSource, DirectKinesisSource, DropDuplicates, DropFields, DropNullFields, DynamicTransform, DynamoDBCatalogSource, DynamoDBELTConnectorSource, ErrorDetail, EvaluateDataQuality, EvaluateDataQualityMultiFrame, EventBatchingCondition, ExecutionClass, ExecutionProperty, FillMissingValues, Filter, GovernedCatalogSource, GovernedCatalogTarget, InclusionAnnotationValue, JDBCConnectorSource, JDBCConnectorTarget, JobCommand, JobMode, Join, LakeFormationConfiguration, LineageConfiguration, Merge, MicrosoftSQLServerCatalogSource, MicrosoftSQLServerCatalogTarget, MySQLCatalogSource, MySQLCatalogTarget, NotificationProperty, OracleSQLCatalogSource, OracleSQLCatalogTarget, PartitionInput, PIIDetection, PostgreSQLCatalogSource, PostgreSQLCatalogTarget, Predicate, Recipe, RecrawlPolicy, RedshiftSource, RedshiftTarget, RelationalCatalogSource, RenameField, Route, S3CatalogDeltaSource, S3CatalogHudiSource, S3CatalogIcebergSource, S3CatalogSource, S3CatalogTarget, S3CsvSource, S3DeltaCatalogTarget, S3DeltaDirectTarget, S3DeltaSource, S3DirectTarget, S3ExcelSource, S3GlueParquetTarget, S3HudiCatalogTarget, S3HudiDirectTarget, S3HudiSource, S3HyperDirectTarget, S3IcebergCatalogTarget, S3IcebergDirectTarget, S3JsonSource, S3ParquetSource, SchemaChangePolicy, SchemaId, SelectFields, SelectFromCollection, SnowflakeSource, SnowflakeTarget, SourceControlAuthStrategy, SourceControlDetails, SourceControlProvider, SparkConnectorSource, SparkConnectorTarget, SparkSQL, Spigot, SplitFields, StorageDescriptor, TableOptimizerConfiguration, TableOptimizerRun, TableOptimizerType, Trigger, Union, WorkerType } from "./models_0";
4
- import { CatalogInput, Compatibility, ConnectionInput, ConnectionPropertyKey, ConnectionType, CsvHeaderOption, CsvSerdeOption, DatabaseInput, IcebergPartitionSpec, IcebergSchema, IcebergSortOrder, IntegrationError, IntegrationStatus, Permission, ProfileConfiguration, RegistryId, SchemaVersionStatus, SourceProcessingProperties, SourceTableConfig, TableIdentifier, TableInput, Tag, TargetProcessingProperties, TargetTableConfig, TransformParameters, UserDefinedFunctionInput } from "./models_1";
4
+ import { CatalogInput, Compatibility, ConnectionInput, ConnectionPropertyKey, ConnectionType, CsvHeaderOption, CsvSerdeOption, DatabaseInput, IcebergPartitionSpec, IcebergSchema, IcebergSortOrder, IntegrationConfig, IntegrationError, IntegrationStatus, Permission, ProfileConfiguration, RegistryId, SchemaVersionStatus, SourceProcessingProperties, SourceTableConfig, TableIdentifier, TableInput, Tag, TargetProcessingProperties, TargetTableConfig, TransformParameters, UserDefinedFunctionInput } from "./models_1";
5
5
  import { ColumnRowFilter, ColumnStatistics, DataCatalogEncryptionSettings, DataQualityEvaluationRunAdditionalRunOptions, FederatedTable, JobBookmarkEntry, ResourceAction, ResourceShareType, ResourceState, SchemaVersionNumber, ViewDefinition, ViewValidation } from "./models_2";
6
6
  /**
7
7
  * @public
@@ -180,6 +180,11 @@ export interface ModifyIntegrationRequest {
180
180
  * @public
181
181
  */
182
182
  DataFilter?: string | undefined;
183
+ /**
184
+ * <p>Properties associated with the integration.</p>
185
+ * @public
186
+ */
187
+ IntegrationConfig?: IntegrationConfig | undefined;
183
188
  /**
184
189
  * <p>A unique name for an integration in Glue.</p>
185
190
  * @public
@@ -274,6 +279,11 @@ export interface ModifyIntegrationResponse {
274
279
  * @public
275
280
  */
276
281
  DataFilter?: string | undefined;
282
+ /**
283
+ * <p>Properties associated with the integration.</p>
284
+ * @public
285
+ */
286
+ IntegrationConfig?: IntegrationConfig | undefined;
277
287
  }
278
288
  /**
279
289
  * @public
@@ -702,6 +702,7 @@ export declare class ConflictException extends __BaseException {
702
702
  export interface IntegrationConfig {
703
703
  RefreshInterval?: string | undefined;
704
704
  SourceProperties?: Record<string, string> | undefined;
705
+ ContinuousSync?: boolean | undefined;
705
706
  }
706
707
  export interface Tag {
707
708
  key?: string | undefined;
@@ -122,6 +122,7 @@ import {
122
122
  IcebergPartitionSpec,
123
123
  IcebergSchema,
124
124
  IcebergSortOrder,
125
+ IntegrationConfig,
125
126
  IntegrationError,
126
127
  IntegrationStatus,
127
128
  Permission,
@@ -195,6 +196,7 @@ export interface ModifyIntegrationRequest {
195
196
  IntegrationIdentifier: string | undefined;
196
197
  Description?: string | undefined;
197
198
  DataFilter?: string | undefined;
199
+ IntegrationConfig?: IntegrationConfig | undefined;
198
200
  IntegrationName?: string | undefined;
199
201
  }
200
202
  export interface ModifyIntegrationResponse {
@@ -210,6 +212,7 @@ export interface ModifyIntegrationResponse {
210
212
  CreateTime: Date | undefined;
211
213
  Errors?: IntegrationError[] | undefined;
212
214
  DataFilter?: string | undefined;
215
+ IntegrationConfig?: IntegrationConfig | undefined;
213
216
  }
214
217
  export interface PutDataCatalogEncryptionSettingsRequest {
215
218
  CatalogId?: string | undefined;
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.868.0",
4
+ "version": "3.869.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",