@aws-sdk/client-glue 3.654.0 → 3.655.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/README.md CHANGED
@@ -1804,6 +1804,14 @@ TagResource
1804
1804
 
1805
1805
  [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/TagResourceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/TagResourceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/TagResourceCommandOutput/)
1806
1806
 
1807
+ </details>
1808
+ <details>
1809
+ <summary>
1810
+ TestConnection
1811
+ </summary>
1812
+
1813
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/glue/command/TestConnectionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/TestConnectionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-glue/Interface/TestConnectionCommandOutput/)
1814
+
1807
1815
  </details>
1808
1816
  <details>
1809
1817
  <summary>
package/dist-cjs/index.js CHANGED
@@ -365,6 +365,7 @@ __export(src_exports, {
365
365
  TaskRunSortColumnType: () => TaskRunSortColumnType,
366
366
  TaskStatusType: () => TaskStatusType,
367
367
  TaskType: () => TaskType,
368
+ TestConnectionCommand: () => TestConnectionCommand,
368
369
  ThrottlingException: () => ThrottlingException,
369
370
  TransformSortColumnType: () => TransformSortColumnType,
370
371
  TransformStatusType: () => TransformStatusType,
@@ -2025,12 +2026,6 @@ var _VersionMismatchException = class _VersionMismatchException extends GlueServ
2025
2026
  };
2026
2027
  __name(_VersionMismatchException, "VersionMismatchException");
2027
2028
  var VersionMismatchException = _VersionMismatchException;
2028
- var ViewUpdateAction = {
2029
- ADD: "ADD",
2030
- ADD_OR_REPLACE: "ADD_OR_REPLACE",
2031
- DROP: "DROP",
2032
- REPLACE: "REPLACE"
2033
- };
2034
2029
  var StatisticSummaryFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
2035
2030
  ...obj,
2036
2031
  ...obj.StatisticProperties && { StatisticProperties: import_smithy_client.SENSITIVE_STRING }
@@ -3241,6 +3236,12 @@ var se_TagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
3241
3236
  body = JSON.stringify((0, import_smithy_client._json)(input));
3242
3237
  return buildHttpRpcRequest(context, headers, "/", void 0, body);
3243
3238
  }, "se_TagResourceCommand");
3239
+ var se_TestConnectionCommand = /* @__PURE__ */ __name(async (input, context) => {
3240
+ const headers = sharedHeaders("TestConnection");
3241
+ let body;
3242
+ body = JSON.stringify((0, import_smithy_client._json)(input));
3243
+ return buildHttpRpcRequest(context, headers, "/", void 0, body);
3244
+ }, "se_TestConnectionCommand");
3244
3245
  var se_UntagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
3245
3246
  const headers = sharedHeaders("UntagResource");
3246
3247
  let body;
@@ -5985,6 +5986,19 @@ var de_TagResourceCommand = /* @__PURE__ */ __name(async (output, context) => {
5985
5986
  };
5986
5987
  return response;
5987
5988
  }, "de_TagResourceCommand");
