@aws-sdk/client-account 3.296.0 → 3.298.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/dist-cjs/commands/DeleteAlternateContactCommand.js +2 -3
- package/dist-cjs/commands/DisableRegionCommand.js +2 -3
- package/dist-cjs/commands/EnableRegionCommand.js +2 -3
- package/dist-cjs/commands/GetAlternateContactCommand.js +1 -1
- package/dist-cjs/commands/GetContactInformationCommand.js +1 -1
- package/dist-cjs/commands/GetRegionOptStatusCommand.js +2 -3
- package/dist-cjs/commands/ListRegionsCommand.js +2 -3
- package/dist-cjs/commands/PutAlternateContactCommand.js +1 -1
- package/dist-cjs/commands/PutContactInformationCommand.js +1 -1
- package/dist-cjs/models/models_0.js +1 -41
- package/dist-es/commands/DeleteAlternateContactCommand.js +2 -3
- package/dist-es/commands/DisableRegionCommand.js +2 -3
- package/dist-es/commands/EnableRegionCommand.js +2 -3
- package/dist-es/commands/GetAlternateContactCommand.js +2 -2
- package/dist-es/commands/GetContactInformationCommand.js +2 -2
- package/dist-es/commands/GetRegionOptStatusCommand.js +2 -3
- package/dist-es/commands/ListRegionsCommand.js +2 -3
- package/dist-es/commands/PutAlternateContactCommand.js +1 -1
- package/dist-es/commands/PutContactInformationCommand.js +1 -1
- package/dist-es/models/models_0.js +0 -30
- package/dist-types/Account.d.ts +10 -0
- package/dist-types/AccountClient.d.ts +24 -4
- package/dist-types/commands/DeleteAlternateContactCommand.d.ts +16 -0
- package/dist-types/commands/DisableRegionCommand.d.ts +16 -0
- package/dist-types/commands/EnableRegionCommand.d.ts +16 -0
- package/dist-types/commands/GetAlternateContactCommand.d.ts +16 -0
- package/dist-types/commands/GetContactInformationCommand.d.ts +16 -0
- package/dist-types/commands/GetRegionOptStatusCommand.d.ts +16 -0
- package/dist-types/commands/ListRegionsCommand.d.ts +16 -0
- package/dist-types/commands/PutAlternateContactCommand.d.ts +16 -0
- package/dist-types/commands/PutContactInformationCommand.d.ts +16 -0
- package/dist-types/models/AccountServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +58 -40
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListRegionsPaginator.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -28
- package/package.json +4 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient";
|
|
5
5
|
import { DisableRegionRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DisableRegionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DisableRegionCommandInput extends DisableRegionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DisableRegionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DisableRegionCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Disables (opts-out) a particular Region for an account.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DisableRegionCommandOutput extends __MetadataBearer {
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DisableRegionCommandInput - {@link DisableRegionCommandInput}
|
|
34
|
+
* @returns {@link DisableRegionCommandOutput}
|
|
28
35
|
* @see {@link DisableRegionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DisableRegionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AccountClientResolvedConfig | config} for AccountClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface DisableRegionCommandOutput extends __MetadataBearer {
|
|
|
54
61
|
export declare class DisableRegionCommand extends $Command<DisableRegionCommandInput, DisableRegionCommandOutput, AccountClientResolvedConfig> {
|
|
55
62
|
readonly input: DisableRegionCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: DisableRegionCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccountClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisableRegionCommandInput, DisableRegionCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient";
|
|
5
5
|
import { EnableRegionRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link EnableRegionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface EnableRegionCommandInput extends EnableRegionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link EnableRegionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface EnableRegionCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Enables (opts-in) a particular Region for an account.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface EnableRegionCommandOutput extends __MetadataBearer {
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param EnableRegionCommandInput - {@link EnableRegionCommandInput}
|
|
34
|
+
* @returns {@link EnableRegionCommandOutput}
|
|
28
35
|
* @see {@link EnableRegionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link EnableRegionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AccountClientResolvedConfig | config} for AccountClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface EnableRegionCommandOutput extends __MetadataBearer {
|
|
|
54
61
|
export declare class EnableRegionCommand extends $Command<EnableRegionCommandInput, EnableRegionCommandOutput, AccountClientResolvedConfig> {
|
|
55
62
|
readonly input: EnableRegionCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: EnableRegionCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccountClientResolvedConfig, options?: __HttpHandlerOptions): Handler<EnableRegionCommandInput, EnableRegionCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient";
|
|
5
5
|
import { GetAlternateContactRequest, GetAlternateContactResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetAlternateContactCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetAlternateContactCommandInput extends GetAlternateContactRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetAlternateContactCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetAlternateContactCommandOutput extends GetAlternateContactResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the specified alternate contact attached to an Amazon Web Services account.</p>
|
|
18
23
|
* <p>For complete details about how to use the alternate contact operations, see <a href="https://docs.aws.amazon.com/accounts/latest/reference/manage-acct-update-contact.html">Access or
|
|
19
24
|
* updating the alternate contacts</a>.</p>
|
|
@@ -33,6 +38,8 @@ export interface GetAlternateContactCommandOutput extends GetAlternateContactRes
|
|
|
33
38
|
* const response = await client.send(command);
|
|
34
39
|
* ```
|
|
35
40
|
*
|
|
41
|
+
* @param GetAlternateContactCommandInput - {@link GetAlternateContactCommandInput}
|
|
42
|
+
* @returns {@link GetAlternateContactCommandOutput}
|
|
36
43
|
* @see {@link GetAlternateContactCommandInput} for command's `input` shape.
|
|
37
44
|
* @see {@link GetAlternateContactCommandOutput} for command's `response` shape.
|
|
38
45
|
* @see {@link AccountClientResolvedConfig | config} for AccountClient's `config` shape.
|
|
@@ -60,11 +67,20 @@ export interface GetAlternateContactCommandOutput extends GetAlternateContactRes
|
|
|
60
67
|
export declare class GetAlternateContactCommand extends $Command<GetAlternateContactCommandInput, GetAlternateContactCommandOutput, AccountClientResolvedConfig> {
|
|
61
68
|
readonly input: GetAlternateContactCommandInput;
|
|
62
69
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
70
|
+
/**
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
63
73
|
constructor(input: GetAlternateContactCommandInput);
|
|
64
74
|
/**
|
|
65
75
|
* @internal
|
|
66
76
|
*/
|
|
67
77
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccountClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAlternateContactCommandInput, GetAlternateContactCommandOutput>;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
68
81
|
private serialize;
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
69
85
|
private deserialize;
|
|
70
86
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient";
|
|
5
5
|
import { GetContactInformationRequest, GetContactInformationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetContactInformationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetContactInformationCommandInput extends GetContactInformationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetContactInformationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetContactInformationCommandOutput extends GetContactInformationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the primary contact information of an Amazon Web Services account.</p>
|
|
18
23
|
* <p>For complete details about how to use the primary contact operations, see <a href="https://docs.aws.amazon.com/accounts/latest/reference/manage-acct-update-contact.html">Update
|
|
19
24
|
* the primary and alternate contact information</a>.</p>
|
|
@@ -27,6 +32,8 @@ export interface GetContactInformationCommandOutput extends GetContactInformatio
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param GetContactInformationCommandInput - {@link GetContactInformationCommandInput}
|
|
36
|
+
* @returns {@link GetContactInformationCommandOutput}
|
|
30
37
|
* @see {@link GetContactInformationCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link GetContactInformationCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link AccountClientResolvedConfig | config} for AccountClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface GetContactInformationCommandOutput extends GetContactInformatio
|
|
|
54
61
|
export declare class GetContactInformationCommand extends $Command<GetContactInformationCommandInput, GetContactInformationCommandOutput, AccountClientResolvedConfig> {
|
|
55
62
|
readonly input: GetContactInformationCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: GetContactInformationCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccountClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetContactInformationCommandInput, GetContactInformationCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient";
|
|
5
5
|
import { GetRegionOptStatusRequest, GetRegionOptStatusResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetRegionOptStatusCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetRegionOptStatusCommandInput extends GetRegionOptStatusRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetRegionOptStatusCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetRegionOptStatusCommandOutput extends GetRegionOptStatusResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the opt-in status of a particular Region.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetRegionOptStatusCommandOutput extends GetRegionOptStatusRespo
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetRegionOptStatusCommandInput - {@link GetRegionOptStatusCommandInput}
|
|
34
|
+
* @returns {@link GetRegionOptStatusCommandOutput}
|
|
28
35
|
* @see {@link GetRegionOptStatusCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetRegionOptStatusCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AccountClientResolvedConfig | config} for AccountClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetRegionOptStatusCommandOutput extends GetRegionOptStatusRespo
|
|
|
49
56
|
export declare class GetRegionOptStatusCommand extends $Command<GetRegionOptStatusCommandInput, GetRegionOptStatusCommandOutput, AccountClientResolvedConfig> {
|
|
50
57
|
readonly input: GetRegionOptStatusCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetRegionOptStatusCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccountClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRegionOptStatusCommandInput, GetRegionOptStatusCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient";
|
|
5
5
|
import { ListRegionsRequest, ListRegionsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListRegionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListRegionsCommandInput extends ListRegionsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListRegionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListRegionsCommandOutput extends ListRegionsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists all the Regions for a given account and their respective opt-in statuses.
|
|
18
23
|
* Optionally, this list can be filtered by the <code>region-opt-status-contains</code>
|
|
19
24
|
* parameter. </p>
|
|
@@ -27,6 +32,8 @@ export interface ListRegionsCommandOutput extends ListRegionsResponse, __Metadat
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param ListRegionsCommandInput - {@link ListRegionsCommandInput}
|
|
36
|
+
* @returns {@link ListRegionsCommandOutput}
|
|
30
37
|
* @see {@link ListRegionsCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link ListRegionsCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link AccountClientResolvedConfig | config} for AccountClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface ListRegionsCommandOutput extends ListRegionsResponse, __Metadat
|
|
|
51
58
|
export declare class ListRegionsCommand extends $Command<ListRegionsCommandInput, ListRegionsCommandOutput, AccountClientResolvedConfig> {
|
|
52
59
|
readonly input: ListRegionsCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: ListRegionsCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccountClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListRegionsCommandInput, ListRegionsCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient";
|
|
5
5
|
import { PutAlternateContactRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutAlternateContactCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutAlternateContactCommandInput extends PutAlternateContactRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutAlternateContactCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutAlternateContactCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Modifies the specified alternate contact attached to an Amazon Web Services account.</p>
|
|
18
23
|
* <p>For complete details about how to use the alternate contact operations, see <a href="https://docs.aws.amazon.com/accounts/latest/reference/manage-acct-update-contact.html">Access or
|
|
19
24
|
* updating the alternate contacts</a>.</p>
|
|
@@ -33,6 +38,8 @@ export interface PutAlternateContactCommandOutput extends __MetadataBearer {
|
|
|
33
38
|
* const response = await client.send(command);
|
|
34
39
|
* ```
|
|
35
40
|
*
|
|
41
|
+
* @param PutAlternateContactCommandInput - {@link PutAlternateContactCommandInput}
|
|
42
|
+
* @returns {@link PutAlternateContactCommandOutput}
|
|
36
43
|
* @see {@link PutAlternateContactCommandInput} for command's `input` shape.
|
|
37
44
|
* @see {@link PutAlternateContactCommandOutput} for command's `response` shape.
|
|
38
45
|
* @see {@link AccountClientResolvedConfig | config} for AccountClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface PutAlternateContactCommandOutput extends __MetadataBearer {
|
|
|
57
64
|
export declare class PutAlternateContactCommand extends $Command<PutAlternateContactCommandInput, PutAlternateContactCommandOutput, AccountClientResolvedConfig> {
|
|
58
65
|
readonly input: PutAlternateContactCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: PutAlternateContactCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccountClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutAlternateContactCommandInput, PutAlternateContactCommandOutput>;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
65
78
|
private serialize;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
66
82
|
private deserialize;
|
|
67
83
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AccountClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccountClient";
|
|
5
5
|
import { PutContactInformationRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutContactInformationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutContactInformationCommandInput extends PutContactInformationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutContactInformationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutContactInformationCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates the primary contact information of an Amazon Web Services account.</p>
|
|
18
23
|
* <p>For complete details about how to use the primary contact operations, see <a href="https://docs.aws.amazon.com/accounts/latest/reference/manage-acct-update-contact.html">Update
|
|
19
24
|
* the primary and alternate contact information</a>.</p>
|
|
@@ -27,6 +32,8 @@ export interface PutContactInformationCommandOutput extends __MetadataBearer {
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param PutContactInformationCommandInput - {@link PutContactInformationCommandInput}
|
|
36
|
+
* @returns {@link PutContactInformationCommandOutput}
|
|
30
37
|
* @see {@link PutContactInformationCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link PutContactInformationCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link AccountClientResolvedConfig | config} for AccountClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface PutContactInformationCommandOutput extends __MetadataBearer {
|
|
|
51
58
|
export declare class PutContactInformationCommand extends $Command<PutContactInformationCommandInput, PutContactInformationCommandOutput, AccountClientResolvedConfig> {
|
|
52
59
|
readonly input: PutContactInformationCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: PutContactInformationCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccountClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutContactInformationCommandInput, PutContactInformationCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from Account service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class AccountServiceException extends __ServiceException {
|