@aws-sdk/client-cloudformation 3.373.0 → 3.376.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/dist-cjs/CloudFormation.js +2 -0
- package/dist-cjs/commands/ListStackInstanceResourceDriftsCommand.js +46 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/models/models_0.js +1 -0
- package/dist-cjs/protocols/Aws_query.js +143 -3
- package/dist-es/CloudFormation.js +2 -0
- package/dist-es/commands/ListStackInstanceResourceDriftsCommand.js +42 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/protocols/Aws_query.js +138 -0
- package/dist-types/CloudFormation.d.ts +7 -0
- package/dist-types/CloudFormationClient.d.ts +3 -2
- package/dist-types/commands/ListStackInstanceResourceDriftsCommand.d.ts +121 -0
- package/dist-types/commands/ListStackInstancesCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +234 -67
- package/dist-types/protocols/Aws_query.d.ts +9 -0
- package/dist-types/ts3.4/CloudFormation.d.ts +17 -0
- package/dist-types/ts3.4/CloudFormationClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/ListStackInstanceResourceDriftsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +25 -0
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +12 -0
- package/package.json +1 -1
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
CloudFormationClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../CloudFormationClient";
|
|
14
|
+
import {
|
|
15
|
+
ListStackInstanceResourceDriftsInput,
|
|
16
|
+
ListStackInstanceResourceDriftsOutput,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListStackInstanceResourceDriftsCommandInput
|
|
20
|
+
extends ListStackInstanceResourceDriftsInput {}
|
|
21
|
+
export interface ListStackInstanceResourceDriftsCommandOutput
|
|
22
|
+
extends ListStackInstanceResourceDriftsOutput,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class ListStackInstanceResourceDriftsCommand extends $Command<
|
|
25
|
+
ListStackInstanceResourceDriftsCommandInput,
|
|
26
|
+
ListStackInstanceResourceDriftsCommandOutput,
|
|
27
|
+
CloudFormationClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: ListStackInstanceResourceDriftsCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: ListStackInstanceResourceDriftsCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: CloudFormationClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
ListStackInstanceResourceDriftsCommandInput,
|
|
38
|
+
ListStackInstanceResourceDriftsCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -42,6 +42,7 @@ export * from "./ImportStacksToStackSetCommand";
|
|
|
42
42
|
export * from "./ListChangeSetsCommand";
|
|
43
43
|
export * from "./ListExportsCommand";
|
|
44
44
|
export * from "./ListImportsCommand";
|
|
45
|
+
export * from "./ListStackInstanceResourceDriftsCommand";
|
|
45
46
|
export * from "./ListStackInstancesCommand";
|
|
46
47
|
export * from "./ListStackResourcesCommand";
|
|
47
48
|
export * from "./ListStackSetOperationResultsCommand";
|
|
@@ -1350,8 +1350,33 @@ export interface ListImportsOutput {
|
|
|
1350
1350
|
Imports?: string[];
|
|
1351
1351
|
NextToken?: string;
|
|
1352
1352
|
}
|
|
1353
|
+
export interface ListStackInstanceResourceDriftsInput {
|
|
1354
|
+
StackSetName: string | undefined;
|
|
1355
|
+
NextToken?: string;
|
|
1356
|
+
MaxResults?: number;
|
|
1357
|
+
StackInstanceResourceDriftStatuses?: (StackResourceDriftStatus | string)[];
|
|
1358
|
+
StackInstanceAccount: string | undefined;
|
|
1359
|
+
StackInstanceRegion: string | undefined;
|
|
1360
|
+
OperationId: string | undefined;
|
|
1361
|
+
CallAs?: CallAs | string;
|
|
1362
|
+
}
|
|
1363
|
+
export interface StackInstanceResourceDriftsSummary {
|
|
1364
|
+
StackId: string | undefined;
|
|
1365
|
+
LogicalResourceId: string | undefined;
|
|
1366
|
+
PhysicalResourceId?: string;
|
|
1367
|
+
PhysicalResourceIdContext?: PhysicalResourceIdContextKeyValuePair[];
|
|
1368
|
+
ResourceType: string | undefined;
|
|
1369
|
+
PropertyDifferences?: PropertyDifference[];
|
|
1370
|
+
StackResourceDriftStatus: StackResourceDriftStatus | string | undefined;
|
|
1371
|
+
Timestamp: Date | undefined;
|
|
1372
|
+
}
|
|
1373
|
+
export interface ListStackInstanceResourceDriftsOutput {
|
|
1374
|
+
Summaries?: StackInstanceResourceDriftsSummary[];
|
|
1375
|
+
NextToken?: string;
|
|
1376
|
+
}
|
|
1353
1377
|
export declare const StackInstanceFilterName: {
|
|
1354
1378
|
readonly DETAILED_STATUS: "DETAILED_STATUS";
|
|
1379
|
+
readonly DRIFT_STATUS: "DRIFT_STATUS";
|
|
1355
1380
|
readonly LAST_OPERATION_ID: "LAST_OPERATION_ID";
|
|
1356
1381
|
};
|
|
1357
1382
|
export type StackInstanceFilterName =
|
|
@@ -179,6 +179,10 @@ import {
|
|
|
179
179
|
ListImportsCommandInput,
|
|
180
180
|
ListImportsCommandOutput,
|
|
181
181
|
} from "../commands/ListImportsCommand";
|
|
182
|
+
import {
|
|
183
|
+
ListStackInstanceResourceDriftsCommandInput,
|
|
184
|
+
ListStackInstanceResourceDriftsCommandOutput,
|
|
185
|
+
} from "../commands/ListStackInstanceResourceDriftsCommand";
|
|
182
186
|
import {
|
|
183
187
|
ListStackInstancesCommandInput,
|
|
184
188
|
ListStackInstancesCommandOutput,
|
|
@@ -455,6 +459,10 @@ export declare const se_ListImportsCommand: (
|
|
|
455
459
|
input: ListImportsCommandInput,
|
|
456
460
|
context: __SerdeContext
|
|
457
461
|
) => Promise<__HttpRequest>;
|
|
462
|
+
export declare const se_ListStackInstanceResourceDriftsCommand: (
|
|
463
|
+
input: ListStackInstanceResourceDriftsCommandInput,
|
|
464
|
+
context: __SerdeContext
|
|
465
|
+
) => Promise<__HttpRequest>;
|
|
458
466
|
export declare const se_ListStackInstancesCommand: (
|
|
459
467
|
input: ListStackInstancesCommandInput,
|
|
460
468
|
context: __SerdeContext
|
|
@@ -731,6 +739,10 @@ export declare const de_ListImportsCommand: (
|
|
|
731
739
|
output: __HttpResponse,
|
|
732
740
|
context: __SerdeContext
|
|
733
741
|
) => Promise<ListImportsCommandOutput>;
|
|
742
|
+
export declare const de_ListStackInstanceResourceDriftsCommand: (
|
|
743
|
+
output: __HttpResponse,
|
|
744
|
+
context: __SerdeContext
|
|
745
|
+
) => Promise<ListStackInstanceResourceDriftsCommandOutput>;
|
|
734
746
|
export declare const de_ListStackInstancesCommand: (
|
|
735
747
|
output: __HttpResponse,
|
|
736
748
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloudformation",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloudformation Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.376.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|