@aws-sdk/client-ssm-contacts 3.50.0 → 3.53.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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/SSMContactsServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +129 -2
- package/dist-cjs/protocols/Aws_json1_1.js +302 -1219
- package/dist-es/index.js +1 -0
- package/dist-es/models/SSMContactsServiceException.js +12 -0
- package/dist-es/models/models_0.js +120 -1
- package/dist-es/protocols/Aws_json1_1.js +669 -1312
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/SSMContactsServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +58 -25
- package/dist-types/ts3.4/SSMContacts.d.ts +140 -0
- package/dist-types/ts3.4/SSMContactsClient.d.ts +100 -0
- package/dist-types/ts3.4/commands/AcceptPageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ActivateContactChannelCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateContactChannelCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateContactCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeactivateContactChannelCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteContactChannelCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteContactCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeEngagementCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribePageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetContactChannelCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetContactCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetContactPolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListContactChannelsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListContactsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListEngagementsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListPageReceiptsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListPagesByContactCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListPagesByEngagementCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutContactPolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/SendActivationCodeCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StartEngagementCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StopEngagementCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateContactChannelCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateContactCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +27 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/SSMContactsServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +884 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListContactChannelsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListContactsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListEngagementsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListPageReceiptsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListPagesByContactPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListPagesByEngagementPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +7 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +83 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +33 -33
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from SSMContacts service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class SSMContactsServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { SSMContactsServiceException as __BaseException } from "./SSMContactsServiceException";
|
|
2
3
|
export declare enum AcceptCodeValidation {
|
|
3
4
|
ENFORCE = "ENFORCE",
|
|
4
5
|
IGNORE = "IGNORE"
|
|
@@ -57,30 +58,38 @@ export declare namespace AcceptPageResult {
|
|
|
57
58
|
/**
|
|
58
59
|
* <p>You don't have sufficient access to perform this operation.</p>
|
|
59
60
|
*/
|
|
60
|
-
export
|
|
61
|
-
name: "AccessDeniedException";
|
|
62
|
-
$fault: "client";
|
|
61
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
62
|
+
readonly name: "AccessDeniedException";
|
|
63
|
+
readonly $fault: "client";
|
|
63
64
|
Message: string | undefined;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
68
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
64
69
|
}
|
|
65
70
|
/**
|
|
66
71
|
* <p>Unexpected error occurred while
|
|
67
72
|
* processing the request.</p>
|
|
68
73
|
*/
|
|
69
|
-
export
|
|
70
|
-
name: "InternalServerException";
|
|
71
|
-
$fault: "server";
|
|
74
|
+
export declare class InternalServerException extends __BaseException {
|
|
75
|
+
readonly name: "InternalServerException";
|
|
76
|
+
readonly $fault: "server";
|
|
72
77
|
Message: string | undefined;
|
|
73
78
|
/**
|
|
74
79
|
* Advice to clients on when the call can be safely retried
|
|
75
80
|
*/
|
|
76
81
|
RetryAfterSeconds?: number;
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
85
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
77
86
|
}
|
|
78
87
|
/**
|
|
79
88
|
* <p>Request references a resource that doesn't exist.</p>
|
|
80
89
|
*/
|
|
81
|
-
export
|
|
82
|
-
name: "ResourceNotFoundException";
|
|
83
|
-
$fault: "client";
|
|
90
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
91
|
+
readonly name: "ResourceNotFoundException";
|
|
92
|
+
readonly $fault: "client";
|
|
84
93
|
Message: string | undefined;
|
|
85
94
|
/**
|
|
86
95
|
* Hypothetical resource identifier that was not found
|
|
@@ -90,13 +99,17 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
|
|
|
90
99
|
* Hypothetical resource type that was not found
|
|
91
100
|
*/
|
|
92
101
|
ResourceType: string | undefined;
|
|
102
|
+
/**
|
|
103
|
+
* @internal
|
|
104
|
+
*/
|
|
105
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
93
106
|
}
|
|
94
107
|
/**
|
|
95
108
|
* <p>The request was denied due to request throttling.</p>
|
|
96
109
|
*/
|
|
97
|
-
export
|
|
98
|
-
name: "ThrottlingException";
|
|
99
|
-
$fault: "client";
|
|
110
|
+
export declare class ThrottlingException extends __BaseException {
|
|
111
|
+
readonly name: "ThrottlingException";
|
|
112
|
+
readonly $fault: "client";
|
|
100
113
|
Message: string | undefined;
|
|
101
114
|
/**
|
|
102
115
|
* Service Quotas requirement to identify originating service
|
|
@@ -110,6 +123,10 @@ export interface ThrottlingException extends __SmithyException, $MetadataBearer
|
|
|
110
123
|
* Advice to clients on when the call can be safely retried
|
|
111
124
|
*/
|
|
112
125
|
RetryAfterSeconds?: number;
|
|
126
|
+
/**
|
|
127
|
+
* @internal
|
|
128
|
+
*/
|
|
129
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
113
130
|
}
|
|
114
131
|
/**
|
|
115
132
|
* <p>Provides information about which field caused the exception.</p>
|
|
@@ -140,9 +157,9 @@ export declare enum ValidationExceptionReason {
|
|
|
140
157
|
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services
|
|
141
158
|
* service.</p>
|
|
142
159
|
*/
|
|
143
|
-
export
|
|
144
|
-
name: "ValidationException";
|
|
145
|
-
$fault: "client";
|
|
160
|
+
export declare class ValidationException extends __BaseException {
|
|
161
|
+
readonly name: "ValidationException";
|
|
162
|
+
readonly $fault: "client";
|
|
146
163
|
Message: string | undefined;
|
|
147
164
|
/**
|
|
148
165
|
* Reason the request failed validation
|
|
@@ -152,6 +169,10 @@ export interface ValidationException extends __SmithyException, $MetadataBearer
|
|
|
152
169
|
* The fields that caused the error
|
|
153
170
|
*/
|
|
154
171
|
Fields?: ValidationExceptionField[];
|
|
172
|
+
/**
|
|
173
|
+
* @internal
|
|
174
|
+
*/
|
|
175
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
155
176
|
}
|
|
156
177
|
export interface ActivateContactChannelRequest {
|
|
157
178
|
/**
|
|
@@ -210,9 +231,9 @@ export declare enum ChannelType {
|
|
|
210
231
|
/**
|
|
211
232
|
* <p>Updating or deleting a resource causes an inconsistent state.</p>
|
|
212
233
|
*/
|
|
213
|
-
export
|
|
214
|
-
name: "ConflictException";
|
|
215
|
-
$fault: "client";
|
|
234
|
+
export declare class ConflictException extends __BaseException {
|
|
235
|
+
readonly name: "ConflictException";
|
|
236
|
+
readonly $fault: "client";
|
|
216
237
|
Message: string | undefined;
|
|
217
238
|
/**
|
|
218
239
|
* Identifier of the resource in use
|
|
@@ -222,6 +243,10 @@ export interface ConflictException extends __SmithyException, $MetadataBearer {
|
|
|
222
243
|
* ype of the resource in use
|
|
223
244
|
*/
|
|
224
245
|
ResourceType: string | undefined;
|
|
246
|
+
/**
|
|
247
|
+
* @internal
|
|
248
|
+
*/
|
|
249
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
225
250
|
}
|
|
226
251
|
export declare enum ContactType {
|
|
227
252
|
ESCALATION = "ESCALATION",
|
|
@@ -481,17 +506,21 @@ export declare namespace CreateContactResult {
|
|
|
481
506
|
/**
|
|
482
507
|
* <p>The operation failed to due an encryption key error.</p>
|
|
483
508
|
*/
|
|
484
|
-
export
|
|
485
|
-
name: "DataEncryptionException";
|
|
486
|
-
$fault: "client";
|
|
509
|
+
export declare class DataEncryptionException extends __BaseException {
|
|
510
|
+
readonly name: "DataEncryptionException";
|
|
511
|
+
readonly $fault: "client";
|
|
487
512
|
Message: string | undefined;
|
|
513
|
+
/**
|
|
514
|
+
* @internal
|
|
515
|
+
*/
|
|
516
|
+
constructor(opts: __ExceptionOptionType<DataEncryptionException, __BaseException>);
|
|
488
517
|
}
|
|
489
518
|
/**
|
|
490
519
|
* <p>Request would cause a service quota to be exceeded.</p>
|
|
491
520
|
*/
|
|
492
|
-
export
|
|
493
|
-
name: "ServiceQuotaExceededException";
|
|
494
|
-
$fault: "client";
|
|
521
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
522
|
+
readonly name: "ServiceQuotaExceededException";
|
|
523
|
+
readonly $fault: "client";
|
|
495
524
|
Message: string | undefined;
|
|
496
525
|
/**
|
|
497
526
|
* Identifier of the resource affected
|
|
@@ -509,6 +538,10 @@ export interface ServiceQuotaExceededException extends __SmithyException, $Metad
|
|
|
509
538
|
* Service Quotas requirement to identify originating quota
|
|
510
539
|
*/
|
|
511
540
|
ServiceCode: string | undefined;
|
|
541
|
+
/**
|
|
542
|
+
* @internal
|
|
543
|
+
*/
|
|
544
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
512
545
|
}
|
|
513
546
|
export interface CreateContactChannelRequest {
|
|
514
547
|
/**
|
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { AcceptPageCommandInput, AcceptPageCommandOutput } from "./commands/AcceptPageCommand";
|
|
3
|
+
import { ActivateContactChannelCommandInput, ActivateContactChannelCommandOutput } from "./commands/ActivateContactChannelCommand";
|
|
4
|
+
import { CreateContactChannelCommandInput, CreateContactChannelCommandOutput } from "./commands/CreateContactChannelCommand";
|
|
5
|
+
import { CreateContactCommandInput, CreateContactCommandOutput } from "./commands/CreateContactCommand";
|
|
6
|
+
import { DeactivateContactChannelCommandInput, DeactivateContactChannelCommandOutput } from "./commands/DeactivateContactChannelCommand";
|
|
7
|
+
import { DeleteContactChannelCommandInput, DeleteContactChannelCommandOutput } from "./commands/DeleteContactChannelCommand";
|
|
8
|
+
import { DeleteContactCommandInput, DeleteContactCommandOutput } from "./commands/DeleteContactCommand";
|
|
9
|
+
import { DescribeEngagementCommandInput, DescribeEngagementCommandOutput } from "./commands/DescribeEngagementCommand";
|
|
10
|
+
import { DescribePageCommandInput, DescribePageCommandOutput } from "./commands/DescribePageCommand";
|
|
11
|
+
import { GetContactChannelCommandInput, GetContactChannelCommandOutput } from "./commands/GetContactChannelCommand";
|
|
12
|
+
import { GetContactCommandInput, GetContactCommandOutput } from "./commands/GetContactCommand";
|
|
13
|
+
import { GetContactPolicyCommandInput, GetContactPolicyCommandOutput } from "./commands/GetContactPolicyCommand";
|
|
14
|
+
import { ListContactChannelsCommandInput, ListContactChannelsCommandOutput } from "./commands/ListContactChannelsCommand";
|
|
15
|
+
import { ListContactsCommandInput, ListContactsCommandOutput } from "./commands/ListContactsCommand";
|
|
16
|
+
import { ListEngagementsCommandInput, ListEngagementsCommandOutput } from "./commands/ListEngagementsCommand";
|
|
17
|
+
import { ListPageReceiptsCommandInput, ListPageReceiptsCommandOutput } from "./commands/ListPageReceiptsCommand";
|
|
18
|
+
import { ListPagesByContactCommandInput, ListPagesByContactCommandOutput } from "./commands/ListPagesByContactCommand";
|
|
19
|
+
import { ListPagesByEngagementCommandInput, ListPagesByEngagementCommandOutput } from "./commands/ListPagesByEngagementCommand";
|
|
20
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
21
|
+
import { PutContactPolicyCommandInput, PutContactPolicyCommandOutput } from "./commands/PutContactPolicyCommand";
|
|
22
|
+
import { SendActivationCodeCommandInput, SendActivationCodeCommandOutput } from "./commands/SendActivationCodeCommand";
|
|
23
|
+
import { StartEngagementCommandInput, StartEngagementCommandOutput } from "./commands/StartEngagementCommand";
|
|
24
|
+
import { StopEngagementCommandInput, StopEngagementCommandOutput } from "./commands/StopEngagementCommand";
|
|
25
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
26
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
27
|
+
import { UpdateContactChannelCommandInput, UpdateContactChannelCommandOutput } from "./commands/UpdateContactChannelCommand";
|
|
28
|
+
import { UpdateContactCommandInput, UpdateContactCommandOutput } from "./commands/UpdateContactCommand";
|
|
29
|
+
import { SSMContactsClient } from "./SSMContactsClient";
|
|
30
|
+
|
|
31
|
+
export declare class SSMContacts extends SSMContactsClient {
|
|
32
|
+
|
|
33
|
+
acceptPage(args: AcceptPageCommandInput, options?: __HttpHandlerOptions): Promise<AcceptPageCommandOutput>;
|
|
34
|
+
acceptPage(args: AcceptPageCommandInput, cb: (err: any, data?: AcceptPageCommandOutput) => void): void;
|
|
35
|
+
acceptPage(args: AcceptPageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AcceptPageCommandOutput) => void): void;
|
|
36
|
+
|
|
37
|
+
activateContactChannel(args: ActivateContactChannelCommandInput, options?: __HttpHandlerOptions): Promise<ActivateContactChannelCommandOutput>;
|
|
38
|
+
activateContactChannel(args: ActivateContactChannelCommandInput, cb: (err: any, data?: ActivateContactChannelCommandOutput) => void): void;
|
|
39
|
+
activateContactChannel(args: ActivateContactChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ActivateContactChannelCommandOutput) => void): void;
|
|
40
|
+
|
|
41
|
+
createContact(args: CreateContactCommandInput, options?: __HttpHandlerOptions): Promise<CreateContactCommandOutput>;
|
|
42
|
+
createContact(args: CreateContactCommandInput, cb: (err: any, data?: CreateContactCommandOutput) => void): void;
|
|
43
|
+
createContact(args: CreateContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateContactCommandOutput) => void): void;
|
|
44
|
+
|
|
45
|
+
createContactChannel(args: CreateContactChannelCommandInput, options?: __HttpHandlerOptions): Promise<CreateContactChannelCommandOutput>;
|
|
46
|
+
createContactChannel(args: CreateContactChannelCommandInput, cb: (err: any, data?: CreateContactChannelCommandOutput) => void): void;
|
|
47
|
+
createContactChannel(args: CreateContactChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateContactChannelCommandOutput) => void): void;
|
|
48
|
+
|
|
49
|
+
deactivateContactChannel(args: DeactivateContactChannelCommandInput, options?: __HttpHandlerOptions): Promise<DeactivateContactChannelCommandOutput>;
|
|
50
|
+
deactivateContactChannel(args: DeactivateContactChannelCommandInput, cb: (err: any, data?: DeactivateContactChannelCommandOutput) => void): void;
|
|
51
|
+
deactivateContactChannel(args: DeactivateContactChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeactivateContactChannelCommandOutput) => void): void;
|
|
52
|
+
|
|
53
|
+
deleteContact(args: DeleteContactCommandInput, options?: __HttpHandlerOptions): Promise<DeleteContactCommandOutput>;
|
|
54
|
+
deleteContact(args: DeleteContactCommandInput, cb: (err: any, data?: DeleteContactCommandOutput) => void): void;
|
|
55
|
+
deleteContact(args: DeleteContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteContactCommandOutput) => void): void;
|
|
56
|
+
|
|
57
|
+
deleteContactChannel(args: DeleteContactChannelCommandInput, options?: __HttpHandlerOptions): Promise<DeleteContactChannelCommandOutput>;
|
|
58
|
+
deleteContactChannel(args: DeleteContactChannelCommandInput, cb: (err: any, data?: DeleteContactChannelCommandOutput) => void): void;
|
|
59
|
+
deleteContactChannel(args: DeleteContactChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteContactChannelCommandOutput) => void): void;
|
|
60
|
+
|
|
61
|
+
describeEngagement(args: DescribeEngagementCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEngagementCommandOutput>;
|
|
62
|
+
describeEngagement(args: DescribeEngagementCommandInput, cb: (err: any, data?: DescribeEngagementCommandOutput) => void): void;
|
|
63
|
+
describeEngagement(args: DescribeEngagementCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEngagementCommandOutput) => void): void;
|
|
64
|
+
|
|
65
|
+
describePage(args: DescribePageCommandInput, options?: __HttpHandlerOptions): Promise<DescribePageCommandOutput>;
|
|
66
|
+
describePage(args: DescribePageCommandInput, cb: (err: any, data?: DescribePageCommandOutput) => void): void;
|
|
67
|
+
describePage(args: DescribePageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePageCommandOutput) => void): void;
|
|
68
|
+
|
|
69
|
+
getContact(args: GetContactCommandInput, options?: __HttpHandlerOptions): Promise<GetContactCommandOutput>;
|
|
70
|
+
getContact(args: GetContactCommandInput, cb: (err: any, data?: GetContactCommandOutput) => void): void;
|
|
71
|
+
getContact(args: GetContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetContactCommandOutput) => void): void;
|
|
72
|
+
|
|
73
|
+
getContactChannel(args: GetContactChannelCommandInput, options?: __HttpHandlerOptions): Promise<GetContactChannelCommandOutput>;
|
|
74
|
+
getContactChannel(args: GetContactChannelCommandInput, cb: (err: any, data?: GetContactChannelCommandOutput) => void): void;
|
|
75
|
+
getContactChannel(args: GetContactChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetContactChannelCommandOutput) => void): void;
|
|
76
|
+
|
|
77
|
+
getContactPolicy(args: GetContactPolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetContactPolicyCommandOutput>;
|
|
78
|
+
getContactPolicy(args: GetContactPolicyCommandInput, cb: (err: any, data?: GetContactPolicyCommandOutput) => void): void;
|
|
79
|
+
getContactPolicy(args: GetContactPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetContactPolicyCommandOutput) => void): void;
|
|
80
|
+
|
|
81
|
+
listContactChannels(args: ListContactChannelsCommandInput, options?: __HttpHandlerOptions): Promise<ListContactChannelsCommandOutput>;
|
|
82
|
+
listContactChannels(args: ListContactChannelsCommandInput, cb: (err: any, data?: ListContactChannelsCommandOutput) => void): void;
|
|
83
|
+
listContactChannels(args: ListContactChannelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListContactChannelsCommandOutput) => void): void;
|
|
84
|
+
|
|
85
|
+
listContacts(args: ListContactsCommandInput, options?: __HttpHandlerOptions): Promise<ListContactsCommandOutput>;
|
|
86
|
+
listContacts(args: ListContactsCommandInput, cb: (err: any, data?: ListContactsCommandOutput) => void): void;
|
|
87
|
+
listContacts(args: ListContactsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListContactsCommandOutput) => void): void;
|
|
88
|
+
|
|
89
|
+
listEngagements(args: ListEngagementsCommandInput, options?: __HttpHandlerOptions): Promise<ListEngagementsCommandOutput>;
|
|
90
|
+
listEngagements(args: ListEngagementsCommandInput, cb: (err: any, data?: ListEngagementsCommandOutput) => void): void;
|
|
91
|
+
listEngagements(args: ListEngagementsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEngagementsCommandOutput) => void): void;
|
|
92
|
+
|
|
93
|
+
listPageReceipts(args: ListPageReceiptsCommandInput, options?: __HttpHandlerOptions): Promise<ListPageReceiptsCommandOutput>;
|
|
94
|
+
listPageReceipts(args: ListPageReceiptsCommandInput, cb: (err: any, data?: ListPageReceiptsCommandOutput) => void): void;
|
|
95
|
+
listPageReceipts(args: ListPageReceiptsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPageReceiptsCommandOutput) => void): void;
|
|
96
|
+
|
|
97
|
+
listPagesByContact(args: ListPagesByContactCommandInput, options?: __HttpHandlerOptions): Promise<ListPagesByContactCommandOutput>;
|
|
98
|
+
listPagesByContact(args: ListPagesByContactCommandInput, cb: (err: any, data?: ListPagesByContactCommandOutput) => void): void;
|
|
99
|
+
listPagesByContact(args: ListPagesByContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPagesByContactCommandOutput) => void): void;
|
|
100
|
+
|
|
101
|
+
listPagesByEngagement(args: ListPagesByEngagementCommandInput, options?: __HttpHandlerOptions): Promise<ListPagesByEngagementCommandOutput>;
|
|
102
|
+
listPagesByEngagement(args: ListPagesByEngagementCommandInput, cb: (err: any, data?: ListPagesByEngagementCommandOutput) => void): void;
|
|
103
|
+
listPagesByEngagement(args: ListPagesByEngagementCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPagesByEngagementCommandOutput) => void): void;
|
|
104
|
+
|
|
105
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
106
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
107
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
108
|
+
|
|
109
|
+
putContactPolicy(args: PutContactPolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutContactPolicyCommandOutput>;
|
|
110
|
+
putContactPolicy(args: PutContactPolicyCommandInput, cb: (err: any, data?: PutContactPolicyCommandOutput) => void): void;
|
|
111
|
+
putContactPolicy(args: PutContactPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutContactPolicyCommandOutput) => void): void;
|
|
112
|
+
|
|
113
|
+
sendActivationCode(args: SendActivationCodeCommandInput, options?: __HttpHandlerOptions): Promise<SendActivationCodeCommandOutput>;
|
|
114
|
+
sendActivationCode(args: SendActivationCodeCommandInput, cb: (err: any, data?: SendActivationCodeCommandOutput) => void): void;
|
|
115
|
+
sendActivationCode(args: SendActivationCodeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendActivationCodeCommandOutput) => void): void;
|
|
116
|
+
|
|
117
|
+
startEngagement(args: StartEngagementCommandInput, options?: __HttpHandlerOptions): Promise<StartEngagementCommandOutput>;
|
|
118
|
+
startEngagement(args: StartEngagementCommandInput, cb: (err: any, data?: StartEngagementCommandOutput) => void): void;
|
|
119
|
+
startEngagement(args: StartEngagementCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartEngagementCommandOutput) => void): void;
|
|
120
|
+
|
|
121
|
+
stopEngagement(args: StopEngagementCommandInput, options?: __HttpHandlerOptions): Promise<StopEngagementCommandOutput>;
|
|
122
|
+
stopEngagement(args: StopEngagementCommandInput, cb: (err: any, data?: StopEngagementCommandOutput) => void): void;
|
|
123
|
+
stopEngagement(args: StopEngagementCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopEngagementCommandOutput) => void): void;
|
|
124
|
+
|
|
125
|
+
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
126
|
+
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
127
|
+
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
128
|
+
|
|
129
|
+
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
130
|
+
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
131
|
+
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
132
|
+
|
|
133
|
+
updateContact(args: UpdateContactCommandInput, options?: __HttpHandlerOptions): Promise<UpdateContactCommandOutput>;
|
|
134
|
+
updateContact(args: UpdateContactCommandInput, cb: (err: any, data?: UpdateContactCommandOutput) => void): void;
|
|
135
|
+
updateContact(args: UpdateContactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateContactCommandOutput) => void): void;
|
|
136
|
+
|
|
137
|
+
updateContactChannel(args: UpdateContactChannelCommandInput, options?: __HttpHandlerOptions): Promise<UpdateContactChannelCommandOutput>;
|
|
138
|
+
updateContactChannel(args: UpdateContactChannelCommandInput, cb: (err: any, data?: UpdateContactChannelCommandOutput) => void): void;
|
|
139
|
+
updateContactChannel(args: UpdateContactChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateContactChannelCommandOutput) => void): void;
|
|
140
|
+
}
|
|
@@ -0,0 +1,100 @@
|
|
|
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 { 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 { AcceptPageCommandInput, AcceptPageCommandOutput } from "./commands/AcceptPageCommand";
|
|
10
|
+
import { ActivateContactChannelCommandInput, ActivateContactChannelCommandOutput } from "./commands/ActivateContactChannelCommand";
|
|
11
|
+
import { CreateContactChannelCommandInput, CreateContactChannelCommandOutput } from "./commands/CreateContactChannelCommand";
|
|
12
|
+
import { CreateContactCommandInput, CreateContactCommandOutput } from "./commands/CreateContactCommand";
|
|
13
|
+
import { DeactivateContactChannelCommandInput, DeactivateContactChannelCommandOutput } from "./commands/DeactivateContactChannelCommand";
|
|
14
|
+
import { DeleteContactChannelCommandInput, DeleteContactChannelCommandOutput } from "./commands/DeleteContactChannelCommand";
|
|
15
|
+
import { DeleteContactCommandInput, DeleteContactCommandOutput } from "./commands/DeleteContactCommand";
|
|
16
|
+
import { DescribeEngagementCommandInput, DescribeEngagementCommandOutput } from "./commands/DescribeEngagementCommand";
|
|
17
|
+
import { DescribePageCommandInput, DescribePageCommandOutput } from "./commands/DescribePageCommand";
|
|
18
|
+
import { GetContactChannelCommandInput, GetContactChannelCommandOutput } from "./commands/GetContactChannelCommand";
|
|
19
|
+
import { GetContactCommandInput, GetContactCommandOutput } from "./commands/GetContactCommand";
|
|
20
|
+
import { GetContactPolicyCommandInput, GetContactPolicyCommandOutput } from "./commands/GetContactPolicyCommand";
|
|
21
|
+
import { ListContactChannelsCommandInput, ListContactChannelsCommandOutput } from "./commands/ListContactChannelsCommand";
|
|
22
|
+
import { ListContactsCommandInput, ListContactsCommandOutput } from "./commands/ListContactsCommand";
|
|
23
|
+
import { ListEngagementsCommandInput, ListEngagementsCommandOutput } from "./commands/ListEngagementsCommand";
|
|
24
|
+
import { ListPageReceiptsCommandInput, ListPageReceiptsCommandOutput } from "./commands/ListPageReceiptsCommand";
|
|
25
|
+
import { ListPagesByContactCommandInput, ListPagesByContactCommandOutput } from "./commands/ListPagesByContactCommand";
|
|
26
|
+
import { ListPagesByEngagementCommandInput, ListPagesByEngagementCommandOutput } from "./commands/ListPagesByEngagementCommand";
|
|
27
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
28
|
+
import { PutContactPolicyCommandInput, PutContactPolicyCommandOutput } from "./commands/PutContactPolicyCommand";
|
|
29
|
+
import { SendActivationCodeCommandInput, SendActivationCodeCommandOutput } from "./commands/SendActivationCodeCommand";
|
|
30
|
+
import { StartEngagementCommandInput, StartEngagementCommandOutput } from "./commands/StartEngagementCommand";
|
|
31
|
+
import { StopEngagementCommandInput, StopEngagementCommandOutput } from "./commands/StopEngagementCommand";
|
|
32
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
33
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
34
|
+
import { UpdateContactChannelCommandInput, UpdateContactChannelCommandOutput } from "./commands/UpdateContactChannelCommand";
|
|
35
|
+
import { UpdateContactCommandInput, UpdateContactCommandOutput } from "./commands/UpdateContactCommand";
|
|
36
|
+
export declare type ServiceInputTypes = AcceptPageCommandInput | ActivateContactChannelCommandInput | CreateContactChannelCommandInput | CreateContactCommandInput | DeactivateContactChannelCommandInput | DeleteContactChannelCommandInput | DeleteContactCommandInput | DescribeEngagementCommandInput | DescribePageCommandInput | GetContactChannelCommandInput | GetContactCommandInput | GetContactPolicyCommandInput | ListContactChannelsCommandInput | ListContactsCommandInput | ListEngagementsCommandInput | ListPageReceiptsCommandInput | ListPagesByContactCommandInput | ListPagesByEngagementCommandInput | ListTagsForResourceCommandInput | PutContactPolicyCommandInput | SendActivationCodeCommandInput | StartEngagementCommandInput | StopEngagementCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateContactChannelCommandInput | UpdateContactCommandInput;
|
|
37
|
+
export declare type ServiceOutputTypes = AcceptPageCommandOutput | ActivateContactChannelCommandOutput | CreateContactChannelCommandOutput | CreateContactCommandOutput | DeactivateContactChannelCommandOutput | DeleteContactChannelCommandOutput | DeleteContactCommandOutput | DescribeEngagementCommandOutput | DescribePageCommandOutput | GetContactChannelCommandOutput | GetContactCommandOutput | GetContactPolicyCommandOutput | ListContactChannelsCommandOutput | ListContactsCommandOutput | ListEngagementsCommandOutput | ListPageReceiptsCommandOutput | ListPagesByContactCommandOutput | ListPagesByEngagementCommandOutput | ListTagsForResourceCommandOutput | PutContactPolicyCommandOutput | SendActivationCodeCommandOutput | StartEngagementCommandOutput | StopEngagementCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateContactChannelCommandOutput | UpdateContactCommandOutput;
|
|
38
|
+
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
39
|
+
|
|
40
|
+
requestHandler?: __HttpHandler;
|
|
41
|
+
|
|
42
|
+
sha256?: __HashConstructor;
|
|
43
|
+
|
|
44
|
+
urlParser?: __UrlParser;
|
|
45
|
+
|
|
46
|
+
bodyLengthChecker?: (body: any) => number | undefined;
|
|
47
|
+
|
|
48
|
+
streamCollector?: __StreamCollector;
|
|
49
|
+
|
|
50
|
+
base64Decoder?: __Decoder;
|
|
51
|
+
|
|
52
|
+
base64Encoder?: __Encoder;
|
|
53
|
+
|
|
54
|
+
utf8Decoder?: __Decoder;
|
|
55
|
+
|
|
56
|
+
utf8Encoder?: __Encoder;
|
|
57
|
+
|
|
58
|
+
runtime?: string;
|
|
59
|
+
|
|
60
|
+
disableHostPrefix?: boolean;
|
|
61
|
+
|
|
62
|
+
maxAttempts?: number | __Provider<number>;
|
|
63
|
+
|
|
64
|
+
retryMode?: string | __Provider<string>;
|
|
65
|
+
|
|
66
|
+
logger?: __Logger;
|
|
67
|
+
|
|
68
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
69
|
+
|
|
70
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
71
|
+
|
|
72
|
+
serviceId?: string;
|
|
73
|
+
|
|
74
|
+
region?: string | __Provider<string>;
|
|
75
|
+
|
|
76
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
77
|
+
|
|
78
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
79
|
+
|
|
80
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
81
|
+
|
|
82
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
83
|
+
}
|
|
84
|
+
declare type SSMContactsClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
85
|
+
|
|
86
|
+
export interface SSMContactsClientConfig extends SSMContactsClientConfigType {
|
|
87
|
+
}
|
|
88
|
+
declare type SSMContactsClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
|
|
89
|
+
|
|
90
|
+
export interface SSMContactsClientResolvedConfig extends SSMContactsClientResolvedConfigType {
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
export declare class SSMContactsClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig> {
|
|
94
|
+
|
|
95
|
+
readonly config: SSMContactsClientResolvedConfig;
|
|
96
|
+
constructor(configuration: SSMContactsClientConfig);
|
|
97
|
+
|
|
98
|
+
destroy(): void;
|
|
99
|
+
}
|
|
100
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { AcceptPageRequest, AcceptPageResult } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
|
|
5
|
+
export interface AcceptPageCommandInput extends AcceptPageRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface AcceptPageCommandOutput extends AcceptPageResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class AcceptPageCommand extends $Command<AcceptPageCommandInput, AcceptPageCommandOutput, SSMContactsClientResolvedConfig> {
|
|
11
|
+
readonly input: AcceptPageCommandInput;
|
|
12
|
+
constructor(input: AcceptPageCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AcceptPageCommandInput, AcceptPageCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { ActivateContactChannelRequest, ActivateContactChannelResult } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
|
|
5
|
+
export interface ActivateContactChannelCommandInput extends ActivateContactChannelRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ActivateContactChannelCommandOutput extends ActivateContactChannelResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ActivateContactChannelCommand extends $Command<ActivateContactChannelCommandInput, ActivateContactChannelCommandOutput, SSMContactsClientResolvedConfig> {
|
|
11
|
+
readonly input: ActivateContactChannelCommandInput;
|
|
12
|
+
constructor(input: ActivateContactChannelCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ActivateContactChannelCommandInput, ActivateContactChannelCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { CreateContactChannelRequest, CreateContactChannelResult } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
|
|
5
|
+
export interface CreateContactChannelCommandInput extends CreateContactChannelRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateContactChannelCommandOutput extends CreateContactChannelResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateContactChannelCommand extends $Command<CreateContactChannelCommandInput, CreateContactChannelCommandOutput, SSMContactsClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateContactChannelCommandInput;
|
|
12
|
+
constructor(input: CreateContactChannelCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateContactChannelCommandInput, CreateContactChannelCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { CreateContactRequest, CreateContactResult } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
|
|
5
|
+
export interface CreateContactCommandInput extends CreateContactRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateContactCommandOutput extends CreateContactResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateContactCommand extends $Command<CreateContactCommandInput, CreateContactCommandOutput, SSMContactsClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateContactCommandInput;
|
|
12
|
+
constructor(input: CreateContactCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateContactCommandInput, CreateContactCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { DeactivateContactChannelRequest, DeactivateContactChannelResult } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
|
|
5
|
+
export interface DeactivateContactChannelCommandInput extends DeactivateContactChannelRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeactivateContactChannelCommandOutput extends DeactivateContactChannelResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeactivateContactChannelCommand extends $Command<DeactivateContactChannelCommandInput, DeactivateContactChannelCommandOutput, SSMContactsClientResolvedConfig> {
|
|
11
|
+
readonly input: DeactivateContactChannelCommandInput;
|
|
12
|
+
constructor(input: DeactivateContactChannelCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeactivateContactChannelCommandInput, DeactivateContactChannelCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { DeleteContactChannelRequest, DeleteContactChannelResult } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
|
|
5
|
+
export interface DeleteContactChannelCommandInput extends DeleteContactChannelRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteContactChannelCommandOutput extends DeleteContactChannelResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteContactChannelCommand extends $Command<DeleteContactChannelCommandInput, DeleteContactChannelCommandOutput, SSMContactsClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteContactChannelCommandInput;
|
|
12
|
+
constructor(input: DeleteContactChannelCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteContactChannelCommandInput, DeleteContactChannelCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { DeleteContactRequest, DeleteContactResult } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
|
|
5
|
+
export interface DeleteContactCommandInput extends DeleteContactRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteContactCommandOutput extends DeleteContactResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteContactCommand extends $Command<DeleteContactCommandInput, DeleteContactCommandOutput, SSMContactsClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteContactCommandInput;
|
|
12
|
+
constructor(input: DeleteContactCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteContactCommandInput, DeleteContactCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { DescribeEngagementRequest, DescribeEngagementResult } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
|
|
5
|
+
export interface DescribeEngagementCommandInput extends DescribeEngagementRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeEngagementCommandOutput extends DescribeEngagementResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeEngagementCommand extends $Command<DescribeEngagementCommandInput, DescribeEngagementCommandOutput, SSMContactsClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeEngagementCommandInput;
|
|
12
|
+
constructor(input: DescribeEngagementCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeEngagementCommandInput, DescribeEngagementCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { DescribePageRequest, DescribePageResult } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
|
|
5
|
+
export interface DescribePageCommandInput extends DescribePageRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribePageCommandOutput extends DescribePageResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribePageCommand extends $Command<DescribePageCommandInput, DescribePageCommandOutput, SSMContactsClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribePageCommandInput;
|
|
12
|
+
constructor(input: DescribePageCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribePageCommandInput, DescribePageCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 { GetContactChannelRequest, GetContactChannelResult } from "../models/models_0";
|
|
4
|
+
import { ServiceInputTypes, ServiceOutputTypes, SSMContactsClientResolvedConfig } from "../SSMContactsClient";
|
|
5
|
+
export interface GetContactChannelCommandInput extends GetContactChannelRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetContactChannelCommandOutput extends GetContactChannelResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetContactChannelCommand extends $Command<GetContactChannelCommandInput, GetContactChannelCommandOutput, SSMContactsClientResolvedConfig> {
|
|
11
|
+
readonly input: GetContactChannelCommandInput;
|
|
12
|
+
constructor(input: GetContactChannelCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SSMContactsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetContactChannelCommandInput, GetContactChannelCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|