@aws-sdk/client-codedeploy 3.180.0 → 3.182.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.
@@ -642,6 +642,7 @@ export interface DeploymentInfo {
642
642
  computePlatform?: ComputePlatform | string;
643
643
  externalId?: string;
644
644
  relatedDeployments?: RelatedDeployments;
645
+ overrideAlarmConfiguration?: AlarmConfiguration;
645
646
  }
646
647
  export interface BatchGetDeploymentsOutput {
647
648
  deploymentsInfo?: DeploymentInfo[];
@@ -895,6 +896,7 @@ export interface CreateDeploymentInput {
895
896
  autoRollbackConfiguration?: AutoRollbackConfiguration;
896
897
  updateOutdatedInstancesOnly?: boolean;
897
898
  fileExistsBehavior?: FileExistsBehavior | string;
899
+ overrideAlarmConfiguration?: AlarmConfiguration;
898
900
  }
899
901
  export interface CreateDeploymentOutput {
900
902
  deploymentId?: string;
@@ -926,6 +928,13 @@ export declare class DescriptionTooLongException extends __BaseException {
926
928
  opts: __ExceptionOptionType<DescriptionTooLongException, __BaseException>
927
929
  );
928
930
  }
931
+ export declare class InvalidAlarmConfigException extends __BaseException {
932
+ readonly name: "InvalidAlarmConfigException";
933
+ readonly $fault: "client";
934
+ constructor(
935
+ opts: __ExceptionOptionType<InvalidAlarmConfigException, __BaseException>
936
+ );
937
+ }
929
938
  export declare class InvalidAutoRollbackConfigException extends __BaseException {
930
939
  readonly name: "InvalidAutoRollbackConfigException";
931
940
  readonly $fault: "client";
@@ -1047,7 +1056,10 @@ export declare class ThrottlingException extends __BaseException {
1047
1056
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
1048
1057
  );
1049
1058
  }
1050
- export declare type MinimumHealthyHostsType = "FLEET_PERCENT" | "HOST_COUNT";
1059
+ export declare enum MinimumHealthyHostsType {
1060
+ FLEET_PERCENT = "FLEET_PERCENT",
1061
+ HOST_COUNT = "HOST_COUNT",
1062
+ }
1051
1063
  export interface MinimumHealthyHosts {
1052
1064
  type?: MinimumHealthyHostsType | string;
1053
1065
  value?: number;
@@ -1172,13 +1184,6 @@ export declare class ECSServiceMappingLimitExceededException extends __BaseExcep
1172
1184
  >
1173
1185
  );
1174
1186
  }
1175
- export declare class InvalidAlarmConfigException extends __BaseException {
1176
- readonly name: "InvalidAlarmConfigException";
1177
- readonly $fault: "client";
1178
- constructor(
1179
- opts: __ExceptionOptionType<InvalidAlarmConfigException, __BaseException>
1180
- );
1181
- }
1182
1187
  export declare class InvalidBlueGreenDeploymentConfigurationException extends __BaseException {
1183
1188
  readonly name: "InvalidBlueGreenDeploymentConfigurationException";
1184
1189
  readonly $fault: "client";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-codedeploy",
3
3
  "description": "AWS SDK for JavaScript Codedeploy Client for Node.js, Browser and React Native",
4
- "version": "3.180.0",
4
+ "version": "3.182.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,9 +19,9 @@
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.180.0",
22
+ "@aws-sdk/client-sts": "3.181.0",
23
23
  "@aws-sdk/config-resolver": "3.178.0",
24
- "@aws-sdk/credential-provider-node": "3.180.0",
24
+ "@aws-sdk/credential-provider-node": "3.181.0",
25
25
  "@aws-sdk/fetch-http-handler": "3.178.0",
26
26
  "@aws-sdk/hash-node": "3.178.0",
27
27
  "@aws-sdk/invalid-dependency": "3.178.0",