@aws-sdk/client-ssm-contacts 3.296.0 → 3.297.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-types/SSMContacts.d.ts +28 -0
- package/dist-types/SSMContactsClient.d.ts +24 -4
- package/dist-types/commands/AcceptPageCommand.d.ts +16 -0
- package/dist-types/commands/ActivateContactChannelCommand.d.ts +16 -0
- package/dist-types/commands/CreateContactChannelCommand.d.ts +16 -0
- package/dist-types/commands/CreateContactCommand.d.ts +16 -0
- package/dist-types/commands/DeactivateContactChannelCommand.d.ts +16 -0
- package/dist-types/commands/DeleteContactChannelCommand.d.ts +16 -0
- package/dist-types/commands/DeleteContactCommand.d.ts +16 -0
- package/dist-types/commands/DescribeEngagementCommand.d.ts +16 -0
- package/dist-types/commands/DescribePageCommand.d.ts +16 -0
- package/dist-types/commands/GetContactChannelCommand.d.ts +16 -0
- package/dist-types/commands/GetContactCommand.d.ts +16 -0
- package/dist-types/commands/GetContactPolicyCommand.d.ts +16 -0
- package/dist-types/commands/ListContactChannelsCommand.d.ts +16 -0
- package/dist-types/commands/ListContactsCommand.d.ts +16 -0
- package/dist-types/commands/ListEngagementsCommand.d.ts +16 -0
- package/dist-types/commands/ListPageReceiptsCommand.d.ts +16 -0
- package/dist-types/commands/ListPagesByContactCommand.d.ts +16 -0
- package/dist-types/commands/ListPagesByEngagementCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PutContactPolicyCommand.d.ts +16 -0
- package/dist-types/commands/SendActivationCodeCommand.d.ts +16 -0
- package/dist-types/commands/StartEngagementCommand.d.ts +16 -0
- package/dist-types/commands/StopEngagementCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateContactChannelCommand.d.ts +16 -0
- package/dist-types/commands/UpdateContactCommand.d.ts +16 -0
- package/dist-types/models/SSMContactsServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +205 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListContactChannelsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListContactsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListEngagementsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPageReceiptsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPagesByContactPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPagesByEngagementPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { SendActivationCodeRequest, SendActivationCodeResult } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link SendActivationCodeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface SendActivationCodeCommandInput extends SendActivationCodeRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link SendActivationCodeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface SendActivationCodeCommandOutput extends SendActivationCodeResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Sends an activation code to a contact channel. The contact can use this code to activate
|
|
18
23
|
* the contact channel in the console or with the <code>ActivateChannel</code> operation.
|
|
19
24
|
* Incident Manager can't engage a contact channel until it has been activated.</p>
|
|
@@ -27,6 +32,8 @@ export interface SendActivationCodeCommandOutput extends SendActivationCodeResul
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param SendActivationCodeCommandInput - {@link SendActivationCodeCommandInput}
|
|
36
|
+
* @returns {@link SendActivationCodeCommandOutput}
|
|
30
37
|
* @see {@link SendActivationCodeCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link SendActivationCodeCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link SSMContactsClientResolvedConfig | config} for SSMContactsClient's `config` shape.
|
|
@@ -70,11 +77,20 @@ export interface SendActivationCodeCommandOutput extends SendActivationCodeResul
|
|
|
70
77
|
export declare class SendActivationCodeCommand extends $Command<SendActivationCodeCommandInput, SendActivationCodeCommandOutput, SSMContactsClientResolvedConfig> {
|
|
71
78
|
readonly input: SendActivationCodeCommandInput;
|
|
72
79
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
80
|
+
/**
|
|
81
|
+
* @public
|
|
82
|
+
*/
|
|
73
83
|
constructor(input: SendActivationCodeCommandInput);
|
|
74
84
|
/**
|
|
75
85
|
* @internal
|
|
76
86
|
*/
|
|
77
87
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SendActivationCodeCommandInput, SendActivationCodeCommandOutput>;
|
|
88
|
+
/**
|
|
89
|
+
* @internal
|
|
90
|
+
*/
|
|
78
91
|
private serialize;
|
|
92
|
+
/**
|
|
93
|
+
* @internal
|
|
94
|
+
*/
|
|
79
95
|
private deserialize;
|
|
80
96
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { StartEngagementRequest, StartEngagementResult } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StartEngagementCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StartEngagementCommandInput extends StartEngagementRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StartEngagementCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StartEngagementCommandOutput extends StartEngagementResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Starts an engagement to a contact or escalation plan. The engagement engages each
|
|
18
23
|
* contact specified in the incident.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface StartEngagementCommandOutput extends StartEngagementResult, __M
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param StartEngagementCommandInput - {@link StartEngagementCommandInput}
|
|
35
|
+
* @returns {@link StartEngagementCommandOutput}
|
|
29
36
|
* @see {@link StartEngagementCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link StartEngagementCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SSMContactsClientResolvedConfig | config} for SSMContactsClient's `config` shape.
|
|
@@ -97,11 +104,20 @@ export interface StartEngagementCommandOutput extends StartEngagementResult, __M
|
|
|
97
104
|
export declare class StartEngagementCommand extends $Command<StartEngagementCommandInput, StartEngagementCommandOutput, SSMContactsClientResolvedConfig> {
|
|
98
105
|
readonly input: StartEngagementCommandInput;
|
|
99
106
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
107
|
+
/**
|
|
108
|
+
* @public
|
|
109
|
+
*/
|
|
100
110
|
constructor(input: StartEngagementCommandInput);
|
|
101
111
|
/**
|
|
102
112
|
* @internal
|
|
103
113
|
*/
|
|
104
114
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartEngagementCommandInput, StartEngagementCommandOutput>;
|
|
115
|
+
/**
|
|
116
|
+
* @internal
|
|
117
|
+
*/
|
|
105
118
|
private serialize;
|
|
119
|
+
/**
|
|
120
|
+
* @internal
|
|
121
|
+
*/
|
|
106
122
|
private deserialize;
|
|
107
123
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { StopEngagementRequest, StopEngagementResult } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StopEngagementCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StopEngagementCommandInput extends StopEngagementRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StopEngagementCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StopEngagementCommandOutput extends StopEngagementResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Stops an engagement before it finishes the final stage of the escalation plan or
|
|
18
23
|
* engagement plan. Further contacts aren't engaged.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface StopEngagementCommandOutput extends StopEngagementResult, __Met
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param StopEngagementCommandInput - {@link StopEngagementCommandInput}
|
|
35
|
+
* @returns {@link StopEngagementCommandOutput}
|
|
29
36
|
* @see {@link StopEngagementCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link StopEngagementCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SSMContactsClientResolvedConfig | config} for SSMContactsClient's `config` shape.
|
|
@@ -63,11 +70,20 @@ export interface StopEngagementCommandOutput extends StopEngagementResult, __Met
|
|
|
63
70
|
export declare class StopEngagementCommand extends $Command<StopEngagementCommandInput, StopEngagementCommandOutput, SSMContactsClientResolvedConfig> {
|
|
64
71
|
readonly input: StopEngagementCommandInput;
|
|
65
72
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
66
76
|
constructor(input: StopEngagementCommandInput);
|
|
67
77
|
/**
|
|
68
78
|
* @internal
|
|
69
79
|
*/
|
|
70
80
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopEngagementCommandInput, StopEngagementCommandOutput>;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
71
84
|
private serialize;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
72
88
|
private deserialize;
|
|
73
89
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { TagResourceRequest, TagResourceResult } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link TagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link TagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface TagResourceCommandOutput extends TagResourceResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Tags a contact or escalation plan. You can tag only contacts and escalation plans in the
|
|
18
23
|
* first region of your replication set. </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface TagResourceCommandOutput extends TagResourceResult, __MetadataB
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
35
|
+
* @returns {@link TagResourceCommandOutput}
|
|
29
36
|
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SSMContactsClientResolvedConfig | config} for SSMContactsClient's `config` shape.
|
|
@@ -72,11 +79,20 @@ export interface TagResourceCommandOutput extends TagResourceResult, __MetadataB
|
|
|
72
79
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, SSMContactsClientResolvedConfig> {
|
|
73
80
|
readonly input: TagResourceCommandInput;
|
|
74
81
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
82
|
+
/**
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
75
85
|
constructor(input: TagResourceCommandInput);
|
|
76
86
|
/**
|
|
77
87
|
* @internal
|
|
78
88
|
*/
|
|
79
89
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
80
93
|
private serialize;
|
|
94
|
+
/**
|
|
95
|
+
* @internal
|
|
96
|
+
*/
|
|
81
97
|
private deserialize;
|
|
82
98
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UntagResourceRequest, UntagResourceResult } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UntagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UntagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UntagResourceCommandOutput extends UntagResourceResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes tags from the specified resource. </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 UntagResourceCommandOutput extends UntagResourceResult, __Metad
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
34
|
+
* @returns {@link UntagResourceCommandOutput}
|
|
28
35
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSMContactsClientResolvedConfig | config} for SSMContactsClient's `config` shape.
|
|
@@ -65,11 +72,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResult, __Metad
|
|
|
65
72
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, SSMContactsClientResolvedConfig> {
|
|
66
73
|
readonly input: UntagResourceCommandInput;
|
|
67
74
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
68
78
|
constructor(input: UntagResourceCommandInput);
|
|
69
79
|
/**
|
|
70
80
|
* @internal
|
|
71
81
|
*/
|
|
72
82
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
73
86
|
private serialize;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
74
90
|
private deserialize;
|
|
75
91
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UpdateContactChannelRequest, UpdateContactChannelResult } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateContactChannelCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateContactChannelCommandInput extends UpdateContactChannelRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateContactChannelCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateContactChannelCommandOutput extends UpdateContactChannelResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates a contact's contact channel.</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 UpdateContactChannelCommandOutput extends UpdateContactChannelR
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateContactChannelCommandInput - {@link UpdateContactChannelCommandInput}
|
|
34
|
+
* @returns {@link UpdateContactChannelCommandOutput}
|
|
28
35
|
* @see {@link UpdateContactChannelCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateContactChannelCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSMContactsClientResolvedConfig | config} for SSMContactsClient's `config` shape.
|
|
@@ -72,11 +79,20 @@ export interface UpdateContactChannelCommandOutput extends UpdateContactChannelR
|
|
|
72
79
|
export declare class UpdateContactChannelCommand extends $Command<UpdateContactChannelCommandInput, UpdateContactChannelCommandOutput, SSMContactsClientResolvedConfig> {
|
|
73
80
|
readonly input: UpdateContactChannelCommandInput;
|
|
74
81
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
82
|
+
/**
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
75
85
|
constructor(input: UpdateContactChannelCommandInput);
|
|
76
86
|
/**
|
|
77
87
|
* @internal
|
|
78
88
|
*/
|
|
79
89
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateContactChannelCommandInput, UpdateContactChannelCommandOutput>;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
80
93
|
private serialize;
|
|
94
|
+
/**
|
|
95
|
+
* @internal
|
|
96
|
+
*/
|
|
81
97
|
private deserialize;
|
|
82
98
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UpdateContactRequest, UpdateContactResult } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateContactCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateContactCommandInput extends UpdateContactRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateContactCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateContactCommandOutput extends UpdateContactResult, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates the contact or escalation plan specified. </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 UpdateContactCommandOutput extends UpdateContactResult, __Metad
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateContactCommandInput - {@link UpdateContactCommandInput}
|
|
34
|
+
* @returns {@link UpdateContactCommandOutput}
|
|
28
35
|
* @see {@link UpdateContactCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateContactCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SSMContactsClientResolvedConfig | config} for SSMContactsClient's `config` shape.
|
|
@@ -105,11 +112,20 @@ export interface UpdateContactCommandOutput extends UpdateContactResult, __Metad
|
|
|
105
112
|
export declare class UpdateContactCommand extends $Command<UpdateContactCommandInput, UpdateContactCommandOutput, SSMContactsClientResolvedConfig> {
|
|
106
113
|
readonly input: UpdateContactCommandInput;
|
|
107
114
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
115
|
+
/**
|
|
116
|
+
* @public
|
|
117
|
+
*/
|
|
108
118
|
constructor(input: UpdateContactCommandInput);
|
|
109
119
|
/**
|
|
110
120
|
* @internal
|
|
111
121
|
*/
|
|
112
122
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateContactCommandInput, UpdateContactCommandOutput>;
|
|
123
|
+
/**
|
|
124
|
+
* @internal
|
|
125
|
+
*/
|
|
113
126
|
private serialize;
|
|
127
|
+
/**
|
|
128
|
+
* @internal
|
|
129
|
+
*/
|
|
114
130
|
private deserialize;
|
|
115
131
|
}
|
|
@@ -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 SSMContacts service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class SSMContactsServiceException extends __ServiceException {
|