@aws-sdk/client-cloudfront-keyvaluestore 3.456.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.
Files changed (107) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +253 -0
  3. package/dist-cjs/CloudFrontKeyValueStore.js +23 -0
  4. package/dist-cjs/CloudFrontKeyValueStoreClient.js +43 -0
  5. package/dist-cjs/commands/DeleteKeyCommand.js +51 -0
  6. package/dist-cjs/commands/DescribeKeyValueStoreCommand.js +51 -0
  7. package/dist-cjs/commands/GetKeyCommand.js +52 -0
  8. package/dist-cjs/commands/ListKeysCommand.js +52 -0
  9. package/dist-cjs/commands/PutKeyCommand.js +52 -0
  10. package/dist-cjs/commands/UpdateKeysCommand.js +52 -0
  11. package/dist-cjs/commands/index.js +9 -0
  12. package/dist-cjs/endpoint/EndpointParameters.js +11 -0
  13. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  14. package/dist-cjs/endpoint/ruleset.js +7 -0
  15. package/dist-cjs/extensionConfiguration.js +2 -0
  16. package/dist-cjs/index.js +12 -0
  17. package/dist-cjs/models/CloudFrontKeyValueStoreServiceException.js +12 -0
  18. package/dist-cjs/models/index.js +4 -0
  19. package/dist-cjs/models/models_0.js +119 -0
  20. package/dist-cjs/pagination/Interfaces.js +2 -0
  21. package/dist-cjs/pagination/ListKeysPaginator.js +29 -0
  22. package/dist-cjs/pagination/index.js +5 -0
  23. package/dist-cjs/protocols/Aws_restJson1.js +557 -0
  24. package/dist-cjs/runtimeConfig.browser.js +39 -0
  25. package/dist-cjs/runtimeConfig.js +50 -0
  26. package/dist-cjs/runtimeConfig.native.js +15 -0
  27. package/dist-cjs/runtimeConfig.shared.js +24 -0
  28. package/dist-cjs/runtimeExtensions.js +22 -0
  29. package/dist-es/CloudFrontKeyValueStore.js +19 -0
  30. package/dist-es/CloudFrontKeyValueStoreClient.js +39 -0
  31. package/dist-es/commands/DeleteKeyCommand.js +47 -0
  32. package/dist-es/commands/DescribeKeyValueStoreCommand.js +47 -0
  33. package/dist-es/commands/GetKeyCommand.js +48 -0
  34. package/dist-es/commands/ListKeysCommand.js +48 -0
  35. package/dist-es/commands/PutKeyCommand.js +48 -0
  36. package/dist-es/commands/UpdateKeysCommand.js +48 -0
  37. package/dist-es/commands/index.js +6 -0
  38. package/dist-es/endpoint/EndpointParameters.js +7 -0
  39. package/dist-es/endpoint/endpointResolver.js +8 -0
  40. package/dist-es/endpoint/ruleset.js +4 -0
  41. package/dist-es/extensionConfiguration.js +1 -0
  42. package/dist-es/index.js +7 -0
  43. package/dist-es/models/CloudFrontKeyValueStoreServiceException.js +8 -0
  44. package/dist-es/models/index.js +1 -0
  45. package/dist-es/models/models_0.js +104 -0
  46. package/dist-es/pagination/Interfaces.js +1 -0
  47. package/dist-es/pagination/ListKeysPaginator.js +25 -0
  48. package/dist-es/pagination/index.js +2 -0
  49. package/dist-es/protocols/Aws_restJson1.js +542 -0
  50. package/dist-es/runtimeConfig.browser.js +34 -0
  51. package/dist-es/runtimeConfig.js +45 -0
  52. package/dist-es/runtimeConfig.native.js +11 -0
  53. package/dist-es/runtimeConfig.shared.js +20 -0
  54. package/dist-es/runtimeExtensions.js +18 -0
  55. package/dist-types/CloudFrontKeyValueStore.d.ts +52 -0
  56. package/dist-types/CloudFrontKeyValueStoreClient.d.ts +175 -0
  57. package/dist-types/commands/DeleteKeyCommand.d.ts +95 -0
  58. package/dist-types/commands/DescribeKeyValueStoreCommand.d.ts +90 -0
  59. package/dist-types/commands/GetKeyCommand.d.ts +89 -0
  60. package/dist-types/commands/ListKeysCommand.d.ts +96 -0
  61. package/dist-types/commands/PutKeyCommand.d.ts +96 -0
  62. package/dist-types/commands/UpdateKeysCommand.d.ts +105 -0
  63. package/dist-types/commands/index.d.ts +6 -0
  64. package/dist-types/endpoint/EndpointParameters.d.ts +21 -0
  65. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  66. package/dist-types/endpoint/ruleset.d.ts +2 -0
  67. package/dist-types/extensionConfiguration.d.ts +8 -0
  68. package/dist-types/index.d.ts +15 -0
  69. package/dist-types/models/CloudFrontKeyValueStoreServiceException.d.ts +13 -0
  70. package/dist-types/models/index.d.ts +1 -0
  71. package/dist-types/models/models_0.d.ts +403 -0
  72. package/dist-types/pagination/Interfaces.d.ts +8 -0
  73. package/dist-types/pagination/ListKeysPaginator.d.ts +7 -0
  74. package/dist-types/pagination/index.d.ts +2 -0
  75. package/dist-types/protocols/Aws_restJson1.d.ts +56 -0
  76. package/dist-types/runtimeConfig.browser.d.ts +46 -0
  77. package/dist-types/runtimeConfig.d.ts +46 -0
  78. package/dist-types/runtimeConfig.native.d.ts +45 -0
  79. package/dist-types/runtimeConfig.shared.d.ts +19 -0
  80. package/dist-types/runtimeExtensions.d.ts +17 -0
  81. package/dist-types/ts3.4/CloudFrontKeyValueStore.d.ts +109 -0
  82. package/dist-types/ts3.4/CloudFrontKeyValueStoreClient.d.ts +157 -0
  83. package/dist-types/ts3.4/commands/DeleteKeyCommand.d.ts +35 -0
  84. package/dist-types/ts3.4/commands/DescribeKeyValueStoreCommand.d.ts +42 -0
  85. package/dist-types/ts3.4/commands/GetKeyCommand.d.ts +33 -0
  86. package/dist-types/ts3.4/commands/ListKeysCommand.d.ts +35 -0
  87. package/dist-types/ts3.4/commands/PutKeyCommand.d.ts +33 -0
  88. package/dist-types/ts3.4/commands/UpdateKeysCommand.d.ts +35 -0
  89. package/dist-types/ts3.4/commands/index.d.ts +6 -0
  90. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +32 -0
  91. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  92. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  93. package/dist-types/ts3.4/extensionConfiguration.d.ts +7 -0
  94. package/dist-types/ts3.4/index.d.ts +10 -0
  95. package/dist-types/ts3.4/models/CloudFrontKeyValueStoreServiceException.d.ts +8 -0
  96. package/dist-types/ts3.4/models/index.d.ts +1 -0
  97. package/dist-types/ts3.4/models/models_0.d.ts +139 -0
  98. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  99. package/dist-types/ts3.4/pagination/ListKeysPaginator.d.ts +11 -0
  100. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  101. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +77 -0
  102. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +99 -0
  103. package/dist-types/ts3.4/runtimeConfig.d.ts +99 -0
  104. package/dist-types/ts3.4/runtimeConfig.native.d.ts +90 -0
  105. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
  106. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  107. package/package.json +102 -0
