@aws-sdk/client-account 3.169.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 +8 -0
- package/dist-types/ts3.4/Account.d.ts +94 -30
- package/dist-types/ts3.4/AccountClient.d.ts +159 -78
- package/dist-types/ts3.4/commands/DeleteAlternateContactCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/GetAlternateContactCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetContactInformationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/PutAlternateContactCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/PutContactInformationCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/index.d.ts +5 -5
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/AccountServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +167 -148
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +65 -17
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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
|
+
|
|
6
14
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
15
|
|
|
8
16
|
**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 {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
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 {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
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
|
-
|
|
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
|
-
export declare
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
}
|