@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 +16 -0
- package/dist-types/ts3.4/Pricing.d.ts +55 -20
- package/dist-types/ts3.4/PricingClient.d.ts +122 -76
- package/dist-types/ts3.4/commands/DescribeServicesCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetAttributeValuesCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/GetProductsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/index.d.ts +3 -3
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/PricingServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +114 -138
- package/dist-types/ts3.4/pagination/DescribeServicesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/GetAttributeValuesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/GetProductsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/index.d.ts +4 -4
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +41 -11
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,138 +1,114 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
export interface
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
FormatVersion?: string;
|
|
116
|
-
|
|
117
|
-
PriceList?: (__LazyJsonString | string)[];
|
|
118
|
-
|
|
119
|
-
NextToken?: string;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
export declare const AttributeValueFilterSensitiveLog: (obj: AttributeValue) => any;
|
|
123
|
-
|
|
124
|
-
export declare const DescribeServicesRequestFilterSensitiveLog: (obj: DescribeServicesRequest) => any;
|
|
125
|
-
|
|
126
|
-
export declare const ServiceFilterSensitiveLog: (obj: Service) => any;
|
|
127
|
-
|
|
128
|
-
export declare const DescribeServicesResponseFilterSensitiveLog: (obj: DescribeServicesResponse) => any;
|
|
129
|
-
|
|
130
|
-
export declare const GetAttributeValuesRequestFilterSensitiveLog: (obj: GetAttributeValuesRequest) => any;
|
|
131
|
-
|
|
132
|
-
export declare const GetAttributeValuesResponseFilterSensitiveLog: (obj: GetAttributeValuesResponse) => any;
|
|
133
|
-
|
|
134
|
-
export declare const FilterFilterSensitiveLog: (obj: Filter) => any;
|
|
135
|
-
|
|
136
|
-
export declare const GetProductsRequestFilterSensitiveLog: (obj: GetProductsRequest) => any;
|
|
137
|
-
|
|
138
|
-
export declare const GetProductsResponseFilterSensitiveLog: (obj: GetProductsResponse) => any;
|
|
1
|
+
import {
|
|
2
|
+
ExceptionOptionType as __ExceptionOptionType,
|
|
3
|
+
LazyJsonString as __LazyJsonString,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
import { PricingServiceException as __BaseException } from "./PricingServiceException";
|
|
6
|
+
export interface AttributeValue {
|
|
7
|
+
Value?: string;
|
|
8
|
+
}
|
|
9
|
+
export interface DescribeServicesRequest {
|
|
10
|
+
ServiceCode?: string;
|
|
11
|
+
FormatVersion?: string;
|
|
12
|
+
NextToken?: string;
|
|
13
|
+
MaxResults?: number;
|
|
14
|
+
}
|
|
15
|
+
export interface Service {
|
|
16
|
+
ServiceCode: string | undefined;
|
|
17
|
+
AttributeNames?: string[];
|
|
18
|
+
}
|
|
19
|
+
export interface DescribeServicesResponse {
|
|
20
|
+
Services?: Service[];
|
|
21
|
+
FormatVersion?: string;
|
|
22
|
+
NextToken?: string;
|
|
23
|
+
}
|
|
24
|
+
export declare class ExpiredNextTokenException extends __BaseException {
|
|
25
|
+
readonly name: "ExpiredNextTokenException";
|
|
26
|
+
readonly $fault: "client";
|
|
27
|
+
Message?: string;
|
|
28
|
+
constructor(
|
|
29
|
+
opts: __ExceptionOptionType<ExpiredNextTokenException, __BaseException>
|
|
30
|
+
);
|
|
31
|
+
}
|
|
32
|
+
export declare class InternalErrorException extends __BaseException {
|
|
33
|
+
readonly name: "InternalErrorException";
|
|
34
|
+
readonly $fault: "server";
|
|
35
|
+
Message?: string;
|
|
36
|
+
constructor(
|
|
37
|
+
opts: __ExceptionOptionType<InternalErrorException, __BaseException>
|
|
38
|
+
);
|
|
39
|
+
}
|
|
40
|
+
export declare class InvalidNextTokenException extends __BaseException {
|
|
41
|
+
readonly name: "InvalidNextTokenException";
|
|
42
|
+
readonly $fault: "client";
|
|
43
|
+
Message?: string;
|
|
44
|
+
constructor(
|
|
45
|
+
opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
|
|
46
|
+
);
|
|
47
|
+
}
|
|
48
|
+
export declare class InvalidParameterException extends __BaseException {
|
|
49
|
+
readonly name: "InvalidParameterException";
|
|
50
|
+
readonly $fault: "client";
|
|
51
|
+
Message?: string;
|
|
52
|
+
constructor(
|
|
53
|
+
opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
|
|
54
|
+
);
|
|
55
|
+
}
|
|
56
|
+
export declare class NotFoundException extends __BaseException {
|
|
57
|
+
readonly name: "NotFoundException";
|
|
58
|
+
readonly $fault: "client";
|
|
59
|
+
Message?: string;
|
|
60
|
+
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
61
|
+
}
|
|
62
|
+
export interface GetAttributeValuesRequest {
|
|
63
|
+
ServiceCode: string | undefined;
|
|
64
|
+
AttributeName: string | undefined;
|
|
65
|
+
NextToken?: string;
|
|
66
|
+
MaxResults?: number;
|
|
67
|
+
}
|
|
68
|
+
export interface GetAttributeValuesResponse {
|
|
69
|
+
AttributeValues?: AttributeValue[];
|
|
70
|
+
NextToken?: string;
|
|
71
|
+
}
|
|
72
|
+
export declare enum FilterType {
|
|
73
|
+
TERM_MATCH = "TERM_MATCH",
|
|
74
|
+
}
|
|
75
|
+
export interface Filter {
|
|
76
|
+
Type: FilterType | string | undefined;
|
|
77
|
+
Field: string | undefined;
|
|
78
|
+
Value: string | undefined;
|
|
79
|
+
}
|
|
80
|
+
export interface GetProductsRequest {
|
|
81
|
+
ServiceCode: string | undefined;
|
|
82
|
+
Filters?: Filter[];
|
|
83
|
+
FormatVersion?: string;
|
|
84
|
+
NextToken?: string;
|
|
85
|
+
MaxResults?: number;
|
|
86
|
+
}
|
|
87
|
+
export interface GetProductsResponse {
|
|
88
|
+
FormatVersion?: string;
|
|
89
|
+
PriceList?: (__LazyJsonString | string)[];
|
|
90
|
+
NextToken?: string;
|
|
91
|
+
}
|
|
92
|
+
export declare const AttributeValueFilterSensitiveLog: (
|
|
93
|
+
obj: AttributeValue
|
|
94
|
+
) => any;
|
|
95
|
+
export declare const DescribeServicesRequestFilterSensitiveLog: (
|
|
96
|
+
obj: DescribeServicesRequest
|
|
97
|
+
) => any;
|
|
98
|
+
export declare const ServiceFilterSensitiveLog: (obj: Service) => any;
|
|
99
|
+
export declare const DescribeServicesResponseFilterSensitiveLog: (
|
|
100
|
+
obj: DescribeServicesResponse
|
|
101
|
+
) => any;
|
|
102
|
+
export declare const GetAttributeValuesRequestFilterSensitiveLog: (
|
|
103
|
+
obj: GetAttributeValuesRequest
|
|
104
|
+
) => any;
|
|
105
|
+
export declare const GetAttributeValuesResponseFilterSensitiveLog: (
|
|
106
|
+
obj: GetAttributeValuesResponse
|
|
107
|
+
) => any;
|
|
108
|
+
export declare const FilterFilterSensitiveLog: (obj: Filter) => any;
|
|
109
|
+
export declare const GetProductsRequestFilterSensitiveLog: (
|
|
110
|
+
obj: GetProductsRequest
|
|
111
|
+
) => any;
|
|
112
|
+
export declare const GetProductsResponseFilterSensitiveLog: (
|
|
113
|
+
obj: GetProductsResponse
|
|
114
|
+
) => any;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeServicesCommandInput,
|
|
4
|
+
DescribeServicesCommandOutput,
|
|
5
|
+
} from "../commands/DescribeServicesCommand";
|
|
6
|
+
import { PricingPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateDescribeServices(
|
|
8
|
+
config: PricingPaginationConfiguration,
|
|
9
|
+
input: DescribeServicesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<DescribeServicesCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
GetAttributeValuesCommandInput,
|
|
4
|
+
GetAttributeValuesCommandOutput,
|
|
5
|
+
} from "../commands/GetAttributeValuesCommand";
|
|
6
|
+
import { PricingPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateGetAttributeValues(
|
|
8
|
+
config: PricingPaginationConfiguration,
|
|
9
|
+
input: GetAttributeValuesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<GetAttributeValuesCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
GetProductsCommandInput,
|
|
4
|
+
GetProductsCommandOutput,
|
|
5
|
+
} from "../commands/GetProductsCommand";
|
|
6
|
+
import { PricingPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateGetProducts(
|
|
8
|
+
config: PricingPaginationConfiguration,
|
|
9
|
+
input: GetProductsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<GetProductsCommandOutput>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { Pricing } from "../Pricing";
|
|
3
|
-
import { PricingClient } from "../PricingClient";
|
|
4
|
-
export interface PricingPaginationConfiguration
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { Pricing } from "../Pricing";
|
|
3
|
+
import { PricingClient } from "../PricingClient";
|
|
4
|
+
export interface PricingPaginationConfiguration
|
|
5
|
+
extends PaginationConfiguration {
|
|
6
|
+
client: Pricing | PricingClient;
|
|
7
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from "./DescribeServicesPaginator";
|
|
2
|
-
export * from "./GetAttributeValuesPaginator";
|
|
3
|
-
export * from "./GetProductsPaginator";
|
|
4
|
-
export * from "./Interfaces";
|
|
1
|
+
export * from "./DescribeServicesPaginator";
|
|
2
|
+
export * from "./GetAttributeValuesPaginator";
|
|
3
|
+
export * from "./GetProductsPaginator";
|
|
4
|
+
export * from "./Interfaces";
|
|
@@ -1,11 +1,41 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@aws-sdk/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
6
|
+
import {
|
|
7
|
+
DescribeServicesCommandInput,
|
|
8
|
+
DescribeServicesCommandOutput,
|
|
9
|
+
} from "../commands/DescribeServicesCommand";
|
|
10
|
+
import {
|
|
11
|
+
GetAttributeValuesCommandInput,
|
|
12
|
+
GetAttributeValuesCommandOutput,
|
|
13
|
+
} from "../commands/GetAttributeValuesCommand";
|
|
14
|
+
import {
|
|
15
|
+
GetProductsCommandInput,
|
|
16
|
+
GetProductsCommandOutput,
|
|
17
|
+
} from "../commands/GetProductsCommand";
|
|
18
|
+
export declare const serializeAws_json1_1DescribeServicesCommand: (
|
|
19
|
+
input: DescribeServicesCommandInput,
|
|
20
|
+
context: __SerdeContext
|
|
21
|
+
) => Promise<__HttpRequest>;
|
|
22
|
+
export declare const serializeAws_json1_1GetAttributeValuesCommand: (
|
|
23
|
+
input: GetAttributeValuesCommandInput,
|
|
24
|
+
context: __SerdeContext
|
|
25
|
+
) => Promise<__HttpRequest>;
|
|
26
|
+
export declare const serializeAws_json1_1GetProductsCommand: (
|
|
27
|
+
input: GetProductsCommandInput,
|
|
28
|
+
context: __SerdeContext
|
|
29
|
+
) => Promise<__HttpRequest>;
|
|
30
|
+
export declare const deserializeAws_json1_1DescribeServicesCommand: (
|
|
31
|
+
output: __HttpResponse,
|
|
32
|
+
context: __SerdeContext
|
|
33
|
+
) => Promise<DescribeServicesCommandOutput>;
|
|
34
|
+
export declare const deserializeAws_json1_1GetAttributeValuesCommand: (
|
|
35
|
+
output: __HttpResponse,
|
|
36
|
+
context: __SerdeContext
|
|
37
|
+
) => Promise<GetAttributeValuesCommandOutput>;
|
|
38
|
+
export declare const deserializeAws_json1_1GetProductsCommand: (
|
|
39
|
+
output: __HttpResponse,
|
|
40
|
+
context: __SerdeContext
|
|
41
|
+
) => Promise<GetProductsCommandOutput>;
|
|
@@ -1,38 +1,65 @@
|
|
|
1
|
-
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
-
import { PricingClientConfig } from "./PricingClient";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { PricingClientConfig } from "./PricingClient";
|
|
3
|
+
export declare const getRuntimeConfig: (config: PricingClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
6
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
7
|
+
>;
|
|
8
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
11
|
+
credentialDefaultProvider: (
|
|
12
|
+
input: any
|
|
13
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
14
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
15
|
+
import("@aws-sdk/types").UserAgent
|
|
16
|
+
>;
|
|
17
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
18
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
19
|
+
requestHandler:
|
|
20
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
21
|
+
any,
|
|
22
|
+
any,
|
|
23
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
24
|
+
> &
|
|
25
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
26
|
+
| RequestHandler;
|
|
27
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
28
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
29
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
30
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
31
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
32
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
33
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
34
|
+
apiVersion: string;
|
|
35
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
36
|
+
disableHostPrefix: boolean;
|
|
37
|
+
logger: import("@aws-sdk/types").Logger;
|
|
38
|
+
serviceId: string;
|
|
39
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
40
|
+
endpoint?:
|
|
41
|
+
| string
|
|
42
|
+
| import("@aws-sdk/types").Endpoint
|
|
43
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
44
|
+
| undefined;
|
|
45
|
+
tls?: boolean | undefined;
|
|
46
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
47
|
+
credentials?:
|
|
48
|
+
| import("@aws-sdk/types").Credentials
|
|
49
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
50
|
+
| undefined;
|
|
51
|
+
signer?:
|
|
52
|
+
| import("@aws-sdk/types").RequestSigner
|
|
53
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
54
|
+
| undefined;
|
|
55
|
+
signingEscapePath?: boolean | undefined;
|
|
56
|
+
systemClockOffset?: number | undefined;
|
|
57
|
+
signingRegion?: string | undefined;
|
|
58
|
+
signerConstructor?:
|
|
59
|
+
| (new (
|
|
60
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
61
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
62
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
63
|
+
| undefined;
|
|
64
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
65
|
+
};
|
|
@@ -1,38 +1,65 @@
|
|
|
1
|
-
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
-
import { PricingClientConfig } from "./PricingClient";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { PricingClientConfig } from "./PricingClient";
|
|
3
|
+
export declare const getRuntimeConfig: (config: PricingClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
6
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
7
|
+
>;
|
|
8
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
11
|
+
credentialDefaultProvider: (
|
|
12
|
+
input: any
|
|
13
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
14
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
15
|
+
import("@aws-sdk/types").UserAgent
|
|
16
|
+
>;
|
|
17
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
18
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
19
|
+
requestHandler:
|
|
20
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
21
|
+
any,
|
|
22
|
+
any,
|
|
23
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
24
|
+
> &
|
|
25
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
26
|
+
| RequestHandler;
|
|
27
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
28
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
29
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
30
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
31
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
32
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
33
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
34
|
+
apiVersion: string;
|
|
35
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
36
|
+
disableHostPrefix: boolean;
|
|
37
|
+
logger: import("@aws-sdk/types").Logger;
|
|
38
|
+
serviceId: string;
|
|
39
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
40
|
+
endpoint?:
|
|
41
|
+
| string
|
|
42
|
+
| import("@aws-sdk/types").Endpoint
|
|
43
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
44
|
+
| undefined;
|
|
45
|
+
tls?: boolean | undefined;
|
|
46
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
47
|
+
credentials?:
|
|
48
|
+
| import("@aws-sdk/types").Credentials
|
|
49
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
50
|
+
| undefined;
|
|
51
|
+
signer?:
|
|
52
|
+
| import("@aws-sdk/types").RequestSigner
|
|
53
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
54
|
+
| undefined;
|
|
55
|
+
signingEscapePath?: boolean | undefined;
|
|
56
|
+
systemClockOffset?: number | undefined;
|
|
57
|
+
signingRegion?: string | undefined;
|
|
58
|
+
signerConstructor?:
|
|
59
|
+
| (new (
|
|
60
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
61
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
62
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
63
|
+
| undefined;
|
|
64
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
65
|
+
};
|