@@ -0,0 +1,33 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ CloudFrontKeyValueStoreClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../CloudFrontKeyValueStoreClient";
14
+ import { PutKeyRequest, PutKeyResponse } from "../models/models_0";
15
+ export { __MetadataBearer, $Command };
16
+ export interface PutKeyCommandInput extends PutKeyRequest {}
17
+ export interface PutKeyCommandOutput extends PutKeyResponse, __MetadataBearer {}
18
+ export declare class PutKeyCommand extends $Command<
19
+ PutKeyCommandInput,
20
+ PutKeyCommandOutput,
21
+ CloudFrontKeyValueStoreClientResolvedConfig
22
+ > {
23
+ readonly input: PutKeyCommandInput;
24
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
25
+ constructor(input: PutKeyCommandInput);
26
+ resolveMiddleware(
27
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
28
+ configuration: CloudFrontKeyValueStoreClientResolvedConfig,
29
+ options?: __HttpHandlerOptions
30
+ ): Handler<PutKeyCommandInput, PutKeyCommandOutput>;
31
+ private serialize;
32
+ private deserialize;
33
+ }
@@ -0,0 +1,35 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ CloudFrontKeyValueStoreClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../CloudFrontKeyValueStoreClient";
14
+ import { UpdateKeysRequest, UpdateKeysResponse } from "../models/models_0";
15
+ export { __MetadataBearer, $Command };
16
+ export interface UpdateKeysCommandInput extends UpdateKeysRequest {}
17
+ export interface UpdateKeysCommandOutput
18
+ extends UpdateKeysResponse,
19
+ __MetadataBearer {}
20
+ export declare class UpdateKeysCommand extends $Command<
21
+ UpdateKeysCommandInput,
22
+ UpdateKeysCommandOutput,
23
+ CloudFrontKeyValueStoreClientResolvedConfig
24
+ > {
25
+ readonly input: UpdateKeysCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: UpdateKeysCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: CloudFrontKeyValueStoreClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<UpdateKeysCommandInput, UpdateKeysCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,6 @@
1
+ export * from "./DeleteKeyCommand";
2
+ export * from "./DescribeKeyValueStoreCommand";
3
+ export * from "./GetKeyCommand";
4
+ export * from "./ListKeysCommand";
5
+ export * from "./PutKeyCommand";
6
+ export * from "./UpdateKeysCommand";
@@ -0,0 +1,32 @@
1
+ import {
2
+ Endpoint,
3
+ EndpointParameters as __EndpointParameters,
4
+ EndpointV2,
5
+ Provider,
6
+ } from "@smithy/types";
7
+ export interface ClientInputEndpointParameters {
8
+ region?: string | Provider<string>;
9
+ useFipsEndpoint?: boolean | Provider<boolean>;
10
+ endpoint?:
11
+ | string
12
+ | Provider<string>
13
+ | Endpoint
14
+ | Provider<Endpoint>
15
+ | EndpointV2
16
+ | Provider<EndpointV2>;
17
+ }
18
+ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
19
+ defaultSigningName: string;
20
+ };
21
+ export declare const resolveClientEndpointParameters: <T>(
22
+ options: T & ClientInputEndpointParameters
23
+ ) => T &
24
+ ClientInputEndpointParameters & {
25
+ defaultSigningName: string;
26
+ };
27
+ export interface EndpointParameters extends __EndpointParameters {
28
+ KvsARN?: string;
29
+ Region?: string;
30
+ UseFIPS?: boolean;
31
+ Endpoint?: string;
32
+ }
@@ -0,0 +1,8 @@
1
+ import { EndpointV2, Logger } from "@smithy/types";
2
+ import { EndpointParameters } from "./EndpointParameters";
3
+ export declare const defaultEndpointResolver: (
4
+ endpointParams: EndpointParameters,
5
+ context?: {
6
+ logger?: Logger;
7
+ }
8
+ ) => EndpointV2;
@@ -0,0 +1,2 @@
1
+ import { RuleSetObject } from "@smithy/types";
2
+ export declare const ruleSet: RuleSetObject;
@@ -0,0 +1,7 @@
1
+ import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
2
+ import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
3
+ import { DefaultExtensionConfiguration } from "@smithy/types";
4
+ export interface CloudFrontKeyValueStoreExtensionConfiguration
5
+ extends HttpHandlerExtensionConfiguration,
6
+ DefaultExtensionConfiguration,
7
+ AwsRegionExtensionConfiguration {}
@@ -0,0 +1,10 @@
1
+ export * from "./CloudFrontKeyValueStoreClient";
2
+ export * from "./CloudFrontKeyValueStore";
3
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
+ export { RuntimeExtension } from "./runtimeExtensions";
5
+ export { CloudFrontKeyValueStoreExtensionConfiguration } from "./extensionConfiguration";
6
+ export * from "./commands";
7
+ export * from "./pagination";
8
+ export * from "./models";
9
+ import "@aws-sdk/util-endpoints";
10
+ export { CloudFrontKeyValueStoreServiceException } from "./models/CloudFrontKeyValueStoreServiceException";
@@ -0,0 +1,8 @@
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@smithy/smithy-client";
5
+ export { __ServiceException, __ServiceExceptionOptions };
6
+ export declare class CloudFrontKeyValueStoreServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -0,0 +1 @@
1
+ export * from "./models_0";
@@ -0,0 +1,139 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { CloudFrontKeyValueStoreServiceException as __BaseException } from "./CloudFrontKeyValueStoreServiceException";
3
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ Message?: string;
7
+ constructor(
8
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
+ );
10
+ }
11
+ export declare class ConflictException extends __BaseException {
12
+ readonly name: "ConflictException";
13
+ readonly $fault: "client";
14
+ Message?: string;
15
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
16
+ }
17
+ export interface DeleteKeyRequest {
18
+ KvsARN: string | undefined;
19
+ Key: string | undefined;
20
+ IfMatch: string | undefined;
21
+ }
22
+ export interface DeleteKeyResponse {
23
+ ItemCount: number | undefined;
24
+ TotalSizeInBytes: number | undefined;
25
+ ETag: string | undefined;
26
+ }
27
+ export declare class InternalServerException extends __BaseException {
28
+ readonly name: "InternalServerException";
29
+ readonly $fault: "server";
30
+ Message?: string;
31
+ constructor(
32
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
33
+ );
34
+ }
35
+ export declare class ResourceNotFoundException extends __BaseException {
36
+ readonly name: "ResourceNotFoundException";
37
+ readonly $fault: "client";
38
+ Message?: string;
39
+ constructor(
40
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
41
+ );
42
+ }
43
+ export declare class ServiceQuotaExceededException extends __BaseException {
44
+ readonly name: "ServiceQuotaExceededException";
45
+ readonly $fault: "client";
46
+ Message?: string;
47
+ constructor(
48
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
49
+ );
50
+ }
51
+ export declare class ValidationException extends __BaseException {
52
+ readonly name: "ValidationException";
53
+ readonly $fault: "client";
54
+ Message?: string;
55
+ constructor(
56
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
57
+ );
58
+ }
59
+ export interface DescribeKeyValueStoreRequest {
60
+ KvsARN: string | undefined;
61
+ }
62
+ export interface DescribeKeyValueStoreResponse {
63
+ ItemCount: number | undefined;
64
+ TotalSizeInBytes: number | undefined;
65
+ KvsARN: string | undefined;
66
+ Created: Date | undefined;
67
+ ETag: string | undefined;
68
+ LastModified?: Date;
69
+ }
70
+ export interface GetKeyRequest {
71
+ KvsARN: string | undefined;
72
+ Key: string | undefined;
73
+ }
74
+ export interface GetKeyResponse {
75
+ Key: string | undefined;
76
+ Value: string | undefined;
77
+ ItemCount: number | undefined;
78
+ TotalSizeInBytes: number | undefined;
79
+ }
80
+ export interface ListKeysRequest {
81
+ KvsARN: string | undefined;
82
+ NextToken?: string;
83
+ MaxResults?: number;
84
+ }
85
+ export interface ListKeysResponseListItem {
86
+ Key: string | undefined;
87
+ Value: string | undefined;
88
+ }
89
+ export interface ListKeysResponse {
90
+ NextToken?: string;
91
+ Items?: ListKeysResponseListItem[];
92
+ }
93
+ export interface PutKeyRequest {
94
+ Key: string | undefined;
95
+ Value: string | undefined;
96
+ KvsARN: string | undefined;
97
+ IfMatch: string | undefined;
98
+ }
99
+ export interface PutKeyResponse {
100
+ ItemCount: number | undefined;
101
+ TotalSizeInBytes: number | undefined;
102
+ ETag: string | undefined;
103
+ }
104
+ export interface DeleteKeyRequestListItem {
105
+ Key: string | undefined;
106
+ }
107
+ export interface PutKeyRequestListItem {
108
+ Key: string | undefined;
109
+ Value: string | undefined;
110
+ }
111
+ export interface UpdateKeysRequest {
112
+ KvsARN: string | undefined;
113
+ IfMatch: string | undefined;
114
+ Puts?: PutKeyRequestListItem[];
115
+ Deletes?: DeleteKeyRequestListItem[];
116
+ }
117
+ export interface UpdateKeysResponse {
118
+ ItemCount: number | undefined;
119
+ TotalSizeInBytes: number | undefined;
120
+ ETag: string | undefined;
121
+ }
122
+ export declare const GetKeyResponseFilterSensitiveLog: (
123
+ obj: GetKeyResponse
124
+ ) => any;
125
+ export declare const ListKeysResponseListItemFilterSensitiveLog: (
126
+ obj: ListKeysResponseListItem
127
+ ) => any;
128
+ export declare const ListKeysResponseFilterSensitiveLog: (
129
+ obj: ListKeysResponse
130
+ ) => any;
131
+ export declare const PutKeyRequestFilterSensitiveLog: (
132
+ obj: PutKeyRequest
133
+ ) => any;
134
+ export declare const PutKeyRequestListItemFilterSensitiveLog: (
135
+ obj: PutKeyRequestListItem
136
+ ) => any;
137
+ export declare const UpdateKeysRequestFilterSensitiveLog: (
138
+ obj: UpdateKeysRequest
139
+ ) => any;
@@ -0,0 +1,6 @@
1
+ import { PaginationConfiguration } from "@smithy/types";
2
+ import { CloudFrontKeyValueStoreClient } from "../CloudFrontKeyValueStoreClient";
3
+ export interface CloudFrontKeyValueStorePaginationConfiguration
4
+ extends PaginationConfiguration {
5
+ client: CloudFrontKeyValueStoreClient;
6
+ }
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListKeysCommandInput,
4
+ ListKeysCommandOutput,
5
+ } from "../commands/ListKeysCommand";
6
+ import { CloudFrontKeyValueStorePaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListKeys(
8
+ config: CloudFrontKeyValueStorePaginationConfiguration,
9
+ input: ListKeysCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListKeysCommandOutput>;
@@ -0,0 +1,2 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListKeysPaginator";
@@ -0,0 +1,77 @@
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@smithy/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@smithy/types";
6
+ import {
7
+ DeleteKeyCommandInput,
8
+ DeleteKeyCommandOutput,
9
+ } from "../commands/DeleteKeyCommand";
10
+ import {
11
+ DescribeKeyValueStoreCommandInput,
12
+ DescribeKeyValueStoreCommandOutput,
13
+ } from "../commands/DescribeKeyValueStoreCommand";
14
+ import {
15
+ GetKeyCommandInput,
16
+ GetKeyCommandOutput,
17
+ } from "../commands/GetKeyCommand";
18
+ import {
19
+ ListKeysCommandInput,
20
+ ListKeysCommandOutput,
21
+ } from "../commands/ListKeysCommand";
22
+ import {
23
+ PutKeyCommandInput,
24
+ PutKeyCommandOutput,
25
+ } from "../commands/PutKeyCommand";
26
+ import {
27
+ UpdateKeysCommandInput,
28
+ UpdateKeysCommandOutput,
29
+ } from "../commands/UpdateKeysCommand";
30
+ export declare const se_DeleteKeyCommand: (
31
+ input: DeleteKeyCommandInput,
32
+ context: __SerdeContext
33
+ ) => Promise<__HttpRequest>;
34
+ export declare const se_DescribeKeyValueStoreCommand: (
35
+ input: DescribeKeyValueStoreCommandInput,
36
+ context: __SerdeContext
37
+ ) => Promise<__HttpRequest>;
38
+ export declare const se_GetKeyCommand: (
39
+ input: GetKeyCommandInput,
40
+ context: __SerdeContext
41
+ ) => Promise<__HttpRequest>;
42
+ export declare const se_ListKeysCommand: (
43
+ input: ListKeysCommandInput,
44
+ context: __SerdeContext
45
+ ) => Promise<__HttpRequest>;
46
+ export declare const se_PutKeyCommand: (
47
+ input: PutKeyCommandInput,
48
+ context: __SerdeContext
49
+ ) => Promise<__HttpRequest>;
50
+ export declare const se_UpdateKeysCommand: (
51
+ input: UpdateKeysCommandInput,
52
+ context: __SerdeContext
53
+ ) => Promise<__HttpRequest>;
54
+ export declare const de_DeleteKeyCommand: (
55
+ output: __HttpResponse,
56
+ context: __SerdeContext
57
+ ) => Promise<DeleteKeyCommandOutput>;
58
+ export declare const de_DescribeKeyValueStoreCommand: (
59
+ output: __HttpResponse,
60
+ context: __SerdeContext
61
+ ) => Promise<DescribeKeyValueStoreCommandOutput>;
62
+ export declare const de_GetKeyCommand: (
63
+ output: __HttpResponse,
64
+ context: __SerdeContext
65
+ ) => Promise<GetKeyCommandOutput>;
66
+ export declare const de_ListKeysCommand: (
67
+ output: __HttpResponse,
68
+ context: __SerdeContext
69
+ ) => Promise<ListKeysCommandOutput>;
70
+ export declare const de_PutKeyCommand: (
71
+ output: __HttpResponse,
72
+ context: __SerdeContext
73
+ ) => Promise<PutKeyCommandOutput>;
74
+ export declare const de_UpdateKeysCommand: (
75
+ output: __HttpResponse,
76
+ context: __SerdeContext
77
+ ) => Promise<UpdateKeysCommandOutput>;
@@ -0,0 +1,99 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { CloudFrontKeyValueStoreClientConfig } from "./CloudFrontKeyValueStoreClient";
3
+ export declare const getRuntimeConfig: (
4
+ config: CloudFrontKeyValueStoreClientConfig
5
+ ) => {
6
+ runtime: string;
7
+ defaultsMode: import("@smithy/types").Provider<
8
+ import("@smithy/smithy-client").ResolvedDefaultsMode
9
+ >;
10
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
11
+ credentialDefaultProvider: (
12
+ input: any
13
+ ) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
14
+ defaultUserAgentProvider: import("@smithy/types").Provider<
15
+ import("@smithy/types").UserAgent
16
+ >;
17
+ maxAttempts: number | import("@smithy/types").Provider<number>;
18
+ region: string | import("@smithy/types").Provider<any>;
19
+ requestHandler:
20
+ | (import("@smithy/types").RequestHandler<
21
+ any,
22
+ any,
23
+ import("@smithy/types").HttpHandlerOptions
24
+ > &
25
+ import("@smithy/types").RequestHandler<
26
+ import("@smithy/protocol-http").HttpRequest,
27
+ import("@smithy/protocol-http").HttpResponse,
28
+ import("@smithy/types").HttpHandlerOptions
29
+ > & {
30
+ updateHttpClientConfig(key: never, value: never): void;
31
+ httpHandlerConfigs(): {};
32
+ })
33
+ | RequestHandler;
34
+ retryMode: string | import("@smithy/types").Provider<string>;
35
+ sha256: import("@smithy/types").HashConstructor;
36
+ streamCollector: import("@smithy/types").StreamCollector;
37
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
38
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
39
+ apiVersion: string;
40
+ urlParser: import("@smithy/types").UrlParser;
41
+ base64Decoder: import("@smithy/types").Decoder;
42
+ base64Encoder: import("@smithy/types").Encoder;
43
+ utf8Decoder: import("@smithy/types").Decoder;
44
+ utf8Encoder: import("@smithy/types").Encoder;
45
+ disableHostPrefix: boolean;
46
+ serviceId: string;
47
+ logger: import("@smithy/types").Logger;
48
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
49
+ endpoint?:
50
+ | ((
51
+ | string
52
+ | import("@smithy/types").Endpoint
53
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
54
+ | import("@smithy/types").EndpointV2
55
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
56
+ ) &
57
+ (
58
+ | string
59
+ | import("@smithy/types").Provider<string>
60
+ | import("@smithy/types").Endpoint
61
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
62
+ | import("@smithy/types").EndpointV2
63
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
64
+ ))
65
+ | undefined;
66
+ endpointProvider: (
67
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
68
+ context?: {
69
+ logger?: import("@smithy/types").Logger | undefined;
70
+ }
71
+ ) => import("@smithy/types").EndpointV2;
72
+ tls?: boolean | undefined;
73
+ retryStrategy?:
74
+ | import("@smithy/types").RetryStrategy
75
+ | import("@smithy/types").RetryStrategyV2
76
+ | undefined;
77
+ credentials?:
78
+ | import("@smithy/types").AwsCredentialIdentity
79
+ | import("@smithy/types").Provider<
80
+ import("@smithy/types").AwsCredentialIdentity
81
+ >
82
+ | undefined;
83
+ signer?:
84
+ | import("@smithy/types").RequestSigner
85
+ | ((
86
+ authScheme?: import("@smithy/types").AuthScheme | undefined
87
+ ) => Promise<import("@smithy/types").RequestSigner>)
88
+ | undefined;
89
+ signingEscapePath?: boolean | undefined;
90
+ systemClockOffset?: number | undefined;
91
+ signingRegion?: string | undefined;
92
+ signerConstructor?:
93
+ | (new (
94
+ options: import("@smithy/signature-v4").SignatureV4Init &
95
+ import("@smithy/signature-v4").SignatureV4CryptoInit
96
+ ) => import("@smithy/types").RequestSigner)
97
+ | undefined;
98
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
99
+ };
@@ -0,0 +1,99 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { CloudFrontKeyValueStoreClientConfig } from "./CloudFrontKeyValueStoreClient";
3
+ export declare const getRuntimeConfig: (
4
+ config: CloudFrontKeyValueStoreClientConfig
5
+ ) => {
6
+ runtime: string;
7
+ defaultsMode: import("@smithy/types").Provider<
8
+ import("@smithy/smithy-client").ResolvedDefaultsMode
9
+ >;
10
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
11
+ credentialDefaultProvider: (
12
+ input: any
13
+ ) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
14
+ defaultUserAgentProvider: import("@smithy/types").Provider<
15
+ import("@smithy/types").UserAgent
16
+ >;
17
+ maxAttempts: number | import("@smithy/types").Provider<number>;
18
+ region: string | import("@smithy/types").Provider<string>;
19
+ requestHandler:
20
+ | (import("@smithy/types").RequestHandler<
21
+ any,
22
+ any,
23
+ import("@smithy/types").HttpHandlerOptions
24
+ > &
25
+ import("@smithy/types").RequestHandler<
26
+ import("@smithy/protocol-http").HttpRequest,
27
+ import("@smithy/protocol-http").HttpResponse,
28
+ import("@smithy/types").HttpHandlerOptions
29
+ > & {
30
+ updateHttpClientConfig(key: never, value: never): void;
31
+ httpHandlerConfigs(): {};
32
+ })
33
+ | RequestHandler;
34
+ retryMode: string | import("@smithy/types").Provider<string>;
35
+ sha256: import("@smithy/types").HashConstructor;
36
+ streamCollector: import("@smithy/types").StreamCollector;
37
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
38
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
39
+ apiVersion: string;
40
+ urlParser: import("@smithy/types").UrlParser;
41
+ base64Decoder: import("@smithy/types").Decoder;
42
+ base64Encoder: import("@smithy/types").Encoder;
43
+ utf8Decoder: import("@smithy/types").Decoder;
44
+ utf8Encoder: import("@smithy/types").Encoder;
45
+ disableHostPrefix: boolean;
46
+ serviceId: string;
47
+ logger: import("@smithy/types").Logger;
48
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
49
+ endpoint?:
50
+ | ((
51
+ | string
52
+ | import("@smithy/types").Endpoint
53
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
54
+ | import("@smithy/types").EndpointV2
55
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
56
+ ) &
57
+ (
58
+ | string
59
+ | import("@smithy/types").Provider<string>
60
+ | import("@smithy/types").Endpoint
61
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
62
+ | import("@smithy/types").EndpointV2
63
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
64
+ ))
65
+ | undefined;
66
+ endpointProvider: (
67
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
68
+ context?: {
69
+ logger?: import("@smithy/types").Logger | undefined;
70
+ }
71
+ ) => import("@smithy/types").EndpointV2;
72
+ tls?: boolean | undefined;
73
+ retryStrategy?:
74
+ | import("@smithy/types").RetryStrategy
75
+ | import("@smithy/types").RetryStrategyV2
76
+ | undefined;
77
+ credentials?:
78
+ | import("@smithy/types").AwsCredentialIdentity
79
+ | import("@smithy/types").Provider<
80
+ import("@smithy/types").AwsCredentialIdentity
81
+ >
82
+ | undefined;
83
+ signer?:
84
+ | import("@smithy/types").RequestSigner
85
+ | ((
86
+ authScheme?: import("@smithy/types").AuthScheme | undefined
87
+ ) => Promise<import("@smithy/types").RequestSigner>)
88
+ | undefined;
89
+ signingEscapePath?: boolean | undefined;
90
+ systemClockOffset?: number | undefined;
91
+ signingRegion?: string | undefined;
92
+ signerConstructor?:
93
+ | (new (
94
+ options: import("@smithy/signature-v4").SignatureV4Init &
95
+ import("@smithy/signature-v4").SignatureV4CryptoInit
96
+ ) => import("@smithy/types").RequestSigner)
97
+ | undefined;
98
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
99
+ };