@aws-sdk/client-glue 3.696.0 → 3.705.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 +176 -0
- package/dist-cjs/index.js +1529 -163
- package/dist-es/Glue.js +44 -0
- package/dist-es/commands/CreateCatalogCommand.js +22 -0
- package/dist-es/commands/CreateIntegrationCommand.js +22 -0
- package/dist-es/commands/CreateIntegrationResourcePropertyCommand.js +22 -0
- package/dist-es/commands/CreateIntegrationTablePropertiesCommand.js +22 -0
- package/dist-es/commands/DeleteCatalogCommand.js +22 -0
- package/dist-es/commands/DeleteIntegrationCommand.js +22 -0
- package/dist-es/commands/DeleteIntegrationTablePropertiesCommand.js +22 -0
- package/dist-es/commands/DescribeConnectionTypeCommand.js +22 -0
- package/dist-es/commands/DescribeEntityCommand.js +22 -0
- package/dist-es/commands/DescribeInboundIntegrationsCommand.js +22 -0
- package/dist-es/commands/DescribeIntegrationsCommand.js +22 -0
- package/dist-es/commands/GetCatalogCommand.js +22 -0
- package/dist-es/commands/GetCatalogsCommand.js +22 -0
- package/dist-es/commands/GetDataQualityResultCommand.js +1 -1
- package/dist-es/commands/GetEntityRecordsCommand.js +23 -0
- package/dist-es/commands/GetIntegrationResourcePropertyCommand.js +22 -0
- package/dist-es/commands/GetIntegrationTablePropertiesCommand.js +22 -0
- package/dist-es/commands/ListConnectionTypesCommand.js +22 -0
- package/dist-es/commands/ListEntitiesCommand.js +22 -0
- package/dist-es/commands/ModifyIntegrationCommand.js +22 -0
- package/dist-es/commands/TestConnectionCommand.js +1 -1
- package/dist-es/commands/UpdateCatalogCommand.js +22 -0
- package/dist-es/commands/UpdateConnectionCommand.js +1 -1
- package/dist-es/commands/UpdateIntegrationResourcePropertyCommand.js +22 -0
- package/dist-es/commands/UpdateIntegrationTablePropertiesCommand.js +22 -0
- package/dist-es/commands/index.js +22 -0
- package/dist-es/models/models_0.js +28 -0
- package/dist-es/models/models_1.js +210 -57
- package/dist-es/models/models_2.js +37 -148
- package/dist-es/models/models_3.js +149 -0
- package/dist-es/pagination/DescribeEntityPaginator.js +4 -0
- package/dist-es/pagination/ListConnectionTypesPaginator.js +4 -0
- package/dist-es/pagination/ListEntitiesPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -1
- package/dist-es/protocols/Aws_json1_1.js +704 -20
- package/dist-types/Glue.d.ts +159 -0
- package/dist-types/GlueClient.d.ts +24 -2
- package/dist-types/commands/BatchStopJobRunCommand.d.ts +2 -1
- package/dist-types/commands/BatchUpdatePartitionCommand.d.ts +1 -1
- package/dist-types/commands/CancelDataQualityRuleRecommendationRunCommand.d.ts +1 -2
- package/dist-types/commands/CreateCatalogCommand.d.ts +149 -0
- package/dist-types/commands/CreateConnectionCommand.d.ts +26 -3
- package/dist-types/commands/CreateDatabaseCommand.d.ts +6 -0
- package/dist-types/commands/CreateIntegrationCommand.d.ts +144 -0
- package/dist-types/commands/CreateIntegrationResourcePropertyCommand.d.ts +113 -0
- package/dist-types/commands/CreateIntegrationTablePropertiesCommand.d.ts +111 -0
- package/dist-types/commands/CreateTableCommand.d.ts +6 -0
- package/dist-types/commands/DeleteCatalogCommand.d.ts +95 -0
- package/dist-types/commands/DeleteDatabaseCommand.d.ts +6 -0
- package/dist-types/commands/DeleteIntegrationCommand.d.ts +127 -0
- package/dist-types/commands/DeleteIntegrationTablePropertiesCommand.d.ts +91 -0
- package/dist-types/commands/DeleteTableCommand.d.ts +6 -0
- package/dist-types/commands/DescribeConnectionTypeCommand.d.ts +222 -0
- package/dist-types/commands/DescribeEntityCommand.d.ts +125 -0
- package/dist-types/commands/DescribeInboundIntegrationsCommand.d.ts +116 -0
- package/dist-types/commands/DescribeIntegrationsCommand.d.ts +130 -0
- package/dist-types/commands/GetCatalogCommand.d.ts +147 -0
- package/dist-types/commands/GetCatalogsCommand.d.ts +153 -0
- package/dist-types/commands/GetColumnStatisticsTaskSettingsCommand.d.ts +10 -1
- package/dist-types/commands/GetConnectionCommand.d.ts +15 -4
- package/dist-types/commands/GetConnectionsCommand.d.ts +16 -5
- package/dist-types/commands/GetCrawlerCommand.d.ts +1 -1
- package/dist-types/commands/GetCrawlerMetricsCommand.d.ts +1 -1
- package/dist-types/commands/GetCrawlersCommand.d.ts +1 -1
- package/dist-types/commands/GetCustomEntityTypeCommand.d.ts +1 -1
- package/dist-types/commands/GetDataCatalogEncryptionSettingsCommand.d.ts +1 -1
- package/dist-types/commands/GetDataQualityModelCommand.d.ts +1 -1
- package/dist-types/commands/GetDataQualityModelResultCommand.d.ts +1 -1
- package/dist-types/commands/GetDataQualityResultCommand.d.ts +1 -1
- package/dist-types/commands/GetDataQualityRuleRecommendationRunCommand.d.ts +1 -1
- package/dist-types/commands/GetDataQualityRulesetCommand.d.ts +1 -1
- package/dist-types/commands/GetDataQualityRulesetEvaluationRunCommand.d.ts +1 -1
- package/dist-types/commands/GetDatabaseCommand.d.ts +4 -1
- package/dist-types/commands/GetDatabasesCommand.d.ts +10 -1
- package/dist-types/commands/GetDataflowGraphCommand.d.ts +1 -1
- package/dist-types/commands/GetDevEndpointCommand.d.ts +1 -1
- package/dist-types/commands/GetDevEndpointsCommand.d.ts +1 -1
- package/dist-types/commands/GetEntityRecordsCommand.d.ts +110 -0
- package/dist-types/commands/GetIntegrationResourcePropertyCommand.d.ts +101 -0
- package/dist-types/commands/GetIntegrationTablePropertiesCommand.d.ts +114 -0
- package/dist-types/commands/GetJobBookmarkCommand.d.ts +1 -1
- package/dist-types/commands/GetJobCommand.d.ts +1 -1
- package/dist-types/commands/GetJobRunCommand.d.ts +1 -1
- package/dist-types/commands/GetJobRunsCommand.d.ts +1 -1
- package/dist-types/commands/GetJobsCommand.d.ts +1 -1
- package/dist-types/commands/GetMLTaskRunCommand.d.ts +1 -2
- package/dist-types/commands/GetMappingCommand.d.ts +1 -1
- package/dist-types/commands/ListConnectionTypesCommand.d.ts +95 -0
- package/dist-types/commands/ListEntitiesCommand.d.ts +108 -0
- package/dist-types/commands/ModifyIntegrationCommand.d.ts +130 -0
- package/dist-types/commands/SearchTablesCommand.d.ts +1 -2
- package/dist-types/commands/StartBlueprintRunCommand.d.ts +1 -1
- package/dist-types/commands/StartColumnStatisticsTaskRunCommand.d.ts +1 -1
- package/dist-types/commands/StartColumnStatisticsTaskRunScheduleCommand.d.ts +1 -1
- package/dist-types/commands/StartCrawlerCommand.d.ts +1 -1
- package/dist-types/commands/StartCrawlerScheduleCommand.d.ts +1 -1
- package/dist-types/commands/StartDataQualityRuleRecommendationRunCommand.d.ts +1 -1
- package/dist-types/commands/StartDataQualityRulesetEvaluationRunCommand.d.ts +1 -1
- package/dist-types/commands/StartExportLabelsTaskRunCommand.d.ts +1 -1
- package/dist-types/commands/StartImportLabelsTaskRunCommand.d.ts +1 -1
- package/dist-types/commands/StartJobRunCommand.d.ts +1 -1
- package/dist-types/commands/StartMLEvaluationTaskRunCommand.d.ts +1 -1
- package/dist-types/commands/StartMLLabelingSetGenerationTaskRunCommand.d.ts +1 -1
- package/dist-types/commands/StartTriggerCommand.d.ts +1 -1
- package/dist-types/commands/StartWorkflowRunCommand.d.ts +1 -1
- package/dist-types/commands/StopColumnStatisticsTaskRunCommand.d.ts +1 -1
- package/dist-types/commands/StopColumnStatisticsTaskRunScheduleCommand.d.ts +1 -1
- package/dist-types/commands/StopCrawlerCommand.d.ts +1 -1
- package/dist-types/commands/StopCrawlerScheduleCommand.d.ts +1 -1
- package/dist-types/commands/StopSessionCommand.d.ts +1 -1
- package/dist-types/commands/StopTriggerCommand.d.ts +1 -1
- package/dist-types/commands/StopWorkflowRunCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/TestConnectionCommand.d.ts +18 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateBlueprintCommand.d.ts +1 -1
- package/dist-types/commands/UpdateCatalogCommand.d.ts +137 -0
- package/dist-types/commands/UpdateClassifierCommand.d.ts +1 -1
- package/dist-types/commands/UpdateColumnStatisticsForPartitionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateColumnStatisticsForTableCommand.d.ts +1 -1
- package/dist-types/commands/UpdateColumnStatisticsTaskSettingsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateConnectionCommand.d.ts +27 -4
- package/dist-types/commands/UpdateCrawlerCommand.d.ts +1 -1
- package/dist-types/commands/UpdateCrawlerScheduleCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDataQualityRulesetCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDatabaseCommand.d.ts +10 -1
- package/dist-types/commands/UpdateIntegrationResourcePropertyCommand.d.ts +110 -0
- package/dist-types/commands/UpdateIntegrationTablePropertiesCommand.d.ts +112 -0
- package/dist-types/commands/UpdateTableCommand.d.ts +9 -0
- package/dist-types/commands/index.d.ts +22 -0
- package/dist-types/models/models_0.d.ts +183 -109
- package/dist-types/models/models_1.d.ts +3220 -3137
- package/dist-types/models/models_2.d.ts +4416 -3761
- package/dist-types/models/models_3.d.ts +1630 -3
- package/dist-types/pagination/DescribeEntityPaginator.d.ts +7 -0
- package/dist-types/pagination/ListConnectionTypesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEntitiesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -1
- package/dist-types/protocols/Aws_json1_1.d.ts +198 -0
- package/dist-types/ts3.4/Glue.d.ts +391 -0
- package/dist-types/ts3.4/GlueClient.d.ts +132 -0
- package/dist-types/ts3.4/commands/BatchStopJobRunCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/BatchUpdatePartitionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CancelDataQualityRuleRecommendationRunCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/CreateCatalogCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateIntegrationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateIntegrationResourcePropertyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateIntegrationTablePropertiesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteCatalogCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteIntegrationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteIntegrationTablePropertiesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeConnectionTypeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeEntityCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DescribeInboundIntegrationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeIntegrationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetCatalogCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetCatalogsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetColumnStatisticsTaskSettingsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetConnectionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetCrawlerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetCrawlerMetricsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetCrawlersCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetCustomEntityTypeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetDataCatalogEncryptionSettingsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetDataQualityModelCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetDataQualityModelResultCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetDataQualityResultCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetDataQualityRuleRecommendationRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetDataQualityRulesetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetDataQualityRulesetEvaluationRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetDatabaseCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetDatabasesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetDataflowGraphCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetDevEndpointCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetDevEndpointsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetEntityRecordsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetIntegrationResourcePropertyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetIntegrationTablePropertiesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetJobBookmarkCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetJobRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetJobRunsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetMLTaskRunCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/GetMappingCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListConnectionTypesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListEntitiesCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ModifyIntegrationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SearchTablesCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/StartBlueprintRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartColumnStatisticsTaskRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartColumnStatisticsTaskRunScheduleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartCrawlerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartCrawlerScheduleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartDataQualityRuleRecommendationRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartDataQualityRulesetEvaluationRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartExportLabelsTaskRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartImportLabelsTaskRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartJobRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartMLEvaluationTaskRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartMLLabelingSetGenerationTaskRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartTriggerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartWorkflowRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopColumnStatisticsTaskRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopColumnStatisticsTaskRunScheduleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopCrawlerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopCrawlerScheduleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopSessionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopTriggerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopWorkflowRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/TestConnectionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateBlueprintCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateCatalogCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateClassifierCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateColumnStatisticsForPartitionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateColumnStatisticsForTableCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateColumnStatisticsTaskSettingsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateConnectionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateCrawlerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateCrawlerScheduleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDataQualityRulesetCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDatabaseCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateIntegrationResourcePropertyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateIntegrationTablePropertiesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +22 -0
- package/dist-types/ts3.4/models/models_0.d.ts +54 -28
- package/dist-types/ts3.4/models/models_1.d.ts +532 -441
- package/dist-types/ts3.4/models/models_2.d.ts +514 -425
- package/dist-types/ts3.4/models/models_3.d.ts +449 -0
- package/dist-types/ts3.4/pagination/DescribeEntityPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListConnectionTypesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListEntitiesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -1
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +264 -0
- package/package.json +4 -4
|
@@ -0,0 +1,95 @@
|
|
|
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 { DeleteCatalogRequest, DeleteCatalogResponse } from "../models/models_1";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteCatalogCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteCatalogCommandInput extends DeleteCatalogRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteCatalogCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteCatalogCommandOutput extends DeleteCatalogResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DeleteCatalogCommand_base: {
|
|
25
|
+
new (input: DeleteCatalogCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteCatalogCommandInput, DeleteCatalogCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: DeleteCatalogCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteCatalogCommandInput, DeleteCatalogCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Removes the specified catalog from the Glue Data Catalog.</p>
|
|
31
|
+
* <p>After completing this operation, you no longer have access to the databases, tables (and all table versions and partitions that might belong to the tables) and the user-defined functions in the deleted catalog. Glue deletes these "orphaned" resources asynchronously in a timely manner, at the discretion of the service.</p>
|
|
32
|
+
* <p>To ensure the immediate deletion of all related resources before calling the <code>DeleteCatalog</code> operation, use <code>DeleteTableVersion</code> (or <code>BatchDeleteTableVersion</code>), <code>DeletePartition</code> (or <code>BatchDeletePartition</code>), <code>DeleteTable</code> (or <code>BatchDeleteTable</code>), <code>DeleteUserDefinedFunction</code> and <code>DeleteDatabase</code> to delete any resources that belong to the catalog.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { GlueClient, DeleteCatalogCommand } from "@aws-sdk/client-glue"; // ES Modules import
|
|
37
|
+
* // const { GlueClient, DeleteCatalogCommand } = require("@aws-sdk/client-glue"); // CommonJS import
|
|
38
|
+
* const client = new GlueClient(config);
|
|
39
|
+
* const input = { // DeleteCatalogRequest
|
|
40
|
+
* CatalogId: "STRING_VALUE", // required
|
|
41
|
+
* };
|
|
42
|
+
* const command = new DeleteCatalogCommand(input);
|
|
43
|
+
* const response = await client.send(command);
|
|
44
|
+
* // {};
|
|
45
|
+
*
|
|
46
|
+
* ```
|
|
47
|
+
*
|
|
48
|
+
* @param DeleteCatalogCommandInput - {@link DeleteCatalogCommandInput}
|
|
49
|
+
* @returns {@link DeleteCatalogCommandOutput}
|
|
50
|
+
* @see {@link DeleteCatalogCommandInput} for command's `input` shape.
|
|
51
|
+
* @see {@link DeleteCatalogCommandOutput} for command's `response` shape.
|
|
52
|
+
* @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape.
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
55
|
+
* <p>Access to a resource was denied.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
58
|
+
* <p>Two processes are trying to modify a resource simultaneously.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link EntityNotFoundException} (client fault)
|
|
61
|
+
* <p>A specified entity does not exist</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link FederationSourceException} (client fault)
|
|
64
|
+
* <p>A federation source failed.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link GlueEncryptionException} (client fault)
|
|
67
|
+
* <p>An encryption operation failed.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
70
|
+
* <p>An internal service error occurred.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link InvalidInputException} (client fault)
|
|
73
|
+
* <p>The input provided was not valid.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link OperationTimeoutException} (client fault)
|
|
76
|
+
* <p>The operation timed out.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link GlueServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from Glue service.</p>
|
|
80
|
+
*
|
|
81
|
+
* @public
|
|
82
|
+
*/
|
|
83
|
+
export declare class DeleteCatalogCommand extends DeleteCatalogCommand_base {
|
|
84
|
+
/** @internal type navigation helper, not in runtime. */
|
|
85
|
+
protected static __types: {
|
|
86
|
+
api: {
|
|
87
|
+
input: DeleteCatalogRequest;
|
|
88
|
+
output: {};
|
|
89
|
+
};
|
|
90
|
+
sdk: {
|
|
91
|
+
input: DeleteCatalogCommandInput;
|
|
92
|
+
output: DeleteCatalogCommandOutput;
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
}
|
|
@@ -68,6 +68,12 @@ declare const DeleteDatabaseCommand_base: {
|
|
|
68
68
|
* @throws {@link EntityNotFoundException} (client fault)
|
|
69
69
|
* <p>A specified entity does not exist</p>
|
|
70
70
|
*
|
|
71
|
+
* @throws {@link FederationSourceException} (client fault)
|
|
72
|
+
* <p>A federation source failed.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link FederationSourceRetryableException} (client fault)
|
|
75
|
+
* <p>A federation source failed, but the operation may be retried.</p>
|
|
76
|
+
*
|
|
71
77
|
* @throws {@link InternalServiceException} (server fault)
|
|
72
78
|
* <p>An internal service error occurred.</p>
|
|
73
79
|
*
|
|
@@ -0,0 +1,127 @@
|
|
|
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 { DeleteIntegrationRequest, DeleteIntegrationResponse } from "../models/models_1";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteIntegrationCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteIntegrationCommandInput extends DeleteIntegrationRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteIntegrationCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteIntegrationCommandOutput extends DeleteIntegrationResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DeleteIntegrationCommand_base: {
|
|
25
|
+
new (input: DeleteIntegrationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteIntegrationCommandInput, DeleteIntegrationCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: DeleteIntegrationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteIntegrationCommandInput, DeleteIntegrationCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Deletes the specified Zero-ETL integration.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { GlueClient, DeleteIntegrationCommand } from "@aws-sdk/client-glue"; // ES Modules import
|
|
35
|
+
* // const { GlueClient, DeleteIntegrationCommand } = require("@aws-sdk/client-glue"); // CommonJS import
|
|
36
|
+
* const client = new GlueClient(config);
|
|
37
|
+
* const input = { // DeleteIntegrationRequest
|
|
38
|
+
* IntegrationIdentifier: "STRING_VALUE", // required
|
|
39
|
+
* };
|
|
40
|
+
* const command = new DeleteIntegrationCommand(input);
|
|
41
|
+
* const response = await client.send(command);
|
|
42
|
+
* // { // DeleteIntegrationResponse
|
|
43
|
+
* // SourceArn: "STRING_VALUE", // required
|
|
44
|
+
* // TargetArn: "STRING_VALUE", // required
|
|
45
|
+
* // IntegrationName: "STRING_VALUE", // required
|
|
46
|
+
* // Description: "STRING_VALUE",
|
|
47
|
+
* // IntegrationArn: "STRING_VALUE", // required
|
|
48
|
+
* // KmsKeyId: "STRING_VALUE",
|
|
49
|
+
* // AdditionalEncryptionContext: { // IntegrationAdditionalEncryptionContextMap
|
|
50
|
+
* // "<keys>": "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // Tags: [ // IntegrationTagsList
|
|
53
|
+
* // { // Tag
|
|
54
|
+
* // key: "STRING_VALUE",
|
|
55
|
+
* // value: "STRING_VALUE",
|
|
56
|
+
* // },
|
|
57
|
+
* // ],
|
|
58
|
+
* // Status: "CREATING" || "ACTIVE" || "MODIFYING" || "FAILED" || "DELETING" || "SYNCING" || "NEEDS_ATTENTION", // required
|
|
59
|
+
* // CreateTime: new Date("TIMESTAMP"), // required
|
|
60
|
+
* // Errors: [ // IntegrationErrorList
|
|
61
|
+
* // { // IntegrationError
|
|
62
|
+
* // ErrorCode: "STRING_VALUE",
|
|
63
|
+
* // ErrorMessage: "STRING_VALUE",
|
|
64
|
+
* // },
|
|
65
|
+
* // ],
|
|
66
|
+
* // DataFilter: "STRING_VALUE",
|
|
67
|
+
* // };
|
|
68
|
+
*
|
|
69
|
+
* ```
|
|
70
|
+
*
|
|
71
|
+
* @param DeleteIntegrationCommandInput - {@link DeleteIntegrationCommandInput}
|
|
72
|
+
* @returns {@link DeleteIntegrationCommandOutput}
|
|
73
|
+
* @see {@link DeleteIntegrationCommandInput} for command's `input` shape.
|
|
74
|
+
* @see {@link DeleteIntegrationCommandOutput} for command's `response` shape.
|
|
75
|
+
* @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape.
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
78
|
+
* <p>Access to a resource was denied.</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link ConflictException} (client fault)
|
|
81
|
+
* <p>The <code>CreatePartitions</code> API was called on a table that has indexes enabled. </p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link EntityNotFoundException} (client fault)
|
|
84
|
+
* <p>A specified entity does not exist</p>
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link IntegrationConflictOperationFault} (client fault)
|
|
87
|
+
* <p>The requested operation conflicts with another operation.</p>
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link IntegrationNotFoundFault} (client fault)
|
|
90
|
+
* <p>The specified integration could not be found.</p>
|
|
91
|
+
*
|
|
92
|
+
* @throws {@link InternalServerException} (server fault)
|
|
93
|
+
* <p>An internal server error occurred.</p>
|
|
94
|
+
*
|
|
95
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
96
|
+
* <p>An internal service error occurred.</p>
|
|
97
|
+
*
|
|
98
|
+
* @throws {@link InvalidInputException} (client fault)
|
|
99
|
+
* <p>The input provided was not valid.</p>
|
|
100
|
+
*
|
|
101
|
+
* @throws {@link InvalidIntegrationStateFault} (client fault)
|
|
102
|
+
* <p>The integration is in an invalid state.</p>
|
|
103
|
+
*
|
|
104
|
+
* @throws {@link InvalidStateException} (client fault)
|
|
105
|
+
* <p>An error that indicates your data is in an invalid state.</p>
|
|
106
|
+
*
|
|
107
|
+
* @throws {@link ValidationException} (client fault)
|
|
108
|
+
* <p>A value could not be validated.</p>
|
|
109
|
+
*
|
|
110
|
+
* @throws {@link GlueServiceException}
|
|
111
|
+
* <p>Base exception class for all service exceptions from Glue service.</p>
|
|
112
|
+
*
|
|
113
|
+
* @public
|
|
114
|
+
*/
|
|
115
|
+
export declare class DeleteIntegrationCommand extends DeleteIntegrationCommand_base {
|
|
116
|
+
/** @internal type navigation helper, not in runtime. */
|
|
117
|
+
protected static __types: {
|
|
118
|
+
api: {
|
|
119
|
+
input: DeleteIntegrationRequest;
|
|
120
|
+
output: DeleteIntegrationResponse;
|
|
121
|
+
};
|
|
122
|
+
sdk: {
|
|
123
|
+
input: DeleteIntegrationCommandInput;
|
|
124
|
+
output: DeleteIntegrationCommandOutput;
|
|
125
|
+
};
|
|
126
|
+
};
|
|
127
|
+
}
|
|
@@ -0,0 +1,91 @@
|
|
|
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 { DeleteIntegrationTablePropertiesRequest, DeleteIntegrationTablePropertiesResponse } from "../models/models_1";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteIntegrationTablePropertiesCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteIntegrationTablePropertiesCommandInput extends DeleteIntegrationTablePropertiesRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteIntegrationTablePropertiesCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteIntegrationTablePropertiesCommandOutput extends DeleteIntegrationTablePropertiesResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DeleteIntegrationTablePropertiesCommand_base: {
|
|
25
|
+
new (input: DeleteIntegrationTablePropertiesCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteIntegrationTablePropertiesCommandInput, DeleteIntegrationTablePropertiesCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: DeleteIntegrationTablePropertiesCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteIntegrationTablePropertiesCommandInput, DeleteIntegrationTablePropertiesCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Deletes the table properties that have been created for the tables that need to be replicated.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { GlueClient, DeleteIntegrationTablePropertiesCommand } from "@aws-sdk/client-glue"; // ES Modules import
|
|
35
|
+
* // const { GlueClient, DeleteIntegrationTablePropertiesCommand } = require("@aws-sdk/client-glue"); // CommonJS import
|
|
36
|
+
* const client = new GlueClient(config);
|
|
37
|
+
* const input = { // DeleteIntegrationTablePropertiesRequest
|
|
38
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
39
|
+
* TableName: "STRING_VALUE", // required
|
|
40
|
+
* };
|
|
41
|
+
* const command = new DeleteIntegrationTablePropertiesCommand(input);
|
|
42
|
+
* const response = await client.send(command);
|
|
43
|
+
* // {};
|
|
44
|
+
*
|
|
45
|
+
* ```
|
|
46
|
+
*
|
|
47
|
+
* @param DeleteIntegrationTablePropertiesCommandInput - {@link DeleteIntegrationTablePropertiesCommandInput}
|
|
48
|
+
* @returns {@link DeleteIntegrationTablePropertiesCommandOutput}
|
|
49
|
+
* @see {@link DeleteIntegrationTablePropertiesCommandInput} for command's `input` shape.
|
|
50
|
+
* @see {@link DeleteIntegrationTablePropertiesCommandOutput} for command's `response` shape.
|
|
51
|
+
* @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape.
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
54
|
+
* <p>Access to a resource was denied.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link EntityNotFoundException} (client fault)
|
|
57
|
+
* <p>A specified entity does not exist</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link InternalServerException} (server fault)
|
|
60
|
+
* <p>An internal server error occurred.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
63
|
+
* <p>An internal service error occurred.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link InvalidInputException} (client fault)
|
|
66
|
+
* <p>The input provided was not valid.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
69
|
+
* <p>The resource could not be found.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link ValidationException} (client fault)
|
|
72
|
+
* <p>A value could not be validated.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link GlueServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from Glue service.</p>
|
|
76
|
+
*
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
export declare class DeleteIntegrationTablePropertiesCommand extends DeleteIntegrationTablePropertiesCommand_base {
|
|
80
|
+
/** @internal type navigation helper, not in runtime. */
|
|
81
|
+
protected static __types: {
|
|
82
|
+
api: {
|
|
83
|
+
input: DeleteIntegrationTablePropertiesRequest;
|
|
84
|
+
output: {};
|
|
85
|
+
};
|
|
86
|
+
sdk: {
|
|
87
|
+
input: DeleteIntegrationTablePropertiesCommandInput;
|
|
88
|
+
output: DeleteIntegrationTablePropertiesCommandOutput;
|
|
89
|
+
};
|
|
90
|
+
};
|
|
91
|
+
}
|
|
@@ -68,6 +68,12 @@ declare const DeleteTableCommand_base: {
|
|
|
68
68
|
* @throws {@link EntityNotFoundException} (client fault)
|
|
69
69
|
* <p>A specified entity does not exist</p>
|
|
70
70
|
*
|
|
71
|
+
* @throws {@link FederationSourceException} (client fault)
|
|
72
|
+
* <p>A federation source failed.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link FederationSourceRetryableException} (client fault)
|
|
75
|
+
* <p>A federation source failed, but the operation may be retried.</p>
|
|
76
|
+
*
|
|
71
77
|
* @throws {@link InternalServiceException} (server fault)
|
|
72
78
|
* <p>An internal service error occurred.</p>
|
|
73
79
|
*
|
|
@@ -0,0 +1,222 @@
|
|
|
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 { DescribeConnectionTypeRequest, DescribeConnectionTypeResponse } from "../models/models_1";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DescribeConnectionTypeCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DescribeConnectionTypeCommandInput extends DescribeConnectionTypeRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DescribeConnectionTypeCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DescribeConnectionTypeCommandOutput extends DescribeConnectionTypeResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DescribeConnectionTypeCommand_base: {
|
|
25
|
+
new (input: DescribeConnectionTypeCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeConnectionTypeCommandInput, DescribeConnectionTypeCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: DescribeConnectionTypeCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeConnectionTypeCommandInput, DescribeConnectionTypeCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>The <code>DescribeConnectionType</code> API provides full details of the supported options for a given connection type in Glue.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { GlueClient, DescribeConnectionTypeCommand } from "@aws-sdk/client-glue"; // ES Modules import
|
|
35
|
+
* // const { GlueClient, DescribeConnectionTypeCommand } = require("@aws-sdk/client-glue"); // CommonJS import
|
|
36
|
+
* const client = new GlueClient(config);
|
|
37
|
+
* const input = { // DescribeConnectionTypeRequest
|
|
38
|
+
* ConnectionType: "STRING_VALUE", // required
|
|
39
|
+
* };
|
|
40
|
+
* const command = new DescribeConnectionTypeCommand(input);
|
|
41
|
+
* const response = await client.send(command);
|
|
42
|
+
* // { // DescribeConnectionTypeResponse
|
|
43
|
+
* // ConnectionType: "STRING_VALUE",
|
|
44
|
+
* // Description: "STRING_VALUE",
|
|
45
|
+
* // Capabilities: { // Capabilities
|
|
46
|
+
* // SupportedAuthenticationTypes: [ // AuthenticationTypes // required
|
|
47
|
+
* // "BASIC" || "OAUTH2" || "CUSTOM" || "IAM",
|
|
48
|
+
* // ],
|
|
49
|
+
* // SupportedDataOperations: [ // DataOperations // required
|
|
50
|
+
* // "READ" || "WRITE",
|
|
51
|
+
* // ],
|
|
52
|
+
* // SupportedComputeEnvironments: [ // ComputeEnvironments // required
|
|
53
|
+
* // "SPARK" || "ATHENA" || "PYTHON",
|
|
54
|
+
* // ],
|
|
55
|
+
* // },
|
|
56
|
+
* // ConnectionProperties: { // PropertiesMap
|
|
57
|
+
* // "<keys>": { // Property
|
|
58
|
+
* // Name: "STRING_VALUE", // required
|
|
59
|
+
* // Description: "STRING_VALUE", // required
|
|
60
|
+
* // Required: true || false, // required
|
|
61
|
+
* // DefaultValue: "STRING_VALUE",
|
|
62
|
+
* // PropertyTypes: [ // PropertyTypes // required
|
|
63
|
+
* // "USER_INPUT" || "SECRET" || "READ_ONLY" || "UNUSED" || "SECRET_OR_USER_INPUT",
|
|
64
|
+
* // ],
|
|
65
|
+
* // AllowedValues: [ // AllowedValues
|
|
66
|
+
* // { // AllowedValue
|
|
67
|
+
* // Description: "STRING_VALUE",
|
|
68
|
+
* // Value: "STRING_VALUE", // required
|
|
69
|
+
* // },
|
|
70
|
+
* // ],
|
|
71
|
+
* // DataOperationScopes: [
|
|
72
|
+
* // "READ" || "WRITE",
|
|
73
|
+
* // ],
|
|
74
|
+
* // },
|
|
75
|
+
* // },
|
|
76
|
+
* // ConnectionOptions: {
|
|
77
|
+
* // "<keys>": {
|
|
78
|
+
* // Name: "STRING_VALUE", // required
|
|
79
|
+
* // Description: "STRING_VALUE", // required
|
|
80
|
+
* // Required: true || false, // required
|
|
81
|
+
* // DefaultValue: "STRING_VALUE",
|
|
82
|
+
* // PropertyTypes: [ // required
|
|
83
|
+
* // "USER_INPUT" || "SECRET" || "READ_ONLY" || "UNUSED" || "SECRET_OR_USER_INPUT",
|
|
84
|
+
* // ],
|
|
85
|
+
* // AllowedValues: [
|
|
86
|
+
* // {
|
|
87
|
+
* // Description: "STRING_VALUE",
|
|
88
|
+
* // Value: "STRING_VALUE", // required
|
|
89
|
+
* // },
|
|
90
|
+
* // ],
|
|
91
|
+
* // DataOperationScopes: [
|
|
92
|
+
* // "READ" || "WRITE",
|
|
93
|
+
* // ],
|
|
94
|
+
* // },
|
|
95
|
+
* // },
|
|
96
|
+
* // AuthenticationConfiguration: { // AuthConfiguration
|
|
97
|
+
* // AuthenticationType: {
|
|
98
|
+
* // Name: "STRING_VALUE", // required
|
|
99
|
+
* // Description: "STRING_VALUE", // required
|
|
100
|
+
* // Required: true || false, // required
|
|
101
|
+
* // DefaultValue: "STRING_VALUE",
|
|
102
|
+
* // PropertyTypes: [ // required
|
|
103
|
+
* // "USER_INPUT" || "SECRET" || "READ_ONLY" || "UNUSED" || "SECRET_OR_USER_INPUT",
|
|
104
|
+
* // ],
|
|
105
|
+
* // AllowedValues: [
|
|
106
|
+
* // {
|
|
107
|
+
* // Description: "STRING_VALUE",
|
|
108
|
+
* // Value: "STRING_VALUE", // required
|
|
109
|
+
* // },
|
|
110
|
+
* // ],
|
|
111
|
+
* // DataOperationScopes: [
|
|
112
|
+
* // "READ" || "WRITE",
|
|
113
|
+
* // ],
|
|
114
|
+
* // },
|
|
115
|
+
* // SecretArn: {
|
|
116
|
+
* // Name: "STRING_VALUE", // required
|
|
117
|
+
* // Description: "STRING_VALUE", // required
|
|
118
|
+
* // Required: true || false, // required
|
|
119
|
+
* // DefaultValue: "STRING_VALUE",
|
|
120
|
+
* // PropertyTypes: [ // required
|
|
121
|
+
* // "USER_INPUT" || "SECRET" || "READ_ONLY" || "UNUSED" || "SECRET_OR_USER_INPUT",
|
|
122
|
+
* // ],
|
|
123
|
+
* // AllowedValues: [
|
|
124
|
+
* // {
|
|
125
|
+
* // Description: "STRING_VALUE",
|
|
126
|
+
* // Value: "STRING_VALUE", // required
|
|
127
|
+
* // },
|
|
128
|
+
* // ],
|
|
129
|
+
* // DataOperationScopes: [
|
|
130
|
+
* // "READ" || "WRITE",
|
|
131
|
+
* // ],
|
|
132
|
+
* // },
|
|
133
|
+
* // OAuth2Properties: {
|
|
134
|
+
* // "<keys>": {
|
|
135
|
+
* // Name: "STRING_VALUE", // required
|
|
136
|
+
* // Description: "STRING_VALUE", // required
|
|
137
|
+
* // Required: true || false, // required
|
|
138
|
+
* // DefaultValue: "STRING_VALUE",
|
|
139
|
+
* // PropertyTypes: [ // required
|
|
140
|
+
* // "USER_INPUT" || "SECRET" || "READ_ONLY" || "UNUSED" || "SECRET_OR_USER_INPUT",
|
|
141
|
+
* // ],
|
|
142
|
+
* // AllowedValues: [
|
|
143
|
+
* // {
|
|
144
|
+
* // Description: "STRING_VALUE",
|
|
145
|
+
* // Value: "STRING_VALUE", // required
|
|
146
|
+
* // },
|
|
147
|
+
* // ],
|
|
148
|
+
* // DataOperationScopes: "<DataOperations>",
|
|
149
|
+
* // },
|
|
150
|
+
* // },
|
|
151
|
+
* // BasicAuthenticationProperties: {
|
|
152
|
+
* // "<keys>": "<Property>",
|
|
153
|
+
* // },
|
|
154
|
+
* // CustomAuthenticationProperties: {
|
|
155
|
+
* // "<keys>": "<Property>",
|
|
156
|
+
* // },
|
|
157
|
+
* // },
|
|
158
|
+
* // ComputeEnvironmentConfigurations: { // ComputeEnvironmentConfigurationMap
|
|
159
|
+
* // "<keys>": { // ComputeEnvironmentConfiguration
|
|
160
|
+
* // Name: "STRING_VALUE", // required
|
|
161
|
+
* // Description: "STRING_VALUE", // required
|
|
162
|
+
* // ComputeEnvironment: "SPARK" || "ATHENA" || "PYTHON", // required
|
|
163
|
+
* // SupportedAuthenticationTypes: [ // required
|
|
164
|
+
* // "BASIC" || "OAUTH2" || "CUSTOM" || "IAM",
|
|
165
|
+
* // ],
|
|
166
|
+
* // ConnectionOptions: "<PropertiesMap>", // required
|
|
167
|
+
* // ConnectionPropertyNameOverrides: { // PropertyNameOverrides // required
|
|
168
|
+
* // "<keys>": "STRING_VALUE",
|
|
169
|
+
* // },
|
|
170
|
+
* // ConnectionOptionNameOverrides: { // required
|
|
171
|
+
* // "<keys>": "STRING_VALUE",
|
|
172
|
+
* // },
|
|
173
|
+
* // ConnectionPropertiesRequiredOverrides: [ // ListOfString // required
|
|
174
|
+
* // "STRING_VALUE",
|
|
175
|
+
* // ],
|
|
176
|
+
* // PhysicalConnectionPropertiesRequired: true || false,
|
|
177
|
+
* // },
|
|
178
|
+
* // },
|
|
179
|
+
* // PhysicalConnectionRequirements: "<PropertiesMap>",
|
|
180
|
+
* // AthenaConnectionProperties: "<PropertiesMap>",
|
|
181
|
+
* // PythonConnectionProperties: "<PropertiesMap>",
|
|
182
|
+
* // SparkConnectionProperties: "<PropertiesMap>",
|
|
183
|
+
* // };
|
|
184
|
+
*
|
|
185
|
+
* ```
|
|
186
|
+
*
|
|
187
|
+
* @param DescribeConnectionTypeCommandInput - {@link DescribeConnectionTypeCommandInput}
|
|
188
|
+
* @returns {@link DescribeConnectionTypeCommandOutput}
|
|
189
|
+
* @see {@link DescribeConnectionTypeCommandInput} for command's `input` shape.
|
|
190
|
+
* @see {@link DescribeConnectionTypeCommandOutput} for command's `response` shape.
|
|
191
|
+
* @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape.
|
|
192
|
+
*
|
|
193
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
194
|
+
* <p>Access to a resource was denied.</p>
|
|
195
|
+
*
|
|
196
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
197
|
+
* <p>An internal service error occurred.</p>
|
|
198
|
+
*
|
|
199
|
+
* @throws {@link InvalidInputException} (client fault)
|
|
200
|
+
* <p>The input provided was not valid.</p>
|
|
201
|
+
*
|
|
202
|
+
* @throws {@link ValidationException} (client fault)
|
|
203
|
+
* <p>A value could not be validated.</p>
|
|
204
|
+
*
|
|
205
|
+
* @throws {@link GlueServiceException}
|
|
206
|
+
* <p>Base exception class for all service exceptions from Glue service.</p>
|
|
207
|
+
*
|
|
208
|
+
* @public
|
|
209
|
+
*/
|
|
210
|
+
export declare class DescribeConnectionTypeCommand extends DescribeConnectionTypeCommand_base {
|
|
211
|
+
/** @internal type navigation helper, not in runtime. */
|
|
212
|
+
protected static __types: {
|
|
213
|
+
api: {
|
|
214
|
+
input: DescribeConnectionTypeRequest;
|
|
215
|
+
output: DescribeConnectionTypeResponse;
|
|
216
|
+
};
|
|
217
|
+
sdk: {
|
|
218
|
+
input: DescribeConnectionTypeCommandInput;
|
|
219
|
+
output: DescribeConnectionTypeCommandOutput;
|
|
220
|
+
};
|
|
221
|
+
};
|
|
222
|
+
}
|