@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,112 @@
|
|
|
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 { UpdateIntegrationTablePropertiesRequest, UpdateIntegrationTablePropertiesResponse } from "../models/models_3";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateIntegrationTablePropertiesCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateIntegrationTablePropertiesCommandInput extends UpdateIntegrationTablePropertiesRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateIntegrationTablePropertiesCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateIntegrationTablePropertiesCommandOutput extends UpdateIntegrationTablePropertiesResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const UpdateIntegrationTablePropertiesCommand_base: {
|
|
25
|
+
new (input: UpdateIntegrationTablePropertiesCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateIntegrationTablePropertiesCommandInput, UpdateIntegrationTablePropertiesCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: UpdateIntegrationTablePropertiesCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateIntegrationTablePropertiesCommandInput, UpdateIntegrationTablePropertiesCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>This API is used to provide optional override properties for the tables that need to be replicated. These properties can include properties for filtering and partitioning for the source and target tables. To set both source and target properties the same API need to be invoked with the Glue connection ARN as <code>ResourceArn</code> with <code>SourceTableConfig</code>, and the Glue database ARN as <code>ResourceArn</code> with <code>TargetTableConfig</code> respectively.</p>
|
|
31
|
+
* <p>The override will be reflected across all the integrations using same <code>ResourceArn</code> and source table.</p>
|
|
32
|
+
* @example
|
|
33
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
34
|
+
* ```javascript
|
|
35
|
+
* import { GlueClient, UpdateIntegrationTablePropertiesCommand } from "@aws-sdk/client-glue"; // ES Modules import
|
|
36
|
+
* // const { GlueClient, UpdateIntegrationTablePropertiesCommand } = require("@aws-sdk/client-glue"); // CommonJS import
|
|
37
|
+
* const client = new GlueClient(config);
|
|
38
|
+
* const input = { // UpdateIntegrationTablePropertiesRequest
|
|
39
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
40
|
+
* TableName: "STRING_VALUE", // required
|
|
41
|
+
* SourceTableConfig: { // SourceTableConfig
|
|
42
|
+
* Fields: [ // SourceTableFieldsList
|
|
43
|
+
* "STRING_VALUE",
|
|
44
|
+
* ],
|
|
45
|
+
* FilterPredicate: "STRING_VALUE",
|
|
46
|
+
* PrimaryKey: [ // PrimaryKeyList
|
|
47
|
+
* "STRING_VALUE",
|
|
48
|
+
* ],
|
|
49
|
+
* RecordUpdateField: "STRING_VALUE",
|
|
50
|
+
* },
|
|
51
|
+
* TargetTableConfig: { // TargetTableConfig
|
|
52
|
+
* UnnestSpec: "TOPLEVEL" || "FULL" || "NOUNNEST",
|
|
53
|
+
* PartitionSpec: [ // IntegrationPartitionSpecList
|
|
54
|
+
* { // IntegrationPartition
|
|
55
|
+
* FieldName: "STRING_VALUE",
|
|
56
|
+
* FunctionSpec: "STRING_VALUE",
|
|
57
|
+
* },
|
|
58
|
+
* ],
|
|
59
|
+
* TargetTableName: "STRING_VALUE",
|
|
60
|
+
* },
|
|
61
|
+
* };
|
|
62
|
+
* const command = new UpdateIntegrationTablePropertiesCommand(input);
|
|
63
|
+
* const response = await client.send(command);
|
|
64
|
+
* // {};
|
|
65
|
+
*
|
|
66
|
+
* ```
|
|
67
|
+
*
|
|
68
|
+
* @param UpdateIntegrationTablePropertiesCommandInput - {@link UpdateIntegrationTablePropertiesCommandInput}
|
|
69
|
+
* @returns {@link UpdateIntegrationTablePropertiesCommandOutput}
|
|
70
|
+
* @see {@link UpdateIntegrationTablePropertiesCommandInput} for command's `input` shape.
|
|
71
|
+
* @see {@link UpdateIntegrationTablePropertiesCommandOutput} for command's `response` shape.
|
|
72
|
+
* @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape.
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
75
|
+
* <p>Access to a resource was denied.</p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link EntityNotFoundException} (client fault)
|
|
78
|
+
* <p>A specified entity does not exist</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link InternalServerException} (server fault)
|
|
81
|
+
* <p>An internal server error occurred.</p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
84
|
+
* <p>An internal service error occurred.</p>
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link InvalidInputException} (client fault)
|
|
87
|
+
* <p>The input provided was not valid.</p>
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
90
|
+
* <p>The resource could not be found.</p>
|
|
91
|
+
*
|
|
92
|
+
* @throws {@link ValidationException} (client fault)
|
|
93
|
+
* <p>A value could not be validated.</p>
|
|
94
|
+
*
|
|
95
|
+
* @throws {@link GlueServiceException}
|
|
96
|
+
* <p>Base exception class for all service exceptions from Glue service.</p>
|
|
97
|
+
*
|
|
98
|
+
* @public
|
|
99
|
+
*/
|
|
100
|
+
export declare class UpdateIntegrationTablePropertiesCommand extends UpdateIntegrationTablePropertiesCommand_base {
|
|
101
|
+
/** @internal type navigation helper, not in runtime. */
|
|
102
|
+
protected static __types: {
|
|
103
|
+
api: {
|
|
104
|
+
input: UpdateIntegrationTablePropertiesRequest;
|
|
105
|
+
output: {};
|
|
106
|
+
};
|
|
107
|
+
sdk: {
|
|
108
|
+
input: UpdateIntegrationTablePropertiesCommandInput;
|
|
109
|
+
output: UpdateIntegrationTablePropertiesCommandOutput;
|
|
110
|
+
};
|
|
111
|
+
};
|
|
112
|
+
}
|
|
@@ -155,12 +155,21 @@ declare const UpdateTableCommand_base: {
|
|
|
155
155
|
* @see {@link UpdateTableCommandOutput} for command's `response` shape.
|
|
156
156
|
* @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape.
|
|
157
157
|
*
|
|
158
|
+
* @throws {@link AlreadyExistsException} (client fault)
|
|
159
|
+
* <p>A resource to be created or added already exists.</p>
|
|
160
|
+
*
|
|
158
161
|
* @throws {@link ConcurrentModificationException} (client fault)
|
|
159
162
|
* <p>Two processes are trying to modify a resource simultaneously.</p>
|
|
160
163
|
*
|
|
161
164
|
* @throws {@link EntityNotFoundException} (client fault)
|
|
162
165
|
* <p>A specified entity does not exist</p>
|
|
163
166
|
*
|
|
167
|
+
* @throws {@link FederationSourceException} (client fault)
|
|
168
|
+
* <p>A federation source failed.</p>
|
|
169
|
+
*
|
|
170
|
+
* @throws {@link FederationSourceRetryableException} (client fault)
|
|
171
|
+
* <p>A federation source failed, but the operation may be retried.</p>
|
|
172
|
+
*
|
|
164
173
|
* @throws {@link GlueEncryptionException} (client fault)
|
|
165
174
|
* <p>An encryption operation failed.</p>
|
|
166
175
|
*
|
|
@@ -22,6 +22,7 @@ export * from "./CancelMLTaskRunCommand";
|
|
|
22
22
|
export * from "./CancelStatementCommand";
|
|
23
23
|
export * from "./CheckSchemaVersionValidityCommand";
|
|
24
24
|
export * from "./CreateBlueprintCommand";
|
|
25
|
+
export * from "./CreateCatalogCommand";
|
|
25
26
|
export * from "./CreateClassifierCommand";
|
|
26
27
|
export * from "./CreateColumnStatisticsTaskSettingsCommand";
|
|
27
28
|
export * from "./CreateConnectionCommand";
|
|
@@ -30,6 +31,9 @@ export * from "./CreateCustomEntityTypeCommand";
|
|
|
30
31
|
export * from "./CreateDataQualityRulesetCommand";
|
|
31
32
|
export * from "./CreateDatabaseCommand";
|
|
32
33
|
export * from "./CreateDevEndpointCommand";
|
|
34
|
+
export * from "./CreateIntegrationCommand";
|
|
35
|
+
export * from "./CreateIntegrationResourcePropertyCommand";
|
|
36
|
+
export * from "./CreateIntegrationTablePropertiesCommand";
|
|
33
37
|
export * from "./CreateJobCommand";
|
|
34
38
|
export * from "./CreateMLTransformCommand";
|
|
35
39
|
export * from "./CreatePartitionCommand";
|
|
@@ -46,6 +50,7 @@ export * from "./CreateUsageProfileCommand";
|
|
|
46
50
|
export * from "./CreateUserDefinedFunctionCommand";
|
|
47
51
|
export * from "./CreateWorkflowCommand";
|
|
48
52
|
export * from "./DeleteBlueprintCommand";
|
|
53
|
+
export * from "./DeleteCatalogCommand";
|
|
49
54
|
export * from "./DeleteClassifierCommand";
|
|
50
55
|
export * from "./DeleteColumnStatisticsForPartitionCommand";
|
|
51
56
|
export * from "./DeleteColumnStatisticsForTableCommand";
|
|
@@ -56,6 +61,8 @@ export * from "./DeleteCustomEntityTypeCommand";
|
|
|
56
61
|
export * from "./DeleteDataQualityRulesetCommand";
|
|
57
62
|
export * from "./DeleteDatabaseCommand";
|
|
58
63
|
export * from "./DeleteDevEndpointCommand";
|
|
64
|
+
export * from "./DeleteIntegrationCommand";
|
|
65
|
+
export * from "./DeleteIntegrationTablePropertiesCommand";
|
|
59
66
|
export * from "./DeleteJobCommand";
|
|
60
67
|
export * from "./DeleteMLTransformCommand";
|
|
61
68
|
export * from "./DeletePartitionCommand";
|
|
@@ -73,10 +80,16 @@ export * from "./DeleteTriggerCommand";
|
|
|
73
80
|
export * from "./DeleteUsageProfileCommand";
|
|
74
81
|
export * from "./DeleteUserDefinedFunctionCommand";
|
|
75
82
|
export * from "./DeleteWorkflowCommand";
|
|
83
|
+
export * from "./DescribeConnectionTypeCommand";
|
|
84
|
+
export * from "./DescribeEntityCommand";
|
|
85
|
+
export * from "./DescribeInboundIntegrationsCommand";
|
|
86
|
+
export * from "./DescribeIntegrationsCommand";
|
|
76
87
|
export * from "./GetBlueprintCommand";
|
|
77
88
|
export * from "./GetBlueprintRunCommand";
|
|
78
89
|
export * from "./GetBlueprintRunsCommand";
|
|
90
|
+
export * from "./GetCatalogCommand";
|
|
79
91
|
export * from "./GetCatalogImportStatusCommand";
|
|
92
|
+
export * from "./GetCatalogsCommand";
|
|
80
93
|
export * from "./GetClassifierCommand";
|
|
81
94
|
export * from "./GetClassifiersCommand";
|
|
82
95
|
export * from "./GetColumnStatisticsForPartitionCommand";
|
|
@@ -102,6 +115,9 @@ export * from "./GetDatabasesCommand";
|
|
|
102
115
|
export * from "./GetDataflowGraphCommand";
|
|
103
116
|
export * from "./GetDevEndpointCommand";
|
|
104
117
|
export * from "./GetDevEndpointsCommand";
|
|
118
|
+
export * from "./GetEntityRecordsCommand";
|
|
119
|
+
export * from "./GetIntegrationResourcePropertyCommand";
|
|
120
|
+
export * from "./GetIntegrationTablePropertiesCommand";
|
|
105
121
|
export * from "./GetJobBookmarkCommand";
|
|
106
122
|
export * from "./GetJobCommand";
|
|
107
123
|
export * from "./GetJobRunCommand";
|
|
@@ -148,6 +164,7 @@ export * from "./GetWorkflowRunsCommand";
|
|
|
148
164
|
export * from "./ImportCatalogToGlueCommand";
|
|
149
165
|
export * from "./ListBlueprintsCommand";
|
|
150
166
|
export * from "./ListColumnStatisticsTaskRunsCommand";
|
|
167
|
+
export * from "./ListConnectionTypesCommand";
|
|
151
168
|
export * from "./ListCrawlersCommand";
|
|
152
169
|
export * from "./ListCrawlsCommand";
|
|
153
170
|
export * from "./ListCustomEntityTypesCommand";
|
|
@@ -158,6 +175,7 @@ export * from "./ListDataQualityRulesetsCommand";
|
|
|
158
175
|
export * from "./ListDataQualityStatisticAnnotationsCommand";
|
|
159
176
|
export * from "./ListDataQualityStatisticsCommand";
|
|
160
177
|
export * from "./ListDevEndpointsCommand";
|
|
178
|
+
export * from "./ListEntitiesCommand";
|
|
161
179
|
export * from "./ListJobsCommand";
|
|
162
180
|
export * from "./ListMLTransformsCommand";
|
|
163
181
|
export * from "./ListRegistriesCommand";
|
|
@@ -169,6 +187,7 @@ export * from "./ListTableOptimizerRunsCommand";
|
|
|
169
187
|
export * from "./ListTriggersCommand";
|
|
170
188
|
export * from "./ListUsageProfilesCommand";
|
|
171
189
|
export * from "./ListWorkflowsCommand";
|
|
190
|
+
export * from "./ModifyIntegrationCommand";
|
|
172
191
|
export * from "./PutDataCatalogEncryptionSettingsCommand";
|
|
173
192
|
export * from "./PutDataQualityProfileAnnotationCommand";
|
|
174
193
|
export * from "./PutResourcePolicyCommand";
|
|
@@ -206,6 +225,7 @@ export * from "./TagResourceCommand";
|
|
|
206
225
|
export * from "./TestConnectionCommand";
|
|
207
226
|
export * from "./UntagResourceCommand";
|
|
208
227
|
export * from "./UpdateBlueprintCommand";
|
|
228
|
+
export * from "./UpdateCatalogCommand";
|
|
209
229
|
export * from "./UpdateClassifierCommand";
|
|
210
230
|
export * from "./UpdateColumnStatisticsForPartitionCommand";
|
|
211
231
|
export * from "./UpdateColumnStatisticsForTableCommand";
|
|
@@ -216,6 +236,8 @@ export * from "./UpdateCrawlerScheduleCommand";
|
|
|
216
236
|
export * from "./UpdateDataQualityRulesetCommand";
|
|
217
237
|
export * from "./UpdateDatabaseCommand";
|
|
218
238
|
export * from "./UpdateDevEndpointCommand";
|
|
239
|
+
export * from "./UpdateIntegrationResourcePropertyCommand";
|
|
240
|
+
export * from "./UpdateIntegrationTablePropertiesCommand";
|
|
219
241
|
export * from "./UpdateJobCommand";
|
|
220
242
|
export * from "./UpdateJobFromSourceControlCommand";
|
|
221
243
|
export * from "./UpdateMLTransformCommand";
|
|
@@ -153,6 +153,22 @@ export interface Aggregate {
|
|
|
153
153
|
*/
|
|
154
154
|
Aggs: AggregateOperation[] | undefined;
|
|
155
155
|
}
|
|
156
|
+
/**
|
|
157
|
+
* <p>An object representing a value allowed for a property.</p>
|
|
158
|
+
* @public
|
|
159
|
+
*/
|
|
160
|
+
export interface AllowedValue {
|
|
161
|
+
/**
|
|
162
|
+
* <p>A description of the allowed value.</p>
|
|
163
|
+
* @public
|
|
164
|
+
*/
|
|
165
|
+
Description?: string | undefined;
|
|
166
|
+
/**
|
|
167
|
+
* <p>The value allowed for the property.</p>
|
|
168
|
+
* @public
|
|
169
|
+
*/
|
|
170
|
+
Value: string | undefined;
|
|
171
|
+
}
|
|
156
172
|
/**
|
|
157
173
|
* <p>A resource to be created or added already exists.</p>
|
|
158
174
|
* @public
|
|
@@ -544,6 +560,105 @@ export interface AuditContext {
|
|
|
544
560
|
*/
|
|
545
561
|
AllColumnsRequested?: boolean | undefined;
|
|
546
562
|
}
|
|
563
|
+
/**
|
|
564
|
+
* @public
|
|
565
|
+
* @enum
|
|
566
|
+
*/
|
|
567
|
+
export declare const DataOperation: {
|
|
568
|
+
readonly READ: "READ";
|
|
569
|
+
readonly WRITE: "WRITE";
|
|
570
|
+
};
|
|
571
|
+
/**
|
|
572
|
+
* @public
|
|
573
|
+
*/
|
|
574
|
+
export type DataOperation = (typeof DataOperation)[keyof typeof DataOperation];
|
|
575
|
+
/**
|
|
576
|
+
* @public
|
|
577
|
+
* @enum
|
|
578
|
+
*/
|
|
579
|
+
export declare const PropertyType: {
|
|
580
|
+
readonly READ_ONLY: "READ_ONLY";
|
|
581
|
+
readonly SECRET: "SECRET";
|
|
582
|
+
readonly SECRET_OR_USER_INPUT: "SECRET_OR_USER_INPUT";
|
|
583
|
+
readonly UNUSED: "UNUSED";
|
|
584
|
+
readonly USER_INPUT: "USER_INPUT";
|
|
585
|
+
};
|
|
586
|
+
/**
|
|
587
|
+
* @public
|
|
588
|
+
*/
|
|
589
|
+
export type PropertyType = (typeof PropertyType)[keyof typeof PropertyType];
|
|
590
|
+
/**
|
|
591
|
+
* <p>An object that defines a connection type for a compute environment.</p>
|
|
592
|
+
* @public
|
|
593
|
+
*/
|
|
594
|
+
export interface Property {
|
|
595
|
+
/**
|
|
596
|
+
* <p>The name of the property.</p>
|
|
597
|
+
* @public
|
|
598
|
+
*/
|
|
599
|
+
Name: string | undefined;
|
|
600
|
+
/**
|
|
601
|
+
* <p>A description of the property.</p>
|
|
602
|
+
* @public
|
|
603
|
+
*/
|
|
604
|
+
Description: string | undefined;
|
|
605
|
+
/**
|
|
606
|
+
* <p>Indicates whether the property is required.</p>
|
|
607
|
+
* @public
|
|
608
|
+
*/
|
|
609
|
+
Required: boolean | undefined;
|
|
610
|
+
/**
|
|
611
|
+
* <p>The default value for the property.</p>
|
|
612
|
+
* @public
|
|
613
|
+
*/
|
|
614
|
+
DefaultValue?: string | undefined;
|
|
615
|
+
/**
|
|
616
|
+
* <p>Describes the type of property.</p>
|
|
617
|
+
* @public
|
|
618
|
+
*/
|
|
619
|
+
PropertyTypes: PropertyType[] | undefined;
|
|
620
|
+
/**
|
|
621
|
+
* <p>A list of <code>AllowedValue</code> objects representing the values allowed for the property.</p>
|
|
622
|
+
* @public
|
|
623
|
+
*/
|
|
624
|
+
AllowedValues?: AllowedValue[] | undefined;
|
|
625
|
+
/**
|
|
626
|
+
* <p>Indicates which data operations are applicable to the property.</p>
|
|
627
|
+
* @public
|
|
628
|
+
*/
|
|
629
|
+
DataOperationScopes?: DataOperation[] | undefined;
|
|
630
|
+
}
|
|
631
|
+
/**
|
|
632
|
+
* <p>The authentication configuration for a connection returned by the <code>DescribeConnectionType</code> API.</p>
|
|
633
|
+
* @public
|
|
634
|
+
*/
|
|
635
|
+
export interface AuthConfiguration {
|
|
636
|
+
/**
|
|
637
|
+
* <p>The type of authentication for a connection.</p>
|
|
638
|
+
* @public
|
|
639
|
+
*/
|
|
640
|
+
AuthenticationType: Property | undefined;
|
|
641
|
+
/**
|
|
642
|
+
* <p>The Amazon Resource Name (ARN) for the Secrets Manager.</p>
|
|
643
|
+
* @public
|
|
644
|
+
*/
|
|
645
|
+
SecretArn?: Property | undefined;
|
|
646
|
+
/**
|
|
647
|
+
* <p>A map of key-value pairs for the OAuth2 properties. Each value is a a <code>Property</code> object.</p>
|
|
648
|
+
* @public
|
|
649
|
+
*/
|
|
650
|
+
OAuth2Properties?: Record<string, Property> | undefined;
|
|
651
|
+
/**
|
|
652
|
+
* <p>A map of key-value pairs for the OAuth2 properties. Each value is a a <code>Property</code> object.</p>
|
|
653
|
+
* @public
|
|
654
|
+
*/
|
|
655
|
+
BasicAuthenticationProperties?: Record<string, Property> | undefined;
|
|
656
|
+
/**
|
|
657
|
+
* <p>A map of key-value pairs for the custom authentication properties. Each value is a a <code>Property</code> object.</p>
|
|
658
|
+
* @public
|
|
659
|
+
*/
|
|
660
|
+
CustomAuthenticationProperties?: Record<string, Property> | undefined;
|
|
661
|
+
}
|
|
547
662
|
/**
|
|
548
663
|
* @public
|
|
549
664
|
* @enum
|
|
@@ -551,6 +666,7 @@ export interface AuditContext {
|
|
|
551
666
|
export declare const AuthenticationType: {
|
|
552
667
|
readonly BASIC: "BASIC";
|
|
553
668
|
readonly CUSTOM: "CUSTOM";
|
|
669
|
+
readonly IAM: "IAM";
|
|
554
670
|
readonly OAUTH2: "OAUTH2";
|
|
555
671
|
};
|
|
556
672
|
/**
|
|
@@ -633,6 +749,22 @@ export interface AuthenticationConfiguration {
|
|
|
633
749
|
*/
|
|
634
750
|
OAuth2Properties?: OAuth2Properties | undefined;
|
|
635
751
|
}
|
|
752
|
+
/**
|
|
753
|
+
* <p>For supplying basic auth credentials when not providing a <code>SecretArn</code> value.</p>
|
|
754
|
+
* @public
|
|
755
|
+
*/
|
|
756
|
+
export interface BasicAuthenticationCredentials {
|
|
757
|
+
/**
|
|
758
|
+
* <p>The username to connect to the data source.</p>
|
|
759
|
+
* @public
|
|
760
|
+
*/
|
|
761
|
+
Username?: string | undefined;
|
|
762
|
+
/**
|
|
763
|
+
* <p>The password to connect to the data source.</p>
|
|
764
|
+
* @public
|
|
765
|
+
*/
|
|
766
|
+
Password?: string | undefined;
|
|
767
|
+
}
|
|
636
768
|
/**
|
|
637
769
|
* <p>The set of properties required for the the OAuth2 <code>AUTHORIZATION_CODE</code> grant type workflow.</p>
|
|
638
770
|
* @public
|
|
@@ -649,6 +781,32 @@ export interface AuthorizationCodeProperties {
|
|
|
649
781
|
*/
|
|
650
782
|
RedirectUri?: string | undefined;
|
|
651
783
|
}
|
|
784
|
+
/**
|
|
785
|
+
* <p>The credentials used when the authentication type is OAuth2 authentication.</p>
|
|
786
|
+
* @public
|
|
787
|
+
*/
|
|
788
|
+
export interface OAuth2Credentials {
|
|
789
|
+
/**
|
|
790
|
+
* <p>The client application client secret if the client application is user managed.</p>
|
|
791
|
+
* @public
|
|
792
|
+
*/
|
|
793
|
+
UserManagedClientApplicationClientSecret?: string | undefined;
|
|
794
|
+
/**
|
|
795
|
+
* <p>The access token used when the authentication type is OAuth2.</p>
|
|
796
|
+
* @public
|
|
797
|
+
*/
|
|
798
|
+
AccessToken?: string | undefined;
|
|
799
|
+
/**
|
|
800
|
+
* <p>The refresh token used when the authentication type is OAuth2.</p>
|
|
801
|
+
* @public
|
|
802
|
+
*/
|
|
803
|
+
RefreshToken?: string | undefined;
|
|
804
|
+
/**
|
|
805
|
+
* <p>The JSON Web Token (JWT) used when the authentication type is OAuth2.</p>
|
|
806
|
+
* @public
|
|
807
|
+
*/
|
|
808
|
+
JwtToken?: string | undefined;
|
|
809
|
+
}
|
|
652
810
|
/**
|
|
653
811
|
* <p>A structure containing properties for OAuth2 in the CreateConnection request.</p>
|
|
654
812
|
* @public
|
|
@@ -679,6 +837,11 @@ export interface OAuth2PropertiesInput {
|
|
|
679
837
|
* @public
|
|
680
838
|
*/
|
|
681
839
|
AuthorizationCodeProperties?: AuthorizationCodeProperties | undefined;
|
|
840
|
+
/**
|
|
841
|
+
* <p>The credentials used when the authentication type is OAuth2 authentication.</p>
|
|
842
|
+
* @public
|
|
843
|
+
*/
|
|
844
|
+
OAuth2Credentials?: OAuth2Credentials | undefined;
|
|
682
845
|
}
|
|
683
846
|
/**
|
|
684
847
|
* <p>A structure containing the authentication configuration in the CreateConnection request.</p>
|
|
@@ -700,6 +863,21 @@ export interface AuthenticationConfigurationInput {
|
|
|
700
863
|
* @public
|
|
701
864
|
*/
|
|
702
865
|
SecretArn?: string | undefined;
|
|
866
|
+
/**
|
|
867
|
+
* <p>The ARN of the KMS key used to encrypt the connection. Only taken an as input in the request and stored in the Secret Manager.</p>
|
|
868
|
+
* @public
|
|
869
|
+
*/
|
|
870
|
+
KmsKeyArn?: string | undefined;
|
|
871
|
+
/**
|
|
872
|
+
* <p>The credentials used when the authentication type is basic authentication.</p>
|
|
873
|
+
* @public
|
|
874
|
+
*/
|
|
875
|
+
BasicAuthenticationCredentials?: BasicAuthenticationCredentials | undefined;
|
|
876
|
+
/**
|
|
877
|
+
* <p>The credentials used when the authentication type is custom authentication.</p>
|
|
878
|
+
* @public
|
|
879
|
+
*/
|
|
880
|
+
CustomAuthenticationCredentials?: Record<string, string> | undefined;
|
|
703
881
|
}
|
|
704
882
|
/**
|
|
705
883
|
* <p>A column in a <code>Table</code>.</p>
|
|
@@ -7899,121 +8077,17 @@ export interface BatchStopJobRunError {
|
|
|
7899
8077
|
ErrorDetail?: ErrorDetail | undefined;
|
|
7900
8078
|
}
|
|
7901
8079
|
/**
|
|
7902
|
-
*
|
|
7903
|
-
* @public
|
|
7904
|
-
*/
|
|
7905
|
-
export interface BatchStopJobRunSuccessfulSubmission {
|
|
7906
|
-
/**
|
|
7907
|
-
* <p>The name of the job definition used in the job run that was stopped.</p>
|
|
7908
|
-
* @public
|
|
7909
|
-
*/
|
|
7910
|
-
JobName?: string | undefined;
|
|
7911
|
-
/**
|
|
7912
|
-
* <p>The <code>JobRunId</code> of the job run that was stopped.</p>
|
|
7913
|
-
* @public
|
|
7914
|
-
*/
|
|
7915
|
-
JobRunId?: string | undefined;
|
|
7916
|
-
}
|
|
7917
|
-
/**
|
|
7918
|
-
* @public
|
|
7919
|
-
*/
|
|
7920
|
-
export interface BatchStopJobRunResponse {
|
|
7921
|
-
/**
|
|
7922
|
-
* <p>A list of the JobRuns that were successfully submitted for stopping.</p>
|
|
7923
|
-
* @public
|
|
7924
|
-
*/
|
|
7925
|
-
SuccessfulSubmissions?: BatchStopJobRunSuccessfulSubmission[] | undefined;
|
|
7926
|
-
/**
|
|
7927
|
-
* <p>A list of the errors that were encountered in trying to stop <code>JobRuns</code>,
|
|
7928
|
-
* including the <code>JobRunId</code> for which each error was encountered and details about the
|
|
7929
|
-
* error.</p>
|
|
7930
|
-
* @public
|
|
7931
|
-
*/
|
|
7932
|
-
Errors?: BatchStopJobRunError[] | undefined;
|
|
7933
|
-
}
|
|
7934
|
-
/**
|
|
7935
|
-
* <p>A structure that contains the values and structure used to update a partition.</p>
|
|
7936
|
-
* @public
|
|
7937
|
-
*/
|
|
7938
|
-
export interface BatchUpdatePartitionRequestEntry {
|
|
7939
|
-
/**
|
|
7940
|
-
* <p>A list of values defining the partitions.</p>
|
|
7941
|
-
* @public
|
|
7942
|
-
*/
|
|
7943
|
-
PartitionValueList: string[] | undefined;
|
|
7944
|
-
/**
|
|
7945
|
-
* <p>The structure used to update a partition.</p>
|
|
7946
|
-
* @public
|
|
7947
|
-
*/
|
|
7948
|
-
PartitionInput: PartitionInput | undefined;
|
|
7949
|
-
}
|
|
7950
|
-
/**
|
|
7951
|
-
* @public
|
|
7952
|
-
*/
|
|
7953
|
-
export interface BatchUpdatePartitionRequest {
|
|
7954
|
-
/**
|
|
7955
|
-
* <p>The ID of the catalog in which the partition is to be updated. Currently, this should be
|
|
7956
|
-
* the Amazon Web Services account ID.</p>
|
|
7957
|
-
* @public
|
|
7958
|
-
*/
|
|
7959
|
-
CatalogId?: string | undefined;
|
|
7960
|
-
/**
|
|
7961
|
-
* <p>The name of the metadata database in which the partition is
|
|
7962
|
-
* to be updated.</p>
|
|
7963
|
-
* @public
|
|
7964
|
-
*/
|
|
7965
|
-
DatabaseName: string | undefined;
|
|
7966
|
-
/**
|
|
7967
|
-
* <p>The name of the metadata table in which the partition is to be updated.</p>
|
|
7968
|
-
* @public
|
|
7969
|
-
*/
|
|
7970
|
-
TableName: string | undefined;
|
|
7971
|
-
/**
|
|
7972
|
-
* <p>A list of up to 100 <code>BatchUpdatePartitionRequestEntry</code> objects to update.</p>
|
|
7973
|
-
* @public
|
|
7974
|
-
*/
|
|
7975
|
-
Entries: BatchUpdatePartitionRequestEntry[] | undefined;
|
|
7976
|
-
}
|
|
7977
|
-
/**
|
|
7978
|
-
* <p>Contains information about a batch update partition error.</p>
|
|
7979
|
-
* @public
|
|
7980
|
-
*/
|
|
7981
|
-
export interface BatchUpdatePartitionFailureEntry {
|
|
7982
|
-
/**
|
|
7983
|
-
* <p>A list of values defining the partitions.</p>
|
|
7984
|
-
* @public
|
|
7985
|
-
*/
|
|
7986
|
-
PartitionValueList?: string[] | undefined;
|
|
7987
|
-
/**
|
|
7988
|
-
* <p>The details about the batch update partition error.</p>
|
|
7989
|
-
* @public
|
|
7990
|
-
*/
|
|
7991
|
-
ErrorDetail?: ErrorDetail | undefined;
|
|
7992
|
-
}
|
|
7993
|
-
/**
|
|
7994
|
-
* @public
|
|
8080
|
+
* @internal
|
|
7995
8081
|
*/
|
|
7996
|
-
export
|
|
7997
|
-
/**
|
|
7998
|
-
* <p>The errors encountered when trying to update the requested partitions. A list of <code>BatchUpdatePartitionFailureEntry</code> objects.</p>
|
|
7999
|
-
* @public
|
|
8000
|
-
*/
|
|
8001
|
-
Errors?: BatchUpdatePartitionFailureEntry[] | undefined;
|
|
8002
|
-
}
|
|
8082
|
+
export declare const BasicAuthenticationCredentialsFilterSensitiveLog: (obj: BasicAuthenticationCredentials) => any;
|
|
8003
8083
|
/**
|
|
8004
|
-
* @
|
|
8084
|
+
* @internal
|
|
8005
8085
|
*/
|
|
8006
|
-
export
|
|
8007
|
-
/**
|
|
8008
|
-
* <p>The unique run identifier associated with this run.</p>
|
|
8009
|
-
* @public
|
|
8010
|
-
*/
|
|
8011
|
-
RunId: string | undefined;
|
|
8012
|
-
}
|
|
8086
|
+
export declare const AuthorizationCodePropertiesFilterSensitiveLog: (obj: AuthorizationCodeProperties) => any;
|
|
8013
8087
|
/**
|
|
8014
8088
|
* @internal
|
|
8015
8089
|
*/
|
|
8016
|
-
export declare const
|
|
8090
|
+
export declare const OAuth2CredentialsFilterSensitiveLog: (obj: OAuth2Credentials) => any;
|
|
8017
8091
|
/**
|
|
8018
8092
|
* @internal
|
|
8019
8093
|
*/
|