@aws-sdk/client-elastic-beanstalk 3.52.0 → 3.54.1

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.
@@ -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 { AbortEnvironmentUpdateCommandInput, AbortEnvironmentUpdateCommandOutput } from "./commands/AbortEnvironmentUpdateCommand";
10
10
  import { ApplyEnvironmentManagedActionCommandInput, ApplyEnvironmentManagedActionCommandOutput } from "./commands/ApplyEnvironmentManagedActionCommand";
11
11
  import { AssociateEnvironmentOperationsRoleCommandInput, AssociateEnvironmentOperationsRoleCommandOutput } from "./commands/AssociateEnvironmentOperationsRoleCommand";
@@ -75,7 +75,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
75
75
  * A function that can calculate the length of a request body.
76
76
  * @internal
77
77
  */
78
- bodyLengthChecker?: (body: any) => number | undefined;
78
+ bodyLengthChecker?: __BodyLengthCalculator;
79
79
  /**
80
80
  * A function that converts a stream into an array of bytes.
81
81
  * @internal
@@ -4,3 +4,4 @@ export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
6
  export * from "./waiters";
7
+ export { ElasticBeanstalkServiceException } from "./models/ElasticBeanstalkServiceException";
@@ -0,0 +1,10 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+ /**
3
+ * Base exception class for all service exceptions from ElasticBeanstalk service.
4
+ */
5
+ export declare class ElasticBeanstalkServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -1,4 +1,5 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { ElasticBeanstalkServiceException as __BaseException } from "./ElasticBeanstalkServiceException";
2
3
  /**
3
4
  * <p></p>
4
5
  */
