@aws-sdk/client-account 3.168.0 → 3.170.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.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-account
9
+
10
+
11
+
12
+
13
+
14
+ # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-account
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.168.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.167.0...v3.168.0) (2022-09-09)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-account
@@ -1,30 +1,94 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
- import { AccountClient } from "./AccountClient";
3
- import { DeleteAlternateContactCommandInput, DeleteAlternateContactCommandOutput } from "./commands/DeleteAlternateContactCommand";
4
- import { GetAlternateContactCommandInput, GetAlternateContactCommandOutput } from "./commands/GetAlternateContactCommand";
5
- import { GetContactInformationCommandInput, GetContactInformationCommandOutput } from "./commands/GetContactInformationCommand";
6
- import { PutAlternateContactCommandInput, PutAlternateContactCommandOutput } from "./commands/PutAlternateContactCommand";
7
- import { PutContactInformationCommandInput, PutContactInformationCommandOutput } from "./commands/PutContactInformationCommand";
8
-
9
- export declare class Account extends AccountClient {
10
-
11
- deleteAlternateContact(args: DeleteAlternateContactCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAlternateContactCommandOutput>;
12
- deleteAlternateContact(args: DeleteAlternateContactCommandInput, cb: (err: any, data?: DeleteAlternateContactCommandOutput) => void): void;
13
- deleteAlternateContact(args: DeleteAlternateContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAlternateContactCommandOutput) => void): void;
14
-
15
- getAlternateContact(args: GetAlternateContactCommandInput, options?: __HttpHandlerOptions): Promise<GetAlternateContactCommandOutput>;
16
- getAlternateContact(args: GetAlternateContactCommandInput, cb: (err: any, data?: GetAlternateContactCommandOutput) => void): void;
17
- getAlternateContact(args: GetAlternateContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAlternateContactCommandOutput) => void): void;
18
-
19
- getContactInformation(args: GetContactInformationCommandInput, options?: __HttpHandlerOptions): Promise<GetContactInformationCommandOutput>;
20
- getContactInformation(args: GetContactInformationCommandInput, cb: (err: any, data?: GetContactInformationCommandOutput) => void): void;
21
- getContactInformation(args: GetContactInformationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetContactInformationCommandOutput) => void): void;
22
-
23
- putAlternateContact(args: PutAlternateContactCommandInput, options?: __HttpHandlerOptions): Promise<PutAlternateContactCommandOutput>;
24
- putAlternateContact(args: PutAlternateContactCommandInput, cb: (err: any, data?: PutAlternateContactCommandOutput) => void): void;
25
- putAlternateContact(args: PutAlternateContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutAlternateContactCommandOutput) => void): void;
26
-
27
- putContactInformation(args: PutContactInformationCommandInput, options?: __HttpHandlerOptions): Promise<PutContactInformationCommandOutput>;
28
- putContactInformation(args: PutContactInformationCommandInput, cb: (err: any, data?: PutContactInformationCommandOutput) => void): void;
29
- putContactInformation(args: PutContactInformationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutContactInformationCommandOutput) => void): void;
30
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { AccountClient } from "./AccountClient";
3
+ import {
4
+ DeleteAlternateContactCommandInput,
5
+ DeleteAlternateContactCommandOutput,
6
+ } from "./commands/DeleteAlternateContactCommand";
7
+ import {
8
+ GetAlternateContactCommandInput,
9
+ GetAlternateContactCommandOutput,
10
+ } from "./commands/GetAlternateContactCommand";
11
+ import {
12
+ GetContactInformationCommandInput,
13
+ GetContactInformationCommandOutput,
14
+ } from "./commands/GetContactInformationCommand";
15
+ import {
16
+ PutAlternateContactCommandInput,
17
+ PutAlternateContactCommandOutput,
18
+ } from "./commands/PutAlternateContactCommand";
19
+ import {
20
+ PutContactInformationCommandInput,
21
+ PutContactInformationCommandOutput,
22
+ } from "./commands/PutContactInformationCommand";
23
+
24
+ export declare class Account extends AccountClient {
25
+ deleteAlternateContact(
26
+ args: DeleteAlternateContactCommandInput,
27
+ options?: __HttpHandlerOptions
28
+ ): Promise<DeleteAlternateContactCommandOutput>;
29
+ deleteAlternateContact(
30
+ args: DeleteAlternateContactCommandInput,
31
+ cb: (err: any, data?: DeleteAlternateContactCommandOutput) => void
32
+ ): void;
33
+ deleteAlternateContact(
34
+ args: DeleteAlternateContactCommandInput,
35
+ options: __HttpHandlerOptions,
36
+ cb: (err: any, data?: DeleteAlternateContactCommandOutput) => void
37
+ ): void;
38
+
39
+ getAlternateContact(
40
+ args: GetAlternateContactCommandInput,
41
+ options?: __HttpHandlerOptions
42
+ ): Promise<GetAlternateContactCommandOutput>;
43
+ getAlternateContact(
44
+ args: GetAlternateContactCommandInput,
45
+ cb: (err: any, data?: GetAlternateContactCommandOutput) => void
46
+ ): void;
47
+ getAlternateContact(
48
+ args: GetAlternateContactCommandInput,
49
+ options: __HttpHandlerOptions,
50
+ cb: (err: any, data?: GetAlternateContactCommandOutput) => void
51
+ ): void;
52
+
53
+ getContactInformation(
54
+ args: GetContactInformationCommandInput,
55
+ options?: __HttpHandlerOptions
56
+ ): Promise<GetContactInformationCommandOutput>;
57
+ getContactInformation(
58
+ args: GetContactInformationCommandInput,
59
+ cb: (err: any, data?: GetContactInformationCommandOutput) => void
60
+ ): void;
61
+ getContactInformation(
62
+ args: GetContactInformationCommandInput,
63
+ options: __HttpHandlerOptions,
64
+ cb: (err: any, data?: GetContactInformationCommandOutput) => void
65
+ ): void;
66
+
67
+ putAlternateContact(
68
+ args: PutAlternateContactCommandInput,
69
+ options?: __HttpHandlerOptions
70
+ ): Promise<PutAlternateContactCommandOutput>;
71
+ putAlternateContact(
72
+ args: PutAlternateContactCommandInput,
73
+ cb: (err: any, data?: PutAlternateContactCommandOutput) => void
74
+ ): void;
75
+ putAlternateContact(
76
+ args: PutAlternateContactCommandInput,
77
+ options: __HttpHandlerOptions,
78
+ cb: (err: any, data?: PutAlternateContactCommandOutput) => void
79
+ ): void;
80
+
81
+ putContactInformation(
82
+ args: PutContactInformationCommandInput,
83
+ options?: __HttpHandlerOptions
84
+ ): Promise<PutContactInformationCommandOutput>;
85
+ putContactInformation(
86
+ args: PutContactInformationCommandInput,
87
+ cb: (err: any, data?: PutContactInformationCommandOutput) => void
88
+ ): void;
89
+ putContactInformation(
90
+ args: PutContactInformationCommandInput,
91
+ options: __HttpHandlerOptions,
92
+ cb: (err: any, data?: PutContactInformationCommandOutput) => void
93
+ ): void;
94
+ }
@@ -1,78 +1,159 @@
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 { DeleteAlternateContactCommandInput, DeleteAlternateContactCommandOutput } from "./commands/DeleteAlternateContactCommand";
10
- import { GetAlternateContactCommandInput, GetAlternateContactCommandOutput } from "./commands/GetAlternateContactCommand";
11
- import { GetContactInformationCommandInput, GetContactInformationCommandOutput } from "./commands/GetContactInformationCommand";
12
- import { PutAlternateContactCommandInput, PutAlternateContactCommandOutput } from "./commands/PutAlternateContactCommand";
13
- import { PutContactInformationCommandInput, PutContactInformationCommandOutput } from "./commands/PutContactInformationCommand";
14
- export declare type ServiceInputTypes = DeleteAlternateContactCommandInput | GetAlternateContactCommandInput | GetContactInformationCommandInput | PutAlternateContactCommandInput | PutContactInformationCommandInput;
15
- export declare type ServiceOutputTypes = DeleteAlternateContactCommandOutput | GetAlternateContactCommandOutput | GetContactInformationCommandOutput | PutAlternateContactCommandOutput | PutContactInformationCommandOutput;
16
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
17
-
18
- requestHandler?: __HttpHandler;
19
-
20
- sha256?: __HashConstructor;
21
-
22
- urlParser?: __UrlParser;
23
-
24
- bodyLengthChecker?: __BodyLengthCalculator;
25
-
26
- streamCollector?: __StreamCollector;
27
-
28
- base64Decoder?: __Decoder;
29
-
30
- base64Encoder?: __Encoder;
31
-
32
- utf8Decoder?: __Decoder;
33
-
34
- utf8Encoder?: __Encoder;
35
-
36
- runtime?: string;
37
-
38
- disableHostPrefix?: boolean;
39
-
40
- maxAttempts?: number | __Provider<number>;
41
-
42
- retryMode?: string | __Provider<string>;
43
-
44
- logger?: __Logger;
45
-
46
- useDualstackEndpoint?: boolean | __Provider<boolean>;
47
-
48
- useFipsEndpoint?: boolean | __Provider<boolean>;
49
-
50
- serviceId?: string;
51
-
52
- region?: string | __Provider<string>;
53
-
54
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
55
-
56
- regionInfoProvider?: RegionInfoProvider;
57
-
58
- defaultUserAgentProvider?: Provider<__UserAgent>;
59
-
60
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
61
- }
62
- declare type AccountClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
63
-
64
- export interface AccountClientConfig extends AccountClientConfigType {
65
- }
66
- declare type AccountClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
67
-
68
- export interface AccountClientResolvedConfig extends AccountClientResolvedConfigType {
69
- }
70
-
71
- export declare class AccountClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, AccountClientResolvedConfig> {
72
-
73
- readonly config: AccountClientResolvedConfig;
74
- constructor(configuration: AccountClientConfig);
75
-
76
- destroy(): void;
77
- }
78
- 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
+ DeleteAlternateContactCommandInput,
47
+ DeleteAlternateContactCommandOutput,
48
+ } from "./commands/DeleteAlternateContactCommand";
49
+ import {
50
+ GetAlternateContactCommandInput,
51
+ GetAlternateContactCommandOutput,
52
+ } from "./commands/GetAlternateContactCommand";
53
+ import {
54
+ GetContactInformationCommandInput,
55
+ GetContactInformationCommandOutput,
56
+ } from "./commands/GetContactInformationCommand";
57
+ import {
58
+ PutAlternateContactCommandInput,
59
+ PutAlternateContactCommandOutput,
60
+ } from "./commands/PutAlternateContactCommand";
61
+ import {
62
+ PutContactInformationCommandInput,
63
+ PutContactInformationCommandOutput,
64
+ } from "./commands/PutContactInformationCommand";
65
+ export declare type ServiceInputTypes =
66
+ | DeleteAlternateContactCommandInput
67
+ | GetAlternateContactCommandInput
68
+ | GetContactInformationCommandInput
69
+ | PutAlternateContactCommandInput
70
+ | PutContactInformationCommandInput;
71
+ export declare type ServiceOutputTypes =
72
+ | DeleteAlternateContactCommandOutput
73
+ | GetAlternateContactCommandOutput
74
+ | GetContactInformationCommandOutput
75
+ | PutAlternateContactCommandOutput
76
+ | PutContactInformationCommandOutput;
77
+ export interface ClientDefaults
78
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
79
+ requestHandler?: __HttpHandler;
80
+
81
+ sha256?: __HashConstructor;
82
+
83
+ urlParser?: __UrlParser;
84
+
85
+ bodyLengthChecker?: __BodyLengthCalculator;
86
+
87
+ streamCollector?: __StreamCollector;
88
+
89
+ base64Decoder?: __Decoder;
90
+
91
+ base64Encoder?: __Encoder;
92
+
93
+ utf8Decoder?: __Decoder;
94
+
95
+ utf8Encoder?: __Encoder;
96
+
97
+ runtime?: string;
98
+
99
+ disableHostPrefix?: boolean;
100
+
101
+ maxAttempts?: number | __Provider<number>;
102
+
103
+ retryMode?: string | __Provider<string>;
104
+
105
+ logger?: __Logger;
106
+
107
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
108
+
109
+ useFipsEndpoint?: boolean | __Provider<boolean>;
110
+
111
+ serviceId?: string;
112
+
113
+ region?: string | __Provider<string>;
114
+
115
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
116
+
117
+ regionInfoProvider?: RegionInfoProvider;
118
+
119
+ defaultUserAgentProvider?: Provider<__UserAgent>;
120
+
121
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
122
+ }
123
+ declare type AccountClientConfigType = Partial<
124
+ __SmithyConfiguration<__HttpHandlerOptions>
125
+ > &
126
+ ClientDefaults &
127
+ RegionInputConfig &
128
+ EndpointsInputConfig &
129
+ RetryInputConfig &
130
+ HostHeaderInputConfig &
131
+ AwsAuthInputConfig &
132
+ UserAgentInputConfig;
133
+
134
+ export interface AccountClientConfig extends AccountClientConfigType {}
135
+ declare type AccountClientResolvedConfigType =
136
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
137
+ Required<ClientDefaults> &
138
+ RegionResolvedConfig &
139
+ EndpointsResolvedConfig &
140
+ RetryResolvedConfig &
141
+ HostHeaderResolvedConfig &
142
+ AwsAuthResolvedConfig &
143
+ UserAgentResolvedConfig;
144
+
145
+ export interface AccountClientResolvedConfig
146
+ extends AccountClientResolvedConfigType {}
147
+
148
+ export declare class AccountClient extends __Client<
149
+ __HttpHandlerOptions,
150
+ ServiceInputTypes,
151
+ ServiceOutputTypes,
152
+ AccountClientResolvedConfig
153
+ > {
154
+ readonly config: AccountClientResolvedConfig;
155
+ constructor(configuration: AccountClientConfig);
156
+
157
+ destroy(): void;
158
+ }
159
+ export {};
@@ -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 { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient";
4
- import { DeleteAlternateContactRequest } from "../models/models_0";
5
- export interface DeleteAlternateContactCommandInput extends DeleteAlternateContactRequest {
6
- }
7
- export interface DeleteAlternateContactCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteAlternateContactCommand extends $Command<DeleteAlternateContactCommandInput, DeleteAlternateContactCommandOutput, AccountClientResolvedConfig> {
11
- readonly input: DeleteAlternateContactCommandInput;
12
- constructor(input: DeleteAlternateContactCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccountClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteAlternateContactCommandInput, DeleteAlternateContactCommandOutput>;
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
+ AccountClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AccountClient";
13
+ import { DeleteAlternateContactRequest } from "../models/models_0";
14
+ export interface DeleteAlternateContactCommandInput
15
+ extends DeleteAlternateContactRequest {}
16
+ export interface DeleteAlternateContactCommandOutput extends __MetadataBearer {}
17
+
18
+ export declare class DeleteAlternateContactCommand extends $Command<
19
+ DeleteAlternateContactCommandInput,
20
+ DeleteAlternateContactCommandOutput,
21
+ AccountClientResolvedConfig
22
+ > {
23
+ readonly input: DeleteAlternateContactCommandInput;
24
+ constructor(input: DeleteAlternateContactCommandInput);
25
+
26
+ resolveMiddleware(
27
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
28
+ configuration: AccountClientResolvedConfig,
29
+ options?: __HttpHandlerOptions
30
+ ): Handler<
31
+ DeleteAlternateContactCommandInput,
32
+ DeleteAlternateContactCommandOutput
33
+ >;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,38 @@
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 { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient";
4
- import { GetAlternateContactRequest, GetAlternateContactResponse } from "../models/models_0";
5
- export interface GetAlternateContactCommandInput extends GetAlternateContactRequest {
6
- }
7
- export interface GetAlternateContactCommandOutput extends GetAlternateContactResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetAlternateContactCommand extends $Command<GetAlternateContactCommandInput, GetAlternateContactCommandOutput, AccountClientResolvedConfig> {
11
- readonly input: GetAlternateContactCommandInput;
12
- constructor(input: GetAlternateContactCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccountClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAlternateContactCommandInput, GetAlternateContactCommandOutput>;
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
+ AccountClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AccountClient";
13
+ import {
14
+ GetAlternateContactRequest,
15
+ GetAlternateContactResponse,
16
+ } from "../models/models_0";
17
+ export interface GetAlternateContactCommandInput
18
+ extends GetAlternateContactRequest {}
19
+ export interface GetAlternateContactCommandOutput
20
+ extends GetAlternateContactResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class GetAlternateContactCommand extends $Command<
24
+ GetAlternateContactCommandInput,
25
+ GetAlternateContactCommandOutput,
26
+ AccountClientResolvedConfig
27
+ > {
28
+ readonly input: GetAlternateContactCommandInput;
29
+ constructor(input: GetAlternateContactCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: AccountClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<GetAlternateContactCommandInput, GetAlternateContactCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,41 @@
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 { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient";
4
- import { GetContactInformationRequest, GetContactInformationResponse } from "../models/models_0";
5
- export interface GetContactInformationCommandInput extends GetContactInformationRequest {
6
- }
7
- export interface GetContactInformationCommandOutput extends GetContactInformationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetContactInformationCommand extends $Command<GetContactInformationCommandInput, GetContactInformationCommandOutput, AccountClientResolvedConfig> {
11
- readonly input: GetContactInformationCommandInput;
12
- constructor(input: GetContactInformationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccountClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetContactInformationCommandInput, GetContactInformationCommandOutput>;
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
+ AccountClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AccountClient";
13
+ import {
14
+ GetContactInformationRequest,
15
+ GetContactInformationResponse,
16
+ } from "../models/models_0";
17
+ export interface GetContactInformationCommandInput
18
+ extends GetContactInformationRequest {}
19
+ export interface GetContactInformationCommandOutput
20
+ extends GetContactInformationResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class GetContactInformationCommand extends $Command<
24
+ GetContactInformationCommandInput,
25
+ GetContactInformationCommandOutput,
26
+ AccountClientResolvedConfig
27
+ > {
28
+ readonly input: GetContactInformationCommandInput;
29
+ constructor(input: GetContactInformationCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: AccountClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ GetContactInformationCommandInput,
37
+ GetContactInformationCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,33 @@
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 { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient";
4
- import { PutAlternateContactRequest } from "../models/models_0";
5
- export interface PutAlternateContactCommandInput extends PutAlternateContactRequest {
6
- }
7
- export interface PutAlternateContactCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class PutAlternateContactCommand extends $Command<PutAlternateContactCommandInput, PutAlternateContactCommandOutput, AccountClientResolvedConfig> {
11
- readonly input: PutAlternateContactCommandInput;
12
- constructor(input: PutAlternateContactCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccountClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutAlternateContactCommandInput, PutAlternateContactCommandOutput>;
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
+ AccountClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AccountClient";
13
+ import { PutAlternateContactRequest } from "../models/models_0";
14
+ export interface PutAlternateContactCommandInput
15
+ extends PutAlternateContactRequest {}
16
+ export interface PutAlternateContactCommandOutput extends __MetadataBearer {}
17
+
18
+ export declare class PutAlternateContactCommand extends $Command<
19
+ PutAlternateContactCommandInput,
20
+ PutAlternateContactCommandOutput,
21
+ AccountClientResolvedConfig
22
+ > {
23
+ readonly input: PutAlternateContactCommandInput;
24
+ constructor(input: PutAlternateContactCommandInput);
25
+
26
+ resolveMiddleware(
27
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
28
+ configuration: AccountClientResolvedConfig,
29
+ options?: __HttpHandlerOptions
30
+ ): Handler<PutAlternateContactCommandInput, PutAlternateContactCommandOutput>;
31
+ private serialize;
32
+ private deserialize;
33
+ }