@aws-sdk/client-glue 3.812.0 → 3.814.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 +25 -25
- package/dist-es/models/models_2.js +0 -14
- package/dist-es/models/models_3.js +14 -0
- package/dist-es/protocols/Aws_json1_1.js +2 -2
- package/dist-types/commands/ListConnectionTypesCommand.d.ts +14 -0
- package/dist-types/models/models_2.d.ts +55 -17
- package/dist-types/models/models_3.d.ts +17 -0
- package/dist-types/ts3.4/models/models_2.d.ts +11 -11
- package/dist-types/ts3.4/models/models_3.d.ts +11 -0
- package/package.json +1 -1
package/dist-cjs/index.js
CHANGED
|
@@ -2391,30 +2391,6 @@ var ExistCondition = {
|
|
|
2391
2391
|
NONE: "NONE",
|
|
2392
2392
|
NOT_EXIST: "NOT_EXIST"
|
|
2393
2393
|
};
|
|
2394
|
-
var ConcurrentRunsExceededException = class _ConcurrentRunsExceededException extends GlueServiceException {
|
|
2395
|
-
static {
|
|
2396
|
-
__name(this, "ConcurrentRunsExceededException");
|
|
2397
|
-
}
|
|
2398
|
-
name = "ConcurrentRunsExceededException";
|
|
2399
|
-
$fault = "client";
|
|
2400
|
-
/**
|
|
2401
|
-
* <p>A message describing the problem.</p>
|
|
2402
|
-
* @public
|
|
2403
|
-
*/
|
|
2404
|
-
Message;
|
|
2405
|
-
/**
|
|
2406
|
-
* @internal
|
|
2407
|
-
*/
|
|
2408
|
-
constructor(opts) {
|
|
2409
|
-
super({
|
|
2410
|
-
name: "ConcurrentRunsExceededException",
|
|
2411
|
-
$fault: "client",
|
|
2412
|
-
...opts
|
|
2413
|
-
});
|
|
2414
|
-
Object.setPrototypeOf(this, _ConcurrentRunsExceededException.prototype);
|
|
2415
|
-
this.Message = opts.Message;
|
|
2416
|
-
}
|
|
2417
|
-
};
|
|
2418
2394
|
var GetDataQualityResultResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2419
2395
|
...obj,
|
|
2420
2396
|
...obj.RuleResults && { RuleResults: obj.RuleResults.map((item) => DataQualityRuleResultFilterSensitiveLog(item)) },
|
|
@@ -2440,6 +2416,30 @@ var ListDataQualityStatisticsResponseFilterSensitiveLog = /* @__PURE__ */ __name
|
|
|
2440
2416
|
|
|
2441
2417
|
// src/models/models_3.ts
|
|
2442
2418
|
|
|
2419
|
+
var ConcurrentRunsExceededException = class _ConcurrentRunsExceededException extends GlueServiceException {
|
|
2420
|
+
static {
|
|
2421
|
+
__name(this, "ConcurrentRunsExceededException");
|
|
2422
|
+
}
|
|
2423
|
+
name = "ConcurrentRunsExceededException";
|
|
2424
|
+
$fault = "client";
|
|
2425
|
+
/**
|
|
2426
|
+
* <p>A message describing the problem.</p>
|
|
2427
|
+
* @public
|
|
2428
|
+
*/
|
|
2429
|
+
Message;
|
|
2430
|
+
/**
|
|
2431
|
+
* @internal
|
|
2432
|
+
*/
|
|
2433
|
+
constructor(opts) {
|
|
2434
|
+
super({
|
|
2435
|
+
name: "ConcurrentRunsExceededException",
|
|
2436
|
+
$fault: "client",
|
|
2437
|
+
...opts
|
|
2438
|
+
});
|
|
2439
|
+
Object.setPrototypeOf(this, _ConcurrentRunsExceededException.prototype);
|
|
2440
|
+
this.Message = opts.Message;
|
|
2441
|
+
}
|
|
2442
|
+
};
|
|
2443
2443
|
var IllegalWorkflowStateException = class _IllegalWorkflowStateException extends GlueServiceException {
|
|
2444
2444
|
static {
|
|
2445
2445
|
__name(this, "IllegalWorkflowStateException");
|
|
@@ -15868,11 +15868,11 @@ var paginateSearchTables = (0, import_core.createPaginator)(GlueClient, SearchTa
|
|
|
15868
15868
|
StatisticEvaluationLevel,
|
|
15869
15869
|
EnableHybridValues,
|
|
15870
15870
|
ExistCondition,
|
|
15871
|
-
ConcurrentRunsExceededException,
|
|
15872
15871
|
GetDataQualityResultResponseFilterSensitiveLog,
|
|
15873
15872
|
GetEntityRecordsResponseFilterSensitiveLog,
|
|
15874
15873
|
StatisticSummaryFilterSensitiveLog,
|
|
15875
15874
|
ListDataQualityStatisticsResponseFilterSensitiveLog,
|
|
15875
|
+
ConcurrentRunsExceededException,
|
|
15876
15876
|
IllegalWorkflowStateException,
|
|
15877
15877
|
Comparator,
|
|
15878
15878
|
Sort,
|
|
@@ -157,20 +157,6 @@ export const ExistCondition = {
|
|
|
157
157
|
NONE: "NONE",
|
|
158
158
|
NOT_EXIST: "NOT_EXIST",
|
|
159
159
|
};
|
|
160
|
-
export class ConcurrentRunsExceededException extends __BaseException {
|
|
161
|
-
name = "ConcurrentRunsExceededException";
|
|
162
|
-
$fault = "client";
|
|
163
|
-
Message;
|
|
164
|
-
constructor(opts) {
|
|
165
|
-
super({
|
|
166
|
-
name: "ConcurrentRunsExceededException",
|
|
167
|
-
$fault: "client",
|
|
168
|
-
...opts,
|
|
169
|
-
});
|
|
170
|
-
Object.setPrototypeOf(this, ConcurrentRunsExceededException.prototype);
|
|
171
|
-
this.Message = opts.Message;
|
|
172
|
-
}
|
|
173
|
-
}
|
|
174
160
|
export const GetDataQualityResultResponseFilterSensitiveLog = (obj) => ({
|
|
175
161
|
...obj,
|
|
176
162
|
...(obj.RuleResults && { RuleResults: obj.RuleResults.map((item) => DataQualityRuleResultFilterSensitiveLog(item)) }),
|
|
@@ -2,6 +2,20 @@ import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
|
2
2
|
import { GlueServiceException as __BaseException } from "./GlueServiceException";
|
|
3
3
|
import { AuthenticationConfigurationInputFilterSensitiveLog, } from "./models_0";
|
|
4
4
|
import { ConnectionInputFilterSensitiveLog, } from "./models_1";
|
|
5
|
+
export class ConcurrentRunsExceededException extends __BaseException {
|
|
6
|
+
name = "ConcurrentRunsExceededException";
|
|
7
|
+
$fault = "client";
|
|
8
|
+
Message;
|
|
9
|
+
constructor(opts) {
|
|
10
|
+
super({
|
|
11
|
+
name: "ConcurrentRunsExceededException",
|
|
12
|
+
$fault: "client",
|
|
13
|
+
...opts,
|
|
14
|
+
});
|
|
15
|
+
Object.setPrototypeOf(this, ConcurrentRunsExceededException.prototype);
|
|
16
|
+
this.Message = opts.Message;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
5
19
|
export class IllegalWorkflowStateException extends __BaseException {
|
|
6
20
|
name = "IllegalWorkflowStateException";
|
|
7
21
|
$fault = "client";
|
|
@@ -4,8 +4,8 @@ import { _json, collectBody, decorateServiceException as __decorateServiceExcept
|
|
|
4
4
|
import { GlueServiceException as __BaseException } from "../models/GlueServiceException";
|
|
5
5
|
import { AccessDeniedException, AlreadyExistsException, EntityNotFoundException, FederationSourceException, FederationSourceRetryableException, GlueEncryptionException, InternalServiceException, InvalidInputException, InvalidStateException, OperationTimeoutException, ResourceNotReadyException, ResourceNumberLimitExceededException, ThrottlingException, } from "../models/models_0";
|
|
6
6
|
import { ColumnStatisticsTaskRunningException, ConcurrentModificationException, ConditionCheckFailureException, ConflictException, CrawlerRunningException, FederatedResourceAlreadyExistsException, IdempotentParameterMismatchException, IllegalSessionStateException, IntegrationConflictOperationFault, IntegrationNotFoundFault, IntegrationQuotaExceededFault, InternalServerException, InvalidIntegrationStateFault, KMSKeyNotAccessibleFault, OperationNotSupportedException, ResourceNotFoundException, SchedulerTransitioningException, TargetResourceNotFound, ValidationException, } from "../models/models_1";
|
|
7
|
-
import {
|
|
8
|
-
import { ColumnStatisticsTaskNotRunningException, ColumnStatisticsTaskStoppingException, CrawlerNotRunningException, CrawlerStoppingException, IllegalBlueprintStateException, IllegalWorkflowStateException, MLTransformNotReadyException, NoScheduleException, SchedulerNotRunningException, SchedulerRunningException, VersionMismatchException, } from "../models/models_3";
|
|
7
|
+
import { PermissionTypeMismatchException, } from "../models/models_2";
|
|
8
|
+
import { ColumnStatisticsTaskNotRunningException, ColumnStatisticsTaskStoppingException, ConcurrentRunsExceededException, CrawlerNotRunningException, CrawlerStoppingException, IllegalBlueprintStateException, IllegalWorkflowStateException, MLTransformNotReadyException, NoScheduleException, SchedulerNotRunningException, SchedulerRunningException, VersionMismatchException, } from "../models/models_3";
|
|
9
9
|
export const se_BatchCreatePartitionCommand = async (input, context) => {
|
|
10
10
|
const headers = sharedHeaders("BatchCreatePartition");
|
|
11
11
|
let body;
|
|
@@ -44,7 +44,12 @@ declare const ListConnectionTypesCommand_base: {
|
|
|
44
44
|
* // ConnectionTypes: [ // ConnectionTypeList
|
|
45
45
|
* // { // ConnectionTypeBrief
|
|
46
46
|
* // ConnectionType: "JDBC" || "SFTP" || "MONGODB" || "KAFKA" || "NETWORK" || "MARKETPLACE" || "CUSTOM" || "SALESFORCE" || "VIEW_VALIDATION_REDSHIFT" || "VIEW_VALIDATION_ATHENA" || "GOOGLEADS" || "GOOGLESHEETS" || "GOOGLEANALYTICS4" || "SERVICENOW" || "MARKETO" || "SAPODATA" || "ZENDESK" || "JIRACLOUD" || "NETSUITEERP" || "HUBSPOT" || "FACEBOOKADS" || "INSTAGRAMADS" || "ZOHOCRM" || "SALESFORCEPARDOT" || "SALESFORCEMARKETINGCLOUD" || "SLACK" || "STRIPE" || "INTERCOM" || "SNAPCHATADS",
|
|
47
|
+
* // DisplayName: "STRING_VALUE",
|
|
48
|
+
* // Vendor: "STRING_VALUE",
|
|
47
49
|
* // Description: "STRING_VALUE",
|
|
50
|
+
* // Categories: [ // ListOfString
|
|
51
|
+
* // "STRING_VALUE",
|
|
52
|
+
* // ],
|
|
48
53
|
* // Capabilities: { // Capabilities
|
|
49
54
|
* // SupportedAuthenticationTypes: [ // AuthenticationTypes // required
|
|
50
55
|
* // "BASIC" || "OAUTH2" || "CUSTOM" || "IAM",
|
|
@@ -56,6 +61,15 @@ declare const ListConnectionTypesCommand_base: {
|
|
|
56
61
|
* // "SPARK" || "ATHENA" || "PYTHON",
|
|
57
62
|
* // ],
|
|
58
63
|
* // },
|
|
64
|
+
* // LogoUrl: "STRING_VALUE",
|
|
65
|
+
* // ConnectionTypeVariants: [ // ConnectionTypeVariantList
|
|
66
|
+
* // { // ConnectionTypeVariant
|
|
67
|
+
* // ConnectionTypeVariantName: "STRING_VALUE",
|
|
68
|
+
* // DisplayName: "STRING_VALUE",
|
|
69
|
+
* // Description: "STRING_VALUE",
|
|
70
|
+
* // LogoUrl: "STRING_VALUE",
|
|
71
|
+
* // },
|
|
72
|
+
* // ],
|
|
59
73
|
* // },
|
|
60
74
|
* // ],
|
|
61
75
|
* // NextToken: "STRING_VALUE",
|
|
@@ -5373,6 +5373,34 @@ export interface ListConnectionTypesRequest {
|
|
|
5373
5373
|
*/
|
|
5374
5374
|
NextToken?: string | undefined;
|
|
5375
5375
|
}
|
|
5376
|
+
/**
|
|
5377
|
+
* <p>Represents a variant of a connection type in Glue Data Catalog. Connection type variants provide specific configurations and behaviors
|
|
5378
|
+
* for different implementations of the same general connection type.</p>
|
|
5379
|
+
* @public
|
|
5380
|
+
*/
|
|
5381
|
+
export interface ConnectionTypeVariant {
|
|
5382
|
+
/**
|
|
5383
|
+
* <p>The unique identifier for the connection type variant. This name is used internally to identify the specific variant of a connection type.
|
|
5384
|
+
* </p>
|
|
5385
|
+
* @public
|
|
5386
|
+
*/
|
|
5387
|
+
ConnectionTypeVariantName?: string | undefined;
|
|
5388
|
+
/**
|
|
5389
|
+
* <p>The human-readable name for the connection type variant that is displayed in the Glue console.</p>
|
|
5390
|
+
* @public
|
|
5391
|
+
*/
|
|
5392
|
+
DisplayName?: string | undefined;
|
|
5393
|
+
/**
|
|
5394
|
+
* <p>A detailed description of the connection type variant, including its purpose, use cases, and any specific configuration requirements.</p>
|
|
5395
|
+
* @public
|
|
5396
|
+
*/
|
|
5397
|
+
Description?: string | undefined;
|
|
5398
|
+
/**
|
|
5399
|
+
* <p>The URL of the logo associated with a connection type variant.</p>
|
|
5400
|
+
* @public
|
|
5401
|
+
*/
|
|
5402
|
+
LogoUrl?: string | undefined;
|
|
5403
|
+
}
|
|
5376
5404
|
/**
|
|
5377
5405
|
* <p>Brief information about a supported connection type returned by the <code>ListConnectionTypes</code> API.</p>
|
|
5378
5406
|
* @public
|
|
@@ -5383,16 +5411,43 @@ export interface ConnectionTypeBrief {
|
|
|
5383
5411
|
* @public
|
|
5384
5412
|
*/
|
|
5385
5413
|
ConnectionType?: ConnectionType | undefined;
|
|
5414
|
+
/**
|
|
5415
|
+
* <p>The human-readable name for the connection type that is displayed in the Glue console.</p>
|
|
5416
|
+
* @public
|
|
5417
|
+
*/
|
|
5418
|
+
DisplayName?: string | undefined;
|
|
5419
|
+
/**
|
|
5420
|
+
* <p>The name of the vendor or provider that created or maintains this connection type.</p>
|
|
5421
|
+
* @public
|
|
5422
|
+
*/
|
|
5423
|
+
Vendor?: string | undefined;
|
|
5386
5424
|
/**
|
|
5387
5425
|
* <p>A description of the connection type.</p>
|
|
5388
5426
|
* @public
|
|
5389
5427
|
*/
|
|
5390
5428
|
Description?: string | undefined;
|
|
5429
|
+
/**
|
|
5430
|
+
* <p>A list of categories that this connection type belongs to. Categories help users filter and find appropriate connection types based on their
|
|
5431
|
+
* use cases.</p>
|
|
5432
|
+
* @public
|
|
5433
|
+
*/
|
|
5434
|
+
Categories?: string[] | undefined;
|
|
5391
5435
|
/**
|
|
5392
5436
|
* <p>The supported authentication types, data interface types (compute environments), and data operations of the connector.</p>
|
|
5393
5437
|
* @public
|
|
5394
5438
|
*/
|
|
5395
5439
|
Capabilities?: Capabilities | undefined;
|
|
5440
|
+
/**
|
|
5441
|
+
* <p>The URL of the logo associated with a connection type.</p>
|
|
5442
|
+
* @public
|
|
5443
|
+
*/
|
|
5444
|
+
LogoUrl?: string | undefined;
|
|
5445
|
+
/**
|
|
5446
|
+
* <p>A list of variants available for this connection type. Different variants may provide specialized configurations for specific use cases or
|
|
5447
|
+
* implementations of the same general connection type.</p>
|
|
5448
|
+
* @public
|
|
5449
|
+
*/
|
|
5450
|
+
ConnectionTypeVariants?: ConnectionTypeVariant[] | undefined;
|
|
5396
5451
|
}
|
|
5397
5452
|
/**
|
|
5398
5453
|
* @public
|
|
@@ -7537,23 +7592,6 @@ export interface ResetJobBookmarkResponse {
|
|
|
7537
7592
|
*/
|
|
7538
7593
|
JobBookmarkEntry?: JobBookmarkEntry | undefined;
|
|
7539
7594
|
}
|
|
7540
|
-
/**
|
|
7541
|
-
* <p>Too many jobs are being run concurrently.</p>
|
|
7542
|
-
* @public
|
|
7543
|
-
*/
|
|
7544
|
-
export declare class ConcurrentRunsExceededException extends __BaseException {
|
|
7545
|
-
readonly name: "ConcurrentRunsExceededException";
|
|
7546
|
-
readonly $fault: "client";
|
|
7547
|
-
/**
|
|
7548
|
-
* <p>A message describing the problem.</p>
|
|
7549
|
-
* @public
|
|
7550
|
-
*/
|
|
7551
|
-
Message?: string | undefined;
|
|
7552
|
-
/**
|
|
7553
|
-
* @internal
|
|
7554
|
-
*/
|
|
7555
|
-
constructor(opts: __ExceptionOptionType<ConcurrentRunsExceededException, __BaseException>);
|
|
7556
|
-
}
|
|
7557
7595
|
/**
|
|
7558
7596
|
* @internal
|
|
7559
7597
|
*/
|
|
@@ -3,6 +3,23 @@ import { GlueServiceException as __BaseException } from "./GlueServiceException"
|
|
|
3
3
|
import { Action, Aggregate, AmazonRedshiftSource, AmazonRedshiftTarget, AthenaConnectorSource, AuthenticationConfigurationInput, BasicCatalogTarget, CatalogDeltaSource, CatalogHudiSource, CatalogKafkaSource, CatalogKinesisSource, CatalogSource, Column, ConnectionsList, ConnectorDataSource, ConnectorDataTarget, CrawlerTargets, CustomCode, DataSource, DirectJDBCSource, DirectKafkaSource, DirectKinesisSource, DropDuplicates, DropFields, DropNullFields, DynamicTransform, DynamoDBCatalogSource, ErrorDetail, EvaluateDataQuality, EvaluateDataQualityMultiFrame, EventBatchingCondition, ExecutionClass, ExecutionProperty, FillMissingValues, Filter, GovernedCatalogSource, GovernedCatalogTarget, 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, S3CatalogDeltaSource, S3CatalogHudiSource, S3CatalogSource, S3CatalogTarget, S3CsvSource, S3DeltaCatalogTarget, S3DeltaDirectTarget, S3DeltaSource, S3DirectTarget, S3ExcelSource, S3GlueParquetTarget, S3HudiCatalogTarget, S3HudiDirectTarget, S3HudiSource, S3HyperDirectTarget, S3IcebergDirectTarget, S3JsonSource, S3ParquetSource, SchemaChangePolicy, SchemaId, SelectFields, SelectFromCollection, SnowflakeSource, SnowflakeTarget, SourceControlAuthStrategy, SourceControlDetails, SourceControlProvider, SparkConnectorSource, SparkConnectorTarget, SparkSQL, Spigot, SplitFields, StorageDescriptor, TableOptimizerConfiguration, TableOptimizerType, Trigger, Union, WorkerType } from "./models_0";
|
|
4
4
|
import { CatalogInput, ColumnStatistics, Compatibility, ConnectionInput, ConnectionPropertyKey, ConnectionType, CsvHeaderOption, CsvSerdeOption, DatabaseInput, Permission, ProfileConfiguration, RegistryId, SourceProcessingProperties, SourceTableConfig, TableIdentifier, TableInput, TargetProcessingProperties, TargetTableConfig, TransformParameters, UserDefinedFunctionInput } from "./models_1";
|
|
5
5
|
import { ColumnRowFilter, DataQualityEvaluationRunAdditionalRunOptions, FederatedTable, ResourceAction, ResourceShareType, ResourceState, SchemaVersionNumber, ViewDefinition, ViewValidation } from "./models_2";
|
|
6
|
+
/**
|
|
7
|
+
* <p>Too many jobs are being run concurrently.</p>
|
|
8
|
+
* @public
|
|
9
|
+
*/
|
|
10
|
+
export declare class ConcurrentRunsExceededException extends __BaseException {
|
|
11
|
+
readonly name: "ConcurrentRunsExceededException";
|
|
12
|
+
readonly $fault: "client";
|
|
13
|
+
/**
|
|
14
|
+
* <p>A message describing the problem.</p>
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
Message?: string | undefined;
|
|
18
|
+
/**
|
|
19
|
+
* @internal
|
|
20
|
+
*/
|
|
21
|
+
constructor(opts: __ExceptionOptionType<ConcurrentRunsExceededException, __BaseException>);
|
|
22
|
+
}
|
|
6
23
|
/**
|
|
7
24
|
* <p>The workflow is in an invalid state to perform a requested operation.</p>
|
|
8
25
|
* @public
|
|
@@ -1278,10 +1278,21 @@ export interface ListConnectionTypesRequest {
|
|
|
1278
1278
|
MaxResults?: number | undefined;
|
|
1279
1279
|
NextToken?: string | undefined;
|
|
1280
1280
|
}
|
|
1281
|
+
export interface ConnectionTypeVariant {
|
|
1282
|
+
ConnectionTypeVariantName?: string | undefined;
|
|
1283
|
+
DisplayName?: string | undefined;
|
|
1284
|
+
Description?: string | undefined;
|
|
1285
|
+
LogoUrl?: string | undefined;
|
|
1286
|
+
}
|
|
1281
1287
|
export interface ConnectionTypeBrief {
|
|
1282
1288
|
ConnectionType?: ConnectionType | undefined;
|
|
1289
|
+
DisplayName?: string | undefined;
|
|
1290
|
+
Vendor?: string | undefined;
|
|
1283
1291
|
Description?: string | undefined;
|
|
1292
|
+
Categories?: string[] | undefined;
|
|
1284
1293
|
Capabilities?: Capabilities | undefined;
|
|
1294
|
+
LogoUrl?: string | undefined;
|
|
1295
|
+
ConnectionTypeVariants?: ConnectionTypeVariant[] | undefined;
|
|
1285
1296
|
}
|
|
1286
1297
|
export interface ListConnectionTypesResponse {
|
|
1287
1298
|
ConnectionTypes?: ConnectionTypeBrief[] | undefined;
|
|
@@ -1797,17 +1808,6 @@ export interface ResetJobBookmarkRequest {
|
|
|
1797
1808
|
export interface ResetJobBookmarkResponse {
|
|
1798
1809
|
JobBookmarkEntry?: JobBookmarkEntry | undefined;
|
|
1799
1810
|
}
|
|
1800
|
-
export declare class ConcurrentRunsExceededException extends __BaseException {
|
|
1801
|
-
readonly name: "ConcurrentRunsExceededException";
|
|
1802
|
-
readonly $fault: "client";
|
|
1803
|
-
Message?: string | undefined;
|
|
1804
|
-
constructor(
|
|
1805
|
-
opts: __ExceptionOptionType<
|
|
1806
|
-
ConcurrentRunsExceededException,
|
|
1807
|
-
__BaseException
|
|
1808
|
-
>
|
|
1809
|
-
);
|
|
1810
|
-
}
|
|
1811
1811
|
export declare const GetDataQualityResultResponseFilterSensitiveLog: (
|
|
1812
1812
|
obj: GetDataQualityResultResponse
|
|
1813
1813
|
) => any;
|
|
@@ -136,6 +136,17 @@ import {
|
|
|
136
136
|
ViewDefinition,
|
|
137
137
|
ViewValidation,
|
|
138
138
|
} from "./models_2";
|
|
139
|
+
export declare class ConcurrentRunsExceededException extends __BaseException {
|
|
140
|
+
readonly name: "ConcurrentRunsExceededException";
|
|
141
|
+
readonly $fault: "client";
|
|
142
|
+
Message?: string | undefined;
|
|
143
|
+
constructor(
|
|
144
|
+
opts: __ExceptionOptionType<
|
|
145
|
+
ConcurrentRunsExceededException,
|
|
146
|
+
__BaseException
|
|
147
|
+
>
|
|
148
|
+
);
|
|
149
|
+
}
|
|
139
150
|
export declare class IllegalWorkflowStateException extends __BaseException {
|
|
140
151
|
readonly name: "IllegalWorkflowStateException";
|
|
141
152
|
readonly $fault: "client";
|
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.
|
|
4
|
+
"version": "3.814.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",
|