@aws-sdk/client-glue 3.864.0 → 3.869.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +32 -0
- package/dist-cjs/index.js +149 -0
- package/dist-es/Glue.js +8 -0
- package/dist-es/commands/CreateGlueIdentityCenterConfigurationCommand.js +22 -0
- package/dist-es/commands/DeleteGlueIdentityCenterConfigurationCommand.js +22 -0
- package/dist-es/commands/GetGlueIdentityCenterConfigurationCommand.js +22 -0
- package/dist-es/commands/UpdateGlueIdentityCenterConfigurationCommand.js +22 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/protocols/Aws_json1_1.js +77 -0
- package/dist-types/Glue.d.ts +31 -0
- package/dist-types/GlueClient.d.ts +6 -2
- package/dist-types/commands/CreateGlueIdentityCenterConfigurationCommand.d.ts +94 -0
- package/dist-types/commands/CreateIntegrationCommand.d.ts +2 -0
- package/dist-types/commands/DeleteGlueIdentityCenterConfigurationCommand.d.ts +87 -0
- package/dist-types/commands/DescribeInboundIntegrationsCommand.d.ts +1 -0
- package/dist-types/commands/DescribeIntegrationsCommand.d.ts +1 -0
- package/dist-types/commands/GetCatalogImportStatusCommand.d.ts +2 -1
- package/dist-types/commands/GetCatalogsCommand.d.ts +1 -1
- package/dist-types/commands/GetClassifierCommand.d.ts +1 -2
- package/dist-types/commands/GetGlueIdentityCenterConfigurationCommand.d.ts +93 -0
- package/dist-types/commands/ListTableOptimizerRunsCommand.d.ts +2 -1
- package/dist-types/commands/ListTriggersCommand.d.ts +1 -1
- package/dist-types/commands/ListUsageProfilesCommand.d.ts +1 -1
- package/dist-types/commands/ModifyIntegrationCommand.d.ts +14 -0
- package/dist-types/commands/UpdateGlueIdentityCenterConfigurationCommand.d.ts +90 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_1.d.ts +68 -69
- package/dist-types/models/models_2.d.ts +95 -130
- package/dist-types/models/models_3.d.ts +157 -2
- package/dist-types/protocols/Aws_json1_1.d.ts +36 -0
- package/dist-types/ts3.4/Glue.d.ts +95 -0
- package/dist-types/ts3.4/GlueClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/CreateGlueIdentityCenterConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteGlueIdentityCenterConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetCatalogImportStatusCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetCatalogsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetClassifierCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/GetGlueIdentityCenterConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListTableOptimizerRunsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListTriggersCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListUsageProfilesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateGlueIdentityCenterConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_1.d.ts +10 -17
- package/dist-types/ts3.4/models/models_2.d.ts +25 -32
- package/dist-types/ts3.4/models/models_3.d.ts +39 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +48 -0
- package/package.json +1 -1
|
@@ -0,0 +1,93 @@
|
|
|
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 { GetGlueIdentityCenterConfigurationRequest, GetGlueIdentityCenterConfigurationResponse } from "../models/models_2";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link GetGlueIdentityCenterConfigurationCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetGlueIdentityCenterConfigurationCommandInput extends GetGlueIdentityCenterConfigurationRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link GetGlueIdentityCenterConfigurationCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetGlueIdentityCenterConfigurationCommandOutput extends GetGlueIdentityCenterConfigurationResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const GetGlueIdentityCenterConfigurationCommand_base: {
|
|
25
|
+
new (input: GetGlueIdentityCenterConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<GetGlueIdentityCenterConfigurationCommandInput, GetGlueIdentityCenterConfigurationCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (...[input]: [] | [GetGlueIdentityCenterConfigurationCommandInput]): import("@smithy/smithy-client").CommandImpl<GetGlueIdentityCenterConfigurationCommandInput, GetGlueIdentityCenterConfigurationCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Retrieves the current Glue Identity Center configuration details, including the associated Identity Center instance and
|
|
31
|
+
* application information.</p>
|
|
32
|
+
* @example
|
|
33
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
34
|
+
* ```javascript
|
|
35
|
+
* import { GlueClient, GetGlueIdentityCenterConfigurationCommand } from "@aws-sdk/client-glue"; // ES Modules import
|
|
36
|
+
* // const { GlueClient, GetGlueIdentityCenterConfigurationCommand } = require("@aws-sdk/client-glue"); // CommonJS import
|
|
37
|
+
* const client = new GlueClient(config);
|
|
38
|
+
* const input = {};
|
|
39
|
+
* const command = new GetGlueIdentityCenterConfigurationCommand(input);
|
|
40
|
+
* const response = await client.send(command);
|
|
41
|
+
* // { // GetGlueIdentityCenterConfigurationResponse
|
|
42
|
+
* // ApplicationArn: "STRING_VALUE",
|
|
43
|
+
* // InstanceArn: "STRING_VALUE",
|
|
44
|
+
* // Scopes: [ // OrchestrationStringList
|
|
45
|
+
* // "STRING_VALUE",
|
|
46
|
+
* // ],
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
49
|
+
* ```
|
|
50
|
+
*
|
|
51
|
+
* @param GetGlueIdentityCenterConfigurationCommandInput - {@link GetGlueIdentityCenterConfigurationCommandInput}
|
|
52
|
+
* @returns {@link GetGlueIdentityCenterConfigurationCommandOutput}
|
|
53
|
+
* @see {@link GetGlueIdentityCenterConfigurationCommandInput} for command's `input` shape.
|
|
54
|
+
* @see {@link GetGlueIdentityCenterConfigurationCommandOutput} for command's `response` shape.
|
|
55
|
+
* @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape.
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
58
|
+
* <p>Access to a resource was denied.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
61
|
+
* <p>Two processes are trying to modify a resource simultaneously.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link EntityNotFoundException} (client fault)
|
|
64
|
+
* <p>A specified entity does not exist</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
67
|
+
* <p>An internal service error occurred.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link InvalidInputException} (client fault)
|
|
70
|
+
* <p>The input provided was not valid.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link OperationTimeoutException} (client fault)
|
|
73
|
+
* <p>The operation timed out.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link GlueServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from Glue service.</p>
|
|
77
|
+
*
|
|
78
|
+
*
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
export declare class GetGlueIdentityCenterConfigurationCommand extends GetGlueIdentityCenterConfigurationCommand_base {
|
|
82
|
+
/** @internal type navigation helper, not in runtime. */
|
|
83
|
+
protected static __types: {
|
|
84
|
+
api: {
|
|
85
|
+
input: {};
|
|
86
|
+
output: GetGlueIdentityCenterConfigurationResponse;
|
|
87
|
+
};
|
|
88
|
+
sdk: {
|
|
89
|
+
input: GetGlueIdentityCenterConfigurationCommandInput;
|
|
90
|
+
output: GetGlueIdentityCenterConfigurationCommandOutput;
|
|
91
|
+
};
|
|
92
|
+
};
|
|
93
|
+
}
|
|
@@ -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 { ListTableOptimizerRunsRequest
|
|
4
|
+
import { ListTableOptimizerRunsRequest } from "../models/models_2";
|
|
5
|
+
import { ListTableOptimizerRunsResponse } from "../models/models_3";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
7
8
|
*/
|
|
@@ -1,7 +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 { ListTriggersRequest, ListTriggersResponse } from "../models/
|
|
4
|
+
import { ListTriggersRequest, ListTriggersResponse } from "../models/models_3";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -1,7 +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 { ListUsageProfilesRequest, ListUsageProfilesResponse } from "../models/
|
|
4
|
+
import { ListUsageProfilesRequest, ListUsageProfilesResponse } from "../models/models_3";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -38,6 +38,13 @@ declare const ModifyIntegrationCommand_base: {
|
|
|
38
38
|
* IntegrationIdentifier: "STRING_VALUE", // required
|
|
39
39
|
* Description: "STRING_VALUE",
|
|
40
40
|
* DataFilter: "STRING_VALUE",
|
|
41
|
+
* IntegrationConfig: { // IntegrationConfig
|
|
42
|
+
* RefreshInterval: "STRING_VALUE",
|
|
43
|
+
* SourceProperties: { // IntegrationSourcePropertiesMap
|
|
44
|
+
* "<keys>": "STRING_VALUE",
|
|
45
|
+
* },
|
|
46
|
+
* ContinuousSync: true || false,
|
|
47
|
+
* },
|
|
41
48
|
* IntegrationName: "STRING_VALUE",
|
|
42
49
|
* };
|
|
43
50
|
* const command = new ModifyIntegrationCommand(input);
|
|
@@ -67,6 +74,13 @@ declare const ModifyIntegrationCommand_base: {
|
|
|
67
74
|
* // },
|
|
68
75
|
* // ],
|
|
69
76
|
* // DataFilter: "STRING_VALUE",
|
|
77
|
+
* // IntegrationConfig: { // IntegrationConfig
|
|
78
|
+
* // RefreshInterval: "STRING_VALUE",
|
|
79
|
+
* // SourceProperties: { // IntegrationSourcePropertiesMap
|
|
80
|
+
* // "<keys>": "STRING_VALUE",
|
|
81
|
+
* // },
|
|
82
|
+
* // ContinuousSync: true || false,
|
|
83
|
+
* // },
|
|
70
84
|
* // };
|
|
71
85
|
*
|
|
72
86
|
* ```
|
|
@@ -0,0 +1,90 @@
|
|
|
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 { UpdateGlueIdentityCenterConfigurationRequest, UpdateGlueIdentityCenterConfigurationResponse } from "../models/models_3";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateGlueIdentityCenterConfigurationCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateGlueIdentityCenterConfigurationCommandInput extends UpdateGlueIdentityCenterConfigurationRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateGlueIdentityCenterConfigurationCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateGlueIdentityCenterConfigurationCommandOutput extends UpdateGlueIdentityCenterConfigurationResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const UpdateGlueIdentityCenterConfigurationCommand_base: {
|
|
25
|
+
new (input: UpdateGlueIdentityCenterConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateGlueIdentityCenterConfigurationCommandInput, UpdateGlueIdentityCenterConfigurationCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (...[input]: [] | [UpdateGlueIdentityCenterConfigurationCommandInput]): import("@smithy/smithy-client").CommandImpl<UpdateGlueIdentityCenterConfigurationCommandInput, UpdateGlueIdentityCenterConfigurationCommandOutput, GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Updates the existing Glue Identity Center configuration, allowing modification of scopes and permissions for the 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, UpdateGlueIdentityCenterConfigurationCommand } from "@aws-sdk/client-glue"; // ES Modules import
|
|
35
|
+
* // const { GlueClient, UpdateGlueIdentityCenterConfigurationCommand } = require("@aws-sdk/client-glue"); // CommonJS import
|
|
36
|
+
* const client = new GlueClient(config);
|
|
37
|
+
* const input = { // UpdateGlueIdentityCenterConfigurationRequest
|
|
38
|
+
* Scopes: [ // IdentityCenterScopesList
|
|
39
|
+
* "STRING_VALUE",
|
|
40
|
+
* ],
|
|
41
|
+
* };
|
|
42
|
+
* const command = new UpdateGlueIdentityCenterConfigurationCommand(input);
|
|
43
|
+
* const response = await client.send(command);
|
|
44
|
+
* // {};
|
|
45
|
+
*
|
|
46
|
+
* ```
|
|
47
|
+
*
|
|
48
|
+
* @param UpdateGlueIdentityCenterConfigurationCommandInput - {@link UpdateGlueIdentityCenterConfigurationCommandInput}
|
|
49
|
+
* @returns {@link UpdateGlueIdentityCenterConfigurationCommandOutput}
|
|
50
|
+
* @see {@link UpdateGlueIdentityCenterConfigurationCommandInput} for command's `input` shape.
|
|
51
|
+
* @see {@link UpdateGlueIdentityCenterConfigurationCommandOutput} 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 InternalServiceException} (server fault)
|
|
64
|
+
* <p>An internal service error occurred.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link InvalidInputException} (client fault)
|
|
67
|
+
* <p>The input provided was not valid.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link OperationTimeoutException} (client fault)
|
|
70
|
+
* <p>The operation timed out.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link GlueServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from Glue service.</p>
|
|
74
|
+
*
|
|
75
|
+
*
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
78
|
+
export declare class UpdateGlueIdentityCenterConfigurationCommand extends UpdateGlueIdentityCenterConfigurationCommand_base {
|
|
79
|
+
/** @internal type navigation helper, not in runtime. */
|
|
80
|
+
protected static __types: {
|
|
81
|
+
api: {
|
|
82
|
+
input: UpdateGlueIdentityCenterConfigurationRequest;
|
|
83
|
+
output: {};
|
|
84
|
+
};
|
|
85
|
+
sdk: {
|
|
86
|
+
input: UpdateGlueIdentityCenterConfigurationCommandInput;
|
|
87
|
+
output: UpdateGlueIdentityCenterConfigurationCommandOutput;
|
|
88
|
+
};
|
|
89
|
+
};
|
|
90
|
+
}
|
|
@@ -31,6 +31,7 @@ export * from "./CreateCustomEntityTypeCommand";
|
|
|
31
31
|
export * from "./CreateDataQualityRulesetCommand";
|
|
32
32
|
export * from "./CreateDatabaseCommand";
|
|
33
33
|
export * from "./CreateDevEndpointCommand";
|
|
34
|
+
export * from "./CreateGlueIdentityCenterConfigurationCommand";
|
|
34
35
|
export * from "./CreateIntegrationCommand";
|
|
35
36
|
export * from "./CreateIntegrationResourcePropertyCommand";
|
|
36
37
|
export * from "./CreateIntegrationTablePropertiesCommand";
|
|
@@ -61,6 +62,7 @@ export * from "./DeleteCustomEntityTypeCommand";
|
|
|
61
62
|
export * from "./DeleteDataQualityRulesetCommand";
|
|
62
63
|
export * from "./DeleteDatabaseCommand";
|
|
63
64
|
export * from "./DeleteDevEndpointCommand";
|
|
65
|
+
export * from "./DeleteGlueIdentityCenterConfigurationCommand";
|
|
64
66
|
export * from "./DeleteIntegrationCommand";
|
|
65
67
|
export * from "./DeleteIntegrationTablePropertiesCommand";
|
|
66
68
|
export * from "./DeleteJobCommand";
|
|
@@ -116,6 +118,7 @@ export * from "./GetDataflowGraphCommand";
|
|
|
116
118
|
export * from "./GetDevEndpointCommand";
|
|
117
119
|
export * from "./GetDevEndpointsCommand";
|
|
118
120
|
export * from "./GetEntityRecordsCommand";
|
|
121
|
+
export * from "./GetGlueIdentityCenterConfigurationCommand";
|
|
119
122
|
export * from "./GetIntegrationResourcePropertyCommand";
|
|
120
123
|
export * from "./GetIntegrationTablePropertiesCommand";
|
|
121
124
|
export * from "./GetJobBookmarkCommand";
|
|
@@ -236,6 +239,7 @@ export * from "./UpdateCrawlerScheduleCommand";
|
|
|
236
239
|
export * from "./UpdateDataQualityRulesetCommand";
|
|
237
240
|
export * from "./UpdateDatabaseCommand";
|
|
238
241
|
export * from "./UpdateDevEndpointCommand";
|
|
242
|
+
export * from "./UpdateGlueIdentityCenterConfigurationCommand";
|
|
239
243
|
export * from "./UpdateIntegrationResourcePropertyCommand";
|
|
240
244
|
export * from "./UpdateIntegrationTablePropertiesCommand";
|
|
241
245
|
export * from "./UpdateJobCommand";
|
|
@@ -2558,6 +2558,33 @@ export declare class ValidationException extends __BaseException {
|
|
|
2558
2558
|
*/
|
|
2559
2559
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
2560
2560
|
}
|
|
2561
|
+
/**
|
|
2562
|
+
* <p>Request to create a new Glue Identity Center configuration.</p>
|
|
2563
|
+
* @public
|
|
2564
|
+
*/
|
|
2565
|
+
export interface CreateGlueIdentityCenterConfigurationRequest {
|
|
2566
|
+
/**
|
|
2567
|
+
* <p>The Amazon Resource Name (ARN) of the Identity Center instance to be associated with the Glue configuration.</p>
|
|
2568
|
+
* @public
|
|
2569
|
+
*/
|
|
2570
|
+
InstanceArn: string | undefined;
|
|
2571
|
+
/**
|
|
2572
|
+
* <p>A list of Identity Center scopes that define the permissions and access levels for the Glue configuration.</p>
|
|
2573
|
+
* @public
|
|
2574
|
+
*/
|
|
2575
|
+
Scopes?: string[] | undefined;
|
|
2576
|
+
}
|
|
2577
|
+
/**
|
|
2578
|
+
* <p>Response from creating a new Glue Identity Center configuration.</p>
|
|
2579
|
+
* @public
|
|
2580
|
+
*/
|
|
2581
|
+
export interface CreateGlueIdentityCenterConfigurationResponse {
|
|
2582
|
+
/**
|
|
2583
|
+
* <p>The Amazon Resource Name (ARN) of the Identity Center application that was created for the Glue configuration.</p>
|
|
2584
|
+
* @public
|
|
2585
|
+
*/
|
|
2586
|
+
ApplicationArn?: string | undefined;
|
|
2587
|
+
}
|
|
2561
2588
|
/**
|
|
2562
2589
|
* <p>The <code>CreatePartitions</code> API was called on a table that has indexes enabled. </p>
|
|
2563
2590
|
* @public
|
|
@@ -2595,6 +2622,12 @@ export interface IntegrationConfig {
|
|
|
2595
2622
|
* @public
|
|
2596
2623
|
*/
|
|
2597
2624
|
SourceProperties?: Record<string, string> | undefined;
|
|
2625
|
+
/**
|
|
2626
|
+
* <p>Enables continuous synchronization for on-demand data extractions from SaaS applications to Amazon Web Services data services like Amazon Redshift
|
|
2627
|
+
* and Amazon S3.</p>
|
|
2628
|
+
* @public
|
|
2629
|
+
*/
|
|
2630
|
+
ContinuousSync?: boolean | undefined;
|
|
2598
2631
|
}
|
|
2599
2632
|
/**
|
|
2600
2633
|
* <p>The <code>Tag</code> object represents a label that you can assign to an Amazon Web Services resource. Each tag consists of a key and an optional value, both of which you define.</p>
|
|
@@ -2994,9 +3027,29 @@ export interface IntegrationPartition {
|
|
|
2994
3027
|
*/
|
|
2995
3028
|
FieldName?: string | undefined;
|
|
2996
3029
|
/**
|
|
2997
|
-
* <p>Specifies the function used to partition data on the target. The
|
|
2998
|
-
*
|
|
2999
|
-
*
|
|
3030
|
+
* <p>Specifies the function used to partition data on the target. The accepted values for this parameter are:</p>
|
|
3031
|
+
* <ul>
|
|
3032
|
+
* <li>
|
|
3033
|
+
* <p>
|
|
3034
|
+
* <code>identity</code> - Uses source values directly without transformation</p>
|
|
3035
|
+
* </li>
|
|
3036
|
+
* <li>
|
|
3037
|
+
* <p>
|
|
3038
|
+
* <code>year</code> - Extracts the year from timestamp values (e.g., 2023)</p>
|
|
3039
|
+
* </li>
|
|
3040
|
+
* <li>
|
|
3041
|
+
* <p>
|
|
3042
|
+
* <code>month</code> - Extracts the month from timestamp values (e.g., 2023-01)</p>
|
|
3043
|
+
* </li>
|
|
3044
|
+
* <li>
|
|
3045
|
+
* <p>
|
|
3046
|
+
* <code>day</code> - Extracts the day from timestamp values (e.g., 2023-01-15)</p>
|
|
3047
|
+
* </li>
|
|
3048
|
+
* <li>
|
|
3049
|
+
* <p>
|
|
3050
|
+
* <code>hour</code> - Extracts the hour from timestamp values (e.g., 2023-01-15-14)</p>
|
|
3051
|
+
* </li>
|
|
3052
|
+
* </ul>
|
|
3000
3053
|
* @public
|
|
3001
3054
|
*/
|
|
3002
3055
|
FunctionSpec?: string | undefined;
|
|
@@ -5382,6 +5435,18 @@ export interface DeleteDevEndpointRequest {
|
|
|
5382
5435
|
*/
|
|
5383
5436
|
export interface DeleteDevEndpointResponse {
|
|
5384
5437
|
}
|
|
5438
|
+
/**
|
|
5439
|
+
* <p>Request to delete the existing Glue Identity Center configuration.</p>
|
|
5440
|
+
* @public
|
|
5441
|
+
*/
|
|
5442
|
+
export interface DeleteGlueIdentityCenterConfigurationRequest {
|
|
5443
|
+
}
|
|
5444
|
+
/**
|
|
5445
|
+
* <p>Response from deleting the Glue Identity Center configuration.</p>
|
|
5446
|
+
* @public
|
|
5447
|
+
*/
|
|
5448
|
+
export interface DeleteGlueIdentityCenterConfigurationResponse {
|
|
5449
|
+
}
|
|
5385
5450
|
/**
|
|
5386
5451
|
* @public
|
|
5387
5452
|
*/
|
|
@@ -7026,72 +7091,6 @@ export interface CatalogImportStatus {
|
|
|
7026
7091
|
*/
|
|
7027
7092
|
ImportedBy?: string | undefined;
|
|
7028
7093
|
}
|
|
7029
|
-
/**
|
|
7030
|
-
* @public
|
|
7031
|
-
*/
|
|
7032
|
-
export interface GetCatalogImportStatusResponse {
|
|
7033
|
-
/**
|
|
7034
|
-
* <p>The status of the specified catalog migration.</p>
|
|
7035
|
-
* @public
|
|
7036
|
-
*/
|
|
7037
|
-
ImportStatus?: CatalogImportStatus | undefined;
|
|
7038
|
-
}
|
|
7039
|
-
/**
|
|
7040
|
-
* @public
|
|
7041
|
-
*/
|
|
7042
|
-
export interface GetCatalogsRequest {
|
|
7043
|
-
/**
|
|
7044
|
-
* <p>The ID of the parent catalog in which the catalog resides. If none is provided, the Amazon Web Services Account Number is used by default.</p>
|
|
7045
|
-
* @public
|
|
7046
|
-
*/
|
|
7047
|
-
ParentCatalogId?: string | undefined;
|
|
7048
|
-
/**
|
|
7049
|
-
* <p>A continuation token, if this is a continuation call.</p>
|
|
7050
|
-
* @public
|
|
7051
|
-
*/
|
|
7052
|
-
NextToken?: string | undefined;
|
|
7053
|
-
/**
|
|
7054
|
-
* <p>The maximum number of catalogs to return in one response.</p>
|
|
7055
|
-
* @public
|
|
7056
|
-
*/
|
|
7057
|
-
MaxResults?: number | undefined;
|
|
7058
|
-
/**
|
|
7059
|
-
* <p>Whether to list all catalogs across the catalog hierarchy, starting from the <code>ParentCatalogId</code>. Defaults to <code>false</code> . When <code>true</code>, all catalog objects in the <code>ParentCatalogID</code> hierarchy are enumerated in the response.</p>
|
|
7060
|
-
* @public
|
|
7061
|
-
*/
|
|
7062
|
-
Recursive?: boolean | undefined;
|
|
7063
|
-
/**
|
|
7064
|
-
* <p>Whether to list the default catalog in the account and region in the response. Defaults to <code>false</code>. When <code>true</code> and <code>ParentCatalogId = NULL | Amazon Web Services Account ID</code>, all catalogs and the default catalog are enumerated in the response.</p>
|
|
7065
|
-
* <p>When the <code>ParentCatalogId</code> is not equal to null, and this attribute is passed as <code>false</code> or <code>true</code>, an <code>InvalidInputException</code> is thrown.</p>
|
|
7066
|
-
* @public
|
|
7067
|
-
*/
|
|
7068
|
-
IncludeRoot?: boolean | undefined;
|
|
7069
|
-
}
|
|
7070
|
-
/**
|
|
7071
|
-
* @public
|
|
7072
|
-
*/
|
|
7073
|
-
export interface GetCatalogsResponse {
|
|
7074
|
-
/**
|
|
7075
|
-
* <p>An array of <code>Catalog</code> objects. A list of <code>Catalog</code> objects from the specified parent catalog.</p>
|
|
7076
|
-
* @public
|
|
7077
|
-
*/
|
|
7078
|
-
CatalogList: Catalog[] | undefined;
|
|
7079
|
-
/**
|
|
7080
|
-
* <p>A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.</p>
|
|
7081
|
-
* @public
|
|
7082
|
-
*/
|
|
7083
|
-
NextToken?: string | undefined;
|
|
7084
|
-
}
|
|
7085
|
-
/**
|
|
7086
|
-
* @public
|
|
7087
|
-
*/
|
|
7088
|
-
export interface GetClassifierRequest {
|
|
7089
|
-
/**
|
|
7090
|
-
* <p>Name of the classifier to retrieve.</p>
|
|
7091
|
-
* @public
|
|
7092
|
-
*/
|
|
7093
|
-
Name: string | undefined;
|
|
7094
|
-
}
|
|
7095
7094
|
/**
|
|
7096
7095
|
* @internal
|
|
7097
7096
|
*/
|