@aws-sdk/client-ecs 3.51.0 → 3.54.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.
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: ECSClientConfig) => {
8
8
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
9
  base64Decoder: import("@aws-sdk/types").Decoder;
10
10
  base64Encoder: import("@aws-sdk/types").Encoder;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
13
13
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
14
14
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: ECSClientConfig) => {
8
8
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
9
  base64Decoder: import("@aws-sdk/types").Decoder;
10
10
  base64Encoder: import("@aws-sdk/types").Encoder;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
13
13
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
14
14
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: ECSClientConfig) => {
8
8
  requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
9
9
  apiVersion: string;
10
10
  urlParser: import("@aws-sdk/types").UrlParser;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  streamCollector: import("@aws-sdk/types").StreamCollector;
13
13
  base64Decoder: import("@aws-sdk/types").Decoder;
14
14
  base64Encoder: import("@aws-sdk/types").Encoder;
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
5
5
  import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
6
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
7
  import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
8
+ import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
9
  import { CreateCapacityProviderCommandInput, CreateCapacityProviderCommandOutput } from "./commands/CreateCapacityProviderCommand";
10
10
  import { CreateClusterCommandInput, CreateClusterCommandOutput } from "./commands/CreateClusterCommand";
11
11
  import { CreateServiceCommandInput, CreateServiceCommandOutput } from "./commands/CreateServiceCommand";
@@ -68,7 +68,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
68
68
 
69
69
  urlParser?: __UrlParser;
70
70
 
71
- bodyLengthChecker?: (body: any) => number | undefined;
71
+ bodyLengthChecker?: __BodyLengthCalculator;
72
72
 
73
73
  streamCollector?: __StreamCollector;
74
74
 
@@ -4,3 +4,4 @@ export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
6
  export * from "./waiters";
7
+ export { ECSServiceException } from "./models/ECSServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class ECSServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -1,9 +1,11 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { ECSServiceException as __BaseException } from "./ECSServiceException";
2
3
 
3
- export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
4
- name: "AccessDeniedException";
5
- $fault: "client";
6
- message?: string;
4
+ export declare class AccessDeniedException extends __BaseException {
5
+ readonly name: "AccessDeniedException";
6
+ readonly $fault: "client";
7
+
8
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
7
9
  }
8
10
  export declare enum AgentUpdateStatus {
9
11
  FAILED = "FAILED",
@@ -14,10 +16,11 @@ export declare enum AgentUpdateStatus {
14
16
  UPDATING = "UPDATING"
15
17
  }
16
18
 
17
- export interface ClientException extends __SmithyException, $MetadataBearer {
18
- name: "ClientException";
19
- $fault: "client";
20
- message?: string;
19
+ export declare class ClientException extends __BaseException {
20
+ readonly name: "ClientException";
21
+ readonly $fault: "client";
22
+
23
+ constructor(opts: __ExceptionOptionType<ClientException, __BaseException>);
21
24
  }
22
25
  export declare enum ManagedScalingStatus {
23
26
  DISABLED = "DISABLED",
@@ -122,28 +125,32 @@ export declare namespace CreateCapacityProviderResponse {
122
125
  const filterSensitiveLog: (obj: CreateCapacityProviderResponse) => any;
123
126
  }
124
127
 
125
- export interface InvalidParameterException extends __SmithyException, $MetadataBearer {
126
- name: "InvalidParameterException";
127
- $fault: "client";
128
- message?: string;
128
+ export declare class InvalidParameterException extends __BaseException {
129
+ readonly name: "InvalidParameterException";
130
+ readonly $fault: "client";
131
+
132
+ constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
129
133
  }
130
134
 
131
- export interface LimitExceededException extends __SmithyException, $MetadataBearer {
132
- name: "LimitExceededException";
133
- $fault: "client";
134
- message?: string;
135
+ export declare class LimitExceededException extends __BaseException {
136
+ readonly name: "LimitExceededException";
137
+ readonly $fault: "client";
138
+
139
+ constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
135
140
  }
136
141
 
137
- export interface ServerException extends __SmithyException, $MetadataBearer {
138
- name: "ServerException";
139
- $fault: "server";
140
- message?: string;
142
+ export declare class ServerException extends __BaseException {
143
+ readonly name: "ServerException";
144
+ readonly $fault: "server";
145
+
146
+ constructor(opts: __ExceptionOptionType<ServerException, __BaseException>);
141
147
  }
142
148
 
143
- export interface UpdateInProgressException extends __SmithyException, $MetadataBearer {
144
- name: "UpdateInProgressException";
145
- $fault: "client";
146
- message?: string;
149
+ export declare class UpdateInProgressException extends __BaseException {
150
+ readonly name: "UpdateInProgressException";
151
+ readonly $fault: "client";
152
+
153
+ constructor(opts: __ExceptionOptionType<UpdateInProgressException, __BaseException>);
147
154
  }
148
155
 
149
156
  export interface ExecuteCommandLogConfiguration {
@@ -306,10 +313,11 @@ export declare namespace CreateClusterResponse {
306
313
  const filterSensitiveLog: (obj: CreateClusterResponse) => any;
307
314
  }
308
315
 
309
- export interface ClusterNotFoundException extends __SmithyException, $MetadataBearer {
310
- name: "ClusterNotFoundException";
311
- $fault: "client";
312
- message?: string;
316
+ export declare class ClusterNotFoundException extends __BaseException {
317
+ readonly name: "ClusterNotFoundException";
318
+ readonly $fault: "client";
319
+
320
+ constructor(opts: __ExceptionOptionType<ClusterNotFoundException, __BaseException>);
313
321
  }
314
322
 
315
323
  export interface DeploymentCircuitBreaker {
@@ -427,6 +435,7 @@ export declare namespace PlacementStrategy {
427
435
  const filterSensitiveLog: (obj: PlacementStrategy) => any;
428
436
  }
429
437
  export declare enum PropagateTags {
438
+ NONE = "NONE",
430
439
  SERVICE = "SERVICE",
431
440
  TASK_DEFINITION = "TASK_DEFINITION"
432
441
  }
@@ -707,22 +716,25 @@ export declare namespace CreateServiceResponse {
707
716
  const filterSensitiveLog: (obj: CreateServiceResponse) => any;
708
717
  }
709
718
 
710
- export interface PlatformTaskDefinitionIncompatibilityException extends __SmithyException, $MetadataBearer {
711
- name: "PlatformTaskDefinitionIncompatibilityException";
712
- $fault: "client";
713
- message?: string;
719
+ export declare class PlatformTaskDefinitionIncompatibilityException extends __BaseException {
720
+ readonly name: "PlatformTaskDefinitionIncompatibilityException";
721
+ readonly $fault: "client";
722
+
723
+ constructor(opts: __ExceptionOptionType<PlatformTaskDefinitionIncompatibilityException, __BaseException>);
714
724
  }
715
725
 
716
- export interface PlatformUnknownException extends __SmithyException, $MetadataBearer {
717
- name: "PlatformUnknownException";
718
- $fault: "client";
719
- message?: string;
726
+ export declare class PlatformUnknownException extends __BaseException {
727
+ readonly name: "PlatformUnknownException";
728
+ readonly $fault: "client";
729
+
730
+ constructor(opts: __ExceptionOptionType<PlatformUnknownException, __BaseException>);
720
731
  }
721
732
 
722
- export interface UnsupportedFeatureException extends __SmithyException, $MetadataBearer {
723
- name: "UnsupportedFeatureException";
724
- $fault: "client";
725
- message?: string;
733
+ export declare class UnsupportedFeatureException extends __BaseException {
734
+ readonly name: "UnsupportedFeatureException";
735
+ readonly $fault: "client";
736
+
737
+ constructor(opts: __ExceptionOptionType<UnsupportedFeatureException, __BaseException>);
726
738
  }
727
739
  export interface CreateTaskSetRequest {
728
740
 
@@ -765,16 +777,18 @@ export declare namespace CreateTaskSetResponse {
765
777
  const filterSensitiveLog: (obj: CreateTaskSetResponse) => any;
766
778
  }
767
779
 
768
- export interface ServiceNotActiveException extends __SmithyException, $MetadataBearer {
769
- name: "ServiceNotActiveException";
770
- $fault: "client";
771
- message?: string;
780
+ export declare class ServiceNotActiveException extends __BaseException {
781
+ readonly name: "ServiceNotActiveException";
782
+ readonly $fault: "client";
783
+
784
+ constructor(opts: __ExceptionOptionType<ServiceNotActiveException, __BaseException>);
772
785
  }
773
786
 
774
- export interface ServiceNotFoundException extends __SmithyException, $MetadataBearer {
775
- name: "ServiceNotFoundException";
776
- $fault: "client";
777
- message?: string;
787
+ export declare class ServiceNotFoundException extends __BaseException {
788
+ readonly name: "ServiceNotFoundException";
789
+ readonly $fault: "client";
790
+
791
+ constructor(opts: __ExceptionOptionType<ServiceNotFoundException, __BaseException>);
778
792
  }
779
793
  export declare enum SettingName {
780
794
  AWSVPC_TRUNKING = "awsvpcTrunking",
@@ -851,10 +865,11 @@ export declare namespace DeleteAttributesResponse {
851
865
  const filterSensitiveLog: (obj: DeleteAttributesResponse) => any;
852
866
  }
853
867
 
854
- export interface TargetNotFoundException extends __SmithyException, $MetadataBearer {
855
- name: "TargetNotFoundException";
856
- $fault: "client";
857
- message?: string;
868
+ export declare class TargetNotFoundException extends __BaseException {
869
+ readonly name: "TargetNotFoundException";
870
+ readonly $fault: "client";
871
+
872
+ constructor(opts: __ExceptionOptionType<TargetNotFoundException, __BaseException>);
858
873
  }
859
874
  export interface DeleteCapacityProviderRequest {
860
875
 
@@ -873,22 +888,25 @@ export declare namespace DeleteCapacityProviderResponse {
873
888
  const filterSensitiveLog: (obj: DeleteCapacityProviderResponse) => any;
874
889
  }
875
890
 
876
- export interface ClusterContainsContainerInstancesException extends __SmithyException, $MetadataBearer {
877
- name: "ClusterContainsContainerInstancesException";
878
- $fault: "client";
879
- message?: string;
891
+ export declare class ClusterContainsContainerInstancesException extends __BaseException {
892
+ readonly name: "ClusterContainsContainerInstancesException";
893
+ readonly $fault: "client";
894
+
895
+ constructor(opts: __ExceptionOptionType<ClusterContainsContainerInstancesException, __BaseException>);
880
896
  }
881
897
 
882
- export interface ClusterContainsServicesException extends __SmithyException, $MetadataBearer {
883
- name: "ClusterContainsServicesException";
884
- $fault: "client";
885
- message?: string;
898
+ export declare class ClusterContainsServicesException extends __BaseException {
899
+ readonly name: "ClusterContainsServicesException";
900
+ readonly $fault: "client";
901
+
902
+ constructor(opts: __ExceptionOptionType<ClusterContainsServicesException, __BaseException>);
886
903
  }
887
904
 
888
- export interface ClusterContainsTasksException extends __SmithyException, $MetadataBearer {
889
- name: "ClusterContainsTasksException";
890
- $fault: "client";
891
- message?: string;
905
+ export declare class ClusterContainsTasksException extends __BaseException {
906
+ readonly name: "ClusterContainsTasksException";
907
+ readonly $fault: "client";
908
+
909
+ constructor(opts: __ExceptionOptionType<ClusterContainsTasksException, __BaseException>);
892
910
  }
893
911
  export interface DeleteClusterRequest {
894
912
 
@@ -949,10 +967,11 @@ export declare namespace DeleteTaskSetResponse {
949
967
  const filterSensitiveLog: (obj: DeleteTaskSetResponse) => any;
950
968
  }
951
969
 
952
- export interface TaskSetNotFoundException extends __SmithyException, $MetadataBearer {
953
- name: "TaskSetNotFoundException";
954
- $fault: "client";
955
- message?: string;
970
+ export declare class TaskSetNotFoundException extends __BaseException {
971
+ readonly name: "TaskSetNotFoundException";
972
+ readonly $fault: "client";
973
+
974
+ constructor(opts: __ExceptionOptionType<TaskSetNotFoundException, __BaseException>);
956
975
  }
957
976
  export interface DeregisterContainerInstanceRequest {
958
977
 
@@ -2231,10 +2250,11 @@ export declare namespace ExecuteCommandResponse {
2231
2250
  const filterSensitiveLog: (obj: ExecuteCommandResponse) => any;
2232
2251
  }
2233
2252
 
2234
- export interface TargetNotConnectedException extends __SmithyException, $MetadataBearer {
2235
- name: "TargetNotConnectedException";
2236
- $fault: "client";
2237
- message?: string;
2253
+ export declare class TargetNotConnectedException extends __BaseException {
2254
+ readonly name: "TargetNotConnectedException";
2255
+ readonly $fault: "client";
2256
+
2257
+ constructor(opts: __ExceptionOptionType<TargetNotConnectedException, __BaseException>);
2238
2258
  }
2239
2259
  export interface ListAccountSettingsRequest {
2240
2260
 
@@ -2524,10 +2544,11 @@ export declare namespace PutAccountSettingDefaultResponse {
2524
2544
  const filterSensitiveLog: (obj: PutAccountSettingDefaultResponse) => any;
2525
2545
  }
2526
2546
 
2527
- export interface AttributeLimitExceededException extends __SmithyException, $MetadataBearer {
2528
- name: "AttributeLimitExceededException";
2529
- $fault: "client";
2530
- message?: string;
2547
+ export declare class AttributeLimitExceededException extends __BaseException {
2548
+ readonly name: "AttributeLimitExceededException";
2549
+ readonly $fault: "client";
2550
+
2551
+ constructor(opts: __ExceptionOptionType<AttributeLimitExceededException, __BaseException>);
2531
2552
  }
2532
2553
  export interface PutAttributesRequest {
2533
2554
 
@@ -2568,10 +2589,11 @@ export declare namespace PutClusterCapacityProvidersResponse {
2568
2589
  const filterSensitiveLog: (obj: PutClusterCapacityProvidersResponse) => any;
2569
2590
  }
2570
2591
 
2571
- export interface ResourceInUseException extends __SmithyException, $MetadataBearer {
2572
- name: "ResourceInUseException";
2573
- $fault: "client";
2574
- message?: string;
2592
+ export declare class ResourceInUseException extends __BaseException {
2593
+ readonly name: "ResourceInUseException";
2594
+ readonly $fault: "client";
2595
+
2596
+ constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
2575
2597
  }
2576
2598
  export declare enum PlatformDeviceType {
2577
2599
  GPU = "GPU"
@@ -2670,10 +2692,11 @@ export declare namespace RegisterTaskDefinitionResponse {
2670
2692
  const filterSensitiveLog: (obj: RegisterTaskDefinitionResponse) => any;
2671
2693
  }
2672
2694
 
2673
- export interface BlockedException extends __SmithyException, $MetadataBearer {
2674
- name: "BlockedException";
2675
- $fault: "client";
2676
- message?: string;
2695
+ export declare class BlockedException extends __BaseException {
2696
+ readonly name: "BlockedException";
2697
+ readonly $fault: "client";
2698
+
2699
+ constructor(opts: __ExceptionOptionType<BlockedException, __BaseException>);
2677
2700
  }
2678
2701
  export interface RunTaskRequest {
2679
2702
 
@@ -2915,10 +2938,11 @@ export declare namespace SubmitTaskStateChangeResponse {
2915
2938
  const filterSensitiveLog: (obj: SubmitTaskStateChangeResponse) => any;
2916
2939
  }
2917
2940
 
2918
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
2919
- name: "ResourceNotFoundException";
2920
- $fault: "client";
2921
- message?: string;
2941
+ export declare class ResourceNotFoundException extends __BaseException {
2942
+ readonly name: "ResourceNotFoundException";
2943
+ readonly $fault: "client";
2944
+
2945
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
2922
2946
  }
2923
2947
  export interface TagResourceRequest {
2924
2948
 
@@ -3020,16 +3044,18 @@ export declare namespace UpdateClusterSettingsResponse {
3020
3044
  const filterSensitiveLog: (obj: UpdateClusterSettingsResponse) => any;
3021
3045
  }
3022
3046
 
3023
- export interface MissingVersionException extends __SmithyException, $MetadataBearer {
3024
- name: "MissingVersionException";
3025
- $fault: "client";
3026
- message?: string;
3047
+ export declare class MissingVersionException extends __BaseException {
3048
+ readonly name: "MissingVersionException";
3049
+ readonly $fault: "client";
3050
+
3051
+ constructor(opts: __ExceptionOptionType<MissingVersionException, __BaseException>);
3027
3052
  }
3028
3053
 
3029
- export interface NoUpdateAvailableException extends __SmithyException, $MetadataBearer {
3030
- name: "NoUpdateAvailableException";
3031
- $fault: "client";
3032
- message?: string;
3054
+ export declare class NoUpdateAvailableException extends __BaseException {
3055
+ readonly name: "NoUpdateAvailableException";
3056
+ readonly $fault: "client";
3057
+
3058
+ constructor(opts: __ExceptionOptionType<NoUpdateAvailableException, __BaseException>);
3033
3059
  }
3034
3060
  export interface UpdateContainerAgentRequest {
3035
3061
 
@@ -3098,6 +3124,14 @@ export interface UpdateServiceRequest {
3098
3124
  healthCheckGracePeriodSeconds?: number;
3099
3125
 
3100
3126
  enableExecuteCommand?: boolean;
3127
+
3128
+ enableECSManagedTags?: boolean;
3129
+
3130
+ loadBalancers?: LoadBalancer[];
3131
+
3132
+ propagateTags?: PropagateTags | string;
3133
+
3134
+ serviceRegistries?: ServiceRegistry[];
3101
3135
  }
3102
3136
  export declare namespace UpdateServiceRequest {
3103
3137
 
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: ECSClientConfig) => {
6
6
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
7
  base64Decoder: import("@aws-sdk/types").Decoder;
8
8
  base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: (body: any) => number | undefined;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
12
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: ECSClientConfig) => {
6
6
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
7
  base64Decoder: import("@aws-sdk/types").Decoder;
8
8
  base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: (body: any) => number | undefined;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
12
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: ECSClientConfig) => {
6
6
  requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
7
7
  apiVersion: string;
8
8
  urlParser: import("@aws-sdk/types").UrlParser;
9
- bodyLengthChecker: (body: any) => number | undefined;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
10
  streamCollector: import("@aws-sdk/types").StreamCollector;
11
11
  base64Decoder: import("@aws-sdk/types").Decoder;
12
12
  base64Encoder: import("@aws-sdk/types").Encoder;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-ecs",
3
3
  "description": "AWS SDK for JavaScript Ecs Client for Node.js, Browser and React Native",
4
- "version": "3.51.0",
4
+ "version": "3.54.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",
@@ -9,7 +9,7 @@
9
9
  "build:es": "tsc -p tsconfig.es.json",
10
10
  "build:types": "tsc -p tsconfig.types.json",
11
11
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
12
- "clean": "rimraf ./dist-*"
12
+ "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo"
13
13
  },
14
14
  "main": "./dist-cjs/index.js",
15
15
  "types": "./dist-types/index.d.ts",
@@ -18,41 +18,41 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.51.0",
22
- "@aws-sdk/config-resolver": "3.51.0",
23
- "@aws-sdk/credential-provider-node": "3.51.0",
24
- "@aws-sdk/fetch-http-handler": "3.50.0",
25
- "@aws-sdk/hash-node": "3.50.0",
26
- "@aws-sdk/invalid-dependency": "3.50.0",
27
- "@aws-sdk/middleware-content-length": "3.50.0",
28
- "@aws-sdk/middleware-host-header": "3.50.0",
29
- "@aws-sdk/middleware-logger": "3.50.0",
30
- "@aws-sdk/middleware-retry": "3.51.0",
31
- "@aws-sdk/middleware-serde": "3.50.0",
32
- "@aws-sdk/middleware-signing": "3.50.0",
33
- "@aws-sdk/middleware-stack": "3.50.0",
34
- "@aws-sdk/middleware-user-agent": "3.50.0",
35
- "@aws-sdk/node-config-provider": "3.51.0",
36
- "@aws-sdk/node-http-handler": "3.50.0",
37
- "@aws-sdk/protocol-http": "3.50.0",
38
- "@aws-sdk/smithy-client": "3.50.0",
39
- "@aws-sdk/types": "3.50.0",
40
- "@aws-sdk/url-parser": "3.50.0",
41
- "@aws-sdk/util-base64-browser": "3.49.0",
42
- "@aws-sdk/util-base64-node": "3.49.0",
43
- "@aws-sdk/util-body-length-browser": "3.49.0",
44
- "@aws-sdk/util-body-length-node": "3.49.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.50.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.51.0",
47
- "@aws-sdk/util-user-agent-browser": "3.50.0",
48
- "@aws-sdk/util-user-agent-node": "3.51.0",
49
- "@aws-sdk/util-utf8-browser": "3.49.0",
50
- "@aws-sdk/util-utf8-node": "3.49.0",
51
- "@aws-sdk/util-waiter": "3.50.0",
21
+ "@aws-sdk/client-sts": "3.54.0",
22
+ "@aws-sdk/config-resolver": "3.54.0",
23
+ "@aws-sdk/credential-provider-node": "3.54.0",
24
+ "@aws-sdk/fetch-http-handler": "3.54.0",
25
+ "@aws-sdk/hash-node": "3.54.0",
26
+ "@aws-sdk/invalid-dependency": "3.54.0",
27
+ "@aws-sdk/middleware-content-length": "3.54.0",
28
+ "@aws-sdk/middleware-host-header": "3.54.0",
29
+ "@aws-sdk/middleware-logger": "3.54.0",
30
+ "@aws-sdk/middleware-retry": "3.54.0",
31
+ "@aws-sdk/middleware-serde": "3.54.0",
32
+ "@aws-sdk/middleware-signing": "3.54.0",
33
+ "@aws-sdk/middleware-stack": "3.54.0",
34
+ "@aws-sdk/middleware-user-agent": "3.54.0",
35
+ "@aws-sdk/node-config-provider": "3.54.0",
36
+ "@aws-sdk/node-http-handler": "3.54.0",
37
+ "@aws-sdk/protocol-http": "3.54.0",
38
+ "@aws-sdk/smithy-client": "3.54.0",
39
+ "@aws-sdk/types": "3.54.0",
40
+ "@aws-sdk/url-parser": "3.54.0",
41
+ "@aws-sdk/util-base64-browser": "3.52.0",
42
+ "@aws-sdk/util-base64-node": "3.52.0",
43
+ "@aws-sdk/util-body-length-browser": "3.54.0",
44
+ "@aws-sdk/util-body-length-node": "3.54.0",
45
+ "@aws-sdk/util-defaults-mode-browser": "3.54.0",
46
+ "@aws-sdk/util-defaults-mode-node": "3.54.0",
47
+ "@aws-sdk/util-user-agent-browser": "3.54.0",
48
+ "@aws-sdk/util-user-agent-node": "3.54.0",
49
+ "@aws-sdk/util-utf8-browser": "3.52.0",
50
+ "@aws-sdk/util-utf8-node": "3.52.0",
51
+ "@aws-sdk/util-waiter": "3.54.0",
52
52
  "tslib": "^2.3.0"
53
53
  },
54
54
  "devDependencies": {
55
- "@aws-sdk/service-client-documentation-generator": "3.49.0",
55
+ "@aws-sdk/service-client-documentation-generator": "3.52.0",
56
56
  "@tsconfig/recommended": "1.0.1",
57
57
  "@types/node": "^12.7.5",
58
58
  "concurrently": "7.0.0",