@@ -24,13 +25,13 @@ export declare namespace AbortEnvironmentUpdateMessage {
24
25
  * <p>The specified account does not have sufficient privileges for one or more AWS
25
26
  * services.</p>
26
27
  */
27
- export interface InsufficientPrivilegesException extends __SmithyException, $MetadataBearer {
28
- name: "InsufficientPrivilegesException";
29
- $fault: "client";
28
+ export declare class InsufficientPrivilegesException extends __BaseException {
29
+ readonly name: "InsufficientPrivilegesException";
30
+ readonly $fault: "client";
30
31
  /**
31
- * <p>The exception error message.</p>
32
+ * @internal
32
33
  */
33
- message?: string;
34
+ constructor(opts: __ExceptionOptionType<InsufficientPrivilegesException, __BaseException>);
34
35
  }
35
36
  export declare type ActionHistoryStatus = "Completed" | "Failed" | "Unknown";
36
37
  export declare type ActionStatus = "Pending" | "Running" | "Scheduled" | "Unknown";
@@ -604,24 +605,24 @@ export declare namespace ApplyEnvironmentManagedActionResult {
604
605
  /**
605
606
  * <p>A generic service exception has occurred.</p>
606
607
  */
607
- export interface ElasticBeanstalkServiceException extends __SmithyException, $MetadataBearer {
608
- name: "ElasticBeanstalkServiceException";
609
- $fault: "client";
608
+ export declare class ElasticBeanstalkServiceException extends __BaseException {
609
+ readonly name: "ElasticBeanstalkServiceException";
610
+ readonly $fault: "client";
610
611
  /**
611
- * <p>The exception error message.</p>
612
+ * @internal
612
613
  */
613
- message?: string;
614
+ constructor(opts: __ExceptionOptionType<ElasticBeanstalkServiceException, __BaseException>);
614
615
  }
615
616
  /**
616
617
  * <p>Cannot modify the managed action in its current state.</p>
617
618
  */
618
- export interface ManagedActionInvalidStateException extends __SmithyException, $MetadataBearer {
619
- name: "ManagedActionInvalidStateException";
620
- $fault: "client";
619
+ export declare class ManagedActionInvalidStateException extends __BaseException {
620
+ readonly name: "ManagedActionInvalidStateException";
621
+ readonly $fault: "client";
621
622
  /**
622
- * <p>The exception error message.</p>
623
+ * @internal
623
624
  */
624
- message?: string;
625
+ constructor(opts: __ExceptionOptionType<ManagedActionInvalidStateException, __BaseException>);
625
626
  }
626
627
  /**
627
628
  * <p>Request to add or change the operations role used by an environment.</p>
@@ -1062,13 +1063,13 @@ export declare namespace EnvironmentDescriptionsMessage {
1062
1063
  /**
1063
1064
  * <p>The specified account has reached its limit of environments.</p>
1064
1065
  */
1065
- export interface TooManyEnvironmentsException extends __SmithyException, $MetadataBearer {
1066
- name: "TooManyEnvironmentsException";
1067
- $fault: "client";
1066
+ export declare class TooManyEnvironmentsException extends __BaseException {
1067
+ readonly name: "TooManyEnvironmentsException";
1068
+ readonly $fault: "client";
1068
1069
  /**
1069
- * <p>The exception error message.</p>
1070
+ * @internal
1070
1071
  */
1071
- message?: string;
1072
+ constructor(opts: __ExceptionOptionType<TooManyEnvironmentsException, __BaseException>);
1072
1073
  }
1073
1074
  /**
1074
1075
  * <p>Describes a tag applied to a resource in an environment.</p>
@@ -1122,24 +1123,24 @@ export declare namespace CreateApplicationMessage {
1122
1123
  /**
1123
1124
  * <p>The specified account has reached its limit of applications.</p>
1124
1125
  */
1125
- export interface TooManyApplicationsException extends __SmithyException, $MetadataBearer {
1126
- name: "TooManyApplicationsException";
1127
- $fault: "client";
1126
+ export declare class TooManyApplicationsException extends __BaseException {
1127
+ readonly name: "TooManyApplicationsException";
1128
+ readonly $fault: "client";
1128
1129
  /**
1129
- * <p>The exception error message.</p>
1130
+ * @internal
1130
1131
  */
1131
- message?: string;
1132
+ constructor(opts: __ExceptionOptionType<TooManyApplicationsException, __BaseException>);
1132
1133
  }
1133
1134
  /**
1134
1135
  * <p>AWS CodeBuild is not available in the specified region.</p>
1135
1136
  */
1136
- export interface CodeBuildNotInServiceRegionException extends __SmithyException, $MetadataBearer {
1137
- name: "CodeBuildNotInServiceRegionException";
1138
- $fault: "client";
1137
+ export declare class CodeBuildNotInServiceRegionException extends __BaseException {
1138
+ readonly name: "CodeBuildNotInServiceRegionException";
1139
+ readonly $fault: "client";
1139
1140
  /**
1140
- * <p>The exception error message.</p>
1141
+ * @internal
1141
1142
  */
1142
- message?: string;
1143
+ constructor(opts: __ExceptionOptionType<CodeBuildNotInServiceRegionException, __BaseException>);
1143
1144
  }
1144
1145
  export declare enum ComputeType {
1145
1146
  BUILD_GENERAL1_LARGE = "BUILD_GENERAL1_LARGE",
@@ -1290,24 +1291,24 @@ export declare namespace CreateApplicationVersionMessage {
1290
1291
  * </li>
1291
1292
  * </ul>
1292
1293
  */
1293
- export interface S3LocationNotInServiceRegionException extends __SmithyException, $MetadataBearer {
1294
- name: "S3LocationNotInServiceRegionException";
1295
- $fault: "client";
1294
+ export declare class S3LocationNotInServiceRegionException extends __BaseException {
1295
+ readonly name: "S3LocationNotInServiceRegionException";
1296
+ readonly $fault: "client";
1296
1297
  /**
1297
- * <p>The exception error message.</p>
1298
+ * @internal
1298
1299
  */
1299
- message?: string;
1300
+ constructor(opts: __ExceptionOptionType<S3LocationNotInServiceRegionException, __BaseException>);
1300
1301
  }
1301
1302
  /**
1302
1303
  * <p>The specified account has reached its limit of application versions.</p>
1303
1304
  */
1304
- export interface TooManyApplicationVersionsException extends __SmithyException, $MetadataBearer {
1305
- name: "TooManyApplicationVersionsException";
1306
- $fault: "client";
1305
+ export declare class TooManyApplicationVersionsException extends __BaseException {
1306
+ readonly name: "TooManyApplicationVersionsException";
1307
+ readonly $fault: "client";
1307
1308
  /**
1308
- * <p>The exception error message.</p>
1309
+ * @internal
1309
1310
  */
1310
- message?: string;
1311
+ constructor(opts: __ExceptionOptionType<TooManyApplicationVersionsException, __BaseException>);
1311
1312
  }
1312
1313
  export declare type ConfigurationDeploymentStatus = "deployed" | "failed" | "pending";
1313
1314
  /**
@@ -1521,24 +1522,24 @@ export declare namespace CreateConfigurationTemplateMessage {
1521
1522
  /**
1522
1523
  * <p>The specified account has reached its limit of Amazon S3 buckets.</p>
1523
1524
  */
1524
- export interface TooManyBucketsException extends __SmithyException, $MetadataBearer {
1525
- name: "TooManyBucketsException";
1526
- $fault: "client";
1525
+ export declare class TooManyBucketsException extends __BaseException {
1526
+ readonly name: "TooManyBucketsException";
1527
+ readonly $fault: "client";
1527
1528
  /**
1528
- * <p>The exception error message.</p>
1529
+ * @internal
1529
1530
  */
1530
- message?: string;
1531
+ constructor(opts: __ExceptionOptionType<TooManyBucketsException, __BaseException>);
1531
1532
  }
1532
1533
  /**
1533
1534
  * <p>The specified account has reached its limit of configuration templates.</p>
1534
1535
  */
1535
- export interface TooManyConfigurationTemplatesException extends __SmithyException, $MetadataBearer {
1536
- name: "TooManyConfigurationTemplatesException";
1537
- $fault: "client";
1536
+ export declare class TooManyConfigurationTemplatesException extends __BaseException {
1537
+ readonly name: "TooManyConfigurationTemplatesException";
1538
+ readonly $fault: "client";
1538
1539
  /**
1539
- * <p>The exception error message.</p>
1540
+ * @internal
1540
1541
  */
1541
- message?: string;
1542
+ constructor(opts: __ExceptionOptionType<TooManyConfigurationTemplatesException, __BaseException>);
1542
1543
  }
1543
1544
  /**
1544
1545
  * <p>A specification identifying an individual configuration option.</p>
@@ -1808,13 +1809,13 @@ export declare namespace CreatePlatformVersionResult {
1808
1809
  /**
1809
1810
  * <p>You have exceeded the maximum number of allowed platforms associated with the account.</p>
1810
1811
  */
1811
- export interface TooManyPlatformsException extends __SmithyException, $MetadataBearer {
1812
- name: "TooManyPlatformsException";
1813
- $fault: "client";
1812
+ export declare class TooManyPlatformsException extends __BaseException {
1813
+ readonly name: "TooManyPlatformsException";
1814
+ readonly $fault: "client";
1814
1815
  /**
1815
- * <p>The exception error message.</p>
1816
+ * @internal
1816
1817
  */
1817
- message?: string;
1818
+ constructor(opts: __ExceptionOptionType<TooManyPlatformsException, __BaseException>);
1818
1819
  }
1819
1820
  /**
1820
1821
  * <p>Results of a <a>CreateStorageLocationResult</a> call.</p>
@@ -1834,13 +1835,13 @@ export declare namespace CreateStorageLocationResultMessage {
1834
1835
  /**
1835
1836
  * <p>The specified account does not have a subscription to Amazon S3.</p>
1836
1837
  */
1837
- export interface S3SubscriptionRequiredException extends __SmithyException, $MetadataBearer {
1838
- name: "S3SubscriptionRequiredException";
1839
- $fault: "client";
1838
+ export declare class S3SubscriptionRequiredException extends __BaseException {
1839
+ readonly name: "S3SubscriptionRequiredException";
1840
+ readonly $fault: "client";
1840
1841
  /**
1841
- * <p>The exception error message.</p>
1842
+ * @internal
1842
1843
  */
1843
- message?: string;
1844
+ constructor(opts: __ExceptionOptionType<S3SubscriptionRequiredException, __BaseException>);
1844
1845
  }
1845
1846
  /**
1846
1847
  * <p>Request to delete an application.</p>
@@ -1866,13 +1867,13 @@ export declare namespace DeleteApplicationMessage {
1866
1867
  * <p>Unable to perform the specified operation because another operation that effects an
1867
1868
  * element in this activity is already in progress.</p>
1868
1869
  */
1869
- export interface OperationInProgressException extends __SmithyException, $MetadataBearer {
1870
- name: "OperationInProgressException";
1871
- $fault: "client";
1870
+ export declare class OperationInProgressException extends __BaseException {
1871
+ readonly name: "OperationInProgressException";
1872
+ readonly $fault: "client";
1872
1873
  /**
1873
- * <p>The exception error message.</p>
1874
+ * @internal
1874
1875
  */
1875
- message?: string;
1876
+ constructor(opts: __ExceptionOptionType<OperationInProgressException, __BaseException>);
1876
1877
  }
1877
1878
  /**
1878
1879
  * <p>Request to delete an application version.</p>
@@ -1903,13 +1904,13 @@ export declare namespace DeleteApplicationVersionMessage {
1903
1904
  * <p>Unable to delete the Amazon S3 source bundle associated with the application version.
1904
1905
  * The application version was deleted successfully.</p>
1905
1906
  */
1906
- export interface SourceBundleDeletionException extends __SmithyException, $MetadataBearer {
1907
- name: "SourceBundleDeletionException";
1908
- $fault: "client";
1907
+ export declare class SourceBundleDeletionException extends __BaseException {
1908
+ readonly name: "SourceBundleDeletionException";
1909
+ readonly $fault: "client";
1909
1910
  /**
1910
- * <p>The exception error message.</p>
1911
+ * @internal
1911
1912
  */
1912
- message?: string;
1913
+ constructor(opts: __ExceptionOptionType<SourceBundleDeletionException, __BaseException>);
1913
1914
  }
1914
1915
  /**
1915
1916
  * <p>Request to delete a configuration template.</p>
@@ -1976,13 +1977,13 @@ export declare namespace DeletePlatformVersionResult {
1976
1977
  /**
1977
1978
  * <p>You cannot delete the platform version because there are still environments running on it.</p>
1978
1979
  */
1979
- export interface PlatformVersionStillReferencedException extends __SmithyException, $MetadataBearer {
1980
- name: "PlatformVersionStillReferencedException";
1981
- $fault: "client";
1980
+ export declare class PlatformVersionStillReferencedException extends __BaseException {
1981
+ readonly name: "PlatformVersionStillReferencedException";
1982
+ readonly $fault: "client";
1982
1983
  /**
1983
- * <p>The exception error message.</p>
1984
+ * @internal
1984
1985
  */
1985
- message?: string;
1986
+ constructor(opts: __ExceptionOptionType<PlatformVersionStillReferencedException, __BaseException>);
1986
1987
  }
1987
1988
  /**
1988
1989
  * <p>The AWS Elastic Beanstalk quota information for a single resource type in an AWS account. It
@@ -2492,13 +2493,13 @@ export declare namespace DescribeEnvironmentHealthResult {
2492
2493
  * <p>One or more input parameters is not valid. Please correct the input parameters and try
2493
2494
  * the operation again.</p>
2494
2495
  */
2495
- export interface InvalidRequestException extends __SmithyException, $MetadataBearer {
2496
- name: "InvalidRequestException";
2497
- $fault: "client";
2496
+ export declare class InvalidRequestException extends __BaseException {
2497
+ readonly name: "InvalidRequestException";
2498
+ readonly $fault: "client";
2498
2499
  /**
2499
- * <p>The exception error message.</p>
2500
+ * @internal
2500
2501
  */
2501
- message?: string;
2502
+ constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
2502
2503
  }
2503
2504
  /**
2504
2505
  * <p>Request to list completed and failed managed actions.</p>
@@ -3807,13 +3808,13 @@ export declare namespace ListTagsForResourceMessage {
3807
3808
  /**
3808
3809
  * <p>A resource doesn't exist for the specified Amazon Resource Name (ARN).</p>
3809
3810
  */
3810
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
3811
- name: "ResourceNotFoundException";
3812
- $fault: "client";
3811
+ export declare class ResourceNotFoundException extends __BaseException {
3812
+ readonly name: "ResourceNotFoundException";
3813
+ readonly $fault: "client";
3813
3814
  /**
3814
- * <p>The exception error message.</p>
3815
+ * @internal
3815
3816
  */
3816
- message?: string;
3817
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
3817
3818
  }
3818
3819
  export interface ResourceTagsDescriptionMessage {
3819
3820
  /**
@@ -3834,13 +3835,13 @@ export declare namespace ResourceTagsDescriptionMessage {
3834
3835
  /**
3835
3836
  * <p>The type of the specified Amazon Resource Name (ARN) isn't supported for this operation.</p>
3836
3837
  */
3837
- export interface ResourceTypeNotSupportedException extends __SmithyException, $MetadataBearer {
3838
- name: "ResourceTypeNotSupportedException";
3839
- $fault: "client";
3838
+ export declare class ResourceTypeNotSupportedException extends __BaseException {
3839
+ readonly name: "ResourceTypeNotSupportedException";
3840
+ readonly $fault: "client";
3840
3841
  /**
3841
- * <p>The exception error message.</p>
3842
+ * @internal
3842
3843
  */
3843
- message?: string;
3844
+ constructor(opts: __ExceptionOptionType<ResourceTypeNotSupportedException, __BaseException>);
3844
3845
  }
3845
3846
  /**
3846
3847
  * <p></p>
@@ -4293,13 +4294,13 @@ export declare namespace UpdateEnvironmentMessage {
4293
4294
  * <p>To calculate this, the operation considers both the number of tags the resource already has
4294
4295
  * and the tags this operation would add if it succeeded.</p>
4295
4296
  */
4296
- export interface TooManyTagsException extends __SmithyException, $MetadataBearer {
4297
- name: "TooManyTagsException";
4298
- $fault: "client";
4297
+ export declare class TooManyTagsException extends __BaseException {
4298
+ readonly name: "TooManyTagsException";
4299
+ readonly $fault: "client";
4299
4300
  /**
4300
- * <p>The exception error message.</p>
4301
+ * @internal
4301
4302
  */
4302
- message?: string;
4303
+ constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
4303
4304
  }
4304
4305
  export interface UpdateTagsForResourceMessage {
4305
4306
  /**
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: ElasticBeanstalkClientConfig) =>
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: ElasticBeanstalkClientConfig) =>
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: ElasticBeanstalkClientConfig) =>
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 { AbortEnvironmentUpdateCommandInput, AbortEnvironmentUpdateCommandOutput } from "./commands/AbortEnvironmentUpdateCommand";
10
10
  import { ApplyEnvironmentManagedActionCommandInput, ApplyEnvironmentManagedActionCommandOutput } from "./commands/ApplyEnvironmentManagedActionCommand";
11
11
  import { AssociateEnvironmentOperationsRoleCommandInput, AssociateEnvironmentOperationsRoleCommandOutput } from "./commands/AssociateEnvironmentOperationsRoleCommand";
@@ -63,7 +63,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
63
63
 
64
64
  urlParser?: __UrlParser;
65
65
 
66
- bodyLengthChecker?: (body: any) => number | undefined;
66
+ bodyLengthChecker?: __BodyLengthCalculator;
67
67
 
68
68
  streamCollector?: __StreamCollector;
69
69
 
@@ -4,3 +4,4 @@ export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
6
  export * from "./waiters";
7
+ export { ElasticBeanstalkServiceException } from "./models/ElasticBeanstalkServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class ElasticBeanstalkServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }