@aws-sdk/client-pricing 3.169.0 → 3.171.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-pricing
9
+
10
+
11
+
12
+
13
+
14
+ # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-pricing
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-pricing
@@ -1,20 +1,55 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
- import { DescribeServicesCommandInput, DescribeServicesCommandOutput } from "./commands/DescribeServicesCommand";
3
- import { GetAttributeValuesCommandInput, GetAttributeValuesCommandOutput } from "./commands/GetAttributeValuesCommand";
4
- import { GetProductsCommandInput, GetProductsCommandOutput } from "./commands/GetProductsCommand";
5
- import { PricingClient } from "./PricingClient";
6
-
7
- export declare class Pricing extends PricingClient {
8
-
9
- describeServices(args: DescribeServicesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeServicesCommandOutput>;
10
- describeServices(args: DescribeServicesCommandInput, cb: (err: any, data?: DescribeServicesCommandOutput) => void): void;
11
- describeServices(args: DescribeServicesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeServicesCommandOutput) => void): void;
12
-
13
- getAttributeValues(args: GetAttributeValuesCommandInput, options?: __HttpHandlerOptions): Promise<GetAttributeValuesCommandOutput>;
14
- getAttributeValues(args: GetAttributeValuesCommandInput, cb: (err: any, data?: GetAttributeValuesCommandOutput) => void): void;
15
- getAttributeValues(args: GetAttributeValuesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAttributeValuesCommandOutput) => void): void;
16
-
17
- getProducts(args: GetProductsCommandInput, options?: __HttpHandlerOptions): Promise<GetProductsCommandOutput>;
18
- getProducts(args: GetProductsCommandInput, cb: (err: any, data?: GetProductsCommandOutput) => void): void;
19
- getProducts(args: GetProductsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetProductsCommandOutput) => void): void;
20
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import {
3
+ DescribeServicesCommandInput,
4
+ DescribeServicesCommandOutput,
5
+ } from "./commands/DescribeServicesCommand";
6
+ import {
7
+ GetAttributeValuesCommandInput,
8
+ GetAttributeValuesCommandOutput,
9
+ } from "./commands/GetAttributeValuesCommand";
10
+ import {
11
+ GetProductsCommandInput,
12
+ GetProductsCommandOutput,
13
+ } from "./commands/GetProductsCommand";
14
+ import { PricingClient } from "./PricingClient";
15
+ export declare class Pricing extends PricingClient {
16
+ describeServices(
17
+ args: DescribeServicesCommandInput,
18
+ options?: __HttpHandlerOptions
19
+ ): Promise<DescribeServicesCommandOutput>;
20
+ describeServices(
21
+ args: DescribeServicesCommandInput,
22
+ cb: (err: any, data?: DescribeServicesCommandOutput) => void
23
+ ): void;
24
+ describeServices(
25
+ args: DescribeServicesCommandInput,
26
+ options: __HttpHandlerOptions,
27
+ cb: (err: any, data?: DescribeServicesCommandOutput) => void
28
+ ): void;
29
+ getAttributeValues(
30
+ args: GetAttributeValuesCommandInput,
31
+ options?: __HttpHandlerOptions
32
+ ): Promise<GetAttributeValuesCommandOutput>;
33
+ getAttributeValues(
34
+ args: GetAttributeValuesCommandInput,
35
+ cb: (err: any, data?: GetAttributeValuesCommandOutput) => void
36
+ ): void;
37
+ getAttributeValues(
38
+ args: GetAttributeValuesCommandInput,
39
+ options: __HttpHandlerOptions,
40
+ cb: (err: any, data?: GetAttributeValuesCommandOutput) => void
41
+ ): void;
42
+ getProducts(
43
+ args: GetProductsCommandInput,
44
+ options?: __HttpHandlerOptions
45
+ ): Promise<GetProductsCommandOutput>;
46
+ getProducts(
47
+ args: GetProductsCommandInput,
48
+ cb: (err: any, data?: GetProductsCommandOutput) => void
49
+ ): void;
50
+ getProducts(
51
+ args: GetProductsCommandInput,
52
+ options: __HttpHandlerOptions,
53
+ cb: (err: any, data?: GetProductsCommandOutput) => void
54
+ ): void;
55
+ }
@@ -1,76 +1,122 @@
1
- import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
- import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
- import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
- import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
- import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
- import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
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
- import { DescribeServicesCommandInput, DescribeServicesCommandOutput } from "./commands/DescribeServicesCommand";
10
- import { GetAttributeValuesCommandInput, GetAttributeValuesCommandOutput } from "./commands/GetAttributeValuesCommand";
11
- import { GetProductsCommandInput, GetProductsCommandOutput } from "./commands/GetProductsCommand";
12
- export declare type ServiceInputTypes = DescribeServicesCommandInput | GetAttributeValuesCommandInput | GetProductsCommandInput;
13
- export declare type ServiceOutputTypes = DescribeServicesCommandOutput | GetAttributeValuesCommandOutput | GetProductsCommandOutput;
14
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
15
-
16
- requestHandler?: __HttpHandler;
17
-
18
- sha256?: __HashConstructor;
19
-
20
- urlParser?: __UrlParser;
21
-
22
- bodyLengthChecker?: __BodyLengthCalculator;
23
-
24
- streamCollector?: __StreamCollector;
25
-
26
- base64Decoder?: __Decoder;
27
-
28
- base64Encoder?: __Encoder;
29
-
30
- utf8Decoder?: __Decoder;
31
-
32
- utf8Encoder?: __Encoder;
33
-
34
- runtime?: string;
35
-
36
- disableHostPrefix?: boolean;
37
-
38
- maxAttempts?: number | __Provider<number>;
39
-
40
- retryMode?: string | __Provider<string>;
41
-
42
- logger?: __Logger;
43
-
44
- useDualstackEndpoint?: boolean | __Provider<boolean>;
45
-
46
- useFipsEndpoint?: boolean | __Provider<boolean>;
47
-
48
- serviceId?: string;
49
-
50
- region?: string | __Provider<string>;
51
-
52
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
53
-
54
- regionInfoProvider?: RegionInfoProvider;
55
-
56
- defaultUserAgentProvider?: Provider<__UserAgent>;
57
-
58
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
59
- }
60
- declare type PricingClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
61
-
62
- export interface PricingClientConfig extends PricingClientConfigType {
63
- }
64
- declare type PricingClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
65
-
66
- export interface PricingClientResolvedConfig extends PricingClientResolvedConfigType {
67
- }
68
-
69
- export declare class PricingClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, PricingClientResolvedConfig> {
70
-
71
- readonly config: PricingClientResolvedConfig;
72
- constructor(configuration: PricingClientConfig);
73
-
74
- destroy(): void;
75
- }
76
- export {};
1
+ import {
2
+ EndpointsInputConfig,
3
+ EndpointsResolvedConfig,
4
+ RegionInputConfig,
5
+ RegionResolvedConfig,
6
+ } from "@aws-sdk/config-resolver";
7
+ import {
8
+ HostHeaderInputConfig,
9
+ HostHeaderResolvedConfig,
10
+ } from "@aws-sdk/middleware-host-header";
11
+ import {
12
+ RetryInputConfig,
13
+ RetryResolvedConfig,
14
+ } from "@aws-sdk/middleware-retry";
15
+ import {
16
+ AwsAuthInputConfig,
17
+ AwsAuthResolvedConfig,
18
+ } from "@aws-sdk/middleware-signing";
19
+ import {
20
+ UserAgentInputConfig,
21
+ UserAgentResolvedConfig,
22
+ } from "@aws-sdk/middleware-user-agent";
23
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
24
+ import {
25
+ Client as __Client,
26
+ DefaultsMode,
27
+ SmithyConfiguration as __SmithyConfiguration,
28
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
29
+ } from "@aws-sdk/smithy-client";
30
+ import {
31
+ BodyLengthCalculator as __BodyLengthCalculator,
32
+ Credentials as __Credentials,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ RegionInfoProvider,
41
+ StreamCollector as __StreamCollector,
42
+ UrlParser as __UrlParser,
43
+ UserAgent as __UserAgent,
44
+ } from "@aws-sdk/types";
45
+ import {
46
+ DescribeServicesCommandInput,
47
+ DescribeServicesCommandOutput,
48
+ } from "./commands/DescribeServicesCommand";
49
+ import {
50
+ GetAttributeValuesCommandInput,
51
+ GetAttributeValuesCommandOutput,
52
+ } from "./commands/GetAttributeValuesCommand";
53
+ import {
54
+ GetProductsCommandInput,
55
+ GetProductsCommandOutput,
56
+ } from "./commands/GetProductsCommand";
57
+ export declare type ServiceInputTypes =
58
+ | DescribeServicesCommandInput
59
+ | GetAttributeValuesCommandInput
60
+ | GetProductsCommandInput;
61
+ export declare type ServiceOutputTypes =
62
+ | DescribeServicesCommandOutput
63
+ | GetAttributeValuesCommandOutput
64
+ | GetProductsCommandOutput;
65
+ export interface ClientDefaults
66
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
67
+ requestHandler?: __HttpHandler;
68
+ sha256?: __HashConstructor;
69
+ urlParser?: __UrlParser;
70
+ bodyLengthChecker?: __BodyLengthCalculator;
71
+ streamCollector?: __StreamCollector;
72
+ base64Decoder?: __Decoder;
73
+ base64Encoder?: __Encoder;
74
+ utf8Decoder?: __Decoder;
75
+ utf8Encoder?: __Encoder;
76
+ runtime?: string;
77
+ disableHostPrefix?: boolean;
78
+ maxAttempts?: number | __Provider<number>;
79
+ retryMode?: string | __Provider<string>;
80
+ logger?: __Logger;
81
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
82
+ useFipsEndpoint?: boolean | __Provider<boolean>;
83
+ serviceId?: string;
84
+ region?: string | __Provider<string>;
85
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
86
+ regionInfoProvider?: RegionInfoProvider;
87
+ defaultUserAgentProvider?: Provider<__UserAgent>;
88
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
89
+ }
90
+ declare type PricingClientConfigType = Partial<
91
+ __SmithyConfiguration<__HttpHandlerOptions>
92
+ > &
93
+ ClientDefaults &
94
+ RegionInputConfig &
95
+ EndpointsInputConfig &
96
+ RetryInputConfig &
97
+ HostHeaderInputConfig &
98
+ AwsAuthInputConfig &
99
+ UserAgentInputConfig;
100
+ export interface PricingClientConfig extends PricingClientConfigType {}
101
+ declare type PricingClientResolvedConfigType =
102
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
103
+ Required<ClientDefaults> &
104
+ RegionResolvedConfig &
105
+ EndpointsResolvedConfig &
106
+ RetryResolvedConfig &
107
+ HostHeaderResolvedConfig &
108
+ AwsAuthResolvedConfig &
109
+ UserAgentResolvedConfig;
110
+ export interface PricingClientResolvedConfig
111
+ extends PricingClientResolvedConfigType {}
112
+ export declare class PricingClient extends __Client<
113
+ __HttpHandlerOptions,
114
+ ServiceInputTypes,
115
+ ServiceOutputTypes,
116
+ PricingClientResolvedConfig
117
+ > {
118
+ readonly config: PricingClientResolvedConfig;
119
+ constructor(configuration: PricingClientConfig);
120
+ destroy(): void;
121
+ }
122
+ export {};
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DescribeServicesRequest, DescribeServicesResponse } from "../models/models_0";
4
- import { PricingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PricingClient";
5
- export interface DescribeServicesCommandInput extends DescribeServicesRequest {
6
- }
7
- export interface DescribeServicesCommandOutput extends DescribeServicesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeServicesCommand extends $Command<DescribeServicesCommandInput, DescribeServicesCommandOutput, PricingClientResolvedConfig> {
11
- readonly input: DescribeServicesCommandInput;
12
- constructor(input: DescribeServicesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PricingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeServicesCommandInput, DescribeServicesCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DescribeServicesRequest,
10
+ DescribeServicesResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ PricingClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../PricingClient";
17
+ export interface DescribeServicesCommandInput extends DescribeServicesRequest {}
18
+ export interface DescribeServicesCommandOutput
19
+ extends DescribeServicesResponse,
20
+ __MetadataBearer {}
21
+ export declare class DescribeServicesCommand extends $Command<
22
+ DescribeServicesCommandInput,
23
+ DescribeServicesCommandOutput,
24
+ PricingClientResolvedConfig
25
+ > {
26
+ readonly input: DescribeServicesCommandInput;
27
+ constructor(input: DescribeServicesCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: PricingClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<DescribeServicesCommandInput, DescribeServicesCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,36 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GetAttributeValuesRequest, GetAttributeValuesResponse } from "../models/models_0";
4
- import { PricingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PricingClient";
5
- export interface GetAttributeValuesCommandInput extends GetAttributeValuesRequest {
6
- }
7
- export interface GetAttributeValuesCommandOutput extends GetAttributeValuesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetAttributeValuesCommand extends $Command<GetAttributeValuesCommandInput, GetAttributeValuesCommandOutput, PricingClientResolvedConfig> {
11
- readonly input: GetAttributeValuesCommandInput;
12
- constructor(input: GetAttributeValuesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PricingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAttributeValuesCommandInput, GetAttributeValuesCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GetAttributeValuesRequest,
10
+ GetAttributeValuesResponse,
11
+ } from "../models/models_0";
12
+ import {
13
+ PricingClientResolvedConfig,
14
+ ServiceInputTypes,
15
+ ServiceOutputTypes,
16
+ } from "../PricingClient";
17
+ export interface GetAttributeValuesCommandInput
18
+ extends GetAttributeValuesRequest {}
19
+ export interface GetAttributeValuesCommandOutput
20
+ extends GetAttributeValuesResponse,
21
+ __MetadataBearer {}
22
+ export declare class GetAttributeValuesCommand extends $Command<
23
+ GetAttributeValuesCommandInput,
24
+ GetAttributeValuesCommandOutput,
25
+ PricingClientResolvedConfig
26
+ > {
27
+ readonly input: GetAttributeValuesCommandInput;
28
+ constructor(input: GetAttributeValuesCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: PricingClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<GetAttributeValuesCommandInput, GetAttributeValuesCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { GetProductsRequest, GetProductsResponse } from "../models/models_0";
4
- import { PricingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PricingClient";
5
- export interface GetProductsCommandInput extends GetProductsRequest {
6
- }
7
- export interface GetProductsCommandOutput extends GetProductsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetProductsCommand extends $Command<GetProductsCommandInput, GetProductsCommandOutput, PricingClientResolvedConfig> {
11
- readonly input: GetProductsCommandInput;
12
- constructor(input: GetProductsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PricingClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetProductsCommandInput, GetProductsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { GetProductsRequest, GetProductsResponse } from "../models/models_0";
9
+ import {
10
+ PricingClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../PricingClient";
14
+ export interface GetProductsCommandInput extends GetProductsRequest {}
15
+ export interface GetProductsCommandOutput
16
+ extends GetProductsResponse,
17
+ __MetadataBearer {}
18
+ export declare class GetProductsCommand extends $Command<
19
+ GetProductsCommandInput,
20
+ GetProductsCommandOutput,
21
+ PricingClientResolvedConfig
22
+ > {
23
+ readonly input: GetProductsCommandInput;
24
+ constructor(input: GetProductsCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: PricingClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<GetProductsCommandInput, GetProductsCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,3 +1,3 @@
1
- export * from "./DescribeServicesCommand";
2
- export * from "./GetAttributeValuesCommand";
3
- export * from "./GetProductsCommand";
1
+ export * from "./DescribeServicesCommand";
2
+ export * from "./GetAttributeValuesCommand";
3
+ export * from "./GetProductsCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,6 +1,6 @@
1
- export * from "./Pricing";
2
- export * from "./PricingClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export { PricingServiceException } from "./models/PricingServiceException";
1
+ export * from "./Pricing";
2
+ export * from "./PricingClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { PricingServiceException } from "./models/PricingServiceException";
@@ -1,6 +1,7 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class PricingServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+ export declare class PricingServiceException extends __ServiceException {
6
+ constructor(options: __ServiceExceptionOptions);
7
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";