5989
+ var de_TestConnectionCommand = /* @__PURE__ */ __name(async (output, context) => {
5990
+ if (output.statusCode >= 300) {
5991
+ return de_CommandError(output, context);
5992
+ }
5993
+ const data = await (0, import_core2.parseJsonBody)(output.body, context);
5994
+ let contents = {};
5995
+ contents = (0, import_smithy_client._json)(data);
5996
+ const response = {
5997
+ $metadata: deserializeMetadata(output),
5998
+ ...contents
5999
+ };
6000
+ return response;
6001
+ }, "de_TestConnectionCommand");
5988
6002
  var de_UntagResourceCommand = /* @__PURE__ */ __name(async (output, context) => {
5989
6003
  if (output.statusCode >= 300) {
5990
6004
  return de_CommandError(output, context);
@@ -9718,6 +9732,12 @@ var BatchGetDevEndpointsCommand = _BatchGetDevEndpointsCommand;
9718
9732
 
9719
9733
  // src/models/models_3.ts
9720
9734
 
9735
+ var ViewUpdateAction = {
9736
+ ADD: "ADD",
9737
+ ADD_OR_REPLACE: "ADD_OR_REPLACE",
9738
+ DROP: "DROP",
9739
+ REPLACE: "REPLACE"
9740
+ };
9721
9741
  var CreateJobRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
9722
9742
  ...obj,
9723
9743
  ...obj.CodeGenConfigurationNodes && { CodeGenConfigurationNodes: import_smithy_client.SENSITIVE_STRING }
@@ -12404,6 +12424,20 @@ var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client
12404
12424
  __name(_TagResourceCommand, "TagResourceCommand");
12405
12425
  var TagResourceCommand = _TagResourceCommand;
12406
12426
 
12427
+ // src/commands/TestConnectionCommand.ts
12428
+
12429
+
12430
+
12431
+ var _TestConnectionCommand = class _TestConnectionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
12432
+ return [
12433
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
12434
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
12435
+ ];
12436
+ }).s("AWSGlue", "TestConnection", {}).n("GlueClient", "TestConnectionCommand").f(void 0, void 0).ser(se_TestConnectionCommand).de(de_TestConnectionCommand).build() {
12437
+ };
12438
+ __name(_TestConnectionCommand, "TestConnectionCommand");
12439
+ var TestConnectionCommand = _TestConnectionCommand;
12440
+
12407
12441
  // src/commands/UntagResourceCommand.ts
12408
12442
 
12409
12443
 
@@ -12942,6 +12976,7 @@ var commands = {
12942
12976
  StopTriggerCommand,
12943
12977
  StopWorkflowRunCommand,
12944
12978
  TagResourceCommand,
12979
+ TestConnectionCommand,
12945
12980
  UntagResourceCommand,
12946
12981
  UpdateBlueprintCommand,
12947
12982
  UpdateClassifierCommand,
@@ -13348,6 +13383,7 @@ var paginateSearchTables = (0, import_core.createPaginator)(GlueClient, SearchTa
13348
13383
  StopTriggerCommand,
13349
13384
  StopWorkflowRunCommand,
13350
13385
  TagResourceCommand,
13386
+ TestConnectionCommand,
13351
13387
  UntagResourceCommand,
13352
13388
  UpdateBlueprintCommand,
13353
13389
  UpdateClassifierCommand,
@@ -13561,9 +13597,9 @@ var paginateSearchTables = (0, import_core.createPaginator)(GlueClient, SearchTa
13561
13597
  CrawlerStoppingException,
13562
13598
  SchedulerNotRunningException,
13563
13599
  VersionMismatchException,
13564
- ViewUpdateAction,
13565
13600
  StatisticSummaryFilterSensitiveLog,
13566
13601
  ListDataQualityStatisticsResponseFilterSensitiveLog,
13602
+ ViewUpdateAction,
13567
13603
  CreateJobRequestFilterSensitiveLog,
13568
13604
  JobFilterSensitiveLog,
13569
13605
  JobUpdateFilterSensitiveLog,
package/dist-es/Glue.js CHANGED
@@ -199,6 +199,7 @@ import { StopSessionCommand } from "./commands/StopSessionCommand";
199
199
  import { StopTriggerCommand } from "./commands/StopTriggerCommand";
200
200
  import { StopWorkflowRunCommand, } from "./commands/StopWorkflowRunCommand";
201
201
  import { TagResourceCommand } from "./commands/TagResourceCommand";
202
+ import { TestConnectionCommand, } from "./commands/TestConnectionCommand";
202
203
  import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
203
204
  import { UpdateBlueprintCommand, } from "./commands/UpdateBlueprintCommand";
204
205
  import { UpdateClassifierCommand, } from "./commands/UpdateClassifierCommand";
@@ -425,6 +426,7 @@ const commands = {
425
426
  StopTriggerCommand,
426
427
  StopWorkflowRunCommand,
427
428
  TagResourceCommand,
429
+ TestConnectionCommand,
428
430
  UntagResourceCommand,
429
431
  UpdateBlueprintCommand,
430
432
  UpdateClassifierCommand,
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_TestConnectionCommand, se_TestConnectionCommand } from "../protocols/Aws_json1_1";
6
+ export { $Command };
7
+ export class TestConnectionCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("AWSGlue", "TestConnection", {})
17
+ .n("GlueClient", "TestConnectionCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_TestConnectionCommand)
20
+ .de(de_TestConnectionCommand)
21
+ .build() {
22
+ }
@@ -198,6 +198,7 @@ export * from "./StopSessionCommand";
198
198
  export * from "./StopTriggerCommand";
199
199
  export * from "./StopWorkflowRunCommand";
200
200
  export * from "./TagResourceCommand";
201
+ export * from "./TestConnectionCommand";
201
202
  export * from "./UntagResourceCommand";
202
203
  export * from "./UpdateBlueprintCommand";
203
204
  export * from "./UpdateClassifierCommand";
@@ -285,12 +285,6 @@ export class VersionMismatchException extends __BaseException {
285
285
  this.Message = opts.Message;
286
286
  }
287
287
  }
288
- export const ViewUpdateAction = {
289
- ADD: "ADD",
290
- ADD_OR_REPLACE: "ADD_OR_REPLACE",
291
- DROP: "DROP",
292
- REPLACE: "REPLACE",
293
- };
294
288
  export const StatisticSummaryFilterSensitiveLog = (obj) => ({
295
289
  ...obj,
296
290
  ...(obj.StatisticProperties && { StatisticProperties: SENSITIVE_STRING }),
@@ -1,4 +1,10 @@
1
1
  import { SENSITIVE_STRING } from "@smithy/smithy-client";
2
+ export const ViewUpdateAction = {
3
+ ADD: "ADD",
4
+ ADD_OR_REPLACE: "ADD_OR_REPLACE",
5
+ DROP: "DROP",
6
+ REPLACE: "REPLACE",
7
+ };
2
8
  export const CreateJobRequestFilterSensitiveLog = (obj) => ({
3
9
  ...obj,
4
10
  ...(obj.CodeGenConfigurationNodes && { CodeGenConfigurationNodes: SENSITIVE_STRING }),
@@ -1205,6 +1205,12 @@ export const se_TagResourceCommand = async (input, context) => {
1205
1205
  body = JSON.stringify(_json(input));
1206
1206
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
1207
1207
  };
1208
+ export const se_TestConnectionCommand = async (input, context) => {
1209
+ const headers = sharedHeaders("TestConnection");
1210
+ let body;
1211
+ body = JSON.stringify(_json(input));
1212
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
1213
+ };
1208
1214
  export const se_UntagResourceCommand = async (input, context) => {
1209
1215
  const headers = sharedHeaders("UntagResource");
1210
1216
  let body;
@@ -3949,6 +3955,19 @@ export const de_TagResourceCommand = async (output, context) => {
3949
3955
  };
3950
3956
  return response;
3951
3957
  };
3958
+ export const de_TestConnectionCommand = async (output, context) => {
3959
+ if (output.statusCode >= 300) {
3960
+ return de_CommandError(output, context);
3961
+ }
3962
+ const data = await parseBody(output.body, context);
3963
+ let contents = {};
3964
+ contents = _json(data);
3965
+ const response = {
3966
+ $metadata: deserializeMetadata(output),
3967
+ ...contents,
3968
+ };
3969
+ return response;
3970
+ };
3952
3971
  export const de_UntagResourceCommand = async (output, context) => {
3953
3972
  if (output.statusCode >= 300) {
3954
3973
  return de_CommandError(output, context);
@@ -199,6 +199,7 @@ import { StopSessionCommandInput, StopSessionCommandOutput } from "./commands/St
199
199
  import { StopTriggerCommandInput, StopTriggerCommandOutput } from "./commands/StopTriggerCommand";
200
200
  import { StopWorkflowRunCommandInput, StopWorkflowRunCommandOutput } from "./commands/StopWorkflowRunCommand";
201
201
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
202
+ import { TestConnectionCommandInput, TestConnectionCommandOutput } from "./commands/TestConnectionCommand";
202
203
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
203
204
  import { UpdateBlueprintCommandInput, UpdateBlueprintCommandOutput } from "./commands/UpdateBlueprintCommand";
204
205
  import { UpdateClassifierCommandInput, UpdateClassifierCommandOutput } from "./commands/UpdateClassifierCommand";
@@ -1466,6 +1467,13 @@ export interface Glue {
1466
1467
  tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
1467
1468
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
1468
1469
  tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
1470
+ /**
1471
+ * @see {@link TestConnectionCommand}
1472
+ */
1473
+ testConnection(): Promise<TestConnectionCommandOutput>;
1474
+ testConnection(args: TestConnectionCommandInput, options?: __HttpHandlerOptions): Promise<TestConnectionCommandOutput>;
1475
+ testConnection(args: TestConnectionCommandInput, cb: (err: any, data?: TestConnectionCommandOutput) => void): void;
1476
+ testConnection(args: TestConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TestConnectionCommandOutput) => void): void;
1469
1477
  /**
1470
1478
  * @see {@link UntagResourceCommand}
1471
1479
  */
@@ -207,6 +207,7 @@ import { StopSessionCommandInput, StopSessionCommandOutput } from "./commands/St
207
207
  import { StopTriggerCommandInput, StopTriggerCommandOutput } from "./commands/StopTriggerCommand";
208
208
  import { StopWorkflowRunCommandInput, StopWorkflowRunCommandOutput } from "./commands/StopWorkflowRunCommand";
209
209
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
210
+ import { TestConnectionCommandInput, TestConnectionCommandOutput } from "./commands/TestConnectionCommand";
210
211
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
211
212
  import { UpdateBlueprintCommandInput, UpdateBlueprintCommandOutput } from "./commands/UpdateBlueprintCommand";
212
213
  import { UpdateClassifierCommandInput, UpdateClassifierCommandOutput } from "./commands/UpdateClassifierCommand";
@@ -237,11 +238,11 @@ export { __Client };
237
238
  /**
238
239
  * @public
239
240
  */
240
- export type ServiceInputTypes = BatchCreatePartitionCommandInput | BatchDeleteConnectionCommandInput | BatchDeletePartitionCommandInput | BatchDeleteTableCommandInput | BatchDeleteTableVersionCommandInput | BatchGetBlueprintsCommandInput | BatchGetCrawlersCommandInput | BatchGetCustomEntityTypesCommandInput | BatchGetDataQualityResultCommandInput | BatchGetDevEndpointsCommandInput | BatchGetJobsCommandInput | BatchGetPartitionCommandInput | BatchGetTableOptimizerCommandInput | BatchGetTriggersCommandInput | BatchGetWorkflowsCommandInput | BatchPutDataQualityStatisticAnnotationCommandInput | BatchStopJobRunCommandInput | BatchUpdatePartitionCommandInput | CancelDataQualityRuleRecommendationRunCommandInput | CancelDataQualityRulesetEvaluationRunCommandInput | CancelMLTaskRunCommandInput | CancelStatementCommandInput | CheckSchemaVersionValidityCommandInput | CreateBlueprintCommandInput | CreateClassifierCommandInput | CreateConnectionCommandInput | CreateCrawlerCommandInput | CreateCustomEntityTypeCommandInput | CreateDataQualityRulesetCommandInput | CreateDatabaseCommandInput | CreateDevEndpointCommandInput | CreateJobCommandInput | CreateMLTransformCommandInput | CreatePartitionCommandInput | CreatePartitionIndexCommandInput | CreateRegistryCommandInput | CreateSchemaCommandInput | CreateScriptCommandInput | CreateSecurityConfigurationCommandInput | CreateSessionCommandInput | CreateTableCommandInput | CreateTableOptimizerCommandInput | CreateTriggerCommandInput | CreateUsageProfileCommandInput | CreateUserDefinedFunctionCommandInput | CreateWorkflowCommandInput | DeleteBlueprintCommandInput | DeleteClassifierCommandInput | DeleteColumnStatisticsForPartitionCommandInput | DeleteColumnStatisticsForTableCommandInput | DeleteConnectionCommandInput | DeleteCrawlerCommandInput | DeleteCustomEntityTypeCommandInput | DeleteDataQualityRulesetCommandInput | DeleteDatabaseCommandInput | DeleteDevEndpointCommandInput | DeleteJobCommandInput | DeleteMLTransformCommandInput | DeletePartitionCommandInput | DeletePartitionIndexCommandInput | DeleteRegistryCommandInput | DeleteResourcePolicyCommandInput | DeleteSchemaCommandInput | DeleteSchemaVersionsCommandInput | DeleteSecurityConfigurationCommandInput | DeleteSessionCommandInput | DeleteTableCommandInput | DeleteTableOptimizerCommandInput | DeleteTableVersionCommandInput | DeleteTriggerCommandInput | DeleteUsageProfileCommandInput | DeleteUserDefinedFunctionCommandInput | DeleteWorkflowCommandInput | GetBlueprintCommandInput | GetBlueprintRunCommandInput | GetBlueprintRunsCommandInput | GetCatalogImportStatusCommandInput | GetClassifierCommandInput | GetClassifiersCommandInput | GetColumnStatisticsForPartitionCommandInput | GetColumnStatisticsForTableCommandInput | GetColumnStatisticsTaskRunCommandInput | GetColumnStatisticsTaskRunsCommandInput | GetConnectionCommandInput | GetConnectionsCommandInput | GetCrawlerCommandInput | GetCrawlerMetricsCommandInput | GetCrawlersCommandInput | GetCustomEntityTypeCommandInput | GetDataCatalogEncryptionSettingsCommandInput | GetDataQualityModelCommandInput | GetDataQualityModelResultCommandInput | GetDataQualityResultCommandInput | GetDataQualityRuleRecommendationRunCommandInput | GetDataQualityRulesetCommandInput | GetDataQualityRulesetEvaluationRunCommandInput | GetDatabaseCommandInput | GetDatabasesCommandInput | GetDataflowGraphCommandInput | GetDevEndpointCommandInput | GetDevEndpointsCommandInput | GetJobBookmarkCommandInput | GetJobCommandInput | GetJobRunCommandInput | GetJobRunsCommandInput | GetJobsCommandInput | GetMLTaskRunCommandInput | GetMLTaskRunsCommandInput | GetMLTransformCommandInput | GetMLTransformsCommandInput | GetMappingCommandInput | GetPartitionCommandInput | GetPartitionIndexesCommandInput | GetPartitionsCommandInput | GetPlanCommandInput | GetRegistryCommandInput | GetResourcePoliciesCommandInput | GetResourcePolicyCommandInput | GetSchemaByDefinitionCommandInput | GetSchemaCommandInput | GetSchemaVersionCommandInput | GetSchemaVersionsDiffCommandInput | GetSecurityConfigurationCommandInput | GetSecurityConfigurationsCommandInput | GetSessionCommandInput | GetStatementCommandInput | GetTableCommandInput | GetTableOptimizerCommandInput | GetTableVersionCommandInput | GetTableVersionsCommandInput | GetTablesCommandInput | GetTagsCommandInput | GetTriggerCommandInput | GetTriggersCommandInput | GetUnfilteredPartitionMetadataCommandInput | GetUnfilteredPartitionsMetadataCommandInput | GetUnfilteredTableMetadataCommandInput | GetUsageProfileCommandInput | GetUserDefinedFunctionCommandInput | GetUserDefinedFunctionsCommandInput | GetWorkflowCommandInput | GetWorkflowRunCommandInput | GetWorkflowRunPropertiesCommandInput | GetWorkflowRunsCommandInput | ImportCatalogToGlueCommandInput | ListBlueprintsCommandInput | ListColumnStatisticsTaskRunsCommandInput | ListCrawlersCommandInput | ListCrawlsCommandInput | ListCustomEntityTypesCommandInput | ListDataQualityResultsCommandInput | ListDataQualityRuleRecommendationRunsCommandInput | ListDataQualityRulesetEvaluationRunsCommandInput | ListDataQualityRulesetsCommandInput | ListDataQualityStatisticAnnotationsCommandInput | ListDataQualityStatisticsCommandInput | ListDevEndpointsCommandInput | ListJobsCommandInput | ListMLTransformsCommandInput | ListRegistriesCommandInput | ListSchemaVersionsCommandInput | ListSchemasCommandInput | ListSessionsCommandInput | ListStatementsCommandInput | ListTableOptimizerRunsCommandInput | ListTriggersCommandInput | ListUsageProfilesCommandInput | ListWorkflowsCommandInput | PutDataCatalogEncryptionSettingsCommandInput | PutDataQualityProfileAnnotationCommandInput | PutResourcePolicyCommandInput | PutSchemaVersionMetadataCommandInput | PutWorkflowRunPropertiesCommandInput | QuerySchemaVersionMetadataCommandInput | RegisterSchemaVersionCommandInput | RemoveSchemaVersionMetadataCommandInput | ResetJobBookmarkCommandInput | ResumeWorkflowRunCommandInput | RunStatementCommandInput | SearchTablesCommandInput | StartBlueprintRunCommandInput | StartColumnStatisticsTaskRunCommandInput | StartCrawlerCommandInput | StartCrawlerScheduleCommandInput | StartDataQualityRuleRecommendationRunCommandInput | StartDataQualityRulesetEvaluationRunCommandInput | StartExportLabelsTaskRunCommandInput | StartImportLabelsTaskRunCommandInput | StartJobRunCommandInput | StartMLEvaluationTaskRunCommandInput | StartMLLabelingSetGenerationTaskRunCommandInput | StartTriggerCommandInput | StartWorkflowRunCommandInput | StopColumnStatisticsTaskRunCommandInput | StopCrawlerCommandInput | StopCrawlerScheduleCommandInput | StopSessionCommandInput | StopTriggerCommandInput | StopWorkflowRunCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateBlueprintCommandInput | UpdateClassifierCommandInput | UpdateColumnStatisticsForPartitionCommandInput | UpdateColumnStatisticsForTableCommandInput | UpdateConnectionCommandInput | UpdateCrawlerCommandInput | UpdateCrawlerScheduleCommandInput | UpdateDataQualityRulesetCommandInput | UpdateDatabaseCommandInput | UpdateDevEndpointCommandInput | UpdateJobCommandInput | UpdateJobFromSourceControlCommandInput | UpdateMLTransformCommandInput | UpdatePartitionCommandInput | UpdateRegistryCommandInput | UpdateSchemaCommandInput | UpdateSourceControlFromJobCommandInput | UpdateTableCommandInput | UpdateTableOptimizerCommandInput | UpdateTriggerCommandInput | UpdateUsageProfileCommandInput | UpdateUserDefinedFunctionCommandInput | UpdateWorkflowCommandInput;
241
+ export type ServiceInputTypes = BatchCreatePartitionCommandInput | BatchDeleteConnectionCommandInput | BatchDeletePartitionCommandInput | BatchDeleteTableCommandInput | BatchDeleteTableVersionCommandInput | BatchGetBlueprintsCommandInput | BatchGetCrawlersCommandInput | BatchGetCustomEntityTypesCommandInput | BatchGetDataQualityResultCommandInput | BatchGetDevEndpointsCommandInput | BatchGetJobsCommandInput | BatchGetPartitionCommandInput | BatchGetTableOptimizerCommandInput | BatchGetTriggersCommandInput | BatchGetWorkflowsCommandInput | BatchPutDataQualityStatisticAnnotationCommandInput | BatchStopJobRunCommandInput | BatchUpdatePartitionCommandInput | CancelDataQualityRuleRecommendationRunCommandInput | CancelDataQualityRulesetEvaluationRunCommandInput | CancelMLTaskRunCommandInput | CancelStatementCommandInput | CheckSchemaVersionValidityCommandInput | CreateBlueprintCommandInput | CreateClassifierCommandInput | CreateConnectionCommandInput | CreateCrawlerCommandInput | CreateCustomEntityTypeCommandInput | CreateDataQualityRulesetCommandInput | CreateDatabaseCommandInput | CreateDevEndpointCommandInput | CreateJobCommandInput | CreateMLTransformCommandInput | CreatePartitionCommandInput | CreatePartitionIndexCommandInput | CreateRegistryCommandInput | CreateSchemaCommandInput | CreateScriptCommandInput | CreateSecurityConfigurationCommandInput | CreateSessionCommandInput | CreateTableCommandInput | CreateTableOptimizerCommandInput | CreateTriggerCommandInput | CreateUsageProfileCommandInput | CreateUserDefinedFunctionCommandInput | CreateWorkflowCommandInput | DeleteBlueprintCommandInput | DeleteClassifierCommandInput | DeleteColumnStatisticsForPartitionCommandInput | DeleteColumnStatisticsForTableCommandInput | DeleteConnectionCommandInput | DeleteCrawlerCommandInput | DeleteCustomEntityTypeCommandInput | DeleteDataQualityRulesetCommandInput | DeleteDatabaseCommandInput | DeleteDevEndpointCommandInput | DeleteJobCommandInput | DeleteMLTransformCommandInput | DeletePartitionCommandInput | DeletePartitionIndexCommandInput | DeleteRegistryCommandInput | DeleteResourcePolicyCommandInput | DeleteSchemaCommandInput | DeleteSchemaVersionsCommandInput | DeleteSecurityConfigurationCommandInput | DeleteSessionCommandInput | DeleteTableCommandInput | DeleteTableOptimizerCommandInput | DeleteTableVersionCommandInput | DeleteTriggerCommandInput | DeleteUsageProfileCommandInput | DeleteUserDefinedFunctionCommandInput | DeleteWorkflowCommandInput | GetBlueprintCommandInput | GetBlueprintRunCommandInput | GetBlueprintRunsCommandInput | GetCatalogImportStatusCommandInput | GetClassifierCommandInput | GetClassifiersCommandInput | GetColumnStatisticsForPartitionCommandInput | GetColumnStatisticsForTableCommandInput | GetColumnStatisticsTaskRunCommandInput | GetColumnStatisticsTaskRunsCommandInput | GetConnectionCommandInput | GetConnectionsCommandInput | GetCrawlerCommandInput | GetCrawlerMetricsCommandInput | GetCrawlersCommandInput | GetCustomEntityTypeCommandInput | GetDataCatalogEncryptionSettingsCommandInput | GetDataQualityModelCommandInput | GetDataQualityModelResultCommandInput | GetDataQualityResultCommandInput | GetDataQualityRuleRecommendationRunCommandInput | GetDataQualityRulesetCommandInput | GetDataQualityRulesetEvaluationRunCommandInput | GetDatabaseCommandInput | GetDatabasesCommandInput | GetDataflowGraphCommandInput | GetDevEndpointCommandInput | GetDevEndpointsCommandInput | GetJobBookmarkCommandInput | GetJobCommandInput | GetJobRunCommandInput | GetJobRunsCommandInput | GetJobsCommandInput | GetMLTaskRunCommandInput | GetMLTaskRunsCommandInput | GetMLTransformCommandInput | GetMLTransformsCommandInput | GetMappingCommandInput | GetPartitionCommandInput | GetPartitionIndexesCommandInput | GetPartitionsCommandInput | GetPlanCommandInput | GetRegistryCommandInput | GetResourcePoliciesCommandInput | GetResourcePolicyCommandInput | GetSchemaByDefinitionCommandInput | GetSchemaCommandInput | GetSchemaVersionCommandInput | GetSchemaVersionsDiffCommandInput | GetSecurityConfigurationCommandInput | GetSecurityConfigurationsCommandInput | GetSessionCommandInput | GetStatementCommandInput | GetTableCommandInput | GetTableOptimizerCommandInput | GetTableVersionCommandInput | GetTableVersionsCommandInput | GetTablesCommandInput | GetTagsCommandInput | GetTriggerCommandInput | GetTriggersCommandInput | GetUnfilteredPartitionMetadataCommandInput | GetUnfilteredPartitionsMetadataCommandInput | GetUnfilteredTableMetadataCommandInput | GetUsageProfileCommandInput | GetUserDefinedFunctionCommandInput | GetUserDefinedFunctionsCommandInput | GetWorkflowCommandInput | GetWorkflowRunCommandInput | GetWorkflowRunPropertiesCommandInput | GetWorkflowRunsCommandInput | ImportCatalogToGlueCommandInput | ListBlueprintsCommandInput | ListColumnStatisticsTaskRunsCommandInput | ListCrawlersCommandInput | ListCrawlsCommandInput | ListCustomEntityTypesCommandInput | ListDataQualityResultsCommandInput | ListDataQualityRuleRecommendationRunsCommandInput | ListDataQualityRulesetEvaluationRunsCommandInput | ListDataQualityRulesetsCommandInput | ListDataQualityStatisticAnnotationsCommandInput | ListDataQualityStatisticsCommandInput | ListDevEndpointsCommandInput | ListJobsCommandInput | ListMLTransformsCommandInput | ListRegistriesCommandInput | ListSchemaVersionsCommandInput | ListSchemasCommandInput | ListSessionsCommandInput | ListStatementsCommandInput | ListTableOptimizerRunsCommandInput | ListTriggersCommandInput | ListUsageProfilesCommandInput | ListWorkflowsCommandInput | PutDataCatalogEncryptionSettingsCommandInput | PutDataQualityProfileAnnotationCommandInput | PutResourcePolicyCommandInput | PutSchemaVersionMetadataCommandInput | PutWorkflowRunPropertiesCommandInput | QuerySchemaVersionMetadataCommandInput | RegisterSchemaVersionCommandInput | RemoveSchemaVersionMetadataCommandInput | ResetJobBookmarkCommandInput | ResumeWorkflowRunCommandInput | RunStatementCommandInput | SearchTablesCommandInput | StartBlueprintRunCommandInput | StartColumnStatisticsTaskRunCommandInput | StartCrawlerCommandInput | StartCrawlerScheduleCommandInput | StartDataQualityRuleRecommendationRunCommandInput | StartDataQualityRulesetEvaluationRunCommandInput | StartExportLabelsTaskRunCommandInput | StartImportLabelsTaskRunCommandInput | StartJobRunCommandInput | StartMLEvaluationTaskRunCommandInput | StartMLLabelingSetGenerationTaskRunCommandInput | StartTriggerCommandInput | StartWorkflowRunCommandInput | StopColumnStatisticsTaskRunCommandInput | StopCrawlerCommandInput | StopCrawlerScheduleCommandInput | StopSessionCommandInput | StopTriggerCommandInput | StopWorkflowRunCommandInput | TagResourceCommandInput | TestConnectionCommandInput | UntagResourceCommandInput | UpdateBlueprintCommandInput | UpdateClassifierCommandInput | UpdateColumnStatisticsForPartitionCommandInput | UpdateColumnStatisticsForTableCommandInput | UpdateConnectionCommandInput | UpdateCrawlerCommandInput | UpdateCrawlerScheduleCommandInput | UpdateDataQualityRulesetCommandInput | UpdateDatabaseCommandInput | UpdateDevEndpointCommandInput | UpdateJobCommandInput | UpdateJobFromSourceControlCommandInput | UpdateMLTransformCommandInput | UpdatePartitionCommandInput | UpdateRegistryCommandInput | UpdateSchemaCommandInput | UpdateSourceControlFromJobCommandInput | UpdateTableCommandInput | UpdateTableOptimizerCommandInput | UpdateTriggerCommandInput | UpdateUsageProfileCommandInput | UpdateUserDefinedFunctionCommandInput | UpdateWorkflowCommandInput;
241
242
  /**
242
243
  * @public
243
244
  */
244
- export type ServiceOutputTypes = BatchCreatePartitionCommandOutput | BatchDeleteConnectionCommandOutput | BatchDeletePartitionCommandOutput | BatchDeleteTableCommandOutput | BatchDeleteTableVersionCommandOutput | BatchGetBlueprintsCommandOutput | BatchGetCrawlersCommandOutput | BatchGetCustomEntityTypesCommandOutput | BatchGetDataQualityResultCommandOutput | BatchGetDevEndpointsCommandOutput | BatchGetJobsCommandOutput | BatchGetPartitionCommandOutput | BatchGetTableOptimizerCommandOutput | BatchGetTriggersCommandOutput | BatchGetWorkflowsCommandOutput | BatchPutDataQualityStatisticAnnotationCommandOutput | BatchStopJobRunCommandOutput | BatchUpdatePartitionCommandOutput | CancelDataQualityRuleRecommendationRunCommandOutput | CancelDataQualityRulesetEvaluationRunCommandOutput | CancelMLTaskRunCommandOutput | CancelStatementCommandOutput | CheckSchemaVersionValidityCommandOutput | CreateBlueprintCommandOutput | CreateClassifierCommandOutput | CreateConnectionCommandOutput | CreateCrawlerCommandOutput | CreateCustomEntityTypeCommandOutput | CreateDataQualityRulesetCommandOutput | CreateDatabaseCommandOutput | CreateDevEndpointCommandOutput | CreateJobCommandOutput | CreateMLTransformCommandOutput | CreatePartitionCommandOutput | CreatePartitionIndexCommandOutput | CreateRegistryCommandOutput | CreateSchemaCommandOutput | CreateScriptCommandOutput | CreateSecurityConfigurationCommandOutput | CreateSessionCommandOutput | CreateTableCommandOutput | CreateTableOptimizerCommandOutput | CreateTriggerCommandOutput | CreateUsageProfileCommandOutput | CreateUserDefinedFunctionCommandOutput | CreateWorkflowCommandOutput | DeleteBlueprintCommandOutput | DeleteClassifierCommandOutput | DeleteColumnStatisticsForPartitionCommandOutput | DeleteColumnStatisticsForTableCommandOutput | DeleteConnectionCommandOutput | DeleteCrawlerCommandOutput | DeleteCustomEntityTypeCommandOutput | DeleteDataQualityRulesetCommandOutput | DeleteDatabaseCommandOutput | DeleteDevEndpointCommandOutput | DeleteJobCommandOutput | DeleteMLTransformCommandOutput | DeletePartitionCommandOutput | DeletePartitionIndexCommandOutput | DeleteRegistryCommandOutput | DeleteResourcePolicyCommandOutput | DeleteSchemaCommandOutput | DeleteSchemaVersionsCommandOutput | DeleteSecurityConfigurationCommandOutput | DeleteSessionCommandOutput | DeleteTableCommandOutput | DeleteTableOptimizerCommandOutput | DeleteTableVersionCommandOutput | DeleteTriggerCommandOutput | DeleteUsageProfileCommandOutput | DeleteUserDefinedFunctionCommandOutput | DeleteWorkflowCommandOutput | GetBlueprintCommandOutput | GetBlueprintRunCommandOutput | GetBlueprintRunsCommandOutput | GetCatalogImportStatusCommandOutput | GetClassifierCommandOutput | GetClassifiersCommandOutput | GetColumnStatisticsForPartitionCommandOutput | GetColumnStatisticsForTableCommandOutput | GetColumnStatisticsTaskRunCommandOutput | GetColumnStatisticsTaskRunsCommandOutput | GetConnectionCommandOutput | GetConnectionsCommandOutput | GetCrawlerCommandOutput | GetCrawlerMetricsCommandOutput | GetCrawlersCommandOutput | GetCustomEntityTypeCommandOutput | GetDataCatalogEncryptionSettingsCommandOutput | GetDataQualityModelCommandOutput | GetDataQualityModelResultCommandOutput | GetDataQualityResultCommandOutput | GetDataQualityRuleRecommendationRunCommandOutput | GetDataQualityRulesetCommandOutput | GetDataQualityRulesetEvaluationRunCommandOutput | GetDatabaseCommandOutput | GetDatabasesCommandOutput | GetDataflowGraphCommandOutput | GetDevEndpointCommandOutput | GetDevEndpointsCommandOutput | GetJobBookmarkCommandOutput | GetJobCommandOutput | GetJobRunCommandOutput | GetJobRunsCommandOutput | GetJobsCommandOutput | GetMLTaskRunCommandOutput | GetMLTaskRunsCommandOutput | GetMLTransformCommandOutput | GetMLTransformsCommandOutput | GetMappingCommandOutput | GetPartitionCommandOutput | GetPartitionIndexesCommandOutput | GetPartitionsCommandOutput | GetPlanCommandOutput | GetRegistryCommandOutput | GetResourcePoliciesCommandOutput | GetResourcePolicyCommandOutput | GetSchemaByDefinitionCommandOutput | GetSchemaCommandOutput | GetSchemaVersionCommandOutput | GetSchemaVersionsDiffCommandOutput | GetSecurityConfigurationCommandOutput | GetSecurityConfigurationsCommandOutput | GetSessionCommandOutput | GetStatementCommandOutput | GetTableCommandOutput | GetTableOptimizerCommandOutput | GetTableVersionCommandOutput | GetTableVersionsCommandOutput | GetTablesCommandOutput | GetTagsCommandOutput | GetTriggerCommandOutput | GetTriggersCommandOutput | GetUnfilteredPartitionMetadataCommandOutput | GetUnfilteredPartitionsMetadataCommandOutput | GetUnfilteredTableMetadataCommandOutput | GetUsageProfileCommandOutput | GetUserDefinedFunctionCommandOutput | GetUserDefinedFunctionsCommandOutput | GetWorkflowCommandOutput | GetWorkflowRunCommandOutput | GetWorkflowRunPropertiesCommandOutput | GetWorkflowRunsCommandOutput | ImportCatalogToGlueCommandOutput | ListBlueprintsCommandOutput | ListColumnStatisticsTaskRunsCommandOutput | ListCrawlersCommandOutput | ListCrawlsCommandOutput | ListCustomEntityTypesCommandOutput | ListDataQualityResultsCommandOutput | ListDataQualityRuleRecommendationRunsCommandOutput | ListDataQualityRulesetEvaluationRunsCommandOutput | ListDataQualityRulesetsCommandOutput | ListDataQualityStatisticAnnotationsCommandOutput | ListDataQualityStatisticsCommandOutput | ListDevEndpointsCommandOutput | ListJobsCommandOutput | ListMLTransformsCommandOutput | ListRegistriesCommandOutput | ListSchemaVersionsCommandOutput | ListSchemasCommandOutput | ListSessionsCommandOutput | ListStatementsCommandOutput | ListTableOptimizerRunsCommandOutput | ListTriggersCommandOutput | ListUsageProfilesCommandOutput | ListWorkflowsCommandOutput | PutDataCatalogEncryptionSettingsCommandOutput | PutDataQualityProfileAnnotationCommandOutput | PutResourcePolicyCommandOutput | PutSchemaVersionMetadataCommandOutput | PutWorkflowRunPropertiesCommandOutput | QuerySchemaVersionMetadataCommandOutput | RegisterSchemaVersionCommandOutput | RemoveSchemaVersionMetadataCommandOutput | ResetJobBookmarkCommandOutput | ResumeWorkflowRunCommandOutput | RunStatementCommandOutput | SearchTablesCommandOutput | StartBlueprintRunCommandOutput | StartColumnStatisticsTaskRunCommandOutput | StartCrawlerCommandOutput | StartCrawlerScheduleCommandOutput | StartDataQualityRuleRecommendationRunCommandOutput | StartDataQualityRulesetEvaluationRunCommandOutput | StartExportLabelsTaskRunCommandOutput | StartImportLabelsTaskRunCommandOutput | StartJobRunCommandOutput | StartMLEvaluationTaskRunCommandOutput | StartMLLabelingSetGenerationTaskRunCommandOutput | StartTriggerCommandOutput | StartWorkflowRunCommandOutput | StopColumnStatisticsTaskRunCommandOutput | StopCrawlerCommandOutput | StopCrawlerScheduleCommandOutput | StopSessionCommandOutput | StopTriggerCommandOutput | StopWorkflowRunCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateBlueprintCommandOutput | UpdateClassifierCommandOutput | UpdateColumnStatisticsForPartitionCommandOutput | UpdateColumnStatisticsForTableCommandOutput | UpdateConnectionCommandOutput | UpdateCrawlerCommandOutput | UpdateCrawlerScheduleCommandOutput | UpdateDataQualityRulesetCommandOutput | UpdateDatabaseCommandOutput | UpdateDevEndpointCommandOutput | UpdateJobCommandOutput | UpdateJobFromSourceControlCommandOutput | UpdateMLTransformCommandOutput | UpdatePartitionCommandOutput | UpdateRegistryCommandOutput | UpdateSchemaCommandOutput | UpdateSourceControlFromJobCommandOutput | UpdateTableCommandOutput | UpdateTableOptimizerCommandOutput | UpdateTriggerCommandOutput | UpdateUsageProfileCommandOutput | UpdateUserDefinedFunctionCommandOutput | UpdateWorkflowCommandOutput;
245
+ export type ServiceOutputTypes = BatchCreatePartitionCommandOutput | BatchDeleteConnectionCommandOutput | BatchDeletePartitionCommandOutput | BatchDeleteTableCommandOutput | BatchDeleteTableVersionCommandOutput | BatchGetBlueprintsCommandOutput | BatchGetCrawlersCommandOutput | BatchGetCustomEntityTypesCommandOutput | BatchGetDataQualityResultCommandOutput | BatchGetDevEndpointsCommandOutput | BatchGetJobsCommandOutput | BatchGetPartitionCommandOutput | BatchGetTableOptimizerCommandOutput | BatchGetTriggersCommandOutput | BatchGetWorkflowsCommandOutput | BatchPutDataQualityStatisticAnnotationCommandOutput | BatchStopJobRunCommandOutput | BatchUpdatePartitionCommandOutput | CancelDataQualityRuleRecommendationRunCommandOutput | CancelDataQualityRulesetEvaluationRunCommandOutput | CancelMLTaskRunCommandOutput | CancelStatementCommandOutput | CheckSchemaVersionValidityCommandOutput | CreateBlueprintCommandOutput | CreateClassifierCommandOutput | CreateConnectionCommandOutput | CreateCrawlerCommandOutput | CreateCustomEntityTypeCommandOutput | CreateDataQualityRulesetCommandOutput | CreateDatabaseCommandOutput | CreateDevEndpointCommandOutput | CreateJobCommandOutput | CreateMLTransformCommandOutput | CreatePartitionCommandOutput | CreatePartitionIndexCommandOutput | CreateRegistryCommandOutput | CreateSchemaCommandOutput | CreateScriptCommandOutput | CreateSecurityConfigurationCommandOutput | CreateSessionCommandOutput | CreateTableCommandOutput | CreateTableOptimizerCommandOutput | CreateTriggerCommandOutput | CreateUsageProfileCommandOutput | CreateUserDefinedFunctionCommandOutput | CreateWorkflowCommandOutput | DeleteBlueprintCommandOutput | DeleteClassifierCommandOutput | DeleteColumnStatisticsForPartitionCommandOutput | DeleteColumnStatisticsForTableCommandOutput | DeleteConnectionCommandOutput | DeleteCrawlerCommandOutput | DeleteCustomEntityTypeCommandOutput | DeleteDataQualityRulesetCommandOutput | DeleteDatabaseCommandOutput | DeleteDevEndpointCommandOutput | DeleteJobCommandOutput | DeleteMLTransformCommandOutput | DeletePartitionCommandOutput | DeletePartitionIndexCommandOutput | DeleteRegistryCommandOutput | DeleteResourcePolicyCommandOutput | DeleteSchemaCommandOutput | DeleteSchemaVersionsCommandOutput | DeleteSecurityConfigurationCommandOutput | DeleteSessionCommandOutput | DeleteTableCommandOutput | DeleteTableOptimizerCommandOutput | DeleteTableVersionCommandOutput | DeleteTriggerCommandOutput | DeleteUsageProfileCommandOutput | DeleteUserDefinedFunctionCommandOutput | DeleteWorkflowCommandOutput | GetBlueprintCommandOutput | GetBlueprintRunCommandOutput | GetBlueprintRunsCommandOutput | GetCatalogImportStatusCommandOutput | GetClassifierCommandOutput | GetClassifiersCommandOutput | GetColumnStatisticsForPartitionCommandOutput | GetColumnStatisticsForTableCommandOutput | GetColumnStatisticsTaskRunCommandOutput | GetColumnStatisticsTaskRunsCommandOutput | GetConnectionCommandOutput | GetConnectionsCommandOutput | GetCrawlerCommandOutput | GetCrawlerMetricsCommandOutput | GetCrawlersCommandOutput | GetCustomEntityTypeCommandOutput | GetDataCatalogEncryptionSettingsCommandOutput | GetDataQualityModelCommandOutput | GetDataQualityModelResultCommandOutput | GetDataQualityResultCommandOutput | GetDataQualityRuleRecommendationRunCommandOutput | GetDataQualityRulesetCommandOutput | GetDataQualityRulesetEvaluationRunCommandOutput | GetDatabaseCommandOutput | GetDatabasesCommandOutput | GetDataflowGraphCommandOutput | GetDevEndpointCommandOutput | GetDevEndpointsCommandOutput | GetJobBookmarkCommandOutput | GetJobCommandOutput | GetJobRunCommandOutput | GetJobRunsCommandOutput | GetJobsCommandOutput | GetMLTaskRunCommandOutput | GetMLTaskRunsCommandOutput | GetMLTransformCommandOutput | GetMLTransformsCommandOutput | GetMappingCommandOutput | GetPartitionCommandOutput | GetPartitionIndexesCommandOutput | GetPartitionsCommandOutput | GetPlanCommandOutput | GetRegistryCommandOutput | GetResourcePoliciesCommandOutput | GetResourcePolicyCommandOutput | GetSchemaByDefinitionCommandOutput | GetSchemaCommandOutput | GetSchemaVersionCommandOutput | GetSchemaVersionsDiffCommandOutput | GetSecurityConfigurationCommandOutput | GetSecurityConfigurationsCommandOutput | GetSessionCommandOutput | GetStatementCommandOutput | GetTableCommandOutput | GetTableOptimizerCommandOutput | GetTableVersionCommandOutput | GetTableVersionsCommandOutput | GetTablesCommandOutput | GetTagsCommandOutput | GetTriggerCommandOutput | GetTriggersCommandOutput | GetUnfilteredPartitionMetadataCommandOutput | GetUnfilteredPartitionsMetadataCommandOutput | GetUnfilteredTableMetadataCommandOutput | GetUsageProfileCommandOutput | GetUserDefinedFunctionCommandOutput | GetUserDefinedFunctionsCommandOutput | GetWorkflowCommandOutput | GetWorkflowRunCommandOutput | GetWorkflowRunPropertiesCommandOutput | GetWorkflowRunsCommandOutput | ImportCatalogToGlueCommandOutput | ListBlueprintsCommandOutput | ListColumnStatisticsTaskRunsCommandOutput | ListCrawlersCommandOutput | ListCrawlsCommandOutput | ListCustomEntityTypesCommandOutput | ListDataQualityResultsCommandOutput | ListDataQualityRuleRecommendationRunsCommandOutput | ListDataQualityRulesetEvaluationRunsCommandOutput | ListDataQualityRulesetsCommandOutput | ListDataQualityStatisticAnnotationsCommandOutput | ListDataQualityStatisticsCommandOutput | ListDevEndpointsCommandOutput | ListJobsCommandOutput | ListMLTransformsCommandOutput | ListRegistriesCommandOutput | ListSchemaVersionsCommandOutput | ListSchemasCommandOutput | ListSessionsCommandOutput | ListStatementsCommandOutput | ListTableOptimizerRunsCommandOutput | ListTriggersCommandOutput | ListUsageProfilesCommandOutput | ListWorkflowsCommandOutput | PutDataCatalogEncryptionSettingsCommandOutput | PutDataQualityProfileAnnotationCommandOutput | PutResourcePolicyCommandOutput | PutSchemaVersionMetadataCommandOutput | PutWorkflowRunPropertiesCommandOutput | QuerySchemaVersionMetadataCommandOutput | RegisterSchemaVersionCommandOutput | RemoveSchemaVersionMetadataCommandOutput | ResetJobBookmarkCommandOutput | ResumeWorkflowRunCommandOutput | RunStatementCommandOutput | SearchTablesCommandOutput | StartBlueprintRunCommandOutput | StartColumnStatisticsTaskRunCommandOutput | StartCrawlerCommandOutput | StartCrawlerScheduleCommandOutput | StartDataQualityRuleRecommendationRunCommandOutput | StartDataQualityRulesetEvaluationRunCommandOutput | StartExportLabelsTaskRunCommandOutput | StartImportLabelsTaskRunCommandOutput | StartJobRunCommandOutput | StartMLEvaluationTaskRunCommandOutput | StartMLLabelingSetGenerationTaskRunCommandOutput | StartTriggerCommandOutput | StartWorkflowRunCommandOutput | StopColumnStatisticsTaskRunCommandOutput | StopCrawlerCommandOutput | StopCrawlerScheduleCommandOutput | StopSessionCommandOutput | StopTriggerCommandOutput | StopWorkflowRunCommandOutput | TagResourceCommandOutput | TestConnectionCommandOutput | UntagResourceCommandOutput | UpdateBlueprintCommandOutput | UpdateClassifierCommandOutput | UpdateColumnStatisticsForPartitionCommandOutput | UpdateColumnStatisticsForTableCommandOutput | UpdateConnectionCommandOutput | UpdateCrawlerCommandOutput | UpdateCrawlerScheduleCommandOutput | UpdateDataQualityRulesetCommandOutput | UpdateDatabaseCommandOutput | UpdateDevEndpointCommandOutput | UpdateJobCommandOutput | UpdateJobFromSourceControlCommandOutput | UpdateMLTransformCommandOutput | UpdatePartitionCommandOutput | UpdateRegistryCommandOutput | UpdateSchemaCommandOutput | UpdateSourceControlFromJobCommandOutput | UpdateTableCommandOutput | UpdateTableOptimizerCommandOutput | UpdateTriggerCommandOutput | UpdateUsageProfileCommandOutput | UpdateUserDefinedFunctionCommandOutput | UpdateWorkflowCommandOutput;
245
246
  /**
246
247
  * @public
247
248
  */
@@ -0,0 +1,123 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
4
+ import { TestConnectionRequest, TestConnectionResponse } from "../models/models_2";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link TestConnectionCommand}.
14
+ */
15
+ export interface TestConnectionCommandInput extends TestConnectionRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link TestConnectionCommand}.
21
+ */
22
+ export interface TestConnectionCommandOutput extends TestConnectionResponse, __MetadataBearer {
23
+ }
24
+ declare const TestConnectionCommand_base: {
25
+ new (input: TestConnectionCommandInput): import("@smithy/smithy-client").CommandImpl<TestConnectionCommandInput, TestConnectionCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [TestConnectionCommandInput]): import("@smithy/smithy-client").CommandImpl<TestConnectionCommandInput, TestConnectionCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Tests a connection to a service to validate the service credentials that you provide.</p>
31
+ * <p>You can either provide an existing connection name or a <code>TestConnectionInput</code> for testing a non-existing connection input. Providing both at the same time will cause an error.</p>
32
+ * <p>If the action is successful, the service sends back an HTTP 200 response.</p>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { GlueClient, TestConnectionCommand } from "@aws-sdk/client-glue"; // ES Modules import
37
+ * // const { GlueClient, TestConnectionCommand } = require("@aws-sdk/client-glue"); // CommonJS import
38
+ * const client = new GlueClient(config);
39
+ * const input = { // TestConnectionRequest
40
+ * ConnectionName: "STRING_VALUE",
41
+ * TestConnectionInput: { // TestConnectionInput
42
+ * ConnectionType: "JDBC" || "SFTP" || "MONGODB" || "KAFKA" || "NETWORK" || "MARKETPLACE" || "CUSTOM" || "SALESFORCE" || "VIEW_VALIDATION_REDSHIFT" || "VIEW_VALIDATION_ATHENA", // required
43
+ * ConnectionProperties: { // ConnectionProperties // required
44
+ * "<keys>": "STRING_VALUE",
45
+ * },
46
+ * AuthenticationConfiguration: { // AuthenticationConfigurationInput
47
+ * AuthenticationType: "BASIC" || "OAUTH2" || "CUSTOM",
48
+ * SecretArn: "STRING_VALUE",
49
+ * OAuth2Properties: { // OAuth2PropertiesInput
50
+ * OAuth2GrantType: "AUTHORIZATION_CODE" || "CLIENT_CREDENTIALS" || "JWT_BEARER",
51
+ * OAuth2ClientApplication: { // OAuth2ClientApplication
52
+ * UserManagedClientApplicationClientId: "STRING_VALUE",
53
+ * AWSManagedClientApplicationReference: "STRING_VALUE",
54
+ * },
55
+ * TokenUrl: "STRING_VALUE",
56
+ * TokenUrlParametersMap: { // TokenUrlParametersMap
57
+ * "<keys>": "STRING_VALUE",
58
+ * },
59
+ * AuthorizationCodeProperties: { // AuthorizationCodeProperties
60
+ * AuthorizationCode: "STRING_VALUE",
61
+ * RedirectUri: "STRING_VALUE",
62
+ * },
63
+ * },
64
+ * },
65
+ * },
66
+ * };
67
+ * const command = new TestConnectionCommand(input);
68
+ * const response = await client.send(command);
69
+ * // {};
70
+ *
71
+ * ```
72
+ *
73
+ * @param TestConnectionCommandInput - {@link TestConnectionCommandInput}
74
+ * @returns {@link TestConnectionCommandOutput}
75
+ * @see {@link TestConnectionCommandInput} for command's `input` shape.
76
+ * @see {@link TestConnectionCommandOutput} for command's `response` shape.
77
+ * @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape.
78
+ *
79
+ * @throws {@link AccessDeniedException} (client fault)
80
+ * <p>Access to a resource was denied.</p>
81
+ *
82
+ * @throws {@link ConflictException} (client fault)
83
+ * <p>The <code>CreatePartitions</code> API was called on a table that has indexes enabled. </p>
84
+ *
85
+ * @throws {@link EntityNotFoundException} (client fault)
86
+ * <p>A specified entity does not exist</p>
87
+ *
88
+ * @throws {@link FederationSourceException} (client fault)
89
+ * <p>A federation source failed.</p>
90
+ *
91
+ * @throws {@link GlueEncryptionException} (client fault)
92
+ * <p>An encryption operation failed.</p>
93
+ *
94
+ * @throws {@link InternalServiceException} (server fault)
95
+ * <p>An internal service error occurred.</p>
96
+ *
97
+ * @throws {@link InvalidInputException} (client fault)
98
+ * <p>The input provided was not valid.</p>
99
+ *
100
+ * @throws {@link OperationTimeoutException} (client fault)
101
+ * <p>The operation timed out.</p>
102
+ *
103
+ * @throws {@link ResourceNumberLimitExceededException} (client fault)
104
+ * <p>A resource numerical limit was exceeded.</p>
105
+ *
106
+ * @throws {@link GlueServiceException}
107
+ * <p>Base exception class for all service exceptions from Glue service.</p>
108
+ *
109
+ * @public
110
+ */
111
+ export declare class TestConnectionCommand extends TestConnectionCommand_base {
112
+ /** @internal type navigation helper, not in runtime. */
113
+ protected static __types: {
114
+ api: {
115
+ input: TestConnectionRequest;
116
+ output: {};
117
+ };
118
+ sdk: {
119
+ input: TestConnectionCommandInput;
120
+ output: TestConnectionCommandOutput;
121
+ };
122
+ };
123
+ }
@@ -1,7 +1,8 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
4
- import { UpdateSourceControlFromJobRequest, UpdateSourceControlFromJobResponse } from "../models/models_2";
4
+ import { UpdateSourceControlFromJobRequest } from "../models/models_2";
5
+ import { UpdateSourceControlFromJobResponse } from "../models/models_3";
5
6
  /**
6
7
  * @public
7
8
  */
@@ -1,8 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient";
4
- import { UpdateTableRequest } from "../models/models_2";
5
- import { UpdateTableResponse } from "../models/models_3";
4
+ import { UpdateTableRequest, UpdateTableResponse } from "../models/models_3";
6
5
  /**
7
6
  * @public
8
7
  */
@@ -198,6 +198,7 @@ export * from "./StopSessionCommand";
198
198
  export * from "./StopTriggerCommand";
199
199
  export * from "./StopWorkflowRunCommand";
200
200
  export * from "./TagResourceCommand";
201
+ export * from "./TestConnectionCommand";
201
202
  export * from "./UntagResourceCommand";
202
203
  export * from "./UpdateBlueprintCommand";
203
204
  export * from "./UpdateClassifierCommand";
@@ -1,7 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { GlueServiceException as __BaseException } from "./GlueServiceException";
3
- import { AuditContext, CrawlerTargets, CustomEntityType, DataSource, ErrorDetail, ExecutionClass, GlueTable, InclusionAnnotationValue, LakeFormationConfiguration, LineageConfiguration, NotificationProperty, Partition, PartitionInput, PartitionValueList, RecrawlPolicy, SchemaChangePolicy, SchemaId, SourceControlAuthStrategy, SourceControlProvider, StatisticAnnotation, TableOptimizer, TableOptimizerRun, TableOptimizerType, TimestampedInclusionAnnotation, Trigger, WorkerType, Workflow, WorkflowRun } from "./models_0";
4
- import { CatalogEntry, ColumnStatistics, Compatibility, ConnectionInput, CsvHeaderOption, CsvSerdeOption, DatabaseInput, DataCatalogEncryptionSettings, DataFormat, DataQualityEvaluationRunAdditionalRunOptions, DataQualityTargetTable, EncryptionConfiguration, JobBookmarkEntry, Language, Location, MappingEntry, Permission, PrincipalType, ProfileConfiguration, RegistryId, RegistryStatus, ResourceShareType, ResourceUri, SchemaStatus, SchemaVersionStatus, Session, SortDirectionType, TableInput, TaskStatusType, TransformEncryption, TransformParameters, TransformType, ViewDialect } from "./models_1";
3
+ import { AuditContext, AuthenticationConfigurationInput, CrawlerTargets, CustomEntityType, DataSource, ErrorDetail, ExecutionClass, GlueTable, InclusionAnnotationValue, LakeFormationConfiguration, LineageConfiguration, NotificationProperty, Partition, PartitionInput, PartitionValueList, RecrawlPolicy, SchemaChangePolicy, SchemaId, SourceControlAuthStrategy, SourceControlProvider, StatisticAnnotation, TableOptimizer, TableOptimizerRun, TableOptimizerType, TimestampedInclusionAnnotation, Trigger, WorkerType, Workflow, WorkflowRun } from "./models_0";
4
+ import { CatalogEntry, ColumnStatistics, Compatibility, ConnectionInput, ConnectionPropertyKey, ConnectionType, CsvHeaderOption, CsvSerdeOption, DatabaseInput, DataCatalogEncryptionSettings, DataFormat, DataQualityEvaluationRunAdditionalRunOptions, DataQualityTargetTable, EncryptionConfiguration, JobBookmarkEntry, Language, Location, MappingEntry, Permission, PrincipalType, ProfileConfiguration, RegistryId, RegistryStatus, ResourceShareType, ResourceUri, SchemaStatus, SchemaVersionStatus, Session, SortDirectionType, TaskStatusType, TransformEncryption, TransformParameters, TransformType, ViewDialect } from "./models_1";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -5888,6 +5888,60 @@ export interface TagResourceRequest {
5888
5888
  */
5889
5889
  export interface TagResourceResponse {
5890
5890
  }
5891
+ /**
5892
+ * <p>A structure that is used to specify testing a connection to a service.</p>
5893
+ * @public
5894
+ */
5895
+ export interface TestConnectionInput {
5896
+ /**
5897
+ * <p>The type of connection to test. This operation is only available for the <code>JDBC</code> or <code>SALESFORCE</code> connection types.</p>
5898
+ * @public
5899
+ */
5900
+ ConnectionType: ConnectionType | undefined;
5901
+ /**
5902
+ * <p>The key-value pairs that define parameters for the connection.</p>
5903
+ * <p>JDBC connections use the following connection properties:</p>
5904
+ * <ul>
5905
+ * <li>
5906
+ * <p>Required: All of (<code>HOST</code>, <code>PORT</code>, <code>JDBC_ENGINE</code>) or <code>JDBC_CONNECTION_URL</code>.</p>
5907
+ * </li>
5908
+ * <li>
5909
+ * <p>Required: All of (<code>USERNAME</code>, <code>PASSWORD</code>) or <code>SECRET_ID</code>.</p>
5910
+ * </li>
5911
+ * <li>
5912
+ * <p>Optional: <code>JDBC_ENFORCE_SSL</code>, <code>CUSTOM_JDBC_CERT</code>, <code>CUSTOM_JDBC_CERT_STRING</code>, <code>SKIP_CUSTOM_JDBC_CERT_VALIDATION</code>. These parameters are used to configure SSL with JDBC.</p>
5913
+ * </li>
5914
+ * </ul>
5915
+ * <p>SALESFORCE connections require the <code>AuthenticationConfiguration</code> member to be configured.</p>
5916
+ * @public
5917
+ */
5918
+ ConnectionProperties: Partial<Record<ConnectionPropertyKey, string>> | undefined;
5919
+ /**
5920
+ * <p>A structure containing the authentication configuration in the TestConnection request. Required for a connection to Salesforce using OAuth authentication.</p>
5921
+ * @public
5922
+ */
5923
+ AuthenticationConfiguration?: AuthenticationConfigurationInput;
5924
+ }
5925
+ /**
5926
+ * @public
5927
+ */
5928
+ export interface TestConnectionRequest {
5929
+ /**
5930
+ * <p>Optional. The name of the connection to test. If only name is provided, the operation will get the connection and use that for testing.</p>
5931
+ * @public
5932
+ */
5933
+ ConnectionName?: string;
5934
+ /**
5935
+ * <p>A structure that is used to specify testing a connection to a service.</p>
5936
+ * @public
5937
+ */
5938
+ TestConnectionInput?: TestConnectionInput;
5939
+ }
5940
+ /**
5941
+ * @public
5942
+ */
5943
+ export interface TestConnectionResponse {
5944
+ }
5891
5945
  /**
5892
5946
  * @public
5893
5947
  */
@@ -6840,80 +6894,6 @@ export interface UpdateSourceControlFromJobRequest {
6840
6894
  */
6841
6895
  AuthToken?: string;
6842
6896
  }
6843
- /**
6844
- * @public
6845
- */
6846
- export interface UpdateSourceControlFromJobResponse {
6847
- /**
6848
- * <p>The name of the Glue job.</p>
6849
- * @public
6850
- */
6851
- JobName?: string;
6852
- }
6853
- /**
6854
- * @public
6855
- * @enum
6856
- */
6857
- export declare const ViewUpdateAction: {
6858
- readonly ADD: "ADD";
6859
- readonly ADD_OR_REPLACE: "ADD_OR_REPLACE";
6860
- readonly DROP: "DROP";
6861
- readonly REPLACE: "REPLACE";
6862
- };
6863
- /**
6864
- * @public
6865
- */
6866
- export type ViewUpdateAction = (typeof ViewUpdateAction)[keyof typeof ViewUpdateAction];
6867
- /**
6868
- * @public
6869
- */
6870
- export interface UpdateTableRequest {
6871
- /**
6872
- * <p>The ID of the Data Catalog where the table resides. If none is provided, the Amazon Web Services account
6873
- * ID is used by default.</p>
6874
- * @public
6875
- */
6876
- CatalogId?: string;
6877
- /**
6878
- * <p>The name of the catalog database in which the table resides. For Hive
6879
- * compatibility, this name is entirely lowercase.</p>
6880
- * @public
6881
- */
6882
- DatabaseName: string | undefined;
6883
- /**
6884
- * <p>An updated <code>TableInput</code> object to define the metadata table
6885
- * in the catalog.</p>
6886
- * @public
6887
- */
6888
- TableInput: TableInput | undefined;
6889
- /**
6890
- * <p>By default, <code>UpdateTable</code> always creates an archived version of the table
6891
- * before updating it. However, if <code>skipArchive</code> is set to true,
6892
- * <code>UpdateTable</code> does not create the archived version.</p>
6893
- * @public
6894
- */
6895
- SkipArchive?: boolean;
6896
- /**
6897
- * <p>The transaction ID at which to update the table contents. </p>
6898
- * @public
6899
- */
6900
- TransactionId?: string;
6901
- /**
6902
- * <p>The version ID at which to update the table contents. </p>
6903
- * @public
6904
- */
6905
- VersionId?: string;
6906
- /**
6907
- * <p>The operation to be performed when updating the view.</p>
6908
- * @public
6909
- */
6910
- ViewUpdateAction?: ViewUpdateAction;
6911
- /**
6912
- * <p>A flag that can be set to true to ignore matching storage descriptor and subobject matching requirements.</p>
6913
- * @public
6914
- */
6915
- Force?: boolean;
6916
- }
6917
6897
  /**
6918
6898
  * @internal
6919
6899
  */
@@ -1,6 +1,80 @@
1
1
  import { Action, Aggregate, AmazonRedshiftSource, AmazonRedshiftTarget, AthenaConnectorSource, BasicCatalogTarget, CatalogDeltaSource, CatalogHudiSource, CatalogKafkaSource, CatalogKinesisSource, CatalogSource, Column, ConnectionsList, ConnectorDataSource, ConnectorDataTarget, CustomCode, DirectJDBCSource, DirectKafkaSource, DirectKinesisSource, DropDuplicates, DropFields, DropNullFields, DynamicTransform, DynamoDBCatalogSource, ErrorDetail, EvaluateDataQuality, EvaluateDataQualityMultiFrame, EventBatchingCondition, ExecutionClass, ExecutionProperty, FillMissingValues, Filter, GovernedCatalogSource, GovernedCatalogTarget, JDBCConnectorSource, JDBCConnectorTarget, JobCommand, JobMode, Join, Merge, MicrosoftSQLServerCatalogSource, MicrosoftSQLServerCatalogTarget, MySQLCatalogSource, MySQLCatalogTarget, NotificationProperty, OracleSQLCatalogSource, OracleSQLCatalogTarget, PIIDetection, PostgreSQLCatalogSource, PostgreSQLCatalogTarget, Predicate, Recipe, RedshiftSource, RedshiftTarget, RelationalCatalogSource, RenameField, S3CatalogDeltaSource, S3CatalogHudiSource, S3CatalogSource, S3CatalogTarget, S3CsvSource, S3DeltaCatalogTarget, S3DeltaDirectTarget, S3DeltaSource, S3DirectTarget, S3GlueParquetTarget, S3HudiCatalogTarget, S3HudiDirectTarget, S3HudiSource, S3JsonSource, S3ParquetSource, SelectFields, SelectFromCollection, SnowflakeSource, SnowflakeTarget, SourceControlDetails, SparkConnectorSource, SparkConnectorTarget, SparkSQL, Spigot, SplitFields, StorageDescriptor, TableOptimizerConfiguration, TableOptimizerType, Trigger, Union, WorkerType } from "./models_0";
2
- import { Permission, ProfileConfiguration, TableIdentifier, UserDefinedFunctionInput } from "./models_1";
2
+ import { Permission, ProfileConfiguration, TableIdentifier, TableInput, UserDefinedFunctionInput } from "./models_1";
3
3
  import { ColumnRowFilter, FederatedTable, ResourceAction, ResourceState, ViewDefinition, ViewValidation } from "./models_2";
4
+ /**
5
+ * @public
6
+ */
7
+ export interface UpdateSourceControlFromJobResponse {
8
+ /**
9
+ * <p>The name of the Glue job.</p>
10
+ * @public
11
+ */
12
+ JobName?: string;
13
+ }
14
+ /**
15
+ * @public
16
+ * @enum
17
+ */
18
+ export declare const ViewUpdateAction: {
19
+ readonly ADD: "ADD";
20
+ readonly ADD_OR_REPLACE: "ADD_OR_REPLACE";
21
+ readonly DROP: "DROP";
22
+ readonly REPLACE: "REPLACE";
23
+ };
24
+ /**
25
+ * @public
26
+ */
27
+ export type ViewUpdateAction = (typeof ViewUpdateAction)[keyof typeof ViewUpdateAction];
28
+ /**
29
+ * @public
30
+ */
31
+ export interface UpdateTableRequest {
32
+ /**
33
+ * <p>The ID of the Data Catalog where the table resides. If none is provided, the Amazon Web Services account
34
+ * ID is used by default.</p>
35
+ * @public
36
+ */
37
+ CatalogId?: string;
38
+ /**
39
+ * <p>The name of the catalog database in which the table resides. For Hive
40
+ * compatibility, this name is entirely lowercase.</p>
41
+ * @public
42
+ */
43
+ DatabaseName: string | undefined;
44
+ /**
45
+ * <p>An updated <code>TableInput</code> object to define the metadata table
46
+ * in the catalog.</p>
47
+ * @public
48
+ */
49
+ TableInput: TableInput | undefined;
50
+ /**
51
+ * <p>By default, <code>UpdateTable</code> always creates an archived version of the table
52
+ * before updating it. However, if <code>skipArchive</code> is set to true,
53
+ * <code>UpdateTable</code> does not create the archived version.</p>
54
+ * @public
55
+ */
56
+ SkipArchive?: boolean;
57
+ /**
58
+ * <p>The transaction ID at which to update the table contents. </p>
59
+ * @public
60
+ */
61
+ TransactionId?: string;
62
+ /**
63
+ * <p>The version ID at which to update the table contents. </p>
64
+ * @public
65
+ */
66
+ VersionId?: string;
67
+ /**
68
+ * <p>The operation to be performed when updating the view.</p>
69
+ * @public
70
+ */
71
+ ViewUpdateAction?: ViewUpdateAction;
72
+ /**
73
+ * <p>A flag that can be set to true to ignore matching storage descriptor and subobject matching requirements.</p>
74
+ * @public
75
+ */
76
+ Force?: boolean;
77
+ }
4
78
  /**
5
79
  * @public
6
80
  */
@@ -200,6 +200,7 @@ import { StopSessionCommandInput, StopSessionCommandOutput } from "../commands/S
200
200
  import { StopTriggerCommandInput, StopTriggerCommandOutput } from "../commands/StopTriggerCommand";
201
201
  import { StopWorkflowRunCommandInput, StopWorkflowRunCommandOutput } from "../commands/StopWorkflowRunCommand";
202
202
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
203
+ import { TestConnectionCommandInput, TestConnectionCommandOutput } from "../commands/TestConnectionCommand";
203
204
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
204
205
  import { UpdateBlueprintCommandInput, UpdateBlueprintCommandOutput } from "../commands/UpdateBlueprintCommand";
205
206
  import { UpdateClassifierCommandInput, UpdateClassifierCommandOutput } from "../commands/UpdateClassifierCommand";
@@ -1024,6 +1025,10 @@ export declare const se_StopWorkflowRunCommand: (input: StopWorkflowRunCommandIn
1024
1025
  * serializeAws_json1_1TagResourceCommand
1025
1026
  */
1026
1027
  export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
1028
+ /**
1029
+ * serializeAws_json1_1TestConnectionCommand
1030
+ */
1031
+ export declare const se_TestConnectionCommand: (input: TestConnectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
1027
1032
  /**
1028
1033
  * serializeAws_json1_1UntagResourceCommand
1029
1034
  */
@@ -1920,6 +1925,10 @@ export declare const de_StopWorkflowRunCommand: (output: __HttpResponse, context
1920
1925
  * deserializeAws_json1_1TagResourceCommand
1921
1926
  */
1922
1927
  export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
1928
+ /**
1929
+ * deserializeAws_json1_1TestConnectionCommand
1930
+ */
1931
+ export declare const de_TestConnectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TestConnectionCommandOutput>;
1923
1932
  /**
1924
1933
  * deserializeAws_json1_1UntagResourceCommand
1925
1934
  */
@@ -799,6 +799,10 @@ import {
799
799
  TagResourceCommandInput,
800
800
  TagResourceCommandOutput,
801
801
  } from "./commands/TagResourceCommand";
802
+ import {
803
+ TestConnectionCommandInput,
804
+ TestConnectionCommandOutput,
805
+ } from "./commands/TestConnectionCommand";
802
806
  import {
803
807
  UntagResourceCommandInput,
804
808
  UntagResourceCommandOutput,
@@ -3610,6 +3614,20 @@ export interface Glue {
3610
3614
  options: __HttpHandlerOptions,
3611
3615
  cb: (err: any, data?: TagResourceCommandOutput) => void
3612
3616
  ): void;
3617
+ testConnection(): Promise<TestConnectionCommandOutput>;
3618
+ testConnection(
3619
+ args: TestConnectionCommandInput,
3620
+ options?: __HttpHandlerOptions
3621
+ ): Promise<TestConnectionCommandOutput>;
3622
+ testConnection(
3623
+ args: TestConnectionCommandInput,
3624
+ cb: (err: any, data?: TestConnectionCommandOutput) => void
3625
+ ): void;
3626
+ testConnection(
3627
+ args: TestConnectionCommandInput,
3628
+ options: __HttpHandlerOptions,
3629
+ cb: (err: any, data?: TestConnectionCommandOutput) => void
3630
+ ): void;
3613
3631
  untagResource(
3614
3632
  args: UntagResourceCommandInput,
3615
3633
  options?: __HttpHandlerOptions
@@ -845,6 +845,10 @@ import {
845
845
  TagResourceCommandInput,
846
846
  TagResourceCommandOutput,
847
847
  } from "./commands/TagResourceCommand";
848
+ import {
849
+ TestConnectionCommandInput,
850
+ TestConnectionCommandOutput,
851
+ } from "./commands/TestConnectionCommand";
848
852
  import {
849
853
  UntagResourceCommandInput,
850
854
  UntagResourceCommandOutput,
@@ -1149,6 +1153,7 @@ export type ServiceInputTypes =
1149
1153
  | StopTriggerCommandInput
1150
1154
  | StopWorkflowRunCommandInput
1151
1155
  | TagResourceCommandInput
1156
+ | TestConnectionCommandInput
1152
1157
  | UntagResourceCommandInput
1153
1158
  | UpdateBlueprintCommandInput
1154
1159
  | UpdateClassifierCommandInput
@@ -1374,6 +1379,7 @@ export type ServiceOutputTypes =
1374
1379
  | StopTriggerCommandOutput
1375
1380
  | StopWorkflowRunCommandOutput
1376
1381
  | TagResourceCommandOutput
1382
+ | TestConnectionCommandOutput
1377
1383
  | UntagResourceCommandOutput
1378
1384
  | UpdateBlueprintCommandOutput
1379
1385
  | UpdateClassifierCommandOutput
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ GlueClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../GlueClient";
8
+ import {
9
+ TestConnectionRequest,
10
+ TestConnectionResponse,
11
+ } from "../models/models_2";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface TestConnectionCommandInput extends TestConnectionRequest {}
15
+ export interface TestConnectionCommandOutput
16
+ extends TestConnectionResponse,
17
+ __MetadataBearer {}
18
+ declare const TestConnectionCommand_base: {
19
+ new (
20
+ input: TestConnectionCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ TestConnectionCommandInput,
23
+ TestConnectionCommandOutput,
24
+ GlueClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ ...[input]: [] | [TestConnectionCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ TestConnectionCommandInput,
32
+ TestConnectionCommandOutput,
33
+ GlueClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class TestConnectionCommand extends TestConnectionCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: TestConnectionRequest;
43
+ output: {};
44
+ };
45
+ sdk: {
46
+ input: TestConnectionCommandInput;
47
+ output: TestConnectionCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../GlueClient";
8
- import {
9
- UpdateSourceControlFromJobRequest,
10
- UpdateSourceControlFromJobResponse,
11
- } from "../models/models_2";
8
+ import { UpdateSourceControlFromJobRequest } from "../models/models_2";
9
+ import { UpdateSourceControlFromJobResponse } from "../models/models_3";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface UpdateSourceControlFromJobCommandInput
@@ -5,8 +5,7 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../GlueClient";
8
- import { UpdateTableRequest } from "../models/models_2";
9
- import { UpdateTableResponse } from "../models/models_3";
8
+ import { UpdateTableRequest, UpdateTableResponse } from "../models/models_3";
10
9
  export { __MetadataBearer };
11
10
  export { $Command };
12
11
  export interface UpdateTableCommandInput extends UpdateTableRequest {}
@@ -198,6 +198,7 @@ export * from "./StopSessionCommand";
198
198
  export * from "./StopTriggerCommand";
199
199
  export * from "./StopWorkflowRunCommand";
200
200
  export * from "./TagResourceCommand";
201
+ export * from "./TestConnectionCommand";
201
202
  export * from "./UntagResourceCommand";
202
203
  export * from "./UpdateBlueprintCommand";
203
204
  export * from "./UpdateClassifierCommand";
@@ -2,6 +2,7 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-cli
2
2
  import { GlueServiceException as __BaseException } from "./GlueServiceException";
3
3
  import {
4
4
  AuditContext,
5
+ AuthenticationConfigurationInput,
5
6
  CrawlerTargets,
6
7
  CustomEntityType,
7
8
  DataSource,
@@ -35,6 +36,8 @@ import {
35
36
  ColumnStatistics,
36
37
  Compatibility,
37
38
  ConnectionInput,
39
+ ConnectionPropertyKey,
40
+ ConnectionType,
38
41
  CsvHeaderOption,
39
42
  CsvSerdeOption,
40
43
  DatabaseInput,
@@ -58,7 +61,6 @@ import {
58
61
  SchemaVersionStatus,
59
62
  Session,
60
63
  SortDirectionType,
61
- TableInput,
62
64
  TaskStatusType,
63
65
  TransformEncryption,
64
66
  TransformParameters,
@@ -1481,6 +1483,18 @@ export interface TagResourceRequest {
1481
1483
  TagsToAdd: Record<string, string> | undefined;
1482
1484
  }
1483
1485
  export interface TagResourceResponse {}
1486
+ export interface TestConnectionInput {
1487
+ ConnectionType: ConnectionType | undefined;
1488
+ ConnectionProperties:
1489
+ | Partial<Record<ConnectionPropertyKey, string>>
1490
+ | undefined;
1491
+ AuthenticationConfiguration?: AuthenticationConfigurationInput;
1492
+ }
1493
+ export interface TestConnectionRequest {
1494
+ ConnectionName?: string;
1495
+ TestConnectionInput?: TestConnectionInput;
1496
+ }
1497
+ export interface TestConnectionResponse {}
1484
1498
  export interface UntagResourceRequest {
1485
1499
  ResourceArn: string | undefined;
1486
1500
  TagsToRemove: string[] | undefined;
@@ -1689,27 +1703,6 @@ export interface UpdateSourceControlFromJobRequest {
1689
1703
  AuthStrategy?: SourceControlAuthStrategy;
1690
1704
  AuthToken?: string;
1691
1705
  }
1692
- export interface UpdateSourceControlFromJobResponse {
1693
- JobName?: string;
1694
- }
1695
- export declare const ViewUpdateAction: {
1696
- readonly ADD: "ADD";
1697
- readonly ADD_OR_REPLACE: "ADD_OR_REPLACE";
1698
- readonly DROP: "DROP";
1699
- readonly REPLACE: "REPLACE";
1700
- };
1701
- export type ViewUpdateAction =
1702
- (typeof ViewUpdateAction)[keyof typeof ViewUpdateAction];
1703
- export interface UpdateTableRequest {
1704
- CatalogId?: string;
1705
- DatabaseName: string | undefined;
1706
- TableInput: TableInput | undefined;
1707
- SkipArchive?: boolean;
1708
- TransactionId?: string;
1709
- VersionId?: string;
1710
- ViewUpdateAction?: ViewUpdateAction;
1711
- Force?: boolean;
1712
- }
1713
1706
  export declare const StatisticSummaryFilterSensitiveLog: (
1714
1707
  obj: StatisticSummary
1715
1708
  ) => any;
@@ -91,6 +91,7 @@ import {
91
91
  Permission,
92
92
  ProfileConfiguration,
93
93
  TableIdentifier,
94
+ TableInput,
94
95
  UserDefinedFunctionInput,
95
96
  } from "./models_1";
96
97
  import {
@@ -101,6 +102,27 @@ import {
101
102
  ViewDefinition,
102
103
  ViewValidation,
103
104
  } from "./models_2";
105
+ export interface UpdateSourceControlFromJobResponse {
106
+ JobName?: string;
107
+ }
108
+ export declare const ViewUpdateAction: {
109
+ readonly ADD: "ADD";
110
+ readonly ADD_OR_REPLACE: "ADD_OR_REPLACE";
111
+ readonly DROP: "DROP";
112
+ readonly REPLACE: "REPLACE";
113
+ };
114
+ export type ViewUpdateAction =
115
+ (typeof ViewUpdateAction)[keyof typeof ViewUpdateAction];
116
+ export interface UpdateTableRequest {
117
+ CatalogId?: string;
118
+ DatabaseName: string | undefined;
119
+ TableInput: TableInput | undefined;
120
+ SkipArchive?: boolean;
121
+ TransactionId?: string;
122
+ VersionId?: string;
123
+ ViewUpdateAction?: ViewUpdateAction;
124
+ Force?: boolean;
125
+ }
104
126
  export interface UpdateTableResponse {}
105
127
  export interface UpdateTableOptimizerRequest {
106
128
  CatalogId: string | undefined;
@@ -803,6 +803,10 @@ import {
803
803
  TagResourceCommandInput,
804
804
  TagResourceCommandOutput,
805
805
  } from "../commands/TagResourceCommand";
806
+ import {
807
+ TestConnectionCommandInput,
808
+ TestConnectionCommandOutput,
809
+ } from "../commands/TestConnectionCommand";
806
810
  import {
807
811
  UntagResourceCommandInput,
808
812
  UntagResourceCommandOutput,
@@ -1699,6 +1703,10 @@ export declare const se_TagResourceCommand: (
1699
1703
  input: TagResourceCommandInput,
1700
1704
  context: __SerdeContext
1701
1705
  ) => Promise<__HttpRequest>;
1706
+ export declare const se_TestConnectionCommand: (
1707
+ input: TestConnectionCommandInput,
1708
+ context: __SerdeContext
1709
+ ) => Promise<__HttpRequest>;
1702
1710
  export declare const se_UntagResourceCommand: (
1703
1711
  input: UntagResourceCommandInput,
1704
1712
  context: __SerdeContext
@@ -2595,6 +2603,10 @@ export declare const de_TagResourceCommand: (
2595
2603
  output: __HttpResponse,
2596
2604
  context: __SerdeContext
2597
2605
  ) => Promise<TagResourceCommandOutput>;
2606
+ export declare const de_TestConnectionCommand: (
2607
+ output: __HttpResponse,
2608
+ context: __SerdeContext
2609
+ ) => Promise<TestConnectionCommandOutput>;
2598
2610
  export declare const de_UntagResourceCommand: (
2599
2611
  output: __HttpResponse,
2600
2612
  context: __SerdeContext
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.654.0",
4
+ "version": "3.655.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",