@aws-sdk/client-datazone 3.863.0 → 3.867.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 +48 -0
- package/dist-cjs/index.js +496 -77
- package/dist-es/DataZone.js +12 -0
- package/dist-es/commands/CreateAccountPoolCommand.js +23 -0
- package/dist-es/commands/CreateRuleCommand.js +1 -1
- package/dist-es/commands/DeleteAccountPoolCommand.js +22 -0
- package/dist-es/commands/GetAccountPoolCommand.js +23 -0
- package/dist-es/commands/ListAccountPoolsCommand.js +23 -0
- package/dist-es/commands/ListAccountsInAccountPoolCommand.js +23 -0
- package/dist-es/commands/PostLineageEventCommand.js +1 -1
- package/dist-es/commands/RejectSubscriptionRequestCommand.js +1 -1
- package/dist-es/commands/RevokeSubscriptionCommand.js +1 -1
- package/dist-es/commands/UpdateAccountPoolCommand.js +23 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/models_0.js +41 -36
- package/dist-es/models/models_1.js +59 -29
- package/dist-es/models/models_2.js +40 -1
- package/dist-es/pagination/ListAccountPoolsPaginator.js +4 -0
- package/dist-es/pagination/ListAccountsInAccountPoolPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +197 -0
- package/dist-types/DataZone.d.ts +42 -0
- package/dist-types/DataZoneClient.d.ts +8 -2
- package/dist-types/commands/CreateAccountPoolCommand.d.ts +138 -0
- package/dist-types/commands/CreateProjectCommand.d.ts +10 -0
- package/dist-types/commands/CreateProjectProfileCommand.d.ts +6 -0
- package/dist-types/commands/CreateRuleCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAccountPoolCommand.d.ts +89 -0
- package/dist-types/commands/GetAccountPoolCommand.d.ts +115 -0
- package/dist-types/commands/GetProjectCommand.d.ts +5 -0
- package/dist-types/commands/GetProjectProfileCommand.d.ts +3 -0
- package/dist-types/commands/ListAccountPoolsCommand.d.ts +103 -0
- package/dist-types/commands/ListAccountsInAccountPoolCommand.d.ts +102 -0
- package/dist-types/commands/PostLineageEventCommand.d.ts +2 -1
- package/dist-types/commands/PostTimeSeriesDataPointsCommand.d.ts +1 -1
- package/dist-types/commands/RejectPredictionsCommand.d.ts +1 -1
- package/dist-types/commands/RejectSubscriptionRequestCommand.d.ts +1 -1
- package/dist-types/commands/RemoveEntityOwnerCommand.d.ts +1 -1
- package/dist-types/commands/RemovePolicyGrantCommand.d.ts +1 -1
- package/dist-types/commands/RevokeSubscriptionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAccountPoolCommand.d.ts +139 -0
- package/dist-types/commands/UpdateProjectCommand.d.ts +10 -0
- package/dist-types/commands/UpdateProjectProfileCommand.d.ts +6 -0
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +289 -235
- package/dist-types/models/models_1.d.ts +511 -515
- package/dist-types/models/models_2.d.ts +582 -2
- package/dist-types/pagination/ListAccountPoolsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAccountsInAccountPoolPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +54 -0
- package/dist-types/ts3.4/DataZone.d.ts +102 -0
- package/dist-types/ts3.4/DataZoneClient.d.ts +36 -0
- package/dist-types/ts3.4/commands/CreateAccountPoolCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateRuleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteAccountPoolCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetAccountPoolCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListAccountPoolsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListAccountsInAccountPoolCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PostLineageEventCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/PostTimeSeriesDataPointsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RejectPredictionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RejectSubscriptionRequestCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RemoveEntityOwnerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RemovePolicyGrantCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RevokeSubscriptionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateAccountPoolCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +92 -84
- package/dist-types/ts3.4/models/models_1.d.ts +155 -123
- package/dist-types/ts3.4/models/models_2.d.ts +156 -3
- package/dist-types/ts3.4/pagination/ListAccountPoolsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAccountsInAccountPoolPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +72 -0
- package/package.json +5 -5
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DataZoneClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DataZoneClient";
|
|
8
|
+
import {
|
|
9
|
+
ListAccountsInAccountPoolInput,
|
|
10
|
+
ListAccountsInAccountPoolOutput,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListAccountsInAccountPoolCommandInput
|
|
15
|
+
extends ListAccountsInAccountPoolInput {}
|
|
16
|
+
export interface ListAccountsInAccountPoolCommandOutput
|
|
17
|
+
extends ListAccountsInAccountPoolOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListAccountsInAccountPoolCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListAccountsInAccountPoolCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListAccountsInAccountPoolCommandInput,
|
|
24
|
+
ListAccountsInAccountPoolCommandOutput,
|
|
25
|
+
DataZoneClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListAccountsInAccountPoolCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListAccountsInAccountPoolCommandInput,
|
|
33
|
+
ListAccountsInAccountPoolCommandOutput,
|
|
34
|
+
DataZoneClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListAccountsInAccountPoolCommand extends ListAccountsInAccountPoolCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListAccountsInAccountPoolInput;
|
|
44
|
+
output: ListAccountsInAccountPoolOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListAccountsInAccountPoolCommandInput;
|
|
48
|
+
output: ListAccountsInAccountPoolCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -8,10 +8,8 @@ import {
|
|
|
8
8
|
ServiceInputTypes,
|
|
9
9
|
ServiceOutputTypes,
|
|
10
10
|
} from "../DataZoneClient";
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
PostLineageEventOutput,
|
|
14
|
-
} from "../models/models_1";
|
|
11
|
+
import { PostLineageEventInput } from "../models/models_1";
|
|
12
|
+
import { PostLineageEventOutput } from "../models/models_2";
|
|
15
13
|
export { __MetadataBearer };
|
|
16
14
|
export { $Command };
|
|
17
15
|
export type PostLineageEventCommandInputType = Pick<
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
PostTimeSeriesDataPointsInput,
|
|
10
10
|
PostTimeSeriesDataPointsOutput,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_2";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface PostTimeSeriesDataPointsCommandInput
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
RejectPredictionsInput,
|
|
10
10
|
RejectPredictionsOutput,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_2";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface RejectPredictionsCommandInput extends RejectPredictionsInput {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
RejectSubscriptionRequestInput,
|
|
10
10
|
RejectSubscriptionRequestOutput,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_2";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface RejectSubscriptionRequestCommandInput
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
RemoveEntityOwnerInput,
|
|
10
10
|
RemoveEntityOwnerOutput,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_2";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface RemoveEntityOwnerCommandInput extends RemoveEntityOwnerInput {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
RemovePolicyGrantInput,
|
|
10
10
|
RemovePolicyGrantOutput,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_2";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface RemovePolicyGrantCommandInput extends RemovePolicyGrantInput {}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DataZoneClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DataZoneClient";
|
|
8
|
+
import {
|
|
9
|
+
UpdateAccountPoolInput,
|
|
10
|
+
UpdateAccountPoolOutput,
|
|
11
|
+
} from "../models/models_2";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateAccountPoolCommandInput extends UpdateAccountPoolInput {}
|
|
15
|
+
export interface UpdateAccountPoolCommandOutput
|
|
16
|
+
extends UpdateAccountPoolOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const UpdateAccountPoolCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: UpdateAccountPoolCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
UpdateAccountPoolCommandInput,
|
|
23
|
+
UpdateAccountPoolCommandOutput,
|
|
24
|
+
DataZoneClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: UpdateAccountPoolCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
UpdateAccountPoolCommandInput,
|
|
32
|
+
UpdateAccountPoolCommandOutput,
|
|
33
|
+
DataZoneClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class UpdateAccountPoolCommand extends UpdateAccountPoolCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: UpdateAccountPoolInput;
|
|
43
|
+
output: UpdateAccountPoolOutput;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: UpdateAccountPoolCommandInput;
|
|
47
|
+
output: UpdateAccountPoolCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -5,6 +5,7 @@ export * from "./AddPolicyGrantCommand";
|
|
|
5
5
|
export * from "./AssociateEnvironmentRoleCommand";
|
|
6
6
|
export * from "./CancelMetadataGenerationRunCommand";
|
|
7
7
|
export * from "./CancelSubscriptionCommand";
|
|
8
|
+
export * from "./CreateAccountPoolCommand";
|
|
8
9
|
export * from "./CreateAssetCommand";
|
|
9
10
|
export * from "./CreateAssetFilterCommand";
|
|
10
11
|
export * from "./CreateAssetRevisionCommand";
|
|
@@ -31,6 +32,7 @@ export * from "./CreateSubscriptionGrantCommand";
|
|
|
31
32
|
export * from "./CreateSubscriptionRequestCommand";
|
|
32
33
|
export * from "./CreateSubscriptionTargetCommand";
|
|
33
34
|
export * from "./CreateUserProfileCommand";
|
|
35
|
+
export * from "./DeleteAccountPoolCommand";
|
|
34
36
|
export * from "./DeleteAssetCommand";
|
|
35
37
|
export * from "./DeleteAssetFilterCommand";
|
|
36
38
|
export * from "./DeleteAssetTypeCommand";
|
|
@@ -56,6 +58,7 @@ export * from "./DeleteSubscriptionRequestCommand";
|
|
|
56
58
|
export * from "./DeleteSubscriptionTargetCommand";
|
|
57
59
|
export * from "./DeleteTimeSeriesDataPointsCommand";
|
|
58
60
|
export * from "./DisassociateEnvironmentRoleCommand";
|
|
61
|
+
export * from "./GetAccountPoolCommand";
|
|
59
62
|
export * from "./GetAssetCommand";
|
|
60
63
|
export * from "./GetAssetFilterCommand";
|
|
61
64
|
export * from "./GetAssetTypeCommand";
|
|
@@ -90,6 +93,8 @@ export * from "./GetSubscriptionRequestDetailsCommand";
|
|
|
90
93
|
export * from "./GetSubscriptionTargetCommand";
|
|
91
94
|
export * from "./GetTimeSeriesDataPointCommand";
|
|
92
95
|
export * from "./GetUserProfileCommand";
|
|
96
|
+
export * from "./ListAccountPoolsCommand";
|
|
97
|
+
export * from "./ListAccountsInAccountPoolCommand";
|
|
93
98
|
export * from "./ListAssetFiltersCommand";
|
|
94
99
|
export * from "./ListAssetRevisionsCommand";
|
|
95
100
|
export * from "./ListConnectionsCommand";
|
|
@@ -138,6 +143,7 @@ export * from "./StartDataSourceRunCommand";
|
|
|
138
143
|
export * from "./StartMetadataGenerationRunCommand";
|
|
139
144
|
export * from "./TagResourceCommand";
|
|
140
145
|
export * from "./UntagResourceCommand";
|
|
146
|
+
export * from "./UpdateAccountPoolCommand";
|
|
141
147
|
export * from "./UpdateAssetFilterCommand";
|
|
142
148
|
export * from "./UpdateConnectionCommand";
|
|
143
149
|
export * from "./UpdateDataSourceCommand";
|
|
@@ -205,6 +205,56 @@ export interface AcceptSubscriptionRequestOutput {
|
|
|
205
205
|
existingSubscriptionId?: string | undefined;
|
|
206
206
|
metadataForms?: FormOutput[] | undefined;
|
|
207
207
|
}
|
|
208
|
+
export interface AccountInfo {
|
|
209
|
+
awsAccountId: string | undefined;
|
|
210
|
+
supportedRegions: string[] | undefined;
|
|
211
|
+
awsAccountName?: string | undefined;
|
|
212
|
+
}
|
|
213
|
+
export declare const ResolutionStrategy: {
|
|
214
|
+
readonly MANUAL: "MANUAL";
|
|
215
|
+
};
|
|
216
|
+
export type ResolutionStrategy =
|
|
217
|
+
(typeof ResolutionStrategy)[keyof typeof ResolutionStrategy];
|
|
218
|
+
export interface AccountPoolSummary {
|
|
219
|
+
domainId?: string | undefined;
|
|
220
|
+
id?: string | undefined;
|
|
221
|
+
name?: string | undefined;
|
|
222
|
+
resolutionStrategy?: ResolutionStrategy | undefined;
|
|
223
|
+
domainUnitId?: string | undefined;
|
|
224
|
+
createdBy?: string | undefined;
|
|
225
|
+
updatedBy?: string | undefined;
|
|
226
|
+
}
|
|
227
|
+
export interface CustomAccountPoolHandler {
|
|
228
|
+
lambdaFunctionArn: string | undefined;
|
|
229
|
+
lambdaExecutionRoleArn?: string | undefined;
|
|
230
|
+
}
|
|
231
|
+
export type AccountSource =
|
|
232
|
+
| AccountSource.AccountsMember
|
|
233
|
+
| AccountSource.CustomAccountPoolHandlerMember
|
|
234
|
+
| AccountSource.$UnknownMember;
|
|
235
|
+
export declare namespace AccountSource {
|
|
236
|
+
interface AccountsMember {
|
|
237
|
+
accounts: AccountInfo[];
|
|
238
|
+
customAccountPoolHandler?: never;
|
|
239
|
+
$unknown?: never;
|
|
240
|
+
}
|
|
241
|
+
interface CustomAccountPoolHandlerMember {
|
|
242
|
+
accounts?: never;
|
|
243
|
+
customAccountPoolHandler: CustomAccountPoolHandler;
|
|
244
|
+
$unknown?: never;
|
|
245
|
+
}
|
|
246
|
+
interface $UnknownMember {
|
|
247
|
+
accounts?: never;
|
|
248
|
+
customAccountPoolHandler?: never;
|
|
249
|
+
$unknown: [string, any];
|
|
250
|
+
}
|
|
251
|
+
interface Visitor<T> {
|
|
252
|
+
accounts: (value: AccountInfo[]) => T;
|
|
253
|
+
customAccountPoolHandler: (value: CustomAccountPoolHandler) => T;
|
|
254
|
+
_: (name: string, value: any) => T;
|
|
255
|
+
}
|
|
256
|
+
const visit: <T>(value: AccountSource, visitor: Visitor<T>) => T;
|
|
257
|
+
}
|
|
208
258
|
export interface AwsConsoleLinkParameters {
|
|
209
259
|
uri?: string | undefined;
|
|
210
260
|
}
|
|
@@ -2260,6 +2310,26 @@ export interface ConnectionSummary {
|
|
|
2260
2310
|
props?: ConnectionPropertiesOutput | undefined;
|
|
2261
2311
|
type: ConnectionType | undefined;
|
|
2262
2312
|
}
|
|
2313
|
+
export interface CreateAccountPoolInput {
|
|
2314
|
+
domainIdentifier: string | undefined;
|
|
2315
|
+
name: string | undefined;
|
|
2316
|
+
description?: string | undefined;
|
|
2317
|
+
resolutionStrategy: ResolutionStrategy | undefined;
|
|
2318
|
+
accountSource: AccountSource | undefined;
|
|
2319
|
+
}
|
|
2320
|
+
export interface CreateAccountPoolOutput {
|
|
2321
|
+
domainId?: string | undefined;
|
|
2322
|
+
name?: string | undefined;
|
|
2323
|
+
id?: string | undefined;
|
|
2324
|
+
description?: string | undefined;
|
|
2325
|
+
resolutionStrategy?: ResolutionStrategy | undefined;
|
|
2326
|
+
accountSource: AccountSource | undefined;
|
|
2327
|
+
createdBy: string | undefined;
|
|
2328
|
+
createdAt?: Date | undefined;
|
|
2329
|
+
lastUpdatedAt?: Date | undefined;
|
|
2330
|
+
updatedBy?: string | undefined;
|
|
2331
|
+
domainUnitId?: string | undefined;
|
|
2332
|
+
}
|
|
2263
2333
|
export interface CreateConnectionInput {
|
|
2264
2334
|
awsLocation?: AwsLocation | undefined;
|
|
2265
2335
|
clientToken?: string | undefined;
|
|
@@ -3063,8 +3133,14 @@ export interface CreateListingChangeSetOutput {
|
|
|
3063
3133
|
listingRevision: string | undefined;
|
|
3064
3134
|
status: ListingStatus | undefined;
|
|
3065
3135
|
}
|
|
3136
|
+
export interface EnvironmentResolvedAccount {
|
|
3137
|
+
awsAccountId: string | undefined;
|
|
3138
|
+
regionName: string | undefined;
|
|
3139
|
+
sourceAccountPoolId?: string | undefined;
|
|
3140
|
+
}
|
|
3066
3141
|
export interface EnvironmentConfigurationUserParameter {
|
|
3067
3142
|
environmentId?: string | undefined;
|
|
3143
|
+
environmentResolvedAccount?: EnvironmentResolvedAccount | undefined;
|
|
3068
3144
|
environmentConfigurationName?: string | undefined;
|
|
3069
3145
|
environmentParameters?: EnvironmentParameter[] | undefined;
|
|
3070
3146
|
}
|
|
@@ -3213,8 +3289,9 @@ export interface EnvironmentConfiguration {
|
|
|
3213
3289
|
configurationParameters?:
|
|
3214
3290
|
| EnvironmentConfigurationParametersDetails
|
|
3215
3291
|
| undefined;
|
|
3216
|
-
awsAccount
|
|
3217
|
-
|
|
3292
|
+
awsAccount?: AwsAccount | undefined;
|
|
3293
|
+
accountPools?: string[] | undefined;
|
|
3294
|
+
awsRegion?: Region | undefined;
|
|
3218
3295
|
deploymentOrder?: number | undefined;
|
|
3219
3296
|
}
|
|
3220
3297
|
export declare const Status: {
|
|
@@ -3281,82 +3358,6 @@ export interface RuleScope {
|
|
|
3281
3358
|
dataProduct?: boolean | undefined;
|
|
3282
3359
|
project?: ProjectsForRule | undefined;
|
|
3283
3360
|
}
|
|
3284
|
-
export interface DomainUnitTarget {
|
|
3285
|
-
domainUnitId: string | undefined;
|
|
3286
|
-
includeChildDomainUnits?: boolean | undefined;
|
|
3287
|
-
}
|
|
3288
|
-
export type RuleTarget =
|
|
3289
|
-
| RuleTarget.DomainUnitTargetMember
|
|
3290
|
-
| RuleTarget.$UnknownMember;
|
|
3291
|
-
export declare namespace RuleTarget {
|
|
3292
|
-
interface DomainUnitTargetMember {
|
|
3293
|
-
domainUnitTarget: DomainUnitTarget;
|
|
3294
|
-
$unknown?: never;
|
|
3295
|
-
}
|
|
3296
|
-
interface $UnknownMember {
|
|
3297
|
-
domainUnitTarget?: never;
|
|
3298
|
-
$unknown: [string, any];
|
|
3299
|
-
}
|
|
3300
|
-
interface Visitor<T> {
|
|
3301
|
-
domainUnitTarget: (value: DomainUnitTarget) => T;
|
|
3302
|
-
_: (name: string, value: any) => T;
|
|
3303
|
-
}
|
|
3304
|
-
const visit: <T>(value: RuleTarget, visitor: Visitor<T>) => T;
|
|
3305
|
-
}
|
|
3306
|
-
export interface CreateRuleInput {
|
|
3307
|
-
domainIdentifier: string | undefined;
|
|
3308
|
-
name: string | undefined;
|
|
3309
|
-
target: RuleTarget | undefined;
|
|
3310
|
-
action: RuleAction | undefined;
|
|
3311
|
-
scope: RuleScope | undefined;
|
|
3312
|
-
detail: RuleDetail | undefined;
|
|
3313
|
-
description?: string | undefined;
|
|
3314
|
-
clientToken?: string | undefined;
|
|
3315
|
-
}
|
|
3316
|
-
export declare const RuleType: {
|
|
3317
|
-
readonly METADATA_FORM_ENFORCEMENT: "METADATA_FORM_ENFORCEMENT";
|
|
3318
|
-
};
|
|
3319
|
-
export type RuleType = (typeof RuleType)[keyof typeof RuleType];
|
|
3320
|
-
export declare const RuleTargetType: {
|
|
3321
|
-
readonly DOMAIN_UNIT: "DOMAIN_UNIT";
|
|
3322
|
-
};
|
|
3323
|
-
export type RuleTargetType =
|
|
3324
|
-
(typeof RuleTargetType)[keyof typeof RuleTargetType];
|
|
3325
|
-
export interface CreateRuleOutput {
|
|
3326
|
-
identifier: string | undefined;
|
|
3327
|
-
name: string | undefined;
|
|
3328
|
-
ruleType: RuleType | undefined;
|
|
3329
|
-
target: RuleTarget | undefined;
|
|
3330
|
-
action: RuleAction | undefined;
|
|
3331
|
-
scope: RuleScope | undefined;
|
|
3332
|
-
detail: RuleDetail | undefined;
|
|
3333
|
-
targetType?: RuleTargetType | undefined;
|
|
3334
|
-
description?: string | undefined;
|
|
3335
|
-
createdAt: Date | undefined;
|
|
3336
|
-
createdBy: string | undefined;
|
|
3337
|
-
}
|
|
3338
|
-
export interface ListingRevisionInput {
|
|
3339
|
-
identifier: string | undefined;
|
|
3340
|
-
revision: string | undefined;
|
|
3341
|
-
}
|
|
3342
|
-
export type GrantedEntityInput =
|
|
3343
|
-
| GrantedEntityInput.ListingMember
|
|
3344
|
-
| GrantedEntityInput.$UnknownMember;
|
|
3345
|
-
export declare namespace GrantedEntityInput {
|
|
3346
|
-
interface ListingMember {
|
|
3347
|
-
listing: ListingRevisionInput;
|
|
3348
|
-
$unknown?: never;
|
|
3349
|
-
}
|
|
3350
|
-
interface $UnknownMember {
|
|
3351
|
-
listing?: never;
|
|
3352
|
-
$unknown: [string, any];
|
|
3353
|
-
}
|
|
3354
|
-
interface Visitor<T> {
|
|
3355
|
-
listing: (value: ListingRevisionInput) => T;
|
|
3356
|
-
_: (name: string, value: any) => T;
|
|
3357
|
-
}
|
|
3358
|
-
const visit: <T>(value: GrantedEntityInput, visitor: Visitor<T>) => T;
|
|
3359
|
-
}
|
|
3360
3361
|
export declare const AcceptChoiceFilterSensitiveLog: (obj: AcceptChoice) => any;
|
|
3361
3362
|
export declare const AcceptPredictionsInputFilterSensitiveLog: (
|
|
3362
3363
|
obj: AcceptPredictionsInput
|
|
@@ -3389,6 +3390,13 @@ export declare const SubscribedPrincipalFilterSensitiveLog: (
|
|
|
3389
3390
|
export declare const AcceptSubscriptionRequestOutputFilterSensitiveLog: (
|
|
3390
3391
|
obj: AcceptSubscriptionRequestOutput
|
|
3391
3392
|
) => any;
|
|
3393
|
+
export declare const AccountInfoFilterSensitiveLog: (obj: AccountInfo) => any;
|
|
3394
|
+
export declare const AccountPoolSummaryFilterSensitiveLog: (
|
|
3395
|
+
obj: AccountPoolSummary
|
|
3396
|
+
) => any;
|
|
3397
|
+
export declare const AccountSourceFilterSensitiveLog: (
|
|
3398
|
+
obj: AccountSource
|
|
3399
|
+
) => any;
|
|
3392
3400
|
export declare const FormInputFilterSensitiveLog: (obj: FormInput) => any;
|
|
3393
3401
|
export declare const CreateAssetInputFilterSensitiveLog: (
|
|
3394
3402
|
obj: CreateAssetInput
|
|
@@ -3503,6 +3511,12 @@ export declare const PhysicalEndpointFilterSensitiveLog: (
|
|
|
3503
3511
|
export declare const ConnectionSummaryFilterSensitiveLog: (
|
|
3504
3512
|
obj: ConnectionSummary
|
|
3505
3513
|
) => any;
|
|
3514
|
+
export declare const CreateAccountPoolInputFilterSensitiveLog: (
|
|
3515
|
+
obj: CreateAccountPoolInput
|
|
3516
|
+
) => any;
|
|
3517
|
+
export declare const CreateAccountPoolOutputFilterSensitiveLog: (
|
|
3518
|
+
obj: CreateAccountPoolOutput
|
|
3519
|
+
) => any;
|
|
3506
3520
|
export declare const CreateConnectionInputFilterSensitiveLog: (
|
|
3507
3521
|
obj: CreateConnectionInput
|
|
3508
3522
|
) => any;
|
|
@@ -3588,9 +3602,3 @@ export declare const CreateProjectProfileInputFilterSensitiveLog: (
|
|
|
3588
3602
|
export declare const CreateProjectProfileOutputFilterSensitiveLog: (
|
|
3589
3603
|
obj: CreateProjectProfileOutput
|
|
3590
3604
|
) => any;
|
|
3591
|
-
export declare const CreateRuleInputFilterSensitiveLog: (
|
|
3592
|
-
obj: CreateRuleInput
|
|
3593
|
-
) => any;
|
|
3594
|
-
export declare const CreateRuleOutputFilterSensitiveLog: (
|
|
3595
|
-
obj: CreateRuleOutput
|
|
3596
|
-
) => any;
|