@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.
@@ -6,7 +6,11 @@ export declare enum AccountFilterType {
6
6
  NONE = "NONE",
7
7
  UNION = "UNION",
8
8
  }
9
- export declare type AccountGateStatus = "FAILED" | "SKIPPED" | "SUCCEEDED";
9
+ export declare enum AccountGateStatus {
10
+ FAILED = "FAILED",
11
+ SKIPPED = "SKIPPED",
12
+ SUCCEEDED = "SUCCEEDED",
13
+ }
10
14
  export interface AccountGateResult {
11
15
  Status?: AccountGateStatus | string;
12
16
  StatusReason?: string;
@@ -469,7 +473,10 @@ export declare class CreatedButModifiedException extends __BaseException {
469
473
  export interface ManagedExecution {
470
474
  Active?: boolean;
471
475
  }
472
- export declare type PermissionModels = "SELF_MANAGED" | "SERVICE_MANAGED";
476
+ export declare enum PermissionModels {
477
+ SELF_MANAGED = "SELF_MANAGED",
478
+ SERVICE_MANAGED = "SERVICE_MANAGED",
479
+ }
473
480
  export interface CreateStackSetInput {
474
481
  StackSetName: string | undefined;
475
482
  Description?: string;
@@ -552,7 +559,11 @@ export declare class StackSetNotEmptyException extends __BaseException {
552
559
  opts: __ExceptionOptionType<StackSetNotEmptyException, __BaseException>
553
560
  );
554
561
  }
555
- export declare type RegistryType = "HOOK" | "MODULE" | "RESOURCE";
562
+ export declare enum RegistryType {
563
+ HOOK = "HOOK",
564
+ MODULE = "MODULE",
565
+ RESOURCE = "RESOURCE",
566
+ }
556
567
  export interface DeregisterTypeInput {
557
568
  Arn?: string;
558
569
  Type?: RegistryType | string;
@@ -711,17 +722,22 @@ export interface DescribeStackInstanceInput {
711
722
  StackInstanceRegion: string | undefined;
712
723
  CallAs?: CallAs | string;
713
724
  }
714
- export declare type StackInstanceDetailedStatus =
715
- | "CANCELLED"
716
- | "FAILED"
717
- | "INOPERABLE"
718
- | "PENDING"
719
- | "RUNNING"
720
- | "SUCCEEDED";
725
+ export declare enum StackInstanceDetailedStatus {
726
+ CANCELLED = "CANCELLED",
727
+ FAILED = "FAILED",
728
+ INOPERABLE = "INOPERABLE",
729
+ PENDING = "PENDING",
730
+ RUNNING = "RUNNING",
731
+ SUCCEEDED = "SUCCEEDED",
732
+ }
721
733
  export interface StackInstanceComprehensiveStatus {
722
734
  DetailedStatus?: StackInstanceDetailedStatus | string;
723
735
  }
724
- export declare type StackInstanceStatus = "CURRENT" | "INOPERABLE" | "OUTDATED";
736
+ export declare enum StackInstanceStatus {
737
+ CURRENT = "CURRENT",
738
+ INOPERABLE = "INOPERABLE",
739
+ OUTDATED = "OUTDATED",
740
+ }
725
741
  export interface StackInstance {
726
742
  StackSetId?: string;
727
743
  Region?: string;
@@ -734,6 +750,7 @@ export interface StackInstance {
734
750
  OrganizationalUnitId?: string;
735
751
  DriftStatus?: StackDriftStatus | string;
736
752
  LastDriftCheckTimestamp?: Date;
753
+ LastOperationId?: string;
737
754
  }
738
755
  export interface DescribeStackInstanceOutput {
739
756
  StackInstance?: StackInstance;
@@ -929,7 +946,10 @@ export interface StackSetDriftDetectionDetails {
929
946
  InProgressStackInstancesCount?: number;
930
947
  FailedStackInstancesCount?: number;
931
948
  }
932
- export declare type StackSetStatus = "ACTIVE" | "DELETED";
949
+ export declare enum StackSetStatus {
950
+ ACTIVE = "ACTIVE",
951
+ DELETED = "DELETED",
952
+ }
933
953
  export interface StackSet {
934
954
  StackSetName?: string;
935
955
  StackSetId?: string;
@@ -956,18 +976,23 @@ export interface DescribeStackSetOperationInput {
956
976
  OperationId: string | undefined;
957
977
  CallAs?: CallAs | string;
958
978
  }
959
- export declare type StackSetOperationAction =
960
- | "CREATE"
961
- | "DELETE"
962
- | "DETECT_DRIFT"
963
- | "UPDATE";
964
- export declare type StackSetOperationStatus =
965
- | "FAILED"
966
- | "QUEUED"
967
- | "RUNNING"
968
- | "STOPPED"
969
- | "STOPPING"
970
- | "SUCCEEDED";
979
+ export declare enum StackSetOperationAction {
980
+ CREATE = "CREATE",
981
+ DELETE = "DELETE",
982
+ DETECT_DRIFT = "DETECT_DRIFT",
983
+ UPDATE = "UPDATE",
984
+ }
985
+ export declare enum StackSetOperationStatus {
986
+ FAILED = "FAILED",
987
+ QUEUED = "QUEUED",
988
+ RUNNING = "RUNNING",
989
+ STOPPED = "STOPPED",
990
+ STOPPING = "STOPPING",
991
+ SUCCEEDED = "SUCCEEDED",
992
+ }
993
+ export interface StackSetOperationStatusDetails {
994
+ FailedStackInstancesCount?: number;
995
+ }
971
996
  export interface StackSetOperation {
972
997
  OperationId?: string;
973
998
  StackSetId?: string;
@@ -982,6 +1007,7 @@ export interface StackSetOperation {
982
1007
  DeploymentTargets?: DeploymentTargets;
983
1008
  StackSetDriftDetectionDetails?: StackSetDriftDetectionDetails;
984
1009
  StatusReason?: string;
1010
+ StatusDetails?: StackSetOperationStatusDetails;
985
1011
  }
986
1012
  export interface DescribeStackSetOperationOutput {
987
1013
  StackSetOperation?: StackSetOperation;
@@ -1002,11 +1028,15 @@ export interface DescribeTypeInput {
1002
1028
  PublisherId?: string;
1003
1029
  PublicVersionNumber?: string;
1004
1030
  }
1005
- export declare type DeprecatedStatus = "DEPRECATED" | "LIVE";
1006
- export declare type ProvisioningType =
1007
- | "FULLY_MUTABLE"
1008
- | "IMMUTABLE"
1009
- | "NON_PROVISIONABLE";
1031
+ export declare enum DeprecatedStatus {
1032
+ DEPRECATED = "DEPRECATED",
1033
+ LIVE = "LIVE",
1034
+ }
1035
+ export declare enum ProvisioningType {
1036
+ FULLY_MUTABLE = "FULLY_MUTABLE",
1037
+ IMMUTABLE = "IMMUTABLE",
1038
+ NON_PROVISIONABLE = "NON_PROVISIONABLE",
1039
+ }
1010
1040
  export interface RequiredActivatedType {
1011
1041
  TypeNameAlias?: string;
1012
1042
  OriginalTypeName?: string;
@@ -1019,7 +1049,10 @@ export declare enum TypeTestsStatus {
1019
1049
  NOT_TESTED = "NOT_TESTED",
1020
1050
  PASSED = "PASSED",
1021
1051
  }
1022
- export declare type Visibility = "PRIVATE" | "PUBLIC";
1052
+ export declare enum Visibility {
1053
+ PRIVATE = "PRIVATE",
1054
+ PUBLIC = "PUBLIC",
1055
+ }
1023
1056
  export interface DescribeTypeOutput {
1024
1057
  Arn?: string;
1025
1058
  Type?: RegistryType | string;
@@ -1052,7 +1085,11 @@ export interface DescribeTypeOutput {
1052
1085
  export interface DescribeTypeRegistrationInput {
1053
1086
  RegistrationToken: string | undefined;
1054
1087
  }
1055
- export declare type RegistrationStatus = "COMPLETE" | "FAILED" | "IN_PROGRESS";
1088
+ export declare enum RegistrationStatus {
1089
+ COMPLETE = "COMPLETE",
1090
+ FAILED = "FAILED",
1091
+ IN_PROGRESS = "IN_PROGRESS",
1092
+ }
1056
1093
  export interface DescribeTypeRegistrationOutput {
1057
1094
  ProgressStatus?: RegistrationStatus | string;
1058
1095
  Description?: string;
@@ -1198,7 +1235,10 @@ export interface ListImportsOutput {
1198
1235
  Imports?: string[];
1199
1236
  NextToken?: string;
1200
1237
  }
1201
- export declare type StackInstanceFilterName = "DETAILED_STATUS";
1238
+ export declare enum StackInstanceFilterName {
1239
+ DETAILED_STATUS = "DETAILED_STATUS",
1240
+ LAST_OPERATION_ID = "LAST_OPERATION_ID",
1241
+ }
1202
1242
  export interface StackInstanceFilter {
1203
1243
  Name?: StackInstanceFilterName | string;
1204
1244
  Values?: string;
@@ -1223,6 +1263,7 @@ export interface StackInstanceSummary {
1223
1263
  OrganizationalUnitId?: string;
1224
1264
  DriftStatus?: StackDriftStatus | string;
1225
1265
  LastDriftCheckTimestamp?: Date;
1266
+ LastOperationId?: string;
1226
1267
  }
1227
1268
  export interface ListStackInstancesOutput {
1228
1269
  Summaries?: StackInstanceSummary[];
@@ -1275,19 +1316,28 @@ export interface ListStacksOutput {
1275
1316
  StackSummaries?: StackSummary[];
1276
1317
  NextToken?: string;
1277
1318
  }
1319
+ export declare enum OperationResultFilterName {
1320
+ OPERATION_RESULT_STATUS = "OPERATION_RESULT_STATUS",
1321
+ }
1322
+ export interface OperationResultFilter {
1323
+ Name?: OperationResultFilterName | string;
1324
+ Values?: string;
1325
+ }
1278
1326
  export interface ListStackSetOperationResultsInput {
1279
1327
  StackSetName: string | undefined;
1280
1328
  OperationId: string | undefined;
1281
1329
  NextToken?: string;
1282
1330
  MaxResults?: number;
1283
1331
  CallAs?: CallAs | string;
1332
+ Filters?: OperationResultFilter[];
1333
+ }
1334
+ export declare enum StackSetOperationResultStatus {
1335
+ CANCELLED = "CANCELLED",
1336
+ FAILED = "FAILED",
1337
+ PENDING = "PENDING",
1338
+ RUNNING = "RUNNING",
1339
+ SUCCEEDED = "SUCCEEDED",
1284
1340
  }
1285
- export declare type StackSetOperationResultStatus =
1286
- | "CANCELLED"
1287
- | "FAILED"
1288
- | "PENDING"
1289
- | "RUNNING"
1290
- | "SUCCEEDED";
1291
1341
  export interface StackSetOperationResultSummary {
1292
1342
  Account?: string;
1293
1343
  Region?: string;
@@ -1313,6 +1363,8 @@ export interface StackSetOperationSummary {
1313
1363
  CreationTimestamp?: Date;
1314
1364
  EndTimestamp?: Date;
1315
1365
  StatusReason?: string;
1366
+ StatusDetails?: StackSetOperationStatusDetails;
1367
+ OperationPreferences?: StackSetOperationPreferences;
1316
1368
  }
1317
1369
  export interface ListStackSetOperationsOutput {
1318
1370
  Summaries?: StackSetOperationSummary[];
@@ -1880,6 +1932,9 @@ export declare const DescribeStackSetOutputFilterSensitiveLog: (
1880
1932
  export declare const DescribeStackSetOperationInputFilterSensitiveLog: (
1881
1933
  obj: DescribeStackSetOperationInput
1882
1934
  ) => any;
1935
+ export declare const StackSetOperationStatusDetailsFilterSensitiveLog: (
1936
+ obj: StackSetOperationStatusDetails
1937
+ ) => any;
1883
1938
  export declare const StackSetOperationFilterSensitiveLog: (
1884
1939
  obj: StackSetOperation
1885
1940
  ) => any;
@@ -2017,6 +2072,9 @@ export declare const StackSummaryFilterSensitiveLog: (obj: StackSummary) => any;
2017
2072
  export declare const ListStacksOutputFilterSensitiveLog: (
2018
2073
  obj: ListStacksOutput
2019
2074
  ) => any;
2075
+ export declare const OperationResultFilterFilterSensitiveLog: (
2076
+ obj: OperationResultFilter
2077
+ ) => any;
2020
2078
  export declare const ListStackSetOperationResultsInputFilterSensitiveLog: (
2021
2079
  obj: ListStackSetOperationResultsInput
2022
2080
  ) => any;
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.197.0",
4
+ "version": "3.199.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",
@@ -19,40 +19,40 @@
19
19
  "dependencies": {
20
20
  "@aws-crypto/sha256-browser": "2.0.0",
21
21
  "@aws-crypto/sha256-js": "2.0.0",
22
- "@aws-sdk/client-sts": "3.197.0",
23
- "@aws-sdk/config-resolver": "3.197.0",
24
- "@aws-sdk/credential-provider-node": "3.197.0",
25
- "@aws-sdk/fetch-http-handler": "3.197.0",
26
- "@aws-sdk/hash-node": "3.197.0",
27
- "@aws-sdk/invalid-dependency": "3.197.0",
28
- "@aws-sdk/middleware-content-length": "3.197.0",
29
- "@aws-sdk/middleware-endpoint": "3.197.0",
30
- "@aws-sdk/middleware-host-header": "3.197.0",
31
- "@aws-sdk/middleware-logger": "3.197.0",
32
- "@aws-sdk/middleware-recursion-detection": "3.197.0",
33
- "@aws-sdk/middleware-retry": "3.197.0",
34
- "@aws-sdk/middleware-serde": "3.197.0",
35
- "@aws-sdk/middleware-signing": "3.197.0",
36
- "@aws-sdk/middleware-stack": "3.197.0",
37
- "@aws-sdk/middleware-user-agent": "3.197.0",
38
- "@aws-sdk/node-config-provider": "3.197.0",
39
- "@aws-sdk/node-http-handler": "3.197.0",
40
- "@aws-sdk/protocol-http": "3.197.0",
41
- "@aws-sdk/smithy-client": "3.197.0",
42
- "@aws-sdk/types": "3.197.0",
43
- "@aws-sdk/url-parser": "3.197.0",
22
+ "@aws-sdk/client-sts": "3.199.0",
23
+ "@aws-sdk/config-resolver": "3.198.0",
24
+ "@aws-sdk/credential-provider-node": "3.199.0",
25
+ "@aws-sdk/fetch-http-handler": "3.199.0",
26
+ "@aws-sdk/hash-node": "3.198.0",
27
+ "@aws-sdk/invalid-dependency": "3.198.0",
28
+ "@aws-sdk/middleware-content-length": "3.199.0",
29
+ "@aws-sdk/middleware-endpoint": "3.198.0",
30
+ "@aws-sdk/middleware-host-header": "3.198.0",
31
+ "@aws-sdk/middleware-logger": "3.198.0",
32
+ "@aws-sdk/middleware-recursion-detection": "3.198.0",
33
+ "@aws-sdk/middleware-retry": "3.198.0",
34
+ "@aws-sdk/middleware-serde": "3.198.0",
35
+ "@aws-sdk/middleware-signing": "3.198.0",
36
+ "@aws-sdk/middleware-stack": "3.198.0",
37
+ "@aws-sdk/middleware-user-agent": "3.198.0",
38
+ "@aws-sdk/node-config-provider": "3.198.0",
39
+ "@aws-sdk/node-http-handler": "3.199.0",
40
+ "@aws-sdk/protocol-http": "3.198.0",
41
+ "@aws-sdk/smithy-client": "3.198.0",
42
+ "@aws-sdk/types": "3.198.0",
43
+ "@aws-sdk/url-parser": "3.198.0",
44
44
  "@aws-sdk/util-base64-browser": "3.188.0",
45
45
  "@aws-sdk/util-base64-node": "3.188.0",
46
46
  "@aws-sdk/util-body-length-browser": "3.188.0",
47
47
  "@aws-sdk/util-body-length-node": "3.188.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.197.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.197.0",
50
- "@aws-sdk/util-endpoints": "3.197.0",
51
- "@aws-sdk/util-user-agent-browser": "3.197.0",
52
- "@aws-sdk/util-user-agent-node": "3.197.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.198.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.198.0",
50
+ "@aws-sdk/util-endpoints": "3.198.0",
51
+ "@aws-sdk/util-user-agent-browser": "3.198.0",
52
+ "@aws-sdk/util-user-agent-node": "3.198.0",
53
53
  "@aws-sdk/util-utf8-browser": "3.188.0",
54
- "@aws-sdk/util-utf8-node": "3.188.0",
55
- "@aws-sdk/util-waiter": "3.197.0",
54
+ "@aws-sdk/util-utf8-node": "3.199.0",
55
+ "@aws-sdk/util-waiter": "3.198.0",
56
56
  "fast-xml-parser": "4.0.11",
57
57
  "tslib": "^2.3.1",
58
58
  "uuid": "^8.3.2"