@aws-sdk/client-cloudformation 3.197.0 → 3.199.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +19 -0
- package/dist-cjs/models/models_0.js +106 -5
- package/dist-cjs/protocols/Aws_query.js +61 -0
- package/dist-es/models/models_0.js +98 -0
- package/dist-es/protocols/Aws_query.js +61 -0
- package/dist-types/CloudFormation.d.ts +3 -3
- package/dist-types/commands/TestTypeCommand.d.ts +3 -3
- package/dist-types/models/models_0.d.ts +136 -18
- package/dist-types/ts3.4/models/models_0.d.ts +96 -38
- package/package.json +30 -30
|
@@ -4157,6 +4157,13 @@ const serializeAws_queryListStackSetOperationResultsInput = (input, context) =>
|
|
|
4157
4157
|
if (input.CallAs != null) {
|
|
4158
4158
|
entries["CallAs"] = input.CallAs;
|
|
4159
4159
|
}
|
|
4160
|
+
if (input.Filters != null) {
|
|
4161
|
+
const memberEntries = serializeAws_queryOperationResultFilters(input.Filters, context);
|
|
4162
|
+
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4163
|
+
const loc = `Filters.${key}`;
|
|
4164
|
+
entries[loc] = value;
|
|
4165
|
+
});
|
|
4166
|
+
}
|
|
4160
4167
|
return entries;
|
|
4161
4168
|
};
|
|
4162
4169
|
const serializeAws_queryListStackSetOperationsInput = (input, context) => {
|
|
@@ -4322,6 +4329,31 @@ const serializeAws_queryNotificationARNs = (input, context) => {
|
|
|
4322
4329
|
}
|
|
4323
4330
|
return entries;
|
|
4324
4331
|
};
|
|
4332
|
+
const serializeAws_queryOperationResultFilter = (input, context) => {
|
|
4333
|
+
const entries = {};
|
|
4334
|
+
if (input.Name != null) {
|
|
4335
|
+
entries["Name"] = input.Name;
|
|
4336
|
+
}
|
|
4337
|
+
if (input.Values != null) {
|
|
4338
|
+
entries["Values"] = input.Values;
|
|
4339
|
+
}
|
|
4340
|
+
return entries;
|
|
4341
|
+
};
|
|
4342
|
+
const serializeAws_queryOperationResultFilters = (input, context) => {
|
|
4343
|
+
const entries = {};
|
|
4344
|
+
let counter = 1;
|
|
4345
|
+
for (const entry of input) {
|
|
4346
|
+
if (entry === null) {
|
|
4347
|
+
continue;
|
|
4348
|
+
}
|
|
4349
|
+
const memberEntries = serializeAws_queryOperationResultFilter(entry, context);
|
|
4350
|
+
Object.entries(memberEntries).forEach(([key, value]) => {
|
|
4351
|
+
entries[`member.${counter}.${key}`] = value;
|
|
4352
|
+
});
|
|
4353
|
+
counter++;
|
|
4354
|
+
}
|
|
4355
|
+
return entries;
|
|
4356
|
+
};
|
|
4325
4357
|
const serializeAws_queryOrganizationalUnitIdList = (input, context) => {
|
|
4326
4358
|
const entries = {};
|
|
4327
4359
|
let counter = 1;
|
|
@@ -7090,6 +7122,7 @@ const deserializeAws_queryStackInstance = (output, context) => {
|
|
|
7090
7122
|
OrganizationalUnitId: undefined,
|
|
7091
7123
|
DriftStatus: undefined,
|
|
7092
7124
|
LastDriftCheckTimestamp: undefined,
|
|
7125
|
+
LastOperationId: undefined,
|
|
7093
7126
|
};
|
|
7094
7127
|
if (output["StackSetId"] !== undefined) {
|
|
7095
7128
|
contents.StackSetId = __expectString(output["StackSetId"]);
|
|
@@ -7127,6 +7160,9 @@ const deserializeAws_queryStackInstance = (output, context) => {
|
|
|
7127
7160
|
if (output["LastDriftCheckTimestamp"] !== undefined) {
|
|
7128
7161
|
contents.LastDriftCheckTimestamp = __expectNonNull(__parseRfc3339DateTime(output["LastDriftCheckTimestamp"]));
|
|
7129
7162
|
}
|
|
7163
|
+
if (output["LastOperationId"] !== undefined) {
|
|
7164
|
+
contents.LastOperationId = __expectString(output["LastOperationId"]);
|
|
7165
|
+
}
|
|
7130
7166
|
return contents;
|
|
7131
7167
|
};
|
|
7132
7168
|
const deserializeAws_queryStackInstanceComprehensiveStatus = (output, context) => {
|
|
@@ -7166,6 +7202,7 @@ const deserializeAws_queryStackInstanceSummary = (output, context) => {
|
|
|
7166
7202
|
OrganizationalUnitId: undefined,
|
|
7167
7203
|
DriftStatus: undefined,
|
|
7168
7204
|
LastDriftCheckTimestamp: undefined,
|
|
7205
|
+
LastOperationId: undefined,
|
|
7169
7206
|
};
|
|
7170
7207
|
if (output["StackSetId"] !== undefined) {
|
|
7171
7208
|
contents.StackSetId = __expectString(output["StackSetId"]);
|
|
@@ -7197,6 +7234,9 @@ const deserializeAws_queryStackInstanceSummary = (output, context) => {
|
|
|
7197
7234
|
if (output["LastDriftCheckTimestamp"] !== undefined) {
|
|
7198
7235
|
contents.LastDriftCheckTimestamp = __expectNonNull(__parseRfc3339DateTime(output["LastDriftCheckTimestamp"]));
|
|
7199
7236
|
}
|
|
7237
|
+
if (output["LastOperationId"] !== undefined) {
|
|
7238
|
+
contents.LastOperationId = __expectString(output["LastOperationId"]);
|
|
7239
|
+
}
|
|
7200
7240
|
return contents;
|
|
7201
7241
|
};
|
|
7202
7242
|
const deserializeAws_queryStackNotFoundException = (output, context) => {
|
|
@@ -7608,6 +7648,7 @@ const deserializeAws_queryStackSetOperation = (output, context) => {
|
|
|
7608
7648
|
DeploymentTargets: undefined,
|
|
7609
7649
|
StackSetDriftDetectionDetails: undefined,
|
|
7610
7650
|
StatusReason: undefined,
|
|
7651
|
+
StatusDetails: undefined,
|
|
7611
7652
|
};
|
|
7612
7653
|
if (output["OperationId"] !== undefined) {
|
|
7613
7654
|
contents.OperationId = __expectString(output["OperationId"]);
|
|
@@ -7648,6 +7689,9 @@ const deserializeAws_queryStackSetOperation = (output, context) => {
|
|
|
7648
7689
|
if (output["StatusReason"] !== undefined) {
|
|
7649
7690
|
contents.StatusReason = __expectString(output["StatusReason"]);
|
|
7650
7691
|
}
|
|
7692
|
+
if (output["StatusDetails"] !== undefined) {
|
|
7693
|
+
contents.StatusDetails = deserializeAws_queryStackSetOperationStatusDetails(output["StatusDetails"], context);
|
|
7694
|
+
}
|
|
7651
7695
|
return contents;
|
|
7652
7696
|
};
|
|
7653
7697
|
const deserializeAws_queryStackSetOperationPreferences = (output, context) => {
|
|
@@ -7718,6 +7762,15 @@ const deserializeAws_queryStackSetOperationResultSummary = (output, context) =>
|
|
|
7718
7762
|
}
|
|
7719
7763
|
return contents;
|
|
7720
7764
|
};
|
|
7765
|
+
const deserializeAws_queryStackSetOperationStatusDetails = (output, context) => {
|
|
7766
|
+
const contents = {
|
|
7767
|
+
FailedStackInstancesCount: undefined,
|
|
7768
|
+
};
|
|
7769
|
+
if (output["FailedStackInstancesCount"] !== undefined) {
|
|
7770
|
+
contents.FailedStackInstancesCount = __strictParseInt32(output["FailedStackInstancesCount"]);
|
|
7771
|
+
}
|
|
7772
|
+
return contents;
|
|
7773
|
+
};
|
|
7721
7774
|
const deserializeAws_queryStackSetOperationSummaries = (output, context) => {
|
|
7722
7775
|
return (output || [])
|
|
7723
7776
|
.filter((e) => e != null)
|
|
@@ -7733,6 +7786,8 @@ const deserializeAws_queryStackSetOperationSummary = (output, context) => {
|
|
|
7733
7786
|
CreationTimestamp: undefined,
|
|
7734
7787
|
EndTimestamp: undefined,
|
|
7735
7788
|
StatusReason: undefined,
|
|
7789
|
+
StatusDetails: undefined,
|
|
7790
|
+
OperationPreferences: undefined,
|
|
7736
7791
|
};
|
|
7737
7792
|
if (output["OperationId"] !== undefined) {
|
|
7738
7793
|
contents.OperationId = __expectString(output["OperationId"]);
|
|
@@ -7752,6 +7807,12 @@ const deserializeAws_queryStackSetOperationSummary = (output, context) => {
|
|
|
7752
7807
|
if (output["StatusReason"] !== undefined) {
|
|
7753
7808
|
contents.StatusReason = __expectString(output["StatusReason"]);
|
|
7754
7809
|
}
|
|
7810
|
+
if (output["StatusDetails"] !== undefined) {
|
|
7811
|
+
contents.StatusDetails = deserializeAws_queryStackSetOperationStatusDetails(output["StatusDetails"], context);
|
|
7812
|
+
}
|
|
7813
|
+
if (output["OperationPreferences"] !== undefined) {
|
|
7814
|
+
contents.OperationPreferences = deserializeAws_queryStackSetOperationPreferences(output["OperationPreferences"], context);
|
|
7815
|
+
}
|
|
7755
7816
|
return contents;
|
|
7756
7817
|
};
|
|
7757
7818
|
const deserializeAws_queryStackSetSummaries = (output, context) => {
|
|
@@ -855,9 +855,9 @@ export declare class CloudFormation extends CloudFormationClient {
|
|
|
855
855
|
* extension in your account and region for testing.</p>
|
|
856
856
|
* <p>To perform testing, CloudFormation assumes the execution role specified when
|
|
857
857
|
* the type was registered. For more information, see <a href="AWSCloudFormation/latest/APIReference/API_RegisterType.html">RegisterType</a>.</p>
|
|
858
|
-
* <p>Once you've initiated testing on an extension using <code>TestType</code>, you can
|
|
859
|
-
*
|
|
860
|
-
*
|
|
858
|
+
* <p>Once you've initiated testing on an extension using <code>TestType</code>, you can pass
|
|
859
|
+
* the returned <code>TypeVersionArn</code> into <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeType.html">DescribeType</a> to monitor the current test status and test status description for
|
|
860
|
+
* the extension.</p>
|
|
861
861
|
* <p>An extension must have a test status of <code>PASSED</code> before it can be published.
|
|
862
862
|
* For more information, see <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-publish.html">Publishing extensions to make them available for public use</a>
|
|
863
863
|
* in the <i>CloudFormation CLI User Guide</i>.</p>
|
|
@@ -25,9 +25,9 @@ export interface TestTypeCommandOutput extends TestTypeOutput, __MetadataBearer
|
|
|
25
25
|
* extension in your account and region for testing.</p>
|
|
26
26
|
* <p>To perform testing, CloudFormation assumes the execution role specified when
|
|
27
27
|
* the type was registered. For more information, see <a href="AWSCloudFormation/latest/APIReference/API_RegisterType.html">RegisterType</a>.</p>
|
|
28
|
-
* <p>Once you've initiated testing on an extension using <code>TestType</code>, you can
|
|
29
|
-
*
|
|
30
|
-
*
|
|
28
|
+
* <p>Once you've initiated testing on an extension using <code>TestType</code>, you can pass
|
|
29
|
+
* the returned <code>TypeVersionArn</code> into <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeType.html">DescribeType</a> to monitor the current test status and test status description for
|
|
30
|
+
* the extension.</p>
|
|
31
31
|
* <p>An extension must have a test status of <code>PASSED</code> before it can be published.
|
|
32
32
|
* For more information, see <a href="https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-publish.html">Publishing extensions to make them available for public use</a>
|
|
33
33
|
* in the <i>CloudFormation CLI User Guide</i>.</p>
|
|
@@ -6,7 +6,11 @@ export declare enum AccountFilterType {
|
|
|
6
6
|
NONE = "NONE",
|
|
7
7
|
UNION = "UNION"
|
|
8
8
|
}
|
|
9
|
-
export declare
|
|
9
|
+
export declare enum AccountGateStatus {
|
|
10
|
+
FAILED = "FAILED",
|
|
11
|
+
SKIPPED = "SKIPPED",
|
|
12
|
+
SUCCEEDED = "SUCCEEDED"
|
|
13
|
+
}
|
|
10
14
|
/**
|
|
11
15
|
* <p>Structure that contains the results of the account gate function which CloudFormation invokes, if present, before proceeding with a stack set operation in an account and
|
|
12
16
|
* Region.</p>
|
|
@@ -1695,8 +1699,7 @@ export interface DeploymentTargets {
|
|
|
1695
1699
|
* </li>
|
|
1696
1700
|
* <li>
|
|
1697
1701
|
* <p>
|
|
1698
|
-
* <code>UNION</code>:
|
|
1699
|
-
* targets. </p>
|
|
1702
|
+
* <code>UNION</code>: StackSets includes additional accounts deployment targets. </p>
|
|
1700
1703
|
* <p>This is the default value if <code>AccountFilterType</code> is not provided. This
|
|
1701
1704
|
* enables user to update an entire OU and individual accounts from a different OU in one
|
|
1702
1705
|
* request, which used to be two separate requests.</p>
|
|
@@ -1968,7 +1971,10 @@ export interface ManagedExecution {
|
|
|
1968
1971
|
*/
|
|
1969
1972
|
Active?: boolean;
|
|
1970
1973
|
}
|
|
1971
|
-
export declare
|
|
1974
|
+
export declare enum PermissionModels {
|
|
1975
|
+
SELF_MANAGED = "SELF_MANAGED",
|
|
1976
|
+
SERVICE_MANAGED = "SERVICE_MANAGED"
|
|
1977
|
+
}
|
|
1972
1978
|
export interface CreateStackSetInput {
|
|
1973
1979
|
/**
|
|
1974
1980
|
* <p>The name to associate with the stack set. The name must be unique in the Region where
|
|
@@ -2426,7 +2432,11 @@ export declare class StackSetNotEmptyException extends __BaseException {
|
|
|
2426
2432
|
*/
|
|
2427
2433
|
constructor(opts: __ExceptionOptionType<StackSetNotEmptyException, __BaseException>);
|
|
2428
2434
|
}
|
|
2429
|
-
export declare
|
|
2435
|
+
export declare enum RegistryType {
|
|
2436
|
+
HOOK = "HOOK",
|
|
2437
|
+
MODULE = "MODULE",
|
|
2438
|
+
RESOURCE = "RESOURCE"
|
|
2439
|
+
}
|
|
2430
2440
|
export interface DeregisterTypeInput {
|
|
2431
2441
|
/**
|
|
2432
2442
|
* <p>The Amazon Resource Name (ARN) of the extension.</p>
|
|
@@ -2980,7 +2990,14 @@ export interface DescribeStackInstanceInput {
|
|
|
2980
2990
|
*/
|
|
2981
2991
|
CallAs?: CallAs | string;
|
|
2982
2992
|
}
|
|
2983
|
-
export declare
|
|
2993
|
+
export declare enum StackInstanceDetailedStatus {
|
|
2994
|
+
CANCELLED = "CANCELLED",
|
|
2995
|
+
FAILED = "FAILED",
|
|
2996
|
+
INOPERABLE = "INOPERABLE",
|
|
2997
|
+
PENDING = "PENDING",
|
|
2998
|
+
RUNNING = "RUNNING",
|
|
2999
|
+
SUCCEEDED = "SUCCEEDED"
|
|
3000
|
+
}
|
|
2984
3001
|
/**
|
|
2985
3002
|
* <p>The detailed status of the stack instance.</p>
|
|
2986
3003
|
*/
|
|
@@ -3027,7 +3044,11 @@ export interface StackInstanceComprehensiveStatus {
|
|
|
3027
3044
|
*/
|
|
3028
3045
|
DetailedStatus?: StackInstanceDetailedStatus | string;
|
|
3029
3046
|
}
|
|
3030
|
-
export declare
|
|
3047
|
+
export declare enum StackInstanceStatus {
|
|
3048
|
+
CURRENT = "CURRENT",
|
|
3049
|
+
INOPERABLE = "INOPERABLE",
|
|
3050
|
+
OUTDATED = "OUTDATED"
|
|
3051
|
+
}
|
|
3031
3052
|
/**
|
|
3032
3053
|
* <p>An CloudFormation stack, in a specific account and Region, that's part of a stack
|
|
3033
3054
|
* set operation. A stack instance is a reference to an attempted or actual stack in a given
|
|
@@ -3145,6 +3166,10 @@ export interface StackInstance {
|
|
|
3145
3166
|
* drift detection hasn't yet been performed.</p>
|
|
3146
3167
|
*/
|
|
3147
3168
|
LastDriftCheckTimestamp?: Date;
|
|
3169
|
+
/**
|
|
3170
|
+
* <p>The last unique ID of a StackSet operation performed on a stack instance.</p>
|
|
3171
|
+
*/
|
|
3172
|
+
LastOperationId?: string;
|
|
3148
3173
|
}
|
|
3149
3174
|
export interface DescribeStackInstanceOutput {
|
|
3150
3175
|
/**
|
|
@@ -4025,7 +4050,10 @@ export interface StackSetDriftDetectionDetails {
|
|
|
4025
4050
|
*/
|
|
4026
4051
|
FailedStackInstancesCount?: number;
|
|
4027
4052
|
}
|
|
4028
|
-
export declare
|
|
4053
|
+
export declare enum StackSetStatus {
|
|
4054
|
+
ACTIVE = "ACTIVE",
|
|
4055
|
+
DELETED = "DELETED"
|
|
4056
|
+
}
|
|
4029
4057
|
/**
|
|
4030
4058
|
* <p>A structure that contains information about a stack set. A stack set enables you to
|
|
4031
4059
|
* provision stacks into Amazon Web Services accounts and across Regions by using a single
|
|
@@ -4169,8 +4197,29 @@ export interface DescribeStackSetOperationInput {
|
|
|
4169
4197
|
*/
|
|
4170
4198
|
CallAs?: CallAs | string;
|
|
4171
4199
|
}
|
|
4172
|
-
export declare
|
|
4173
|
-
|
|
4200
|
+
export declare enum StackSetOperationAction {
|
|
4201
|
+
CREATE = "CREATE",
|
|
4202
|
+
DELETE = "DELETE",
|
|
4203
|
+
DETECT_DRIFT = "DETECT_DRIFT",
|
|
4204
|
+
UPDATE = "UPDATE"
|
|
4205
|
+
}
|
|
4206
|
+
export declare enum StackSetOperationStatus {
|
|
4207
|
+
FAILED = "FAILED",
|
|
4208
|
+
QUEUED = "QUEUED",
|
|
4209
|
+
RUNNING = "RUNNING",
|
|
4210
|
+
STOPPED = "STOPPED",
|
|
4211
|
+
STOPPING = "STOPPING",
|
|
4212
|
+
SUCCEEDED = "SUCCEEDED"
|
|
4213
|
+
}
|
|
4214
|
+
/**
|
|
4215
|
+
* <p>Detailed information about the StackSet operation.</p>
|
|
4216
|
+
*/
|
|
4217
|
+
export interface StackSetOperationStatusDetails {
|
|
4218
|
+
/**
|
|
4219
|
+
* <p>The number of stack instances for which the StackSet operation failed.</p>
|
|
4220
|
+
*/
|
|
4221
|
+
FailedStackInstancesCount?: number;
|
|
4222
|
+
}
|
|
4174
4223
|
/**
|
|
4175
4224
|
* <p>The structure that contains information about a stack set operation.</p>
|
|
4176
4225
|
*/
|
|
@@ -4288,6 +4337,10 @@ export interface StackSetOperation {
|
|
|
4288
4337
|
* <p>The status of the operation in details.</p>
|
|
4289
4338
|
*/
|
|
4290
4339
|
StatusReason?: string;
|
|
4340
|
+
/**
|
|
4341
|
+
* <p>Detailed information about the StackSet operation.</p>
|
|
4342
|
+
*/
|
|
4343
|
+
StatusDetails?: StackSetOperationStatusDetails;
|
|
4291
4344
|
}
|
|
4292
4345
|
export interface DescribeStackSetOperationOutput {
|
|
4293
4346
|
/**
|
|
@@ -4345,8 +4398,15 @@ export interface DescribeTypeInput {
|
|
|
4345
4398
|
*/
|
|
4346
4399
|
PublicVersionNumber?: string;
|
|
4347
4400
|
}
|
|
4348
|
-
export declare
|
|
4349
|
-
|
|
4401
|
+
export declare enum DeprecatedStatus {
|
|
4402
|
+
DEPRECATED = "DEPRECATED",
|
|
4403
|
+
LIVE = "LIVE"
|
|
4404
|
+
}
|
|
4405
|
+
export declare enum ProvisioningType {
|
|
4406
|
+
FULLY_MUTABLE = "FULLY_MUTABLE",
|
|
4407
|
+
IMMUTABLE = "IMMUTABLE",
|
|
4408
|
+
NON_PROVISIONABLE = "NON_PROVISIONABLE"
|
|
4409
|
+
}
|
|
4350
4410
|
/**
|
|
4351
4411
|
* <p>For extensions that are modules, a public third-party extension that must be activated
|
|
4352
4412
|
* in your account in order for the module itself to be activated.</p>
|
|
@@ -4386,7 +4446,10 @@ export declare enum TypeTestsStatus {
|
|
|
4386
4446
|
NOT_TESTED = "NOT_TESTED",
|
|
4387
4447
|
PASSED = "PASSED"
|
|
4388
4448
|
}
|
|
4389
|
-
export declare
|
|
4449
|
+
export declare enum Visibility {
|
|
4450
|
+
PRIVATE = "PRIVATE",
|
|
4451
|
+
PUBLIC = "PUBLIC"
|
|
4452
|
+
}
|
|
4390
4453
|
export interface DescribeTypeOutput {
|
|
4391
4454
|
/**
|
|
4392
4455
|
* <p>The Amazon Resource Name (ARN) of the extension.</p>
|
|
@@ -4664,7 +4727,11 @@ export interface DescribeTypeRegistrationInput {
|
|
|
4664
4727
|
*/
|
|
4665
4728
|
RegistrationToken: string | undefined;
|
|
4666
4729
|
}
|
|
4667
|
-
export declare
|
|
4730
|
+
export declare enum RegistrationStatus {
|
|
4731
|
+
COMPLETE = "COMPLETE",
|
|
4732
|
+
FAILED = "FAILED",
|
|
4733
|
+
IN_PROGRESS = "IN_PROGRESS"
|
|
4734
|
+
}
|
|
4668
4735
|
export interface DescribeTypeRegistrationOutput {
|
|
4669
4736
|
/**
|
|
4670
4737
|
* <p>The current status of the extension registration request.</p>
|
|
@@ -5257,9 +5324,12 @@ export interface ListImportsOutput {
|
|
|
5257
5324
|
*/
|
|
5258
5325
|
NextToken?: string;
|
|
5259
5326
|
}
|
|
5260
|
-
export declare
|
|
5327
|
+
export declare enum StackInstanceFilterName {
|
|
5328
|
+
DETAILED_STATUS = "DETAILED_STATUS",
|
|
5329
|
+
LAST_OPERATION_ID = "LAST_OPERATION_ID"
|
|
5330
|
+
}
|
|
5261
5331
|
/**
|
|
5262
|
-
* <p>The
|
|
5332
|
+
* <p>The filter to apply to stack instances</p>
|
|
5263
5333
|
*/
|
|
5264
5334
|
export interface StackInstanceFilter {
|
|
5265
5335
|
/**
|
|
@@ -5292,7 +5362,7 @@ export interface ListStackInstancesInput {
|
|
|
5292
5362
|
*/
|
|
5293
5363
|
MaxResults?: number;
|
|
5294
5364
|
/**
|
|
5295
|
-
* <p>The
|
|
5365
|
+
* <p>The filter to apply to stack instances</p>
|
|
5296
5366
|
*/
|
|
5297
5367
|
Filters?: StackInstanceFilter[];
|
|
5298
5368
|
/**
|
|
@@ -5431,6 +5501,10 @@ export interface StackInstanceSummary {
|
|
|
5431
5501
|
* drift detection hasn't yet been performed.</p>
|
|
5432
5502
|
*/
|
|
5433
5503
|
LastDriftCheckTimestamp?: Date;
|
|
5504
|
+
/**
|
|
5505
|
+
* <p>The last unique ID of a StackSet operation performed on a stack instance.</p>
|
|
5506
|
+
*/
|
|
5507
|
+
LastOperationId?: string;
|
|
5434
5508
|
}
|
|
5435
5509
|
export interface ListStackInstancesOutput {
|
|
5436
5510
|
/**
|
|
@@ -5697,6 +5771,22 @@ export interface ListStacksOutput {
|
|
|
5697
5771
|
*/
|
|
5698
5772
|
NextToken?: string;
|
|
5699
5773
|
}
|
|
5774
|
+
export declare enum OperationResultFilterName {
|
|
5775
|
+
OPERATION_RESULT_STATUS = "OPERATION_RESULT_STATUS"
|
|
5776
|
+
}
|
|
5777
|
+
/**
|
|
5778
|
+
* <p>The status that operation results are filtered by.</p>
|
|
5779
|
+
*/
|
|
5780
|
+
export interface OperationResultFilter {
|
|
5781
|
+
/**
|
|
5782
|
+
* <p>The type of filter to apply.</p>
|
|
5783
|
+
*/
|
|
5784
|
+
Name?: OperationResultFilterName | string;
|
|
5785
|
+
/**
|
|
5786
|
+
* <p>The value to filter by.</p>
|
|
5787
|
+
*/
|
|
5788
|
+
Values?: string;
|
|
5789
|
+
}
|
|
5700
5790
|
export interface ListStackSetOperationResultsInput {
|
|
5701
5791
|
/**
|
|
5702
5792
|
* <p>The name or unique ID of the stack set that you want to get operation results
|
|
@@ -5743,8 +5833,18 @@ export interface ListStackSetOperationResultsInput {
|
|
|
5743
5833
|
* </ul>
|
|
5744
5834
|
*/
|
|
5745
5835
|
CallAs?: CallAs | string;
|
|
5836
|
+
/**
|
|
5837
|
+
* <p>The filter to apply to operation results.</p>
|
|
5838
|
+
*/
|
|
5839
|
+
Filters?: OperationResultFilter[];
|
|
5840
|
+
}
|
|
5841
|
+
export declare enum StackSetOperationResultStatus {
|
|
5842
|
+
CANCELLED = "CANCELLED",
|
|
5843
|
+
FAILED = "FAILED",
|
|
5844
|
+
PENDING = "PENDING",
|
|
5845
|
+
RUNNING = "RUNNING",
|
|
5846
|
+
SUCCEEDED = "SUCCEEDED"
|
|
5746
5847
|
}
|
|
5747
|
-
export declare type StackSetOperationResultStatus = "CANCELLED" | "FAILED" | "PENDING" | "RUNNING" | "SUCCEEDED";
|
|
5748
5848
|
/**
|
|
5749
5849
|
* <p>The structure that contains information about a specified operation's results for a
|
|
5750
5850
|
* given account in a given Region.</p>
|
|
@@ -5939,6 +6039,16 @@ export interface StackSetOperationSummary {
|
|
|
5939
6039
|
* <p>The status of the operation in details.</p>
|
|
5940
6040
|
*/
|
|
5941
6041
|
StatusReason?: string;
|
|
6042
|
+
/**
|
|
6043
|
+
* <p>Detailed information about the stack set operation.</p>
|
|
6044
|
+
*/
|
|
6045
|
+
StatusDetails?: StackSetOperationStatusDetails;
|
|
6046
|
+
/**
|
|
6047
|
+
* <p>The user-specified preferences for how CloudFormation performs a stack set
|
|
6048
|
+
* operation.</p>
|
|
6049
|
+
* <p>For more information about maximum concurrent accounts and failure tolerance, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-concepts.html#stackset-ops-options">Stack set operation options</a>.</p>
|
|
6050
|
+
*/
|
|
6051
|
+
OperationPreferences?: StackSetOperationPreferences;
|
|
5942
6052
|
}
|
|
5943
6053
|
export interface ListStackSetOperationsOutput {
|
|
5944
6054
|
/**
|
|
@@ -8165,6 +8275,10 @@ export declare const DescribeStackSetOutputFilterSensitiveLog: (obj: DescribeSta
|
|
|
8165
8275
|
* @internal
|
|
8166
8276
|
*/
|
|
8167
8277
|
export declare const DescribeStackSetOperationInputFilterSensitiveLog: (obj: DescribeStackSetOperationInput) => any;
|
|
8278
|
+
/**
|
|
8279
|
+
* @internal
|
|
8280
|
+
*/
|
|
8281
|
+
export declare const StackSetOperationStatusDetailsFilterSensitiveLog: (obj: StackSetOperationStatusDetails) => any;
|
|
8168
8282
|
/**
|
|
8169
8283
|
* @internal
|
|
8170
8284
|
*/
|
|
@@ -8353,6 +8467,10 @@ export declare const StackSummaryFilterSensitiveLog: (obj: StackSummary) => any;
|
|
|
8353
8467
|
* @internal
|
|
8354
8468
|
*/
|
|
8355
8469
|
export declare const ListStacksOutputFilterSensitiveLog: (obj: ListStacksOutput) => any;
|
|
8470
|
+
/**
|
|
8471
|
+
* @internal
|
|
8472
|
+
*/
|
|
8473
|
+
export declare const OperationResultFilterFilterSensitiveLog: (obj: OperationResultFilter) => any;
|
|
8356
8474
|
/**
|
|
8357
8475
|
* @internal
|
|
8358
8476
|
*/
|