@cdk8s/awscdk-resolver 0.0.197 → 0.0.199
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/.jsii +4 -4
- package/lib/resolve.js +1 -1
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/models/models_0.d.ts +760 -760
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/models/models_1.d.ts +81 -81
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/models/models_0.d.ts +764 -760
- package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/models/models_1.d.ts +81 -81
- package/node_modules/@aws-sdk/client-cloudformation/package.json +7 -7
- package/node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts +18 -18
- package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/models_0.d.ts +18 -18
- package/node_modules/@aws-sdk/client-sso/package.json +4 -4
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/models/models_0.d.ts +74 -74
- package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/models_0.d.ts +74 -74
- package/node_modules/@aws-sdk/client-sso-oidc/package.json +6 -6
- package/node_modules/@aws-sdk/client-sts/dist-types/models/models_0.d.ts +56 -56
- package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/models_0.d.ts +56 -56
- package/node_modules/@aws-sdk/client-sts/package.json +6 -6
- package/node_modules/@aws-sdk/core/package.json +3 -3
- package/node_modules/@aws-sdk/credential-provider-env/package.json +3 -3
- package/node_modules/@aws-sdk/credential-provider-http/package.json +3 -3
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +11 -11
- package/node_modules/@aws-sdk/credential-provider-node/package.json +10 -10
- package/node_modules/@aws-sdk/credential-provider-process/package.json +4 -4
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +6 -6
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +6 -6
- package/node_modules/@aws-sdk/middleware-user-agent/package.json +2 -2
- package/node_modules/@aws-sdk/token-providers/package.json +4 -4
- package/node_modules/@aws-sdk/util-user-agent-node/package.json +2 -2
- package/package.json +5 -5
@@ -16,19 +16,19 @@ export declare const AccountGateStatus: {
|
|
16
16
|
export type AccountGateStatus =
|
17
17
|
(typeof AccountGateStatus)[keyof typeof AccountGateStatus];
|
18
18
|
export interface AccountGateResult {
|
19
|
-
Status?: AccountGateStatus;
|
20
|
-
StatusReason?: string;
|
19
|
+
Status?: AccountGateStatus | undefined;
|
20
|
+
StatusReason?: string | undefined;
|
21
21
|
}
|
22
22
|
export interface AccountLimit {
|
23
|
-
Name?: string;
|
24
|
-
Value?: number;
|
23
|
+
Name?: string | undefined;
|
24
|
+
Value?: number | undefined;
|
25
25
|
}
|
26
26
|
export interface ActivateOrganizationsAccessInput {}
|
27
27
|
export interface ActivateOrganizationsAccessOutput {}
|
28
28
|
export declare class InvalidOperationException extends __BaseException {
|
29
29
|
readonly name: "InvalidOperationException";
|
30
30
|
readonly $fault: "client";
|
31
|
-
Message?: string;
|
31
|
+
Message?: string | undefined;
|
32
32
|
constructor(
|
33
33
|
opts: __ExceptionOptionType<InvalidOperationException, __BaseException>
|
34
34
|
);
|
@@ -36,7 +36,7 @@ export declare class InvalidOperationException extends __BaseException {
|
|
36
36
|
export declare class OperationNotFoundException extends __BaseException {
|
37
37
|
readonly name: "OperationNotFoundException";
|
38
38
|
readonly $fault: "client";
|
39
|
-
Message?: string;
|
39
|
+
Message?: string | undefined;
|
40
40
|
constructor(
|
41
41
|
opts: __ExceptionOptionType<OperationNotFoundException, __BaseException>
|
42
42
|
);
|
@@ -58,24 +58,24 @@ export declare const VersionBump: {
|
|
58
58
|
};
|
59
59
|
export type VersionBump = (typeof VersionBump)[keyof typeof VersionBump];
|
60
60
|
export interface ActivateTypeInput {
|
61
|
-
Type?: ThirdPartyType;
|
62
|
-
PublicTypeArn?: string;
|
63
|
-
PublisherId?: string;
|
64
|
-
TypeName?: string;
|
65
|
-
TypeNameAlias?: string;
|
66
|
-
AutoUpdate?: boolean;
|
67
|
-
LoggingConfig?: LoggingConfig;
|
68
|
-
ExecutionRoleArn?: string;
|
69
|
-
VersionBump?: VersionBump;
|
70
|
-
MajorVersion?: number;
|
61
|
+
Type?: ThirdPartyType | undefined;
|
62
|
+
PublicTypeArn?: string | undefined;
|
63
|
+
PublisherId?: string | undefined;
|
64
|
+
TypeName?: string | undefined;
|
65
|
+
TypeNameAlias?: string | undefined;
|
66
|
+
AutoUpdate?: boolean | undefined;
|
67
|
+
LoggingConfig?: LoggingConfig | undefined;
|
68
|
+
ExecutionRoleArn?: string | undefined;
|
69
|
+
VersionBump?: VersionBump | undefined;
|
70
|
+
MajorVersion?: number | undefined;
|
71
71
|
}
|
72
72
|
export interface ActivateTypeOutput {
|
73
|
-
Arn?: string;
|
73
|
+
Arn?: string | undefined;
|
74
74
|
}
|
75
75
|
export declare class CFNRegistryException extends __BaseException {
|
76
76
|
readonly name: "CFNRegistryException";
|
77
77
|
readonly $fault: "client";
|
78
|
-
Message?: string;
|
78
|
+
Message?: string | undefined;
|
79
79
|
constructor(
|
80
80
|
opts: __ExceptionOptionType<CFNRegistryException, __BaseException>
|
81
81
|
);
|
@@ -83,7 +83,7 @@ export declare class CFNRegistryException extends __BaseException {
|
|
83
83
|
export declare class TypeNotFoundException extends __BaseException {
|
84
84
|
readonly name: "TypeNotFoundException";
|
85
85
|
readonly $fault: "client";
|
86
|
-
Message?: string;
|
86
|
+
Message?: string | undefined;
|
87
87
|
constructor(
|
88
88
|
opts: __ExceptionOptionType<TypeNotFoundException, __BaseException>
|
89
89
|
);
|
@@ -91,7 +91,7 @@ export declare class TypeNotFoundException extends __BaseException {
|
|
91
91
|
export declare class AlreadyExistsException extends __BaseException {
|
92
92
|
readonly name: "AlreadyExistsException";
|
93
93
|
readonly $fault: "client";
|
94
|
-
Message?: string;
|
94
|
+
Message?: string | undefined;
|
95
95
|
constructor(
|
96
96
|
opts: __ExceptionOptionType<AlreadyExistsException, __BaseException>
|
97
97
|
);
|
@@ -104,42 +104,42 @@ export declare const AttributeChangeType: {
|
|
104
104
|
export type AttributeChangeType =
|
105
105
|
(typeof AttributeChangeType)[keyof typeof AttributeChangeType];
|
106
106
|
export interface AutoDeployment {
|
107
|
-
Enabled?: boolean;
|
108
|
-
RetainStacksOnAccountRemoval?: boolean;
|
107
|
+
Enabled?: boolean | undefined;
|
108
|
+
RetainStacksOnAccountRemoval?: boolean | undefined;
|
109
109
|
}
|
110
110
|
export interface TypeConfigurationIdentifier {
|
111
|
-
TypeArn?: string;
|
112
|
-
TypeConfigurationAlias?: string;
|
113
|
-
TypeConfigurationArn?: string;
|
114
|
-
Type?: ThirdPartyType;
|
115
|
-
TypeName?: string;
|
111
|
+
TypeArn?: string | undefined;
|
112
|
+
TypeConfigurationAlias?: string | undefined;
|
113
|
+
TypeConfigurationArn?: string | undefined;
|
114
|
+
Type?: ThirdPartyType | undefined;
|
115
|
+
TypeName?: string | undefined;
|
116
116
|
}
|
117
117
|
export interface BatchDescribeTypeConfigurationsInput {
|
118
118
|
TypeConfigurationIdentifiers: TypeConfigurationIdentifier[] | undefined;
|
119
119
|
}
|
120
120
|
export interface BatchDescribeTypeConfigurationsError {
|
121
|
-
ErrorCode?: string;
|
122
|
-
ErrorMessage?: string;
|
123
|
-
TypeConfigurationIdentifier?: TypeConfigurationIdentifier;
|
121
|
+
ErrorCode?: string | undefined;
|
122
|
+
ErrorMessage?: string | undefined;
|
123
|
+
TypeConfigurationIdentifier?: TypeConfigurationIdentifier | undefined;
|
124
124
|
}
|
125
125
|
export interface TypeConfigurationDetails {
|
126
|
-
Arn?: string;
|
127
|
-
Alias?: string;
|
128
|
-
Configuration?: string;
|
129
|
-
LastUpdated?: Date;
|
130
|
-
TypeArn?: string;
|
131
|
-
TypeName?: string;
|
132
|
-
IsDefaultConfiguration?: boolean;
|
126
|
+
Arn?: string | undefined;
|
127
|
+
Alias?: string | undefined;
|
128
|
+
Configuration?: string | undefined;
|
129
|
+
LastUpdated?: Date | undefined;
|
130
|
+
TypeArn?: string | undefined;
|
131
|
+
TypeName?: string | undefined;
|
132
|
+
IsDefaultConfiguration?: boolean | undefined;
|
133
133
|
}
|
134
134
|
export interface BatchDescribeTypeConfigurationsOutput {
|
135
|
-
Errors?: BatchDescribeTypeConfigurationsError[];
|
136
|
-
UnprocessedTypeConfigurations?: TypeConfigurationIdentifier[];
|
137
|
-
TypeConfigurations?: TypeConfigurationDetails[];
|
135
|
+
Errors?: BatchDescribeTypeConfigurationsError[] | undefined;
|
136
|
+
UnprocessedTypeConfigurations?: TypeConfigurationIdentifier[] | undefined;
|
137
|
+
TypeConfigurations?: TypeConfigurationDetails[] | undefined;
|
138
138
|
}
|
139
139
|
export declare class TypeConfigurationNotFoundException extends __BaseException {
|
140
140
|
readonly name: "TypeConfigurationNotFoundException";
|
141
141
|
readonly $fault: "client";
|
142
|
-
Message?: string;
|
142
|
+
Message?: string | undefined;
|
143
143
|
constructor(
|
144
144
|
opts: __ExceptionOptionType<
|
145
145
|
TypeConfigurationNotFoundException,
|
@@ -154,12 +154,12 @@ export declare const CallAs: {
|
|
154
154
|
export type CallAs = (typeof CallAs)[keyof typeof CallAs];
|
155
155
|
export interface CancelUpdateStackInput {
|
156
156
|
StackName: string | undefined;
|
157
|
-
ClientRequestToken?: string;
|
157
|
+
ClientRequestToken?: string | undefined;
|
158
158
|
}
|
159
159
|
export declare class TokenAlreadyExistsException extends __BaseException {
|
160
160
|
readonly name: "TokenAlreadyExistsException";
|
161
161
|
readonly $fault: "client";
|
162
|
-
Message?: string;
|
162
|
+
Message?: string | undefined;
|
163
163
|
constructor(
|
164
164
|
opts: __ExceptionOptionType<TokenAlreadyExistsException, __BaseException>
|
165
165
|
);
|
@@ -218,23 +218,23 @@ export declare const RequiresRecreation: {
|
|
218
218
|
export type RequiresRecreation =
|
219
219
|
(typeof RequiresRecreation)[keyof typeof RequiresRecreation];
|
220
220
|
export interface ResourceTargetDefinition {
|
221
|
-
Attribute?: ResourceAttribute;
|
222
|
-
Name?: string;
|
223
|
-
RequiresRecreation?: RequiresRecreation;
|
224
|
-
Path?: string;
|
225
|
-
BeforeValue?: string;
|
226
|
-
AfterValue?: string;
|
227
|
-
AttributeChangeType?: AttributeChangeType;
|
221
|
+
Attribute?: ResourceAttribute | undefined;
|
222
|
+
Name?: string | undefined;
|
223
|
+
RequiresRecreation?: RequiresRecreation | undefined;
|
224
|
+
Path?: string | undefined;
|
225
|
+
BeforeValue?: string | undefined;
|
226
|
+
AfterValue?: string | undefined;
|
227
|
+
AttributeChangeType?: AttributeChangeType | undefined;
|
228
228
|
}
|
229
229
|
export interface ResourceChangeDetail {
|
230
|
-
Target?: ResourceTargetDefinition;
|
231
|
-
Evaluation?: EvaluationType;
|
232
|
-
ChangeSource?: ChangeSource;
|
233
|
-
CausingEntity?: string;
|
230
|
+
Target?: ResourceTargetDefinition | undefined;
|
231
|
+
Evaluation?: EvaluationType | undefined;
|
232
|
+
ChangeSource?: ChangeSource | undefined;
|
233
|
+
CausingEntity?: string | undefined;
|
234
234
|
}
|
235
235
|
export interface ModuleInfo {
|
236
|
-
TypeHierarchy?: string;
|
237
|
-
LogicalIdHierarchy?: string;
|
236
|
+
TypeHierarchy?: string | undefined;
|
237
|
+
LogicalIdHierarchy?: string | undefined;
|
238
238
|
}
|
239
239
|
export declare const PolicyAction: {
|
240
240
|
readonly Delete: "Delete";
|
@@ -252,27 +252,27 @@ export declare const Replacement: {
|
|
252
252
|
};
|
253
253
|
export type Replacement = (typeof Replacement)[keyof typeof Replacement];
|
254
254
|
export interface ResourceChange {
|
255
|
-
PolicyAction?: PolicyAction;
|
256
|
-
Action?: ChangeAction;
|
257
|
-
LogicalResourceId?: string;
|
258
|
-
PhysicalResourceId?: string;
|
259
|
-
ResourceType?: string;
|
260
|
-
Replacement?: Replacement;
|
261
|
-
Scope?: ResourceAttribute[];
|
262
|
-
Details?: ResourceChangeDetail[];
|
263
|
-
ChangeSetId?: string;
|
264
|
-
ModuleInfo?: ModuleInfo;
|
265
|
-
BeforeContext?: string;
|
266
|
-
AfterContext?: string;
|
255
|
+
PolicyAction?: PolicyAction | undefined;
|
256
|
+
Action?: ChangeAction | undefined;
|
257
|
+
LogicalResourceId?: string | undefined;
|
258
|
+
PhysicalResourceId?: string | undefined;
|
259
|
+
ResourceType?: string | undefined;
|
260
|
+
Replacement?: Replacement | undefined;
|
261
|
+
Scope?: ResourceAttribute[] | undefined;
|
262
|
+
Details?: ResourceChangeDetail[] | undefined;
|
263
|
+
ChangeSetId?: string | undefined;
|
264
|
+
ModuleInfo?: ModuleInfo | undefined;
|
265
|
+
BeforeContext?: string | undefined;
|
266
|
+
AfterContext?: string | undefined;
|
267
267
|
}
|
268
268
|
export declare const ChangeType: {
|
269
269
|
readonly Resource: "Resource";
|
270
270
|
};
|
271
271
|
export type ChangeType = (typeof ChangeType)[keyof typeof ChangeType];
|
272
272
|
export interface Change {
|
273
|
-
Type?: ChangeType;
|
274
|
-
HookInvocationCount?: number;
|
275
|
-
ResourceChange?: ResourceChange;
|
273
|
+
Type?: ChangeType | undefined;
|
274
|
+
HookInvocationCount?: number | undefined;
|
275
|
+
ResourceChange?: ResourceChange | undefined;
|
276
276
|
}
|
277
277
|
export declare const HookFailureMode: {
|
278
278
|
readonly FAIL: "FAIL";
|
@@ -286,9 +286,9 @@ export declare const HookInvocationPoint: {
|
|
286
286
|
export type HookInvocationPoint =
|
287
287
|
(typeof HookInvocationPoint)[keyof typeof HookInvocationPoint];
|
288
288
|
export interface ChangeSetHookResourceTargetDetails {
|
289
|
-
LogicalResourceId?: string;
|
290
|
-
ResourceType?: string;
|
291
|
-
ResourceAction?: ChangeAction;
|
289
|
+
LogicalResourceId?: string | undefined;
|
290
|
+
ResourceType?: string | undefined;
|
291
|
+
ResourceAction?: ChangeAction | undefined;
|
292
292
|
}
|
293
293
|
export declare const HookTargetType: {
|
294
294
|
readonly RESOURCE: "RESOURCE";
|
@@ -296,16 +296,16 @@ export declare const HookTargetType: {
|
|
296
296
|
export type HookTargetType =
|
297
297
|
(typeof HookTargetType)[keyof typeof HookTargetType];
|
298
298
|
export interface ChangeSetHookTargetDetails {
|
299
|
-
TargetType?: HookTargetType;
|
300
|
-
ResourceTargetDetails?: ChangeSetHookResourceTargetDetails;
|
299
|
+
TargetType?: HookTargetType | undefined;
|
300
|
+
ResourceTargetDetails?: ChangeSetHookResourceTargetDetails | undefined;
|
301
301
|
}
|
302
302
|
export interface ChangeSetHook {
|
303
|
-
InvocationPoint?: HookInvocationPoint;
|
304
|
-
FailureMode?: HookFailureMode;
|
305
|
-
TypeName?: string;
|
306
|
-
TypeVersionId?: string;
|
307
|
-
TypeConfigurationVersionId?: string;
|
308
|
-
TargetDetails?: ChangeSetHookTargetDetails;
|
303
|
+
InvocationPoint?: HookInvocationPoint | undefined;
|
304
|
+
FailureMode?: HookFailureMode | undefined;
|
305
|
+
TypeName?: string | undefined;
|
306
|
+
TypeVersionId?: string | undefined;
|
307
|
+
TypeConfigurationVersionId?: string | undefined;
|
308
|
+
TargetDetails?: ChangeSetHookTargetDetails | undefined;
|
309
309
|
}
|
310
310
|
export declare const ChangeSetHooksStatus: {
|
311
311
|
readonly PLANNED: "PLANNED";
|
@@ -317,7 +317,7 @@ export type ChangeSetHooksStatus =
|
|
317
317
|
export declare class ChangeSetNotFoundException extends __BaseException {
|
318
318
|
readonly name: "ChangeSetNotFoundException";
|
319
319
|
readonly $fault: "client";
|
320
|
-
Message?: string;
|
320
|
+
Message?: string | undefined;
|
321
321
|
constructor(
|
322
322
|
opts: __ExceptionOptionType<ChangeSetNotFoundException, __BaseException>
|
323
323
|
);
|
@@ -345,19 +345,19 @@ export declare const ExecutionStatus: {
|
|
345
345
|
export type ExecutionStatus =
|
346
346
|
(typeof ExecutionStatus)[keyof typeof ExecutionStatus];
|
347
347
|
export interface ChangeSetSummary {
|
348
|
-
StackId?: string;
|
349
|
-
StackName?: string;
|
350
|
-
ChangeSetId?: string;
|
351
|
-
ChangeSetName?: string;
|
352
|
-
ExecutionStatus?: ExecutionStatus;
|
353
|
-
Status?: ChangeSetStatus;
|
354
|
-
StatusReason?: string;
|
355
|
-
CreationTime?: Date;
|
356
|
-
Description?: string;
|
357
|
-
IncludeNestedStacks?: boolean;
|
358
|
-
ParentChangeSetId?: string;
|
359
|
-
RootChangeSetId?: string;
|
360
|
-
ImportExistingResources?: boolean;
|
348
|
+
StackId?: string | undefined;
|
349
|
+
StackName?: string | undefined;
|
350
|
+
ChangeSetId?: string | undefined;
|
351
|
+
ChangeSetName?: string | undefined;
|
352
|
+
ExecutionStatus?: ExecutionStatus | undefined;
|
353
|
+
Status?: ChangeSetStatus | undefined;
|
354
|
+
StatusReason?: string | undefined;
|
355
|
+
CreationTime?: Date | undefined;
|
356
|
+
Description?: string | undefined;
|
357
|
+
IncludeNestedStacks?: boolean | undefined;
|
358
|
+
ParentChangeSetId?: string | undefined;
|
359
|
+
RootChangeSetId?: string | undefined;
|
360
|
+
ImportExistingResources?: boolean | undefined;
|
361
361
|
}
|
362
362
|
export declare const ChangeSetType: {
|
363
363
|
readonly CREATE: "CREATE";
|
@@ -367,9 +367,9 @@ export declare const ChangeSetType: {
|
|
367
367
|
export type ChangeSetType = (typeof ChangeSetType)[keyof typeof ChangeSetType];
|
368
368
|
export interface ContinueUpdateRollbackInput {
|
369
369
|
StackName: string | undefined;
|
370
|
-
RoleARN?: string;
|
371
|
-
ResourcesToSkip?: string[];
|
372
|
-
ClientRequestToken?: string;
|
370
|
+
RoleARN?: string | undefined;
|
371
|
+
ResourcesToSkip?: string[] | undefined;
|
372
|
+
ClientRequestToken?: string | undefined;
|
373
373
|
}
|
374
374
|
export interface ContinueUpdateRollbackOutput {}
|
375
375
|
export declare const OnStackFailure: {
|
@@ -380,10 +380,10 @@ export declare const OnStackFailure: {
|
|
380
380
|
export type OnStackFailure =
|
381
381
|
(typeof OnStackFailure)[keyof typeof OnStackFailure];
|
382
382
|
export interface Parameter {
|
383
|
-
ParameterKey?: string;
|
384
|
-
ParameterValue?: string;
|
385
|
-
UsePreviousValue?: boolean;
|
386
|
-
ResolvedValue?: string;
|
383
|
+
ParameterKey?: string | undefined;
|
384
|
+
ParameterValue?: string | undefined;
|
385
|
+
UsePreviousValue?: boolean | undefined;
|
386
|
+
ResolvedValue?: string | undefined;
|
387
387
|
}
|
388
388
|
export interface ResourceToImport {
|
389
389
|
ResourceType: string | undefined;
|
@@ -395,8 +395,8 @@ export interface RollbackTrigger {
|
|
395
395
|
Type: string | undefined;
|
396
396
|
}
|
397
397
|
export interface RollbackConfiguration {
|
398
|
-
RollbackTriggers?: RollbackTrigger[];
|
399
|
-
MonitoringTimeInMinutes?: number;
|
398
|
+
RollbackTriggers?: RollbackTrigger[] | undefined;
|
399
|
+
MonitoringTimeInMinutes?: number | undefined;
|
400
400
|
}
|
401
401
|
export interface Tag {
|
402
402
|
Key: string | undefined;
|
@@ -404,33 +404,33 @@ export interface Tag {
|
|
404
404
|
}
|
405
405
|
export interface CreateChangeSetInput {
|
406
406
|
StackName: string | undefined;
|
407
|
-
TemplateBody?: string;
|
408
|
-
TemplateURL?: string;
|
409
|
-
UsePreviousTemplate?: boolean;
|
410
|
-
Parameters?: Parameter[];
|
411
|
-
Capabilities?: Capability[];
|
412
|
-
ResourceTypes?: string[];
|
413
|
-
RoleARN?: string;
|
414
|
-
RollbackConfiguration?: RollbackConfiguration;
|
415
|
-
NotificationARNs?: string[];
|
416
|
-
Tags?: Tag[];
|
407
|
+
TemplateBody?: string | undefined;
|
408
|
+
TemplateURL?: string | undefined;
|
409
|
+
UsePreviousTemplate?: boolean | undefined;
|
410
|
+
Parameters?: Parameter[] | undefined;
|
411
|
+
Capabilities?: Capability[] | undefined;
|
412
|
+
ResourceTypes?: string[] | undefined;
|
413
|
+
RoleARN?: string | undefined;
|
414
|
+
RollbackConfiguration?: RollbackConfiguration | undefined;
|
415
|
+
NotificationARNs?: string[] | undefined;
|
416
|
+
Tags?: Tag[] | undefined;
|
417
417
|
ChangeSetName: string | undefined;
|
418
|
-
ClientToken?: string;
|
419
|
-
Description?: string;
|
420
|
-
ChangeSetType?: ChangeSetType;
|
421
|
-
ResourcesToImport?: ResourceToImport[];
|
422
|
-
IncludeNestedStacks?: boolean;
|
423
|
-
OnStackFailure?: OnStackFailure;
|
424
|
-
ImportExistingResources?: boolean;
|
418
|
+
ClientToken?: string | undefined;
|
419
|
+
Description?: string | undefined;
|
420
|
+
ChangeSetType?: ChangeSetType | undefined;
|
421
|
+
ResourcesToImport?: ResourceToImport[] | undefined;
|
422
|
+
IncludeNestedStacks?: boolean | undefined;
|
423
|
+
OnStackFailure?: OnStackFailure | undefined;
|
424
|
+
ImportExistingResources?: boolean | undefined;
|
425
425
|
}
|
426
426
|
export interface CreateChangeSetOutput {
|
427
|
-
Id?: string;
|
428
|
-
StackId?: string;
|
427
|
+
Id?: string | undefined;
|
428
|
+
StackId?: string | undefined;
|
429
429
|
}
|
430
430
|
export declare class InsufficientCapabilitiesException extends __BaseException {
|
431
431
|
readonly name: "InsufficientCapabilitiesException";
|
432
432
|
readonly $fault: "client";
|
433
|
-
Message?: string;
|
433
|
+
Message?: string | undefined;
|
434
434
|
constructor(
|
435
435
|
opts: __ExceptionOptionType<
|
436
436
|
InsufficientCapabilitiesException,
|
@@ -441,7 +441,7 @@ export declare class InsufficientCapabilitiesException extends __BaseException {
|
|
441
441
|
export declare class LimitExceededException extends __BaseException {
|
442
442
|
readonly name: "LimitExceededException";
|
443
443
|
readonly $fault: "client";
|
444
|
-
Message?: string;
|
444
|
+
Message?: string | undefined;
|
445
445
|
constructor(
|
446
446
|
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
447
447
|
);
|
@@ -449,7 +449,7 @@ export declare class LimitExceededException extends __BaseException {
|
|
449
449
|
export declare class ConcurrentResourcesLimitExceededException extends __BaseException {
|
450
450
|
readonly name: "ConcurrentResourcesLimitExceededException";
|
451
451
|
readonly $fault: "client";
|
452
|
-
Message?: string;
|
452
|
+
Message?: string | undefined;
|
453
453
|
constructor(
|
454
454
|
opts: __ExceptionOptionType<
|
455
455
|
ConcurrentResourcesLimitExceededException,
|
@@ -459,7 +459,7 @@ export declare class ConcurrentResourcesLimitExceededException extends __BaseExc
|
|
459
459
|
}
|
460
460
|
export interface ResourceDefinition {
|
461
461
|
ResourceType: string | undefined;
|
462
|
-
LogicalResourceId?: string;
|
462
|
+
LogicalResourceId?: string | undefined;
|
463
463
|
ResourceIdentifier: Record<string, string> | undefined;
|
464
464
|
}
|
465
465
|
export declare const GeneratedTemplateDeletionPolicy: {
|
@@ -475,17 +475,17 @@ export declare const GeneratedTemplateUpdateReplacePolicy: {
|
|
475
475
|
export type GeneratedTemplateUpdateReplacePolicy =
|
476
476
|
(typeof GeneratedTemplateUpdateReplacePolicy)[keyof typeof GeneratedTemplateUpdateReplacePolicy];
|
477
477
|
export interface TemplateConfiguration {
|
478
|
-
DeletionPolicy?: GeneratedTemplateDeletionPolicy;
|
479
|
-
UpdateReplacePolicy?: GeneratedTemplateUpdateReplacePolicy;
|
478
|
+
DeletionPolicy?: GeneratedTemplateDeletionPolicy | undefined;
|
479
|
+
UpdateReplacePolicy?: GeneratedTemplateUpdateReplacePolicy | undefined;
|
480
480
|
}
|
481
481
|
export interface CreateGeneratedTemplateInput {
|
482
|
-
Resources?: ResourceDefinition[];
|
482
|
+
Resources?: ResourceDefinition[] | undefined;
|
483
483
|
GeneratedTemplateName: string | undefined;
|
484
|
-
StackName?: string;
|
485
|
-
TemplateConfiguration?: TemplateConfiguration;
|
484
|
+
StackName?: string | undefined;
|
485
|
+
TemplateConfiguration?: TemplateConfiguration | undefined;
|
486
486
|
}
|
487
487
|
export interface CreateGeneratedTemplateOutput {
|
488
|
-
GeneratedTemplateId?: string;
|
488
|
+
GeneratedTemplateId?: string | undefined;
|
489
489
|
}
|
490
490
|
export declare const OnFailure: {
|
491
491
|
readonly DELETE: "DELETE";
|
@@ -495,32 +495,32 @@ export declare const OnFailure: {
|
|
495
495
|
export type OnFailure = (typeof OnFailure)[keyof typeof OnFailure];
|
496
496
|
export interface CreateStackInput {
|
497
497
|
StackName: string | undefined;
|
498
|
-
TemplateBody?: string;
|
499
|
-
TemplateURL?: string;
|
500
|
-
Parameters?: Parameter[];
|
501
|
-
DisableRollback?: boolean;
|
502
|
-
RollbackConfiguration?: RollbackConfiguration;
|
503
|
-
TimeoutInMinutes?: number;
|
504
|
-
NotificationARNs?: string[];
|
505
|
-
Capabilities?: Capability[];
|
506
|
-
ResourceTypes?: string[];
|
507
|
-
RoleARN?: string;
|
508
|
-
OnFailure?: OnFailure;
|
509
|
-
StackPolicyBody?: string;
|
510
|
-
StackPolicyURL?: string;
|
511
|
-
Tags?: Tag[];
|
512
|
-
ClientRequestToken?: string;
|
513
|
-
EnableTerminationProtection?: boolean;
|
514
|
-
RetainExceptOnCreate?: boolean;
|
498
|
+
TemplateBody?: string | undefined;
|
499
|
+
TemplateURL?: string | undefined;
|
500
|
+
Parameters?: Parameter[] | undefined;
|
501
|
+
DisableRollback?: boolean | undefined;
|
502
|
+
RollbackConfiguration?: RollbackConfiguration | undefined;
|
503
|
+
TimeoutInMinutes?: number | undefined;
|
504
|
+
NotificationARNs?: string[] | undefined;
|
505
|
+
Capabilities?: Capability[] | undefined;
|
506
|
+
ResourceTypes?: string[] | undefined;
|
507
|
+
RoleARN?: string | undefined;
|
508
|
+
OnFailure?: OnFailure | undefined;
|
509
|
+
StackPolicyBody?: string | undefined;
|
510
|
+
StackPolicyURL?: string | undefined;
|
511
|
+
Tags?: Tag[] | undefined;
|
512
|
+
ClientRequestToken?: string | undefined;
|
513
|
+
EnableTerminationProtection?: boolean | undefined;
|
514
|
+
RetainExceptOnCreate?: boolean | undefined;
|
515
515
|
}
|
516
516
|
export interface CreateStackOutput {
|
517
|
-
StackId?: string;
|
517
|
+
StackId?: string | undefined;
|
518
518
|
}
|
519
519
|
export interface DeploymentTargets {
|
520
|
-
Accounts?: string[];
|
521
|
-
AccountsUrl?: string;
|
522
|
-
OrganizationalUnitIds?: string[];
|
523
|
-
AccountFilterType?: AccountFilterType;
|
520
|
+
Accounts?: string[] | undefined;
|
521
|
+
AccountsUrl?: string | undefined;
|
522
|
+
OrganizationalUnitIds?: string[] | undefined;
|
523
|
+
AccountFilterType?: AccountFilterType | undefined;
|
524
524
|
}
|
525
525
|
export declare const ConcurrencyMode: {
|
526
526
|
readonly SOFT_FAILURE_TOLERANCE: "SOFT_FAILURE_TOLERANCE";
|
@@ -535,31 +535,31 @@ export declare const RegionConcurrencyType: {
|
|
535
535
|
export type RegionConcurrencyType =
|
536
536
|
(typeof RegionConcurrencyType)[keyof typeof RegionConcurrencyType];
|
537
537
|
export interface StackSetOperationPreferences {
|
538
|
-
RegionConcurrencyType?: RegionConcurrencyType;
|
539
|
-
RegionOrder?: string[];
|
540
|
-
FailureToleranceCount?: number;
|
541
|
-
FailureTolerancePercentage?: number;
|
542
|
-
MaxConcurrentCount?: number;
|
543
|
-
MaxConcurrentPercentage?: number;
|
544
|
-
ConcurrencyMode?: ConcurrencyMode;
|
538
|
+
RegionConcurrencyType?: RegionConcurrencyType | undefined;
|
539
|
+
RegionOrder?: string[] | undefined;
|
540
|
+
FailureToleranceCount?: number | undefined;
|
541
|
+
FailureTolerancePercentage?: number | undefined;
|
542
|
+
MaxConcurrentCount?: number | undefined;
|
543
|
+
MaxConcurrentPercentage?: number | undefined;
|
544
|
+
ConcurrencyMode?: ConcurrencyMode | undefined;
|
545
545
|
}
|
546
546
|
export interface CreateStackInstancesInput {
|
547
547
|
StackSetName: string | undefined;
|
548
|
-
Accounts?: string[];
|
549
|
-
DeploymentTargets?: DeploymentTargets;
|
548
|
+
Accounts?: string[] | undefined;
|
549
|
+
DeploymentTargets?: DeploymentTargets | undefined;
|
550
550
|
Regions: string[] | undefined;
|
551
|
-
ParameterOverrides?: Parameter[];
|
552
|
-
OperationPreferences?: StackSetOperationPreferences;
|
553
|
-
OperationId?: string;
|
554
|
-
CallAs?: CallAs;
|
551
|
+
ParameterOverrides?: Parameter[] | undefined;
|
552
|
+
OperationPreferences?: StackSetOperationPreferences | undefined;
|
553
|
+
OperationId?: string | undefined;
|
554
|
+
CallAs?: CallAs | undefined;
|
555
555
|
}
|
556
556
|
export interface CreateStackInstancesOutput {
|
557
|
-
OperationId?: string;
|
557
|
+
OperationId?: string | undefined;
|
558
558
|
}
|
559
559
|
export declare class OperationIdAlreadyExistsException extends __BaseException {
|
560
560
|
readonly name: "OperationIdAlreadyExistsException";
|
561
561
|
readonly $fault: "client";
|
562
|
-
Message?: string;
|
562
|
+
Message?: string | undefined;
|
563
563
|
constructor(
|
564
564
|
opts: __ExceptionOptionType<
|
565
565
|
OperationIdAlreadyExistsException,
|
@@ -570,7 +570,7 @@ export declare class OperationIdAlreadyExistsException extends __BaseException {
|
|
570
570
|
export declare class OperationInProgressException extends __BaseException {
|
571
571
|
readonly name: "OperationInProgressException";
|
572
572
|
readonly $fault: "client";
|
573
|
-
Message?: string;
|
573
|
+
Message?: string | undefined;
|
574
574
|
constructor(
|
575
575
|
opts: __ExceptionOptionType<OperationInProgressException, __BaseException>
|
576
576
|
);
|
@@ -578,7 +578,7 @@ export declare class OperationInProgressException extends __BaseException {
|
|
578
578
|
export declare class StackSetNotFoundException extends __BaseException {
|
579
579
|
readonly name: "StackSetNotFoundException";
|
580
580
|
readonly $fault: "client";
|
581
|
-
Message?: string;
|
581
|
+
Message?: string | undefined;
|
582
582
|
constructor(
|
583
583
|
opts: __ExceptionOptionType<StackSetNotFoundException, __BaseException>
|
584
584
|
);
|
@@ -586,7 +586,7 @@ export declare class StackSetNotFoundException extends __BaseException {
|
|
586
586
|
export declare class StaleRequestException extends __BaseException {
|
587
587
|
readonly name: "StaleRequestException";
|
588
588
|
readonly $fault: "client";
|
589
|
-
Message?: string;
|
589
|
+
Message?: string | undefined;
|
590
590
|
constructor(
|
591
591
|
opts: __ExceptionOptionType<StaleRequestException, __BaseException>
|
592
592
|
);
|
@@ -594,13 +594,13 @@ export declare class StaleRequestException extends __BaseException {
|
|
594
594
|
export declare class CreatedButModifiedException extends __BaseException {
|
595
595
|
readonly name: "CreatedButModifiedException";
|
596
596
|
readonly $fault: "client";
|
597
|
-
Message?: string;
|
597
|
+
Message?: string | undefined;
|
598
598
|
constructor(
|
599
599
|
opts: __ExceptionOptionType<CreatedButModifiedException, __BaseException>
|
600
600
|
);
|
601
601
|
}
|
602
602
|
export interface ManagedExecution {
|
603
|
-
Active?: boolean;
|
603
|
+
Active?: boolean | undefined;
|
604
604
|
}
|
605
605
|
export declare const PermissionModels: {
|
606
606
|
readonly SELF_MANAGED: "SELF_MANAGED";
|
@@ -610,28 +610,28 @@ export type PermissionModels =
|
|
610
610
|
(typeof PermissionModels)[keyof typeof PermissionModels];
|
611
611
|
export interface CreateStackSetInput {
|
612
612
|
StackSetName: string | undefined;
|
613
|
-
Description?: string;
|
614
|
-
TemplateBody?: string;
|
615
|
-
TemplateURL?: string;
|
616
|
-
StackId?: string;
|
617
|
-
Parameters?: Parameter[];
|
618
|
-
Capabilities?: Capability[];
|
619
|
-
Tags?: Tag[];
|
620
|
-
AdministrationRoleARN?: string;
|
621
|
-
ExecutionRoleName?: string;
|
622
|
-
PermissionModel?: PermissionModels;
|
623
|
-
AutoDeployment?: AutoDeployment;
|
624
|
-
CallAs?: CallAs;
|
625
|
-
ClientRequestToken?: string;
|
626
|
-
ManagedExecution?: ManagedExecution;
|
613
|
+
Description?: string | undefined;
|
614
|
+
TemplateBody?: string | undefined;
|
615
|
+
TemplateURL?: string | undefined;
|
616
|
+
StackId?: string | undefined;
|
617
|
+
Parameters?: Parameter[] | undefined;
|
618
|
+
Capabilities?: Capability[] | undefined;
|
619
|
+
Tags?: Tag[] | undefined;
|
620
|
+
AdministrationRoleARN?: string | undefined;
|
621
|
+
ExecutionRoleName?: string | undefined;
|
622
|
+
PermissionModel?: PermissionModels | undefined;
|
623
|
+
AutoDeployment?: AutoDeployment | undefined;
|
624
|
+
CallAs?: CallAs | undefined;
|
625
|
+
ClientRequestToken?: string | undefined;
|
626
|
+
ManagedExecution?: ManagedExecution | undefined;
|
627
627
|
}
|
628
628
|
export interface CreateStackSetOutput {
|
629
|
-
StackSetId?: string;
|
629
|
+
StackSetId?: string | undefined;
|
630
630
|
}
|
631
631
|
export declare class NameAlreadyExistsException extends __BaseException {
|
632
632
|
readonly name: "NameAlreadyExistsException";
|
633
633
|
readonly $fault: "client";
|
634
|
-
Message?: string;
|
634
|
+
Message?: string | undefined;
|
635
635
|
constructor(
|
636
636
|
opts: __ExceptionOptionType<NameAlreadyExistsException, __BaseException>
|
637
637
|
);
|
@@ -639,20 +639,20 @@ export declare class NameAlreadyExistsException extends __BaseException {
|
|
639
639
|
export interface DeactivateOrganizationsAccessInput {}
|
640
640
|
export interface DeactivateOrganizationsAccessOutput {}
|
641
641
|
export interface DeactivateTypeInput {
|
642
|
-
TypeName?: string;
|
643
|
-
Type?: ThirdPartyType;
|
644
|
-
Arn?: string;
|
642
|
+
TypeName?: string | undefined;
|
643
|
+
Type?: ThirdPartyType | undefined;
|
644
|
+
Arn?: string | undefined;
|
645
645
|
}
|
646
646
|
export interface DeactivateTypeOutput {}
|
647
647
|
export interface DeleteChangeSetInput {
|
648
648
|
ChangeSetName: string | undefined;
|
649
|
-
StackName?: string;
|
649
|
+
StackName?: string | undefined;
|
650
650
|
}
|
651
651
|
export interface DeleteChangeSetOutput {}
|
652
652
|
export declare class InvalidChangeSetStatusException extends __BaseException {
|
653
653
|
readonly name: "InvalidChangeSetStatusException";
|
654
654
|
readonly $fault: "client";
|
655
|
-
Message?: string;
|
655
|
+
Message?: string | undefined;
|
656
656
|
constructor(
|
657
657
|
opts: __ExceptionOptionType<
|
658
658
|
InvalidChangeSetStatusException,
|
@@ -666,7 +666,7 @@ export interface DeleteGeneratedTemplateInput {
|
|
666
666
|
export declare class GeneratedTemplateNotFoundException extends __BaseException {
|
667
667
|
readonly name: "GeneratedTemplateNotFoundException";
|
668
668
|
readonly $fault: "client";
|
669
|
-
Message?: string;
|
669
|
+
Message?: string | undefined;
|
670
670
|
constructor(
|
671
671
|
opts: __ExceptionOptionType<
|
672
672
|
GeneratedTemplateNotFoundException,
|
@@ -681,33 +681,33 @@ export declare const DeletionMode: {
|
|
681
681
|
export type DeletionMode = (typeof DeletionMode)[keyof typeof DeletionMode];
|
682
682
|
export interface DeleteStackInput {
|
683
683
|
StackName: string | undefined;
|
684
|
-
RetainResources?: string[];
|
685
|
-
RoleARN?: string;
|
686
|
-
ClientRequestToken?: string;
|
687
|
-
DeletionMode?: DeletionMode;
|
684
|
+
RetainResources?: string[] | undefined;
|
685
|
+
RoleARN?: string | undefined;
|
686
|
+
ClientRequestToken?: string | undefined;
|
687
|
+
DeletionMode?: DeletionMode | undefined;
|
688
688
|
}
|
689
689
|
export interface DeleteStackInstancesInput {
|
690
690
|
StackSetName: string | undefined;
|
691
|
-
Accounts?: string[];
|
692
|
-
DeploymentTargets?: DeploymentTargets;
|
691
|
+
Accounts?: string[] | undefined;
|
692
|
+
DeploymentTargets?: DeploymentTargets | undefined;
|
693
693
|
Regions: string[] | undefined;
|
694
|
-
OperationPreferences?: StackSetOperationPreferences;
|
694
|
+
OperationPreferences?: StackSetOperationPreferences | undefined;
|
695
695
|
RetainStacks: boolean | undefined;
|
696
|
-
OperationId?: string;
|
697
|
-
CallAs?: CallAs;
|
696
|
+
OperationId?: string | undefined;
|
697
|
+
CallAs?: CallAs | undefined;
|
698
698
|
}
|
699
699
|
export interface DeleteStackInstancesOutput {
|
700
|
-
OperationId?: string;
|
700
|
+
OperationId?: string | undefined;
|
701
701
|
}
|
702
702
|
export interface DeleteStackSetInput {
|
703
703
|
StackSetName: string | undefined;
|
704
|
-
CallAs?: CallAs;
|
704
|
+
CallAs?: CallAs | undefined;
|
705
705
|
}
|
706
706
|
export interface DeleteStackSetOutput {}
|
707
707
|
export declare class StackSetNotEmptyException extends __BaseException {
|
708
708
|
readonly name: "StackSetNotEmptyException";
|
709
709
|
readonly $fault: "client";
|
710
|
-
Message?: string;
|
710
|
+
Message?: string | undefined;
|
711
711
|
constructor(
|
712
712
|
opts: __ExceptionOptionType<StackSetNotEmptyException, __BaseException>
|
713
713
|
);
|
@@ -719,71 +719,71 @@ export declare const RegistryType: {
|
|
719
719
|
};
|
720
720
|
export type RegistryType = (typeof RegistryType)[keyof typeof RegistryType];
|
721
721
|
export interface DeregisterTypeInput {
|
722
|
-
Arn?: string;
|
723
|
-
Type?: RegistryType;
|
724
|
-
TypeName?: string;
|
725
|
-
VersionId?: string;
|
722
|
+
Arn?: string | undefined;
|
723
|
+
Type?: RegistryType | undefined;
|
724
|
+
TypeName?: string | undefined;
|
725
|
+
VersionId?: string | undefined;
|
726
726
|
}
|
727
727
|
export interface DeregisterTypeOutput {}
|
728
728
|
export interface DescribeAccountLimitsInput {
|
729
|
-
NextToken?: string;
|
729
|
+
NextToken?: string | undefined;
|
730
730
|
}
|
731
731
|
export interface DescribeAccountLimitsOutput {
|
732
|
-
AccountLimits?: AccountLimit[];
|
733
|
-
NextToken?: string;
|
732
|
+
AccountLimits?: AccountLimit[] | undefined;
|
733
|
+
NextToken?: string | undefined;
|
734
734
|
}
|
735
735
|
export interface DescribeChangeSetInput {
|
736
736
|
ChangeSetName: string | undefined;
|
737
|
-
StackName?: string;
|
738
|
-
NextToken?: string;
|
739
|
-
IncludePropertyValues?: boolean;
|
737
|
+
StackName?: string | undefined;
|
738
|
+
NextToken?: string | undefined;
|
739
|
+
IncludePropertyValues?: boolean | undefined;
|
740
740
|
}
|
741
741
|
export interface DescribeChangeSetOutput {
|
742
|
-
ChangeSetName?: string;
|
743
|
-
ChangeSetId?: string;
|
744
|
-
StackId?: string;
|
745
|
-
StackName?: string;
|
746
|
-
Description?: string;
|
747
|
-
Parameters?: Parameter[];
|
748
|
-
CreationTime?: Date;
|
749
|
-
ExecutionStatus?: ExecutionStatus;
|
750
|
-
Status?: ChangeSetStatus;
|
751
|
-
StatusReason?: string;
|
752
|
-
NotificationARNs?: string[];
|
753
|
-
RollbackConfiguration?: RollbackConfiguration;
|
754
|
-
Capabilities?: Capability[];
|
755
|
-
Tags?: Tag[];
|
756
|
-
Changes?: Change[];
|
757
|
-
NextToken?: string;
|
758
|
-
IncludeNestedStacks?: boolean;
|
759
|
-
ParentChangeSetId?: string;
|
760
|
-
RootChangeSetId?: string;
|
761
|
-
OnStackFailure?: OnStackFailure;
|
762
|
-
ImportExistingResources?: boolean;
|
742
|
+
ChangeSetName?: string | undefined;
|
743
|
+
ChangeSetId?: string | undefined;
|
744
|
+
StackId?: string | undefined;
|
745
|
+
StackName?: string | undefined;
|
746
|
+
Description?: string | undefined;
|
747
|
+
Parameters?: Parameter[] | undefined;
|
748
|
+
CreationTime?: Date | undefined;
|
749
|
+
ExecutionStatus?: ExecutionStatus | undefined;
|
750
|
+
Status?: ChangeSetStatus | undefined;
|
751
|
+
StatusReason?: string | undefined;
|
752
|
+
NotificationARNs?: string[] | undefined;
|
753
|
+
RollbackConfiguration?: RollbackConfiguration | undefined;
|
754
|
+
Capabilities?: Capability[] | undefined;
|
755
|
+
Tags?: Tag[] | undefined;
|
756
|
+
Changes?: Change[] | undefined;
|
757
|
+
NextToken?: string | undefined;
|
758
|
+
IncludeNestedStacks?: boolean | undefined;
|
759
|
+
ParentChangeSetId?: string | undefined;
|
760
|
+
RootChangeSetId?: string | undefined;
|
761
|
+
OnStackFailure?: OnStackFailure | undefined;
|
762
|
+
ImportExistingResources?: boolean | undefined;
|
763
763
|
}
|
764
764
|
export interface DescribeChangeSetHooksInput {
|
765
765
|
ChangeSetName: string | undefined;
|
766
|
-
StackName?: string;
|
767
|
-
NextToken?: string;
|
768
|
-
LogicalResourceId?: string;
|
766
|
+
StackName?: string | undefined;
|
767
|
+
NextToken?: string | undefined;
|
768
|
+
LogicalResourceId?: string | undefined;
|
769
769
|
}
|
770
770
|
export interface DescribeChangeSetHooksOutput {
|
771
|
-
ChangeSetId?: string;
|
772
|
-
ChangeSetName?: string;
|
773
|
-
Hooks?: ChangeSetHook[];
|
774
|
-
Status?: ChangeSetHooksStatus;
|
775
|
-
NextToken?: string;
|
776
|
-
StackId?: string;
|
777
|
-
StackName?: string;
|
771
|
+
ChangeSetId?: string | undefined;
|
772
|
+
ChangeSetName?: string | undefined;
|
773
|
+
Hooks?: ChangeSetHook[] | undefined;
|
774
|
+
Status?: ChangeSetHooksStatus | undefined;
|
775
|
+
NextToken?: string | undefined;
|
776
|
+
StackId?: string | undefined;
|
777
|
+
StackName?: string | undefined;
|
778
778
|
}
|
779
779
|
export interface DescribeGeneratedTemplateInput {
|
780
780
|
GeneratedTemplateName: string | undefined;
|
781
781
|
}
|
782
782
|
export interface TemplateProgress {
|
783
|
-
ResourcesSucceeded?: number;
|
784
|
-
ResourcesFailed?: number;
|
785
|
-
ResourcesProcessing?: number;
|
786
|
-
ResourcesPending?: number;
|
783
|
+
ResourcesSucceeded?: number | undefined;
|
784
|
+
ResourcesFailed?: number | undefined;
|
785
|
+
ResourcesProcessing?: number | undefined;
|
786
|
+
ResourcesPending?: number | undefined;
|
787
787
|
}
|
788
788
|
export declare const GeneratedTemplateResourceStatus: {
|
789
789
|
readonly COMPLETE: "COMPLETE";
|
@@ -794,9 +794,9 @@ export declare const GeneratedTemplateResourceStatus: {
|
|
794
794
|
export type GeneratedTemplateResourceStatus =
|
795
795
|
(typeof GeneratedTemplateResourceStatus)[keyof typeof GeneratedTemplateResourceStatus];
|
796
796
|
export interface WarningProperty {
|
797
|
-
PropertyPath?: string;
|
798
|
-
Required?: boolean;
|
799
|
-
Description?: string;
|
797
|
+
PropertyPath?: string | undefined;
|
798
|
+
Required?: boolean | undefined;
|
799
|
+
Description?: string | undefined;
|
800
800
|
}
|
801
801
|
export declare const WarningType: {
|
802
802
|
readonly MUTUALLY_EXCLUSIVE_PROPERTIES: "MUTUALLY_EXCLUSIVE_PROPERTIES";
|
@@ -805,16 +805,16 @@ export declare const WarningType: {
|
|
805
805
|
};
|
806
806
|
export type WarningType = (typeof WarningType)[keyof typeof WarningType];
|
807
807
|
export interface WarningDetail {
|
808
|
-
Type?: WarningType;
|
809
|
-
Properties?: WarningProperty[];
|
808
|
+
Type?: WarningType | undefined;
|
809
|
+
Properties?: WarningProperty[] | undefined;
|
810
810
|
}
|
811
811
|
export interface ResourceDetail {
|
812
|
-
ResourceType?: string;
|
813
|
-
LogicalResourceId?: string;
|
814
|
-
ResourceIdentifier?: Record<string, string
|
815
|
-
ResourceStatus?: GeneratedTemplateResourceStatus;
|
816
|
-
ResourceStatusReason?: string;
|
817
|
-
Warnings?: WarningDetail[];
|
812
|
+
ResourceType?: string | undefined;
|
813
|
+
LogicalResourceId?: string | undefined;
|
814
|
+
ResourceIdentifier?: Record<string, string> | undefined;
|
815
|
+
ResourceStatus?: GeneratedTemplateResourceStatus | undefined;
|
816
|
+
ResourceStatusReason?: string | undefined;
|
817
|
+
Warnings?: WarningDetail[] | undefined;
|
818
818
|
}
|
819
819
|
export declare const GeneratedTemplateStatus: {
|
820
820
|
readonly COMPLETE: "COMPLETE";
|
@@ -829,20 +829,20 @@ export declare const GeneratedTemplateStatus: {
|
|
829
829
|
export type GeneratedTemplateStatus =
|
830
830
|
(typeof GeneratedTemplateStatus)[keyof typeof GeneratedTemplateStatus];
|
831
831
|
export interface DescribeGeneratedTemplateOutput {
|
832
|
-
GeneratedTemplateId?: string;
|
833
|
-
GeneratedTemplateName?: string;
|
834
|
-
Resources?: ResourceDetail[];
|
835
|
-
Status?: GeneratedTemplateStatus;
|
836
|
-
StatusReason?: string;
|
837
|
-
CreationTime?: Date;
|
838
|
-
LastUpdatedTime?: Date;
|
839
|
-
Progress?: TemplateProgress;
|
840
|
-
StackId?: string;
|
841
|
-
TemplateConfiguration?: TemplateConfiguration;
|
842
|
-
TotalWarnings?: number;
|
832
|
+
GeneratedTemplateId?: string | undefined;
|
833
|
+
GeneratedTemplateName?: string | undefined;
|
834
|
+
Resources?: ResourceDetail[] | undefined;
|
835
|
+
Status?: GeneratedTemplateStatus | undefined;
|
836
|
+
StatusReason?: string | undefined;
|
837
|
+
CreationTime?: Date | undefined;
|
838
|
+
LastUpdatedTime?: Date | undefined;
|
839
|
+
Progress?: TemplateProgress | undefined;
|
840
|
+
StackId?: string | undefined;
|
841
|
+
TemplateConfiguration?: TemplateConfiguration | undefined;
|
842
|
+
TotalWarnings?: number | undefined;
|
843
843
|
}
|
844
844
|
export interface DescribeOrganizationsAccessInput {
|
845
|
-
CallAs?: CallAs;
|
845
|
+
CallAs?: CallAs | undefined;
|
846
846
|
}
|
847
847
|
export declare const OrganizationStatus: {
|
848
848
|
readonly DISABLED: "DISABLED";
|
@@ -852,10 +852,10 @@ export declare const OrganizationStatus: {
|
|
852
852
|
export type OrganizationStatus =
|
853
853
|
(typeof OrganizationStatus)[keyof typeof OrganizationStatus];
|
854
854
|
export interface DescribeOrganizationsAccessOutput {
|
855
|
-
Status?: OrganizationStatus;
|
855
|
+
Status?: OrganizationStatus | undefined;
|
856
856
|
}
|
857
857
|
export interface DescribePublisherInput {
|
858
|
-
PublisherId?: string;
|
858
|
+
PublisherId?: string | undefined;
|
859
859
|
}
|
860
860
|
export declare const IdentityProvider: {
|
861
861
|
readonly AWS_Marketplace: "AWS_Marketplace";
|
@@ -871,10 +871,10 @@ export declare const PublisherStatus: {
|
|
871
871
|
export type PublisherStatus =
|
872
872
|
(typeof PublisherStatus)[keyof typeof PublisherStatus];
|
873
873
|
export interface DescribePublisherOutput {
|
874
|
-
PublisherId?: string;
|
875
|
-
PublisherStatus?: PublisherStatus;
|
876
|
-
IdentityProvider?: IdentityProvider;
|
877
|
-
PublisherProfile?: string;
|
874
|
+
PublisherId?: string | undefined;
|
875
|
+
PublisherStatus?: PublisherStatus | undefined;
|
876
|
+
IdentityProvider?: IdentityProvider | undefined;
|
877
|
+
PublisherProfile?: string | undefined;
|
878
878
|
}
|
879
879
|
export interface DescribeResourceScanInput {
|
880
880
|
ResourceScanId: string | undefined;
|
@@ -888,20 +888,20 @@ export declare const ResourceScanStatus: {
|
|
888
888
|
export type ResourceScanStatus =
|
889
889
|
(typeof ResourceScanStatus)[keyof typeof ResourceScanStatus];
|
890
890
|
export interface DescribeResourceScanOutput {
|
891
|
-
ResourceScanId?: string;
|
892
|
-
Status?: ResourceScanStatus;
|
893
|
-
StatusReason?: string;
|
894
|
-
StartTime?: Date;
|
895
|
-
EndTime?: Date;
|
896
|
-
PercentageCompleted?: number;
|
897
|
-
ResourceTypes?: string[];
|
898
|
-
ResourcesScanned?: number;
|
899
|
-
ResourcesRead?: number;
|
891
|
+
ResourceScanId?: string | undefined;
|
892
|
+
Status?: ResourceScanStatus | undefined;
|
893
|
+
StatusReason?: string | undefined;
|
894
|
+
StartTime?: Date | undefined;
|
895
|
+
EndTime?: Date | undefined;
|
896
|
+
PercentageCompleted?: number | undefined;
|
897
|
+
ResourceTypes?: string[] | undefined;
|
898
|
+
ResourcesScanned?: number | undefined;
|
899
|
+
ResourcesRead?: number | undefined;
|
900
900
|
}
|
901
901
|
export declare class ResourceScanNotFoundException extends __BaseException {
|
902
902
|
readonly name: "ResourceScanNotFoundException";
|
903
903
|
readonly $fault: "client";
|
904
|
-
Message?: string;
|
904
|
+
Message?: string | undefined;
|
905
905
|
constructor(
|
906
906
|
opts: __ExceptionOptionType<ResourceScanNotFoundException, __BaseException>
|
907
907
|
);
|
@@ -927,15 +927,15 @@ export type StackDriftStatus =
|
|
927
927
|
export interface DescribeStackDriftDetectionStatusOutput {
|
928
928
|
StackId: string | undefined;
|
929
929
|
StackDriftDetectionId: string | undefined;
|
930
|
-
StackDriftStatus?: StackDriftStatus;
|
930
|
+
StackDriftStatus?: StackDriftStatus | undefined;
|
931
931
|
DetectionStatus: StackDriftDetectionStatus | undefined;
|
932
|
-
DetectionStatusReason?: string;
|
933
|
-
DriftedStackResourceCount?: number;
|
932
|
+
DetectionStatusReason?: string | undefined;
|
933
|
+
DriftedStackResourceCount?: number | undefined;
|
934
934
|
Timestamp: Date | undefined;
|
935
935
|
}
|
936
936
|
export interface DescribeStackEventsInput {
|
937
|
-
StackName?: string;
|
938
|
-
NextToken?: string;
|
937
|
+
StackName?: string | undefined;
|
938
|
+
NextToken?: string | undefined;
|
939
939
|
}
|
940
940
|
export declare const DetailedStatus: {
|
941
941
|
readonly CONFIGURATION_COMPLETE: "CONFIGURATION_COMPLETE";
|
@@ -980,30 +980,30 @@ export interface StackEvent {
|
|
980
980
|
StackId: string | undefined;
|
981
981
|
EventId: string | undefined;
|
982
982
|
StackName: string | undefined;
|
983
|
-
LogicalResourceId?: string;
|
984
|
-
PhysicalResourceId?: string;
|
985
|
-
ResourceType?: string;
|
983
|
+
LogicalResourceId?: string | undefined;
|
984
|
+
PhysicalResourceId?: string | undefined;
|
985
|
+
ResourceType?: string | undefined;
|
986
986
|
Timestamp: Date | undefined;
|
987
|
-
ResourceStatus?: ResourceStatus;
|
988
|
-
ResourceStatusReason?: string;
|
989
|
-
ResourceProperties?: string;
|
990
|
-
ClientRequestToken?: string;
|
991
|
-
HookType?: string;
|
992
|
-
HookStatus?: HookStatus;
|
993
|
-
HookStatusReason?: string;
|
994
|
-
HookInvocationPoint?: HookInvocationPoint;
|
995
|
-
HookFailureMode?: HookFailureMode;
|
996
|
-
DetailedStatus?: DetailedStatus;
|
987
|
+
ResourceStatus?: ResourceStatus | undefined;
|
988
|
+
ResourceStatusReason?: string | undefined;
|
989
|
+
ResourceProperties?: string | undefined;
|
990
|
+
ClientRequestToken?: string | undefined;
|
991
|
+
HookType?: string | undefined;
|
992
|
+
HookStatus?: HookStatus | undefined;
|
993
|
+
HookStatusReason?: string | undefined;
|
994
|
+
HookInvocationPoint?: HookInvocationPoint | undefined;
|
995
|
+
HookFailureMode?: HookFailureMode | undefined;
|
996
|
+
DetailedStatus?: DetailedStatus | undefined;
|
997
997
|
}
|
998
998
|
export interface DescribeStackEventsOutput {
|
999
|
-
StackEvents?: StackEvent[];
|
1000
|
-
NextToken?: string;
|
999
|
+
StackEvents?: StackEvent[] | undefined;
|
1000
|
+
NextToken?: string | undefined;
|
1001
1001
|
}
|
1002
1002
|
export interface DescribeStackInstanceInput {
|
1003
1003
|
StackSetName: string | undefined;
|
1004
1004
|
StackInstanceAccount: string | undefined;
|
1005
1005
|
StackInstanceRegion: string | undefined;
|
1006
|
-
CallAs?: CallAs;
|
1006
|
+
CallAs?: CallAs | undefined;
|
1007
1007
|
}
|
1008
1008
|
export declare const StackInstanceDetailedStatus: {
|
1009
1009
|
readonly CANCELLED: "CANCELLED";
|
@@ -1018,7 +1018,7 @@ export declare const StackInstanceDetailedStatus: {
|
|
1018
1018
|
export type StackInstanceDetailedStatus =
|
1019
1019
|
(typeof StackInstanceDetailedStatus)[keyof typeof StackInstanceDetailedStatus];
|
1020
1020
|
export interface StackInstanceComprehensiveStatus {
|
1021
|
-
DetailedStatus?: StackInstanceDetailedStatus;
|
1021
|
+
DetailedStatus?: StackInstanceDetailedStatus | undefined;
|
1022
1022
|
}
|
1023
1023
|
export declare const StackInstanceStatus: {
|
1024
1024
|
readonly CURRENT: "CURRENT";
|
@@ -1028,26 +1028,26 @@ export declare const StackInstanceStatus: {
|
|
1028
1028
|
export type StackInstanceStatus =
|
1029
1029
|
(typeof StackInstanceStatus)[keyof typeof StackInstanceStatus];
|
1030
1030
|
export interface StackInstance {
|
1031
|
-
StackSetId?: string;
|
1032
|
-
Region?: string;
|
1033
|
-
Account?: string;
|
1034
|
-
StackId?: string;
|
1035
|
-
ParameterOverrides?: Parameter[];
|
1036
|
-
Status?: StackInstanceStatus;
|
1037
|
-
StackInstanceStatus?: StackInstanceComprehensiveStatus;
|
1038
|
-
StatusReason?: string;
|
1039
|
-
OrganizationalUnitId?: string;
|
1040
|
-
DriftStatus?: StackDriftStatus;
|
1041
|
-
LastDriftCheckTimestamp?: Date;
|
1042
|
-
LastOperationId?: string;
|
1031
|
+
StackSetId?: string | undefined;
|
1032
|
+
Region?: string | undefined;
|
1033
|
+
Account?: string | undefined;
|
1034
|
+
StackId?: string | undefined;
|
1035
|
+
ParameterOverrides?: Parameter[] | undefined;
|
1036
|
+
Status?: StackInstanceStatus | undefined;
|
1037
|
+
StackInstanceStatus?: StackInstanceComprehensiveStatus | undefined;
|
1038
|
+
StatusReason?: string | undefined;
|
1039
|
+
OrganizationalUnitId?: string | undefined;
|
1040
|
+
DriftStatus?: StackDriftStatus | undefined;
|
1041
|
+
LastDriftCheckTimestamp?: Date | undefined;
|
1042
|
+
LastOperationId?: string | undefined;
|
1043
1043
|
}
|
1044
1044
|
export interface DescribeStackInstanceOutput {
|
1045
|
-
StackInstance?: StackInstance;
|
1045
|
+
StackInstance?: StackInstance | undefined;
|
1046
1046
|
}
|
1047
1047
|
export declare class StackInstanceNotFoundException extends __BaseException {
|
1048
1048
|
readonly name: "StackInstanceNotFoundException";
|
1049
1049
|
readonly $fault: "client";
|
1050
|
-
Message?: string;
|
1050
|
+
Message?: string | undefined;
|
1051
1051
|
constructor(
|
1052
1052
|
opts: __ExceptionOptionType<StackInstanceNotFoundException, __BaseException>
|
1053
1053
|
);
|
@@ -1066,30 +1066,30 @@ export type StackResourceDriftStatus =
|
|
1066
1066
|
(typeof StackResourceDriftStatus)[keyof typeof StackResourceDriftStatus];
|
1067
1067
|
export interface StackResourceDriftInformation {
|
1068
1068
|
StackResourceDriftStatus: StackResourceDriftStatus | undefined;
|
1069
|
-
LastCheckTimestamp?: Date;
|
1069
|
+
LastCheckTimestamp?: Date | undefined;
|
1070
1070
|
}
|
1071
1071
|
export interface StackResourceDetail {
|
1072
|
-
StackName?: string;
|
1073
|
-
StackId?: string;
|
1072
|
+
StackName?: string | undefined;
|
1073
|
+
StackId?: string | undefined;
|
1074
1074
|
LogicalResourceId: string | undefined;
|
1075
|
-
PhysicalResourceId?: string;
|
1075
|
+
PhysicalResourceId?: string | undefined;
|
1076
1076
|
ResourceType: string | undefined;
|
1077
1077
|
LastUpdatedTimestamp: Date | undefined;
|
1078
1078
|
ResourceStatus: ResourceStatus | undefined;
|
1079
|
-
ResourceStatusReason?: string;
|
1080
|
-
Description?: string;
|
1081
|
-
Metadata?: string;
|
1082
|
-
DriftInformation?: StackResourceDriftInformation;
|
1083
|
-
ModuleInfo?: ModuleInfo;
|
1079
|
+
ResourceStatusReason?: string | undefined;
|
1080
|
+
Description?: string | undefined;
|
1081
|
+
Metadata?: string | undefined;
|
1082
|
+
DriftInformation?: StackResourceDriftInformation | undefined;
|
1083
|
+
ModuleInfo?: ModuleInfo | undefined;
|
1084
1084
|
}
|
1085
1085
|
export interface DescribeStackResourceOutput {
|
1086
|
-
StackResourceDetail?: StackResourceDetail;
|
1086
|
+
StackResourceDetail?: StackResourceDetail | undefined;
|
1087
1087
|
}
|
1088
1088
|
export interface DescribeStackResourceDriftsInput {
|
1089
1089
|
StackName: string | undefined;
|
1090
|
-
StackResourceDriftStatusFilters?: StackResourceDriftStatus[];
|
1091
|
-
NextToken?: string;
|
1092
|
-
MaxResults?: number;
|
1090
|
+
StackResourceDriftStatusFilters?: StackResourceDriftStatus[] | undefined;
|
1091
|
+
NextToken?: string | undefined;
|
1092
|
+
MaxResults?: number | undefined;
|
1093
1093
|
}
|
1094
1094
|
export interface PhysicalResourceIdContextKeyValuePair {
|
1095
1095
|
Key: string | undefined;
|
@@ -1111,54 +1111,56 @@ export interface PropertyDifference {
|
|
1111
1111
|
export interface StackResourceDrift {
|
1112
1112
|
StackId: string | undefined;
|
1113
1113
|
LogicalResourceId: string | undefined;
|
1114
|
-
PhysicalResourceId?: string;
|
1115
|
-
PhysicalResourceIdContext?:
|
1114
|
+
PhysicalResourceId?: string | undefined;
|
1115
|
+
PhysicalResourceIdContext?:
|
1116
|
+
| PhysicalResourceIdContextKeyValuePair[]
|
1117
|
+
| undefined;
|
1116
1118
|
ResourceType: string | undefined;
|
1117
|
-
ExpectedProperties?: string;
|
1118
|
-
ActualProperties?: string;
|
1119
|
-
PropertyDifferences?: PropertyDifference[];
|
1119
|
+
ExpectedProperties?: string | undefined;
|
1120
|
+
ActualProperties?: string | undefined;
|
1121
|
+
PropertyDifferences?: PropertyDifference[] | undefined;
|
1120
1122
|
StackResourceDriftStatus: StackResourceDriftStatus | undefined;
|
1121
1123
|
Timestamp: Date | undefined;
|
1122
|
-
ModuleInfo?: ModuleInfo;
|
1124
|
+
ModuleInfo?: ModuleInfo | undefined;
|
1123
1125
|
}
|
1124
1126
|
export interface DescribeStackResourceDriftsOutput {
|
1125
1127
|
StackResourceDrifts: StackResourceDrift[] | undefined;
|
1126
|
-
NextToken?: string;
|
1128
|
+
NextToken?: string | undefined;
|
1127
1129
|
}
|
1128
1130
|
export interface DescribeStackResourcesInput {
|
1129
|
-
StackName?: string;
|
1130
|
-
LogicalResourceId?: string;
|
1131
|
-
PhysicalResourceId?: string;
|
1131
|
+
StackName?: string | undefined;
|
1132
|
+
LogicalResourceId?: string | undefined;
|
1133
|
+
PhysicalResourceId?: string | undefined;
|
1132
1134
|
}
|
1133
1135
|
export interface StackResource {
|
1134
|
-
StackName?: string;
|
1135
|
-
StackId?: string;
|
1136
|
+
StackName?: string | undefined;
|
1137
|
+
StackId?: string | undefined;
|
1136
1138
|
LogicalResourceId: string | undefined;
|
1137
|
-
PhysicalResourceId?: string;
|
1139
|
+
PhysicalResourceId?: string | undefined;
|
1138
1140
|
ResourceType: string | undefined;
|
1139
1141
|
Timestamp: Date | undefined;
|
1140
1142
|
ResourceStatus: ResourceStatus | undefined;
|
1141
|
-
ResourceStatusReason?: string;
|
1142
|
-
Description?: string;
|
1143
|
-
DriftInformation?: StackResourceDriftInformation;
|
1144
|
-
ModuleInfo?: ModuleInfo;
|
1143
|
+
ResourceStatusReason?: string | undefined;
|
1144
|
+
Description?: string | undefined;
|
1145
|
+
DriftInformation?: StackResourceDriftInformation | undefined;
|
1146
|
+
ModuleInfo?: ModuleInfo | undefined;
|
1145
1147
|
}
|
1146
1148
|
export interface DescribeStackResourcesOutput {
|
1147
|
-
StackResources?: StackResource[];
|
1149
|
+
StackResources?: StackResource[] | undefined;
|
1148
1150
|
}
|
1149
1151
|
export interface DescribeStacksInput {
|
1150
|
-
StackName?: string;
|
1151
|
-
NextToken?: string;
|
1152
|
+
StackName?: string | undefined;
|
1153
|
+
NextToken?: string | undefined;
|
1152
1154
|
}
|
1153
1155
|
export interface StackDriftInformation {
|
1154
1156
|
StackDriftStatus: StackDriftStatus | undefined;
|
1155
|
-
LastCheckTimestamp?: Date;
|
1157
|
+
LastCheckTimestamp?: Date | undefined;
|
1156
1158
|
}
|
1157
1159
|
export interface Output {
|
1158
|
-
OutputKey?: string;
|
1159
|
-
OutputValue?: string;
|
1160
|
-
Description?: string;
|
1161
|
-
ExportName?: string;
|
1160
|
+
OutputKey?: string | undefined;
|
1161
|
+
OutputValue?: string | undefined;
|
1162
|
+
Description?: string | undefined;
|
1163
|
+
ExportName?: string | undefined;
|
1162
1164
|
}
|
1163
1165
|
export declare const StackStatus: {
|
1164
1166
|
readonly CREATE_COMPLETE: "CREATE_COMPLETE";
|
@@ -1187,39 +1189,39 @@ export declare const StackStatus: {
|
|
1187
1189
|
};
|
1188
1190
|
export type StackStatus = (typeof StackStatus)[keyof typeof StackStatus];
|
1189
1191
|
export interface Stack {
|
1190
|
-
StackId?: string;
|
1192
|
+
StackId?: string | undefined;
|
1191
1193
|
StackName: string | undefined;
|
1192
|
-
ChangeSetId?: string;
|
1193
|
-
Description?: string;
|
1194
|
-
Parameters?: Parameter[];
|
1194
|
+
ChangeSetId?: string | undefined;
|
1195
|
+
Description?: string | undefined;
|
1196
|
+
Parameters?: Parameter[] | undefined;
|
1195
1197
|
CreationTime: Date | undefined;
|
1196
|
-
DeletionTime?: Date;
|
1197
|
-
LastUpdatedTime?: Date;
|
1198
|
-
RollbackConfiguration?: RollbackConfiguration;
|
1198
|
+
DeletionTime?: Date | undefined;
|
1199
|
+
LastUpdatedTime?: Date | undefined;
|
1200
|
+
RollbackConfiguration?: RollbackConfiguration | undefined;
|
1199
1201
|
StackStatus: StackStatus | undefined;
|
1200
|
-
StackStatusReason?: string;
|
1201
|
-
DisableRollback?: boolean;
|
1202
|
-
NotificationARNs?: string[];
|
1203
|
-
TimeoutInMinutes?: number;
|
1204
|
-
Capabilities?: Capability[];
|
1205
|
-
Outputs?: Output[];
|
1206
|
-
RoleARN?: string;
|
1207
|
-
Tags?: Tag[];
|
1208
|
-
EnableTerminationProtection?: boolean;
|
1209
|
-
ParentId?: string;
|
1210
|
-
RootId?: string;
|
1211
|
-
DriftInformation?: StackDriftInformation;
|
1212
|
-
RetainExceptOnCreate?: boolean;
|
1213
|
-
DeletionMode?: DeletionMode;
|
1214
|
-
DetailedStatus?: DetailedStatus;
|
1202
|
+
StackStatusReason?: string | undefined;
|
1203
|
+
DisableRollback?: boolean | undefined;
|
1204
|
+
NotificationARNs?: string[] | undefined;
|
1205
|
+
TimeoutInMinutes?: number | undefined;
|
1206
|
+
Capabilities?: Capability[] | undefined;
|
1207
|
+
Outputs?: Output[] | undefined;
|
1208
|
+
RoleARN?: string | undefined;
|
1209
|
+
Tags?: Tag[] | undefined;
|
1210
|
+
EnableTerminationProtection?: boolean | undefined;
|
1211
|
+
ParentId?: string | undefined;
|
1212
|
+
RootId?: string | undefined;
|
1213
|
+
DriftInformation?: StackDriftInformation | undefined;
|
1214
|
+
RetainExceptOnCreate?: boolean | undefined;
|
1215
|
+
DeletionMode?: DeletionMode | undefined;
|
1216
|
+
DetailedStatus?: DetailedStatus | undefined;
|
1215
1217
|
}
|
1216
1218
|
export interface DescribeStacksOutput {
|
1217
|
-
Stacks?: Stack[];
|
1218
|
-
NextToken?: string;
|
1219
|
+
Stacks?: Stack[] | undefined;
|
1220
|
+
NextToken?: string | undefined;
|
1219
1221
|
}
|
1220
1222
|
export interface DescribeStackSetInput {
|
1221
1223
|
StackSetName: string | undefined;
|
1222
|
-
CallAs?: CallAs;
|
1224
|
+
CallAs?: CallAs | undefined;
|
1223
1225
|
}
|
1224
1226
|
export declare const StackSetDriftDetectionStatus: {
|
1225
1227
|
readonly COMPLETED: "COMPLETED";
|
@@ -1238,14 +1240,14 @@ export declare const StackSetDriftStatus: {
|
|
1238
1240
|
export type StackSetDriftStatus =
|
1239
1241
|
(typeof StackSetDriftStatus)[keyof typeof StackSetDriftStatus];
|
1240
1242
|
export interface StackSetDriftDetectionDetails {
|
1241
|
-
DriftStatus?: StackSetDriftStatus;
|
1242
|
-
DriftDetectionStatus?: StackSetDriftDetectionStatus;
|
1243
|
-
LastDriftCheckTimestamp?: Date;
|
1244
|
-
TotalStackInstancesCount?: number;
|
1245
|
-
DriftedStackInstancesCount?: number;
|
1246
|
-
InSyncStackInstancesCount?: number;
|
1247
|
-
InProgressStackInstancesCount?: number;
|
1248
|
-
FailedStackInstancesCount?: number;
|
1243
|
+
DriftStatus?: StackSetDriftStatus | undefined;
|
1244
|
+
DriftDetectionStatus?: StackSetDriftDetectionStatus | undefined;
|
1245
|
+
LastDriftCheckTimestamp?: Date | undefined;
|
1246
|
+
TotalStackInstancesCount?: number | undefined;
|
1247
|
+
DriftedStackInstancesCount?: number | undefined;
|
1248
|
+
InSyncStackInstancesCount?: number | undefined;
|
1249
|
+
InProgressStackInstancesCount?: number | undefined;
|
1250
|
+
FailedStackInstancesCount?: number | undefined;
|
1249
1251
|
}
|
1250
1252
|
export declare const StackSetStatus: {
|
1251
1253
|
readonly ACTIVE: "ACTIVE";
|
@@ -1254,31 +1256,31 @@ export declare const StackSetStatus: {
|
|
1254
1256
|
export type StackSetStatus =
|
1255
1257
|
(typeof StackSetStatus)[keyof typeof StackSetStatus];
|
1256
1258
|
export interface StackSet {
|
1257
|
-
StackSetName?: string;
|
1258
|
-
StackSetId?: string;
|
1259
|
-
Description?: string;
|
1260
|
-
Status?: StackSetStatus;
|
1261
|
-
TemplateBody?: string;
|
1262
|
-
Parameters?: Parameter[];
|
1263
|
-
Capabilities?: Capability[];
|
1264
|
-
Tags?: Tag[];
|
1265
|
-
StackSetARN?: string;
|
1266
|
-
AdministrationRoleARN?: string;
|
1267
|
-
ExecutionRoleName?: string;
|
1268
|
-
StackSetDriftDetectionDetails?: StackSetDriftDetectionDetails;
|
1269
|
-
AutoDeployment?: AutoDeployment;
|
1270
|
-
PermissionModel?: PermissionModels;
|
1271
|
-
OrganizationalUnitIds?: string[];
|
1272
|
-
ManagedExecution?: ManagedExecution;
|
1273
|
-
Regions?: string[];
|
1259
|
+
StackSetName?: string | undefined;
|
1260
|
+
StackSetId?: string | undefined;
|
1261
|
+
Description?: string | undefined;
|
1262
|
+
Status?: StackSetStatus | undefined;
|
1263
|
+
TemplateBody?: string | undefined;
|
1264
|
+
Parameters?: Parameter[] | undefined;
|
1265
|
+
Capabilities?: Capability[] | undefined;
|
1266
|
+
Tags?: Tag[] | undefined;
|
1267
|
+
StackSetARN?: string | undefined;
|
1268
|
+
AdministrationRoleARN?: string | undefined;
|
1269
|
+
ExecutionRoleName?: string | undefined;
|
1270
|
+
StackSetDriftDetectionDetails?: StackSetDriftDetectionDetails | undefined;
|
1271
|
+
AutoDeployment?: AutoDeployment | undefined;
|
1272
|
+
PermissionModel?: PermissionModels | undefined;
|
1273
|
+
OrganizationalUnitIds?: string[] | undefined;
|
1274
|
+
ManagedExecution?: ManagedExecution | undefined;
|
1275
|
+
Regions?: string[] | undefined;
|
1274
1276
|
}
|
1275
1277
|
export interface DescribeStackSetOutput {
|
1276
|
-
StackSet?: StackSet;
|
1278
|
+
StackSet?: StackSet | undefined;
|
1277
1279
|
}
|
1278
1280
|
export interface DescribeStackSetOperationInput {
|
1279
1281
|
StackSetName: string | undefined;
|
1280
1282
|
OperationId: string | undefined;
|
1281
|
-
CallAs?: CallAs;
|
1283
|
+
CallAs?: CallAs | undefined;
|
1282
1284
|
}
|
1283
1285
|
export declare const StackSetOperationAction: {
|
1284
1286
|
readonly CREATE: "CREATE";
|
@@ -1299,34 +1301,34 @@ export declare const StackSetOperationStatus: {
|
|
1299
1301
|
export type StackSetOperationStatus =
|
1300
1302
|
(typeof StackSetOperationStatus)[keyof typeof StackSetOperationStatus];
|
1301
1303
|
export interface StackSetOperationStatusDetails {
|
1302
|
-
FailedStackInstancesCount?: number;
|
1304
|
+
FailedStackInstancesCount?: number | undefined;
|
1303
1305
|
}
|
1304
1306
|
export interface StackSetOperation {
|
1305
|
-
OperationId?: string;
|
1306
|
-
StackSetId?: string;
|
1307
|
-
Action?: StackSetOperationAction;
|
1308
|
-
Status?: StackSetOperationStatus;
|
1309
|
-
OperationPreferences?: StackSetOperationPreferences;
|
1310
|
-
RetainStacks?: boolean;
|
1311
|
-
AdministrationRoleARN?: string;
|
1312
|
-
ExecutionRoleName?: string;
|
1313
|
-
CreationTimestamp?: Date;
|
1314
|
-
EndTimestamp?: Date;
|
1315
|
-
DeploymentTargets?: DeploymentTargets;
|
1316
|
-
StackSetDriftDetectionDetails?: StackSetDriftDetectionDetails;
|
1317
|
-
StatusReason?: string;
|
1318
|
-
StatusDetails?: StackSetOperationStatusDetails;
|
1307
|
+
OperationId?: string | undefined;
|
1308
|
+
StackSetId?: string | undefined;
|
1309
|
+
Action?: StackSetOperationAction | undefined;
|
1310
|
+
Status?: StackSetOperationStatus | undefined;
|
1311
|
+
OperationPreferences?: StackSetOperationPreferences | undefined;
|
1312
|
+
RetainStacks?: boolean | undefined;
|
1313
|
+
AdministrationRoleARN?: string | undefined;
|
1314
|
+
ExecutionRoleName?: string | undefined;
|
1315
|
+
CreationTimestamp?: Date | undefined;
|
1316
|
+
EndTimestamp?: Date | undefined;
|
1317
|
+
DeploymentTargets?: DeploymentTargets | undefined;
|
1318
|
+
StackSetDriftDetectionDetails?: StackSetDriftDetectionDetails | undefined;
|
1319
|
+
StatusReason?: string | undefined;
|
1320
|
+
StatusDetails?: StackSetOperationStatusDetails | undefined;
|
1319
1321
|
}
|
1320
1322
|
export interface DescribeStackSetOperationOutput {
|
1321
|
-
StackSetOperation?: StackSetOperation;
|
1323
|
+
StackSetOperation?: StackSetOperation | undefined;
|
1322
1324
|
}
|
1323
1325
|
export interface DescribeTypeInput {
|
1324
|
-
Type?: RegistryType;
|
1325
|
-
TypeName?: string;
|
1326
|
-
Arn?: string;
|
1327
|
-
VersionId?: string;
|
1328
|
-
PublisherId?: string;
|
1329
|
-
PublicVersionNumber?: string;
|
1326
|
+
Type?: RegistryType | undefined;
|
1327
|
+
TypeName?: string | undefined;
|
1328
|
+
Arn?: string | undefined;
|
1329
|
+
VersionId?: string | undefined;
|
1330
|
+
PublisherId?: string | undefined;
|
1331
|
+
PublicVersionNumber?: string | undefined;
|
1330
1332
|
}
|
1331
1333
|
export declare const DeprecatedStatus: {
|
1332
1334
|
readonly DEPRECATED: "DEPRECATED";
|
@@ -1342,10 +1344,10 @@ export declare const ProvisioningType: {
|
|
1342
1344
|
export type ProvisioningType =
|
1343
1345
|
(typeof ProvisioningType)[keyof typeof ProvisioningType];
|
1344
1346
|
export interface RequiredActivatedType {
|
1345
|
-
TypeNameAlias?: string;
|
1346
|
-
OriginalTypeName?: string;
|
1347
|
-
PublisherId?: string;
|
1348
|
-
SupportedMajorVersions?: number[];
|
1347
|
+
TypeNameAlias?: string | undefined;
|
1348
|
+
OriginalTypeName?: string | undefined;
|
1349
|
+
PublisherId?: string | undefined;
|
1350
|
+
SupportedMajorVersions?: number[] | undefined;
|
1349
1351
|
}
|
1350
1352
|
export declare const TypeTestsStatus: {
|
1351
1353
|
readonly FAILED: "FAILED";
|
@@ -1361,33 +1363,33 @@ export declare const Visibility: {
|
|
1361
1363
|
};
|
1362
1364
|
export type Visibility = (typeof Visibility)[keyof typeof Visibility];
|
1363
1365
|
export interface DescribeTypeOutput {
|
1364
|
-
Arn?: string;
|
1365
|
-
Type?: RegistryType;
|
1366
|
-
TypeName?: string;
|
1367
|
-
DefaultVersionId?: string;
|
1368
|
-
IsDefaultVersion?: boolean;
|
1369
|
-
TypeTestsStatus?: TypeTestsStatus;
|
1370
|
-
TypeTestsStatusDescription?: string;
|
1371
|
-
Description?: string;
|
1372
|
-
Schema?: string;
|
1373
|
-
ProvisioningType?: ProvisioningType;
|
1374
|
-
DeprecatedStatus?: DeprecatedStatus;
|
1375
|
-
LoggingConfig?: LoggingConfig;
|
1376
|
-
RequiredActivatedTypes?: RequiredActivatedType[];
|
1377
|
-
ExecutionRoleArn?: string;
|
1378
|
-
Visibility?: Visibility;
|
1379
|
-
SourceUrl?: string;
|
1380
|
-
DocumentationUrl?: string;
|
1381
|
-
LastUpdated?: Date;
|
1382
|
-
TimeCreated?: Date;
|
1383
|
-
ConfigurationSchema?: string;
|
1384
|
-
PublisherId?: string;
|
1385
|
-
OriginalTypeName?: string;
|
1386
|
-
OriginalTypeArn?: string;
|
1387
|
-
PublicVersionNumber?: string;
|
1388
|
-
LatestPublicVersion?: string;
|
1389
|
-
IsActivated?: boolean;
|
1390
|
-
AutoUpdate?: boolean;
|
1366
|
+
Arn?: string | undefined;
|
1367
|
+
Type?: RegistryType | undefined;
|
1368
|
+
TypeName?: string | undefined;
|
1369
|
+
DefaultVersionId?: string | undefined;
|
1370
|
+
IsDefaultVersion?: boolean | undefined;
|
1371
|
+
TypeTestsStatus?: TypeTestsStatus | undefined;
|
1372
|
+
TypeTestsStatusDescription?: string | undefined;
|
1373
|
+
Description?: string | undefined;
|
1374
|
+
Schema?: string | undefined;
|
1375
|
+
ProvisioningType?: ProvisioningType | undefined;
|
1376
|
+
DeprecatedStatus?: DeprecatedStatus | undefined;
|
1377
|
+
LoggingConfig?: LoggingConfig | undefined;
|
1378
|
+
RequiredActivatedTypes?: RequiredActivatedType[] | undefined;
|
1379
|
+
ExecutionRoleArn?: string | undefined;
|
1380
|
+
Visibility?: Visibility | undefined;
|
1381
|
+
SourceUrl?: string | undefined;
|
1382
|
+
DocumentationUrl?: string | undefined;
|
1383
|
+
LastUpdated?: Date | undefined;
|
1384
|
+
TimeCreated?: Date | undefined;
|
1385
|
+
ConfigurationSchema?: string | undefined;
|
1386
|
+
PublisherId?: string | undefined;
|
1387
|
+
OriginalTypeName?: string | undefined;
|
1388
|
+
OriginalTypeArn?: string | undefined;
|
1389
|
+
PublicVersionNumber?: string | undefined;
|
1390
|
+
LatestPublicVersion?: string | undefined;
|
1391
|
+
IsActivated?: boolean | undefined;
|
1392
|
+
AutoUpdate?: boolean | undefined;
|
1391
1393
|
}
|
1392
1394
|
export interface DescribeTypeRegistrationInput {
|
1393
1395
|
RegistrationToken: string | undefined;
|
@@ -1400,14 +1402,14 @@ export declare const RegistrationStatus: {
|
|
1400
1402
|
export type RegistrationStatus =
|
1401
1403
|
(typeof RegistrationStatus)[keyof typeof RegistrationStatus];
|
1402
1404
|
export interface DescribeTypeRegistrationOutput {
|
1403
|
-
ProgressStatus?: RegistrationStatus;
|
1404
|
-
Description?: string;
|
1405
|
-
TypeArn?: string;
|
1406
|
-
TypeVersionArn?: string;
|
1405
|
+
ProgressStatus?: RegistrationStatus | undefined;
|
1406
|
+
Description?: string | undefined;
|
1407
|
+
TypeArn?: string | undefined;
|
1408
|
+
TypeVersionArn?: string | undefined;
|
1407
1409
|
}
|
1408
1410
|
export interface DetectStackDriftInput {
|
1409
1411
|
StackName: string | undefined;
|
1410
|
-
LogicalResourceIds?: string[];
|
1412
|
+
LogicalResourceIds?: string[] | undefined;
|
1411
1413
|
}
|
1412
1414
|
export interface DetectStackDriftOutput {
|
1413
1415
|
StackDriftDetectionId: string | undefined;
|
@@ -1421,27 +1423,27 @@ export interface DetectStackResourceDriftOutput {
|
|
1421
1423
|
}
|
1422
1424
|
export interface DetectStackSetDriftInput {
|
1423
1425
|
StackSetName: string | undefined;
|
1424
|
-
OperationPreferences?: StackSetOperationPreferences;
|
1425
|
-
OperationId?: string;
|
1426
|
-
CallAs?: CallAs;
|
1426
|
+
OperationPreferences?: StackSetOperationPreferences | undefined;
|
1427
|
+
OperationId?: string | undefined;
|
1428
|
+
CallAs?: CallAs | undefined;
|
1427
1429
|
}
|
1428
1430
|
export interface DetectStackSetDriftOutput {
|
1429
|
-
OperationId?: string;
|
1431
|
+
OperationId?: string | undefined;
|
1430
1432
|
}
|
1431
1433
|
export interface EstimateTemplateCostInput {
|
1432
|
-
TemplateBody?: string;
|
1433
|
-
TemplateURL?: string;
|
1434
|
-
Parameters?: Parameter[];
|
1434
|
+
TemplateBody?: string | undefined;
|
1435
|
+
TemplateURL?: string | undefined;
|
1436
|
+
Parameters?: Parameter[] | undefined;
|
1435
1437
|
}
|
1436
1438
|
export interface EstimateTemplateCostOutput {
|
1437
|
-
Url?: string;
|
1439
|
+
Url?: string | undefined;
|
1438
1440
|
}
|
1439
1441
|
export interface ExecuteChangeSetInput {
|
1440
1442
|
ChangeSetName: string | undefined;
|
1441
|
-
StackName?: string;
|
1442
|
-
ClientRequestToken?: string;
|
1443
|
-
DisableRollback?: boolean;
|
1444
|
-
RetainExceptOnCreate?: boolean;
|
1443
|
+
StackName?: string | undefined;
|
1444
|
+
ClientRequestToken?: string | undefined;
|
1445
|
+
DisableRollback?: boolean | undefined;
|
1446
|
+
RetainExceptOnCreate?: boolean | undefined;
|
1445
1447
|
}
|
1446
1448
|
export interface ExecuteChangeSetOutput {}
|
1447
1449
|
export declare const TemplateFormat: {
|
@@ -1451,18 +1453,18 @@ export declare const TemplateFormat: {
|
|
1451
1453
|
export type TemplateFormat =
|
1452
1454
|
(typeof TemplateFormat)[keyof typeof TemplateFormat];
|
1453
1455
|
export interface GetGeneratedTemplateInput {
|
1454
|
-
Format?: TemplateFormat;
|
1456
|
+
Format?: TemplateFormat | undefined;
|
1455
1457
|
GeneratedTemplateName: string | undefined;
|
1456
1458
|
}
|
1457
1459
|
export interface GetGeneratedTemplateOutput {
|
1458
|
-
Status?: GeneratedTemplateStatus;
|
1459
|
-
TemplateBody?: string;
|
1460
|
+
Status?: GeneratedTemplateStatus | undefined;
|
1461
|
+
TemplateBody?: string | undefined;
|
1460
1462
|
}
|
1461
1463
|
export interface GetStackPolicyInput {
|
1462
1464
|
StackName: string | undefined;
|
1463
1465
|
}
|
1464
1466
|
export interface GetStackPolicyOutput {
|
1465
|
-
StackPolicyBody?: string;
|
1467
|
+
StackPolicyBody?: string | undefined;
|
1466
1468
|
}
|
1467
1469
|
export declare const TemplateStage: {
|
1468
1470
|
readonly Original: "Original";
|
@@ -1470,120 +1472,120 @@ export declare const TemplateStage: {
|
|
1470
1472
|
};
|
1471
1473
|
export type TemplateStage = (typeof TemplateStage)[keyof typeof TemplateStage];
|
1472
1474
|
export interface GetTemplateInput {
|
1473
|
-
StackName?: string;
|
1474
|
-
ChangeSetName?: string;
|
1475
|
-
TemplateStage?: TemplateStage;
|
1475
|
+
StackName?: string | undefined;
|
1476
|
+
ChangeSetName?: string | undefined;
|
1477
|
+
TemplateStage?: TemplateStage | undefined;
|
1476
1478
|
}
|
1477
1479
|
export interface GetTemplateOutput {
|
1478
|
-
TemplateBody?: string;
|
1479
|
-
StagesAvailable?: TemplateStage[];
|
1480
|
+
TemplateBody?: string | undefined;
|
1481
|
+
StagesAvailable?: TemplateStage[] | undefined;
|
1480
1482
|
}
|
1481
1483
|
export interface TemplateSummaryConfig {
|
1482
|
-
TreatUnrecognizedResourceTypesAsWarnings?: boolean;
|
1484
|
+
TreatUnrecognizedResourceTypesAsWarnings?: boolean | undefined;
|
1483
1485
|
}
|
1484
1486
|
export interface GetTemplateSummaryInput {
|
1485
|
-
TemplateBody?: string;
|
1486
|
-
TemplateURL?: string;
|
1487
|
-
StackName?: string;
|
1488
|
-
StackSetName?: string;
|
1489
|
-
CallAs?: CallAs;
|
1490
|
-
TemplateSummaryConfig?: TemplateSummaryConfig;
|
1487
|
+
TemplateBody?: string | undefined;
|
1488
|
+
TemplateURL?: string | undefined;
|
1489
|
+
StackName?: string | undefined;
|
1490
|
+
StackSetName?: string | undefined;
|
1491
|
+
CallAs?: CallAs | undefined;
|
1492
|
+
TemplateSummaryConfig?: TemplateSummaryConfig | undefined;
|
1491
1493
|
}
|
1492
1494
|
export interface ParameterConstraints {
|
1493
|
-
AllowedValues?: string[];
|
1495
|
+
AllowedValues?: string[] | undefined;
|
1494
1496
|
}
|
1495
1497
|
export interface ParameterDeclaration {
|
1496
|
-
ParameterKey?: string;
|
1497
|
-
DefaultValue?: string;
|
1498
|
-
ParameterType?: string;
|
1499
|
-
NoEcho?: boolean;
|
1500
|
-
Description?: string;
|
1501
|
-
ParameterConstraints?: ParameterConstraints;
|
1498
|
+
ParameterKey?: string | undefined;
|
1499
|
+
DefaultValue?: string | undefined;
|
1500
|
+
ParameterType?: string | undefined;
|
1501
|
+
NoEcho?: boolean | undefined;
|
1502
|
+
Description?: string | undefined;
|
1503
|
+
ParameterConstraints?: ParameterConstraints | undefined;
|
1502
1504
|
}
|
1503
1505
|
export interface ResourceIdentifierSummary {
|
1504
|
-
ResourceType?: string;
|
1505
|
-
LogicalResourceIds?: string[];
|
1506
|
-
ResourceIdentifiers?: string[];
|
1506
|
+
ResourceType?: string | undefined;
|
1507
|
+
LogicalResourceIds?: string[] | undefined;
|
1508
|
+
ResourceIdentifiers?: string[] | undefined;
|
1507
1509
|
}
|
1508
1510
|
export interface Warnings {
|
1509
|
-
UnrecognizedResourceTypes?: string[];
|
1511
|
+
UnrecognizedResourceTypes?: string[] | undefined;
|
1510
1512
|
}
|
1511
1513
|
export interface GetTemplateSummaryOutput {
|
1512
|
-
Parameters?: ParameterDeclaration[];
|
1513
|
-
Description?: string;
|
1514
|
-
Capabilities?: Capability[];
|
1515
|
-
CapabilitiesReason?: string;
|
1516
|
-
ResourceTypes?: string[];
|
1517
|
-
Version?: string;
|
1518
|
-
Metadata?: string;
|
1519
|
-
DeclaredTransforms?: string[];
|
1520
|
-
ResourceIdentifierSummaries?: ResourceIdentifierSummary[];
|
1521
|
-
Warnings?: Warnings;
|
1514
|
+
Parameters?: ParameterDeclaration[] | undefined;
|
1515
|
+
Description?: string | undefined;
|
1516
|
+
Capabilities?: Capability[] | undefined;
|
1517
|
+
CapabilitiesReason?: string | undefined;
|
1518
|
+
ResourceTypes?: string[] | undefined;
|
1519
|
+
Version?: string | undefined;
|
1520
|
+
Metadata?: string | undefined;
|
1521
|
+
DeclaredTransforms?: string[] | undefined;
|
1522
|
+
ResourceIdentifierSummaries?: ResourceIdentifierSummary[] | undefined;
|
1523
|
+
Warnings?: Warnings | undefined;
|
1522
1524
|
}
|
1523
1525
|
export interface ImportStacksToStackSetInput {
|
1524
1526
|
StackSetName: string | undefined;
|
1525
|
-
StackIds?: string[];
|
1526
|
-
StackIdsUrl?: string;
|
1527
|
-
OrganizationalUnitIds?: string[];
|
1528
|
-
OperationPreferences?: StackSetOperationPreferences;
|
1529
|
-
OperationId?: string;
|
1530
|
-
CallAs?: CallAs;
|
1527
|
+
StackIds?: string[] | undefined;
|
1528
|
+
StackIdsUrl?: string | undefined;
|
1529
|
+
OrganizationalUnitIds?: string[] | undefined;
|
1530
|
+
OperationPreferences?: StackSetOperationPreferences | undefined;
|
1531
|
+
OperationId?: string | undefined;
|
1532
|
+
CallAs?: CallAs | undefined;
|
1531
1533
|
}
|
1532
1534
|
export interface ImportStacksToStackSetOutput {
|
1533
|
-
OperationId?: string;
|
1535
|
+
OperationId?: string | undefined;
|
1534
1536
|
}
|
1535
1537
|
export declare class StackNotFoundException extends __BaseException {
|
1536
1538
|
readonly name: "StackNotFoundException";
|
1537
1539
|
readonly $fault: "client";
|
1538
|
-
Message?: string;
|
1540
|
+
Message?: string | undefined;
|
1539
1541
|
constructor(
|
1540
1542
|
opts: __ExceptionOptionType<StackNotFoundException, __BaseException>
|
1541
1543
|
);
|
1542
1544
|
}
|
1543
1545
|
export interface ListChangeSetsInput {
|
1544
1546
|
StackName: string | undefined;
|
1545
|
-
NextToken?: string;
|
1547
|
+
NextToken?: string | undefined;
|
1546
1548
|
}
|
1547
1549
|
export interface ListChangeSetsOutput {
|
1548
|
-
Summaries?: ChangeSetSummary[];
|
1549
|
-
NextToken?: string;
|
1550
|
+
Summaries?: ChangeSetSummary[] | undefined;
|
1551
|
+
NextToken?: string | undefined;
|
1550
1552
|
}
|
1551
1553
|
export interface ListExportsInput {
|
1552
|
-
NextToken?: string;
|
1554
|
+
NextToken?: string | undefined;
|
1553
1555
|
}
|
1554
1556
|
export interface Export {
|
1555
|
-
ExportingStackId?: string;
|
1556
|
-
Name?: string;
|
1557
|
-
Value?: string;
|
1557
|
+
ExportingStackId?: string | undefined;
|
1558
|
+
Name?: string | undefined;
|
1559
|
+
Value?: string | undefined;
|
1558
1560
|
}
|
1559
1561
|
export interface ListExportsOutput {
|
1560
|
-
Exports?: Export[];
|
1561
|
-
NextToken?: string;
|
1562
|
+
Exports?: Export[] | undefined;
|
1563
|
+
NextToken?: string | undefined;
|
1562
1564
|
}
|
1563
1565
|
export interface ListGeneratedTemplatesInput {
|
1564
|
-
NextToken?: string;
|
1565
|
-
MaxResults?: number;
|
1566
|
+
NextToken?: string | undefined;
|
1567
|
+
MaxResults?: number | undefined;
|
1566
1568
|
}
|
1567
1569
|
export interface TemplateSummary {
|
1568
|
-
GeneratedTemplateId?: string;
|
1569
|
-
GeneratedTemplateName?: string;
|
1570
|
-
Status?: GeneratedTemplateStatus;
|
1571
|
-
StatusReason?: string;
|
1572
|
-
CreationTime?: Date;
|
1573
|
-
LastUpdatedTime?: Date;
|
1574
|
-
NumberOfResources?: number;
|
1570
|
+
GeneratedTemplateId?: string | undefined;
|
1571
|
+
GeneratedTemplateName?: string | undefined;
|
1572
|
+
Status?: GeneratedTemplateStatus | undefined;
|
1573
|
+
StatusReason?: string | undefined;
|
1574
|
+
CreationTime?: Date | undefined;
|
1575
|
+
LastUpdatedTime?: Date | undefined;
|
1576
|
+
NumberOfResources?: number | undefined;
|
1575
1577
|
}
|
1576
1578
|
export interface ListGeneratedTemplatesOutput {
|
1577
|
-
Summaries?: TemplateSummary[];
|
1578
|
-
NextToken?: string;
|
1579
|
+
Summaries?: TemplateSummary[] | undefined;
|
1580
|
+
NextToken?: string | undefined;
|
1579
1581
|
}
|
1580
1582
|
export interface ListImportsInput {
|
1581
1583
|
ExportName: string | undefined;
|
1582
|
-
NextToken?: string;
|
1584
|
+
NextToken?: string | undefined;
|
1583
1585
|
}
|
1584
1586
|
export interface ListImportsOutput {
|
1585
|
-
Imports?: string[];
|
1586
|
-
NextToken?: string;
|
1587
|
+
Imports?: string[] | undefined;
|
1588
|
+
NextToken?: string | undefined;
|
1587
1589
|
}
|
1588
1590
|
export interface ScannedResourceIdentifier {
|
1589
1591
|
ResourceType: string | undefined;
|
@@ -1592,22 +1594,22 @@ export interface ScannedResourceIdentifier {
|
|
1592
1594
|
export interface ListResourceScanRelatedResourcesInput {
|
1593
1595
|
ResourceScanId: string | undefined;
|
1594
1596
|
Resources: ScannedResourceIdentifier[] | undefined;
|
1595
|
-
NextToken?: string;
|
1596
|
-
MaxResults?: number;
|
1597
|
+
NextToken?: string | undefined;
|
1598
|
+
MaxResults?: number | undefined;
|
1597
1599
|
}
|
1598
1600
|
export interface ScannedResource {
|
1599
|
-
ResourceType?: string;
|
1600
|
-
ResourceIdentifier?: Record<string, string
|
1601
|
-
ManagedByStack?: boolean;
|
1601
|
+
ResourceType?: string | undefined;
|
1602
|
+
ResourceIdentifier?: Record<string, string> | undefined;
|
1603
|
+
ManagedByStack?: boolean | undefined;
|
1602
1604
|
}
|
1603
1605
|
export interface ListResourceScanRelatedResourcesOutput {
|
1604
|
-
RelatedResources?: ScannedResource[];
|
1605
|
-
NextToken?: string;
|
1606
|
+
RelatedResources?: ScannedResource[] | undefined;
|
1607
|
+
NextToken?: string | undefined;
|
1606
1608
|
}
|
1607
1609
|
export declare class ResourceScanInProgressException extends __BaseException {
|
1608
1610
|
readonly name: "ResourceScanInProgressException";
|
1609
1611
|
readonly $fault: "client";
|
1610
|
-
Message?: string;
|
1612
|
+
Message?: string | undefined;
|
1611
1613
|
constructor(
|
1612
1614
|
opts: __ExceptionOptionType<
|
1613
1615
|
ResourceScanInProgressException,
|
@@ -1617,56 +1619,58 @@ export declare class ResourceScanInProgressException extends __BaseException {
|
|
1617
1619
|
}
|
1618
1620
|
export interface ListResourceScanResourcesInput {
|
1619
1621
|
ResourceScanId: string | undefined;
|
1620
|
-
ResourceIdentifier?: string;
|
1621
|
-
ResourceTypePrefix?: string;
|
1622
|
-
TagKey?: string;
|
1623
|
-
TagValue?: string;
|
1624
|
-
NextToken?: string;
|
1625
|
-
MaxResults?: number;
|
1622
|
+
ResourceIdentifier?: string | undefined;
|
1623
|
+
ResourceTypePrefix?: string | undefined;
|
1624
|
+
TagKey?: string | undefined;
|
1625
|
+
TagValue?: string | undefined;
|
1626
|
+
NextToken?: string | undefined;
|
1627
|
+
MaxResults?: number | undefined;
|
1626
1628
|
}
|
1627
1629
|
export interface ListResourceScanResourcesOutput {
|
1628
|
-
Resources?: ScannedResource[];
|
1629
|
-
NextToken?: string;
|
1630
|
+
Resources?: ScannedResource[] | undefined;
|
1631
|
+
NextToken?: string | undefined;
|
1630
1632
|
}
|
1631
1633
|
export interface ListResourceScansInput {
|
1632
|
-
NextToken?: string;
|
1633
|
-
MaxResults?: number;
|
1634
|
+
NextToken?: string | undefined;
|
1635
|
+
MaxResults?: number | undefined;
|
1634
1636
|
}
|
1635
1637
|
export interface ResourceScanSummary {
|
1636
|
-
ResourceScanId?: string;
|
1637
|
-
Status?: ResourceScanStatus;
|
1638
|
-
StatusReason?: string;
|
1639
|
-
StartTime?: Date;
|
1640
|
-
EndTime?: Date;
|
1641
|
-
PercentageCompleted?: number;
|
1638
|
+
ResourceScanId?: string | undefined;
|
1639
|
+
Status?: ResourceScanStatus | undefined;
|
1640
|
+
StatusReason?: string | undefined;
|
1641
|
+
StartTime?: Date | undefined;
|
1642
|
+
EndTime?: Date | undefined;
|
1643
|
+
PercentageCompleted?: number | undefined;
|
1642
1644
|
}
|
1643
1645
|
export interface ListResourceScansOutput {
|
1644
|
-
ResourceScanSummaries?: ResourceScanSummary[];
|
1645
|
-
NextToken?: string;
|
1646
|
+
ResourceScanSummaries?: ResourceScanSummary[] | undefined;
|
1647
|
+
NextToken?: string | undefined;
|
1646
1648
|
}
|
1647
1649
|
export interface ListStackInstanceResourceDriftsInput {
|
1648
1650
|
StackSetName: string | undefined;
|
1649
|
-
NextToken?: string;
|
1650
|
-
MaxResults?: number;
|
1651
|
-
StackInstanceResourceDriftStatuses?: StackResourceDriftStatus[];
|
1651
|
+
NextToken?: string | undefined;
|
1652
|
+
MaxResults?: number | undefined;
|
1653
|
+
StackInstanceResourceDriftStatuses?: StackResourceDriftStatus[] | undefined;
|
1652
1654
|
StackInstanceAccount: string | undefined;
|
1653
1655
|
StackInstanceRegion: string | undefined;
|
1654
1656
|
OperationId: string | undefined;
|
1655
|
-
CallAs?: CallAs;
|
1657
|
+
CallAs?: CallAs | undefined;
|
1656
1658
|
}
|
1657
1659
|
export interface StackInstanceResourceDriftsSummary {
|
1658
1660
|
StackId: string | undefined;
|
1659
1661
|
LogicalResourceId: string | undefined;
|
1660
|
-
PhysicalResourceId?: string;
|
1661
|
-
PhysicalResourceIdContext?:
|
1662
|
+
PhysicalResourceId?: string | undefined;
|
1663
|
+
PhysicalResourceIdContext?:
|
1664
|
+
| PhysicalResourceIdContextKeyValuePair[]
|
1665
|
+
| undefined;
|
1662
1666
|
ResourceType: string | undefined;
|
1663
|
-
PropertyDifferences?: PropertyDifference[];
|
1667
|
+
PropertyDifferences?: PropertyDifference[] | undefined;
|
1664
1668
|
StackResourceDriftStatus: StackResourceDriftStatus | undefined;
|
1665
1669
|
Timestamp: Date | undefined;
|
1666
1670
|
}
|
1667
1671
|
export interface ListStackInstanceResourceDriftsOutput {
|
1668
|
-
Summaries?: StackInstanceResourceDriftsSummary[];
|
1669
|
-
NextToken?: string;
|
1672
|
+
Summaries?: StackInstanceResourceDriftsSummary[] | undefined;
|
1673
|
+
NextToken?: string | undefined;
|
1670
1674
|
}
|
1671
1675
|
export declare const StackInstanceFilterName: {
|
1672
1676
|
readonly DETAILED_STATUS: "DETAILED_STATUS";
|
@@ -1676,95 +1680,95 @@ export declare const StackInstanceFilterName: {
|
|
1676
1680
|
export type StackInstanceFilterName =
|
1677
1681
|
(typeof StackInstanceFilterName)[keyof typeof StackInstanceFilterName];
|
1678
1682
|
export interface StackInstanceFilter {
|
1679
|
-
Name?: StackInstanceFilterName;
|
1680
|
-
Values?: string;
|
1683
|
+
Name?: StackInstanceFilterName | undefined;
|
1684
|
+
Values?: string | undefined;
|
1681
1685
|
}
|
1682
1686
|
export interface ListStackInstancesInput {
|
1683
1687
|
StackSetName: string | undefined;
|
1684
|
-
NextToken?: string;
|
1685
|
-
MaxResults?: number;
|
1686
|
-
Filters?: StackInstanceFilter[];
|
1687
|
-
StackInstanceAccount?: string;
|
1688
|
-
StackInstanceRegion?: string;
|
1689
|
-
CallAs?: CallAs;
|
1688
|
+
NextToken?: string | undefined;
|
1689
|
+
MaxResults?: number | undefined;
|
1690
|
+
Filters?: StackInstanceFilter[] | undefined;
|
1691
|
+
StackInstanceAccount?: string | undefined;
|
1692
|
+
StackInstanceRegion?: string | undefined;
|
1693
|
+
CallAs?: CallAs | undefined;
|
1690
1694
|
}
|
1691
1695
|
export interface StackInstanceSummary {
|
1692
|
-
StackSetId?: string;
|
1693
|
-
Region?: string;
|
1694
|
-
Account?: string;
|
1695
|
-
StackId?: string;
|
1696
|
-
Status?: StackInstanceStatus;
|
1697
|
-
StatusReason?: string;
|
1698
|
-
StackInstanceStatus?: StackInstanceComprehensiveStatus;
|
1699
|
-
OrganizationalUnitId?: string;
|
1700
|
-
DriftStatus?: StackDriftStatus;
|
1701
|
-
LastDriftCheckTimestamp?: Date;
|
1702
|
-
LastOperationId?: string;
|
1696
|
+
StackSetId?: string | undefined;
|
1697
|
+
Region?: string | undefined;
|
1698
|
+
Account?: string | undefined;
|
1699
|
+
StackId?: string | undefined;
|
1700
|
+
Status?: StackInstanceStatus | undefined;
|
1701
|
+
StatusReason?: string | undefined;
|
1702
|
+
StackInstanceStatus?: StackInstanceComprehensiveStatus | undefined;
|
1703
|
+
OrganizationalUnitId?: string | undefined;
|
1704
|
+
DriftStatus?: StackDriftStatus | undefined;
|
1705
|
+
LastDriftCheckTimestamp?: Date | undefined;
|
1706
|
+
LastOperationId?: string | undefined;
|
1703
1707
|
}
|
1704
1708
|
export interface ListStackInstancesOutput {
|
1705
|
-
Summaries?: StackInstanceSummary[];
|
1706
|
-
NextToken?: string;
|
1709
|
+
Summaries?: StackInstanceSummary[] | undefined;
|
1710
|
+
NextToken?: string | undefined;
|
1707
1711
|
}
|
1708
1712
|
export interface ListStackResourcesInput {
|
1709
1713
|
StackName: string | undefined;
|
1710
|
-
NextToken?: string;
|
1714
|
+
NextToken?: string | undefined;
|
1711
1715
|
}
|
1712
1716
|
export interface StackResourceDriftInformationSummary {
|
1713
1717
|
StackResourceDriftStatus: StackResourceDriftStatus | undefined;
|
1714
|
-
LastCheckTimestamp?: Date;
|
1718
|
+
LastCheckTimestamp?: Date | undefined;
|
1715
1719
|
}
|
1716
1720
|
export interface StackResourceSummary {
|
1717
1721
|
LogicalResourceId: string | undefined;
|
1718
|
-
PhysicalResourceId?: string;
|
1722
|
+
PhysicalResourceId?: string | undefined;
|
1719
1723
|
ResourceType: string | undefined;
|
1720
1724
|
LastUpdatedTimestamp: Date | undefined;
|
1721
1725
|
ResourceStatus: ResourceStatus | undefined;
|
1722
|
-
ResourceStatusReason?: string;
|
1723
|
-
DriftInformation?: StackResourceDriftInformationSummary;
|
1724
|
-
ModuleInfo?: ModuleInfo;
|
1726
|
+
ResourceStatusReason?: string | undefined;
|
1727
|
+
DriftInformation?: StackResourceDriftInformationSummary | undefined;
|
1728
|
+
ModuleInfo?: ModuleInfo | undefined;
|
1725
1729
|
}
|
1726
1730
|
export interface ListStackResourcesOutput {
|
1727
|
-
StackResourceSummaries?: StackResourceSummary[];
|
1728
|
-
NextToken?: string;
|
1731
|
+
StackResourceSummaries?: StackResourceSummary[] | undefined;
|
1732
|
+
NextToken?: string | undefined;
|
1729
1733
|
}
|
1730
1734
|
export interface ListStacksInput {
|
1731
|
-
NextToken?: string;
|
1732
|
-
StackStatusFilter?: StackStatus[];
|
1735
|
+
NextToken?: string | undefined;
|
1736
|
+
StackStatusFilter?: StackStatus[] | undefined;
|
1733
1737
|
}
|
1734
1738
|
export interface StackDriftInformationSummary {
|
1735
1739
|
StackDriftStatus: StackDriftStatus | undefined;
|
1736
|
-
LastCheckTimestamp?: Date;
|
1740
|
+
LastCheckTimestamp?: Date | undefined;
|
1737
1741
|
}
|
1738
1742
|
export interface StackSummary {
|
1739
|
-
StackId?: string;
|
1743
|
+
StackId?: string | undefined;
|
1740
1744
|
StackName: string | undefined;
|
1741
|
-
TemplateDescription?: string;
|
1745
|
+
TemplateDescription?: string | undefined;
|
1742
1746
|
CreationTime: Date | undefined;
|
1743
|
-
LastUpdatedTime?: Date;
|
1744
|
-
DeletionTime?: Date;
|
1747
|
+
LastUpdatedTime?: Date | undefined;
|
1748
|
+
DeletionTime?: Date | undefined;
|
1745
1749
|
StackStatus: StackStatus | undefined;
|
1746
|
-
StackStatusReason?: string;
|
1747
|
-
ParentId?: string;
|
1748
|
-
RootId?: string;
|
1749
|
-
DriftInformation?: StackDriftInformationSummary;
|
1750
|
+
StackStatusReason?: string | undefined;
|
1751
|
+
ParentId?: string | undefined;
|
1752
|
+
RootId?: string | undefined;
|
1753
|
+
DriftInformation?: StackDriftInformationSummary | undefined;
|
1750
1754
|
}
|
1751
1755
|
export interface ListStacksOutput {
|
1752
|
-
StackSummaries?: StackSummary[];
|
1753
|
-
NextToken?: string;
|
1756
|
+
StackSummaries?: StackSummary[] | undefined;
|
1757
|
+
NextToken?: string | undefined;
|
1754
1758
|
}
|
1755
1759
|
export interface ListStackSetAutoDeploymentTargetsInput {
|
1756
1760
|
StackSetName: string | undefined;
|
1757
|
-
NextToken?: string;
|
1758
|
-
MaxResults?: number;
|
1759
|
-
CallAs?: CallAs;
|
1761
|
+
NextToken?: string | undefined;
|
1762
|
+
MaxResults?: number | undefined;
|
1763
|
+
CallAs?: CallAs | undefined;
|
1760
1764
|
}
|
1761
1765
|
export interface StackSetAutoDeploymentTargetSummary {
|
1762
|
-
OrganizationalUnitId?: string;
|
1763
|
-
Regions?: string[];
|
1766
|
+
OrganizationalUnitId?: string | undefined;
|
1767
|
+
Regions?: string[] | undefined;
|
1764
1768
|
}
|
1765
1769
|
export interface ListStackSetAutoDeploymentTargetsOutput {
|
1766
|
-
Summaries?: StackSetAutoDeploymentTargetSummary[];
|
1767
|
-
NextToken?: string;
|
1770
|
+
Summaries?: StackSetAutoDeploymentTargetSummary[] | undefined;
|
1771
|
+
NextToken?: string | undefined;
|
1768
1772
|
}
|
1769
1773
|
export declare const OperationResultFilterName: {
|
1770
1774
|
readonly OPERATION_RESULT_STATUS: "OPERATION_RESULT_STATUS";
|
@@ -1772,16 +1776,16 @@ export declare const OperationResultFilterName: {
|
|
1772
1776
|
export type OperationResultFilterName =
|
1773
1777
|
(typeof OperationResultFilterName)[keyof typeof OperationResultFilterName];
|
1774
1778
|
export interface OperationResultFilter {
|
1775
|
-
Name?: OperationResultFilterName;
|
1776
|
-
Values?: string;
|
1779
|
+
Name?: OperationResultFilterName | undefined;
|
1780
|
+
Values?: string | undefined;
|
1777
1781
|
}
|
1778
1782
|
export interface ListStackSetOperationResultsInput {
|
1779
1783
|
StackSetName: string | undefined;
|
1780
1784
|
OperationId: string | undefined;
|
1781
|
-
NextToken?: string;
|
1782
|
-
MaxResults?: number;
|
1783
|
-
CallAs?: CallAs;
|
1784
|
-
Filters?: OperationResultFilter[];
|
1785
|
+
NextToken?: string | undefined;
|
1786
|
+
MaxResults?: number | undefined;
|
1787
|
+
CallAs?: CallAs | undefined;
|
1788
|
+
Filters?: OperationResultFilter[] | undefined;
|
1785
1789
|
}
|
1786
1790
|
export declare const StackSetOperationResultStatus: {
|
1787
1791
|
readonly CANCELLED: "CANCELLED";
|
@@ -1793,139 +1797,139 @@ export declare const StackSetOperationResultStatus: {
|
|
1793
1797
|
export type StackSetOperationResultStatus =
|
1794
1798
|
(typeof StackSetOperationResultStatus)[keyof typeof StackSetOperationResultStatus];
|
1795
1799
|
export interface StackSetOperationResultSummary {
|
1796
|
-
Account?: string;
|
1797
|
-
Region?: string;
|
1798
|
-
Status?: StackSetOperationResultStatus;
|
1799
|
-
StatusReason?: string;
|
1800
|
-
AccountGateResult?: AccountGateResult;
|
1801
|
-
OrganizationalUnitId?: string;
|
1800
|
+
Account?: string | undefined;
|
1801
|
+
Region?: string | undefined;
|
1802
|
+
Status?: StackSetOperationResultStatus | undefined;
|
1803
|
+
StatusReason?: string | undefined;
|
1804
|
+
AccountGateResult?: AccountGateResult | undefined;
|
1805
|
+
OrganizationalUnitId?: string | undefined;
|
1802
1806
|
}
|
1803
1807
|
export interface ListStackSetOperationResultsOutput {
|
1804
|
-
Summaries?: StackSetOperationResultSummary[];
|
1805
|
-
NextToken?: string;
|
1808
|
+
Summaries?: StackSetOperationResultSummary[] | undefined;
|
1809
|
+
NextToken?: string | undefined;
|
1806
1810
|
}
|
1807
1811
|
export interface ListStackSetOperationsInput {
|
1808
1812
|
StackSetName: string | undefined;
|
1809
|
-
NextToken?: string;
|
1810
|
-
MaxResults?: number;
|
1811
|
-
CallAs?: CallAs;
|
1813
|
+
NextToken?: string | undefined;
|
1814
|
+
MaxResults?: number | undefined;
|
1815
|
+
CallAs?: CallAs | undefined;
|
1812
1816
|
}
|
1813
1817
|
export interface StackSetOperationSummary {
|
1814
|
-
OperationId?: string;
|
1815
|
-
Action?: StackSetOperationAction;
|
1816
|
-
Status?: StackSetOperationStatus;
|
1817
|
-
CreationTimestamp?: Date;
|
1818
|
-
EndTimestamp?: Date;
|
1819
|
-
StatusReason?: string;
|
1820
|
-
StatusDetails?: StackSetOperationStatusDetails;
|
1821
|
-
OperationPreferences?: StackSetOperationPreferences;
|
1818
|
+
OperationId?: string | undefined;
|
1819
|
+
Action?: StackSetOperationAction | undefined;
|
1820
|
+
Status?: StackSetOperationStatus | undefined;
|
1821
|
+
CreationTimestamp?: Date | undefined;
|
1822
|
+
EndTimestamp?: Date | undefined;
|
1823
|
+
StatusReason?: string | undefined;
|
1824
|
+
StatusDetails?: StackSetOperationStatusDetails | undefined;
|
1825
|
+
OperationPreferences?: StackSetOperationPreferences | undefined;
|
1822
1826
|
}
|
1823
1827
|
export interface ListStackSetOperationsOutput {
|
1824
|
-
Summaries?: StackSetOperationSummary[];
|
1825
|
-
NextToken?: string;
|
1828
|
+
Summaries?: StackSetOperationSummary[] | undefined;
|
1829
|
+
NextToken?: string | undefined;
|
1826
1830
|
}
|
1827
1831
|
export interface ListStackSetsInput {
|
1828
|
-
NextToken?: string;
|
1829
|
-
MaxResults?: number;
|
1830
|
-
Status?: StackSetStatus;
|
1831
|
-
CallAs?: CallAs;
|
1832
|
+
NextToken?: string | undefined;
|
1833
|
+
MaxResults?: number | undefined;
|
1834
|
+
Status?: StackSetStatus | undefined;
|
1835
|
+
CallAs?: CallAs | undefined;
|
1832
1836
|
}
|
1833
1837
|
export interface StackSetSummary {
|
1834
|
-
StackSetName?: string;
|
1835
|
-
StackSetId?: string;
|
1836
|
-
Description?: string;
|
1837
|
-
Status?: StackSetStatus;
|
1838
|
-
AutoDeployment?: AutoDeployment;
|
1839
|
-
PermissionModel?: PermissionModels;
|
1840
|
-
DriftStatus?: StackDriftStatus;
|
1841
|
-
LastDriftCheckTimestamp?: Date;
|
1842
|
-
ManagedExecution?: ManagedExecution;
|
1838
|
+
StackSetName?: string | undefined;
|
1839
|
+
StackSetId?: string | undefined;
|
1840
|
+
Description?: string | undefined;
|
1841
|
+
Status?: StackSetStatus | undefined;
|
1842
|
+
AutoDeployment?: AutoDeployment | undefined;
|
1843
|
+
PermissionModel?: PermissionModels | undefined;
|
1844
|
+
DriftStatus?: StackDriftStatus | undefined;
|
1845
|
+
LastDriftCheckTimestamp?: Date | undefined;
|
1846
|
+
ManagedExecution?: ManagedExecution | undefined;
|
1843
1847
|
}
|
1844
1848
|
export interface ListStackSetsOutput {
|
1845
|
-
Summaries?: StackSetSummary[];
|
1846
|
-
NextToken?: string;
|
1849
|
+
Summaries?: StackSetSummary[] | undefined;
|
1850
|
+
NextToken?: string | undefined;
|
1847
1851
|
}
|
1848
1852
|
export interface ListTypeRegistrationsInput {
|
1849
|
-
Type?: RegistryType;
|
1850
|
-
TypeName?: string;
|
1851
|
-
TypeArn?: string;
|
1852
|
-
RegistrationStatusFilter?: RegistrationStatus;
|
1853
|
-
MaxResults?: number;
|
1854
|
-
NextToken?: string;
|
1853
|
+
Type?: RegistryType | undefined;
|
1854
|
+
TypeName?: string | undefined;
|
1855
|
+
TypeArn?: string | undefined;
|
1856
|
+
RegistrationStatusFilter?: RegistrationStatus | undefined;
|
1857
|
+
MaxResults?: number | undefined;
|
1858
|
+
NextToken?: string | undefined;
|
1855
1859
|
}
|
1856
1860
|
export interface ListTypeRegistrationsOutput {
|
1857
|
-
RegistrationTokenList?: string[];
|
1858
|
-
NextToken?: string;
|
1861
|
+
RegistrationTokenList?: string[] | undefined;
|
1862
|
+
NextToken?: string | undefined;
|
1859
1863
|
}
|
1860
1864
|
export interface TypeFilters {
|
1861
|
-
Category?: Category;
|
1862
|
-
PublisherId?: string;
|
1863
|
-
TypeNamePrefix?: string;
|
1865
|
+
Category?: Category | undefined;
|
1866
|
+
PublisherId?: string | undefined;
|
1867
|
+
TypeNamePrefix?: string | undefined;
|
1864
1868
|
}
|
1865
1869
|
export interface ListTypesInput {
|
1866
|
-
Visibility?: Visibility;
|
1867
|
-
ProvisioningType?: ProvisioningType;
|
1868
|
-
DeprecatedStatus?: DeprecatedStatus;
|
1869
|
-
Type?: RegistryType;
|
1870
|
-
Filters?: TypeFilters;
|
1871
|
-
MaxResults?: number;
|
1872
|
-
NextToken?: string;
|
1870
|
+
Visibility?: Visibility | undefined;
|
1871
|
+
ProvisioningType?: ProvisioningType | undefined;
|
1872
|
+
DeprecatedStatus?: DeprecatedStatus | undefined;
|
1873
|
+
Type?: RegistryType | undefined;
|
1874
|
+
Filters?: TypeFilters | undefined;
|
1875
|
+
MaxResults?: number | undefined;
|
1876
|
+
NextToken?: string | undefined;
|
1873
1877
|
}
|
1874
1878
|
export interface TypeSummary {
|
1875
|
-
Type?: RegistryType;
|
1876
|
-
TypeName?: string;
|
1877
|
-
DefaultVersionId?: string;
|
1878
|
-
TypeArn?: string;
|
1879
|
-
LastUpdated?: Date;
|
1880
|
-
Description?: string;
|
1881
|
-
PublisherId?: string;
|
1882
|
-
OriginalTypeName?: string;
|
1883
|
-
PublicVersionNumber?: string;
|
1884
|
-
LatestPublicVersion?: string;
|
1885
|
-
PublisherIdentity?: IdentityProvider;
|
1886
|
-
PublisherName?: string;
|
1887
|
-
IsActivated?: boolean;
|
1879
|
+
Type?: RegistryType | undefined;
|
1880
|
+
TypeName?: string | undefined;
|
1881
|
+
DefaultVersionId?: string | undefined;
|
1882
|
+
TypeArn?: string | undefined;
|
1883
|
+
LastUpdated?: Date | undefined;
|
1884
|
+
Description?: string | undefined;
|
1885
|
+
PublisherId?: string | undefined;
|
1886
|
+
OriginalTypeName?: string | undefined;
|
1887
|
+
PublicVersionNumber?: string | undefined;
|
1888
|
+
LatestPublicVersion?: string | undefined;
|
1889
|
+
PublisherIdentity?: IdentityProvider | undefined;
|
1890
|
+
PublisherName?: string | undefined;
|
1891
|
+
IsActivated?: boolean | undefined;
|
1888
1892
|
}
|
1889
1893
|
export interface ListTypesOutput {
|
1890
|
-
TypeSummaries?: TypeSummary[];
|
1891
|
-
NextToken?: string;
|
1894
|
+
TypeSummaries?: TypeSummary[] | undefined;
|
1895
|
+
NextToken?: string | undefined;
|
1892
1896
|
}
|
1893
1897
|
export interface ListTypeVersionsInput {
|
1894
|
-
Type?: RegistryType;
|
1895
|
-
TypeName?: string;
|
1896
|
-
Arn?: string;
|
1897
|
-
MaxResults?: number;
|
1898
|
-
NextToken?: string;
|
1899
|
-
DeprecatedStatus?: DeprecatedStatus;
|
1900
|
-
PublisherId?: string;
|
1898
|
+
Type?: RegistryType | undefined;
|
1899
|
+
TypeName?: string | undefined;
|
1900
|
+
Arn?: string | undefined;
|
1901
|
+
MaxResults?: number | undefined;
|
1902
|
+
NextToken?: string | undefined;
|
1903
|
+
DeprecatedStatus?: DeprecatedStatus | undefined;
|
1904
|
+
PublisherId?: string | undefined;
|
1901
1905
|
}
|
1902
1906
|
export interface TypeVersionSummary {
|
1903
|
-
Type?: RegistryType;
|
1904
|
-
TypeName?: string;
|
1905
|
-
VersionId?: string;
|
1906
|
-
IsDefaultVersion?: boolean;
|
1907
|
-
Arn?: string;
|
1908
|
-
TimeCreated?: Date;
|
1909
|
-
Description?: string;
|
1910
|
-
PublicVersionNumber?: string;
|
1907
|
+
Type?: RegistryType | undefined;
|
1908
|
+
TypeName?: string | undefined;
|
1909
|
+
VersionId?: string | undefined;
|
1910
|
+
IsDefaultVersion?: boolean | undefined;
|
1911
|
+
Arn?: string | undefined;
|
1912
|
+
TimeCreated?: Date | undefined;
|
1913
|
+
Description?: string | undefined;
|
1914
|
+
PublicVersionNumber?: string | undefined;
|
1911
1915
|
}
|
1912
1916
|
export interface ListTypeVersionsOutput {
|
1913
|
-
TypeVersionSummaries?: TypeVersionSummary[];
|
1914
|
-
NextToken?: string;
|
1917
|
+
TypeVersionSummaries?: TypeVersionSummary[] | undefined;
|
1918
|
+
NextToken?: string | undefined;
|
1915
1919
|
}
|
1916
1920
|
export interface PublishTypeInput {
|
1917
|
-
Type?: ThirdPartyType;
|
1918
|
-
Arn?: string;
|
1919
|
-
TypeName?: string;
|
1920
|
-
PublicVersionNumber?: string;
|
1921
|
+
Type?: ThirdPartyType | undefined;
|
1922
|
+
Arn?: string | undefined;
|
1923
|
+
TypeName?: string | undefined;
|
1924
|
+
PublicVersionNumber?: string | undefined;
|
1921
1925
|
}
|
1922
1926
|
export interface PublishTypeOutput {
|
1923
|
-
PublicTypeArn?: string;
|
1927
|
+
PublicTypeArn?: string | undefined;
|
1924
1928
|
}
|
1925
1929
|
export declare class InvalidStateTransitionException extends __BaseException {
|
1926
1930
|
readonly name: "InvalidStateTransitionException";
|
1927
1931
|
readonly $fault: "client";
|
1928
|
-
Message?: string;
|
1932
|
+
Message?: string | undefined;
|
1929
1933
|
constructor(
|
1930
1934
|
opts: __ExceptionOptionType<
|
1931
1935
|
InvalidStateTransitionException,
|
@@ -1936,7 +1940,7 @@ export declare class InvalidStateTransitionException extends __BaseException {
|
|
1936
1940
|
export declare class OperationStatusCheckFailedException extends __BaseException {
|
1937
1941
|
readonly name: "OperationStatusCheckFailedException";
|
1938
1942
|
readonly $fault: "client";
|
1939
|
-
Message?: string;
|
1943
|
+
Message?: string | undefined;
|
1940
1944
|
constructor(
|
1941
1945
|
opts: __ExceptionOptionType<
|
1942
1946
|
OperationStatusCheckFailedException,
|
@@ -1978,42 +1982,42 @@ export type HandlerErrorCode =
|
|
1978
1982
|
export interface RecordHandlerProgressInput {
|
1979
1983
|
BearerToken: string | undefined;
|
1980
1984
|
OperationStatus: OperationStatus | undefined;
|
1981
|
-
CurrentOperationStatus?: OperationStatus;
|
1982
|
-
StatusMessage?: string;
|
1983
|
-
ErrorCode?: HandlerErrorCode;
|
1984
|
-
ResourceModel?: string;
|
1985
|
-
ClientRequestToken?: string;
|
1985
|
+
CurrentOperationStatus?: OperationStatus | undefined;
|
1986
|
+
StatusMessage?: string | undefined;
|
1987
|
+
ErrorCode?: HandlerErrorCode | undefined;
|
1988
|
+
ResourceModel?: string | undefined;
|
1989
|
+
ClientRequestToken?: string | undefined;
|
1986
1990
|
}
|
1987
1991
|
export interface RecordHandlerProgressOutput {}
|
1988
1992
|
export interface RegisterPublisherInput {
|
1989
|
-
AcceptTermsAndConditions?: boolean;
|
1990
|
-
ConnectionArn?: string;
|
1993
|
+
AcceptTermsAndConditions?: boolean | undefined;
|
1994
|
+
ConnectionArn?: string | undefined;
|
1991
1995
|
}
|
1992
1996
|
export interface RegisterPublisherOutput {
|
1993
|
-
PublisherId?: string;
|
1997
|
+
PublisherId?: string | undefined;
|
1994
1998
|
}
|
1995
1999
|
export interface RegisterTypeInput {
|
1996
|
-
Type?: RegistryType;
|
2000
|
+
Type?: RegistryType | undefined;
|
1997
2001
|
TypeName: string | undefined;
|
1998
2002
|
SchemaHandlerPackage: string | undefined;
|
1999
|
-
LoggingConfig?: LoggingConfig;
|
2000
|
-
ExecutionRoleArn?: string;
|
2001
|
-
ClientRequestToken?: string;
|
2003
|
+
LoggingConfig?: LoggingConfig | undefined;
|
2004
|
+
ExecutionRoleArn?: string | undefined;
|
2005
|
+
ClientRequestToken?: string | undefined;
|
2002
2006
|
}
|
2003
2007
|
export interface RegisterTypeOutput {
|
2004
|
-
RegistrationToken?: string;
|
2008
|
+
RegistrationToken?: string | undefined;
|
2005
2009
|
}
|
2006
2010
|
export interface RollbackStackInput {
|
2007
2011
|
StackName: string | undefined;
|
2008
|
-
RoleARN?: string;
|
2009
|
-
ClientRequestToken?: string;
|
2010
|
-
RetainExceptOnCreate?: boolean;
|
2012
|
+
RoleARN?: string | undefined;
|
2013
|
+
ClientRequestToken?: string | undefined;
|
2014
|
+
RetainExceptOnCreate?: boolean | undefined;
|
2011
2015
|
}
|
2012
2016
|
export interface RollbackStackOutput {
|
2013
|
-
StackId?: string;
|
2017
|
+
StackId?: string | undefined;
|
2014
2018
|
}
|
2015
2019
|
export interface SetStackPolicyInput {
|
2016
2020
|
StackName: string | undefined;
|
2017
|
-
StackPolicyBody?: string;
|
2018
|
-
StackPolicyURL?: string;
|
2021
|
+
StackPolicyBody?: string | undefined;
|
2022
|
+
StackPolicyURL?: string | undefined;
|
2019
2023
|
}
|