@aws-sdk/client-cloudformation 3.445.0 → 3.448.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.
@@ -456,6 +456,12 @@ export interface DeploymentTargets {
456
456
  OrganizationalUnitIds?: string[];
457
457
  AccountFilterType?: AccountFilterType;
458
458
  }
459
+ export declare const ConcurrencyMode: {
460
+ readonly SOFT_FAILURE_TOLERANCE: "SOFT_FAILURE_TOLERANCE";
461
+ readonly STRICT_FAILURE_TOLERANCE: "STRICT_FAILURE_TOLERANCE";
462
+ };
463
+ export type ConcurrencyMode =
464
+ (typeof ConcurrencyMode)[keyof typeof ConcurrencyMode];
459
465
  export declare const RegionConcurrencyType: {
460
466
  readonly PARALLEL: "PARALLEL";
461
467
  readonly SEQUENTIAL: "SEQUENTIAL";
@@ -469,6 +475,7 @@ export interface StackSetOperationPreferences {
469
475
  FailureTolerancePercentage?: number;
470
476
  MaxConcurrentCount?: number;
471
477
  MaxConcurrentPercentage?: number;
478
+ ConcurrencyMode?: ConcurrencyMode;
472
479
  }
473
480
  export interface CreateStackInstancesInput {
474
481
  StackSetName: string | undefined;
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.445.0",
4
+ "version": "3.448.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",