@aws-sdk/client-ssm-contacts 3.686.0 → 3.691.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/models/models_0.d.ts +140 -140
- package/dist-types/ts3.4/models/models_0.d.ts +140 -140
- package/package.json +7 -7
|
@@ -37,7 +37,7 @@ export interface AcceptPageRequest {
|
|
|
37
37
|
* <p>The ARN of the contact channel.</p>
|
|
38
38
|
* @public
|
|
39
39
|
*/
|
|
40
|
-
ContactChannelId?: string;
|
|
40
|
+
ContactChannelId?: string | undefined;
|
|
41
41
|
/**
|
|
42
42
|
* <p>The type indicates if the page was <code>DELIVERED</code> or <code>READ</code>.</p>
|
|
43
43
|
* @public
|
|
@@ -47,7 +47,7 @@ export interface AcceptPageRequest {
|
|
|
47
47
|
* <p>Information provided by the user when the user acknowledges the page.</p>
|
|
48
48
|
* @public
|
|
49
49
|
*/
|
|
50
|
-
Note?: string;
|
|
50
|
+
Note?: string | undefined;
|
|
51
51
|
/**
|
|
52
52
|
* <p>A 6-digit code used to acknowledge the page.</p>
|
|
53
53
|
* @public
|
|
@@ -64,7 +64,7 @@ export interface AcceptPageRequest {
|
|
|
64
64
|
* Incident Manager to accept any value entered for the <code>AcceptCode</code>.</p>
|
|
65
65
|
* @public
|
|
66
66
|
*/
|
|
67
|
-
AcceptCodeValidation?: AcceptCodeValidation;
|
|
67
|
+
AcceptCodeValidation?: AcceptCodeValidation | undefined;
|
|
68
68
|
}
|
|
69
69
|
/**
|
|
70
70
|
* @public
|
|
@@ -96,7 +96,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
96
96
|
* Advice to clients on when the call can be safely retried
|
|
97
97
|
* @public
|
|
98
98
|
*/
|
|
99
|
-
RetryAfterSeconds?: number;
|
|
99
|
+
RetryAfterSeconds?: number | undefined;
|
|
100
100
|
/**
|
|
101
101
|
* @internal
|
|
102
102
|
*/
|
|
@@ -137,17 +137,17 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
137
137
|
* Service Quotas requirement to identify originating service
|
|
138
138
|
* @public
|
|
139
139
|
*/
|
|
140
|
-
QuotaCode?: string;
|
|
140
|
+
QuotaCode?: string | undefined;
|
|
141
141
|
/**
|
|
142
142
|
* Service Quotas requirement to identify originating quota
|
|
143
143
|
* @public
|
|
144
144
|
*/
|
|
145
|
-
ServiceCode?: string;
|
|
145
|
+
ServiceCode?: string | undefined;
|
|
146
146
|
/**
|
|
147
147
|
* Advice to clients on when the call can be safely retried
|
|
148
148
|
* @public
|
|
149
149
|
*/
|
|
150
|
-
RetryAfterSeconds?: number;
|
|
150
|
+
RetryAfterSeconds?: number | undefined;
|
|
151
151
|
/**
|
|
152
152
|
* @internal
|
|
153
153
|
*/
|
|
@@ -196,12 +196,12 @@ export declare class ValidationException extends __BaseException {
|
|
|
196
196
|
* Reason the request failed validation
|
|
197
197
|
* @public
|
|
198
198
|
*/
|
|
199
|
-
Reason?: ValidationExceptionReason;
|
|
199
|
+
Reason?: ValidationExceptionReason | undefined;
|
|
200
200
|
/**
|
|
201
201
|
* The fields that caused the error
|
|
202
202
|
* @public
|
|
203
203
|
*/
|
|
204
|
-
Fields?: ValidationExceptionField[];
|
|
204
|
+
Fields?: ValidationExceptionField[] | undefined;
|
|
205
205
|
/**
|
|
206
206
|
* @internal
|
|
207
207
|
*/
|
|
@@ -255,7 +255,7 @@ export interface ChannelTargetInfo {
|
|
|
255
255
|
* initially fails.</p>
|
|
256
256
|
* @public
|
|
257
257
|
*/
|
|
258
|
-
RetryIntervalInMinutes?: number;
|
|
258
|
+
RetryIntervalInMinutes?: number | undefined;
|
|
259
259
|
}
|
|
260
260
|
/**
|
|
261
261
|
* @public
|
|
@@ -311,7 +311,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
311
311
|
* List of dependent entities containing information on relation type and resourceArns linked to the resource in use
|
|
312
312
|
* @public
|
|
313
313
|
*/
|
|
314
|
-
DependentEntities?: DependentEntity[];
|
|
314
|
+
DependentEntities?: DependentEntity[] | undefined;
|
|
315
315
|
/**
|
|
316
316
|
* @internal
|
|
317
317
|
*/
|
|
@@ -350,7 +350,7 @@ export interface Contact {
|
|
|
350
350
|
* <p>The full name of the contact or escalation plan.</p>
|
|
351
351
|
* @public
|
|
352
352
|
*/
|
|
353
|
-
DisplayName?: string;
|
|
353
|
+
DisplayName?: string | undefined;
|
|
354
354
|
/**
|
|
355
355
|
* <p>Refers to the type of contact. A single contact is type <code>PERSONAL</code> and an
|
|
356
356
|
* escalation plan is type <code>ESCALATION</code>.</p>
|
|
@@ -379,7 +379,7 @@ export interface ContactChannelAddress {
|
|
|
379
379
|
* </ul>
|
|
380
380
|
* @public
|
|
381
381
|
*/
|
|
382
|
-
SimpleAddress?: string;
|
|
382
|
+
SimpleAddress?: string | undefined;
|
|
383
383
|
}
|
|
384
384
|
/**
|
|
385
385
|
* <p>The method that Incident Manager uses to engage a contact.</p>
|
|
@@ -416,7 +416,7 @@ export interface ContactChannel {
|
|
|
416
416
|
* </ul>
|
|
417
417
|
* @public
|
|
418
418
|
*/
|
|
419
|
-
Type?: ChannelType;
|
|
419
|
+
Type?: ChannelType | undefined;
|
|
420
420
|
/**
|
|
421
421
|
* <p>The details that Incident Manager uses when trying to engage the contact channel.</p>
|
|
422
422
|
* @public
|
|
@@ -438,7 +438,7 @@ export interface ContactTargetInfo {
|
|
|
438
438
|
* <p>The Amazon Resource Name (ARN) of the contact.</p>
|
|
439
439
|
* @public
|
|
440
440
|
*/
|
|
441
|
-
ContactId?: string;
|
|
441
|
+
ContactId?: string | undefined;
|
|
442
442
|
/**
|
|
443
443
|
* <p>A Boolean value determining if the contact's acknowledgement stops the progress of
|
|
444
444
|
* stages in the plan.</p>
|
|
@@ -471,12 +471,12 @@ export interface CoverageTime {
|
|
|
471
471
|
* <p>Information about when the on-call rotation shift begins.</p>
|
|
472
472
|
* @public
|
|
473
473
|
*/
|
|
474
|
-
Start?: HandOffTime;
|
|
474
|
+
Start?: HandOffTime | undefined;
|
|
475
475
|
/**
|
|
476
476
|
* <p>Information about when the on-call rotation shift ends.</p>
|
|
477
477
|
* @public
|
|
478
478
|
*/
|
|
479
|
-
End?: HandOffTime;
|
|
479
|
+
End?: HandOffTime | undefined;
|
|
480
480
|
}
|
|
481
481
|
/**
|
|
482
482
|
* <p>The contact or contact channel that's being engaged.</p>
|
|
@@ -487,12 +487,12 @@ export interface Target {
|
|
|
487
487
|
* <p>Information about the contact channel Incident Manager is engaging.</p>
|
|
488
488
|
* @public
|
|
489
489
|
*/
|
|
490
|
-
ChannelTargetInfo?: ChannelTargetInfo;
|
|
490
|
+
ChannelTargetInfo?: ChannelTargetInfo | undefined;
|
|
491
491
|
/**
|
|
492
492
|
* <p>Information about the contact that Incident Manager is engaging.</p>
|
|
493
493
|
* @public
|
|
494
494
|
*/
|
|
495
|
-
ContactTargetInfo?: ContactTargetInfo;
|
|
495
|
+
ContactTargetInfo?: ContactTargetInfo | undefined;
|
|
496
496
|
}
|
|
497
497
|
/**
|
|
498
498
|
* <p>A set amount of time that an escalation plan or engagement plan engages the specified
|
|
@@ -525,13 +525,13 @@ export interface Plan {
|
|
|
525
525
|
* contact methods.</p>
|
|
526
526
|
* @public
|
|
527
527
|
*/
|
|
528
|
-
Stages?: Stage[];
|
|
528
|
+
Stages?: Stage[] | undefined;
|
|
529
529
|
/**
|
|
530
530
|
* <p>The Amazon Resource Names (ARNs) of the on-call rotations associated with the plan.
|
|
531
531
|
* </p>
|
|
532
532
|
* @public
|
|
533
533
|
*/
|
|
534
|
-
RotationIds?: string[];
|
|
534
|
+
RotationIds?: string[] | undefined;
|
|
535
535
|
}
|
|
536
536
|
/**
|
|
537
537
|
* <p>A container of a key-value name pair.</p>
|
|
@@ -542,12 +542,12 @@ export interface Tag {
|
|
|
542
542
|
* <p>Name of the object key.</p>
|
|
543
543
|
* @public
|
|
544
544
|
*/
|
|
545
|
-
Key?: string;
|
|
545
|
+
Key?: string | undefined;
|
|
546
546
|
/**
|
|
547
547
|
* <p>Value of the tag.</p>
|
|
548
548
|
* @public
|
|
549
549
|
*/
|
|
550
|
-
Value?: string;
|
|
550
|
+
Value?: string | undefined;
|
|
551
551
|
}
|
|
552
552
|
/**
|
|
553
553
|
* @public
|
|
@@ -563,7 +563,7 @@ export interface CreateContactRequest {
|
|
|
563
563
|
* <p>The full name of the contact or escalation plan.</p>
|
|
564
564
|
* @public
|
|
565
565
|
*/
|
|
566
|
-
DisplayName?: string;
|
|
566
|
+
DisplayName?: string | undefined;
|
|
567
567
|
/**
|
|
568
568
|
* <p>To create an escalation plan use <code>ESCALATION</code>. To create a contact use
|
|
569
569
|
* <code>PERSONAL</code>.</p>
|
|
@@ -581,13 +581,13 @@ export interface CreateContactRequest {
|
|
|
581
581
|
* replication set.</p>
|
|
582
582
|
* @public
|
|
583
583
|
*/
|
|
584
|
-
Tags?: Tag[];
|
|
584
|
+
Tags?: Tag[] | undefined;
|
|
585
585
|
/**
|
|
586
586
|
* <p>A token ensuring that the operation is called only once with the specified
|
|
587
587
|
* details.</p>
|
|
588
588
|
* @public
|
|
589
589
|
*/
|
|
590
|
-
IdempotencyToken?: string;
|
|
590
|
+
IdempotencyToken?: string | undefined;
|
|
591
591
|
}
|
|
592
592
|
/**
|
|
593
593
|
* @public
|
|
@@ -624,12 +624,12 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
624
624
|
* Identifier of the resource affected
|
|
625
625
|
* @public
|
|
626
626
|
*/
|
|
627
|
-
ResourceId?: string;
|
|
627
|
+
ResourceId?: string | undefined;
|
|
628
628
|
/**
|
|
629
629
|
* Type of the resource affected
|
|
630
630
|
* @public
|
|
631
631
|
*/
|
|
632
|
-
ResourceType?: string;
|
|
632
|
+
ResourceType?: string | undefined;
|
|
633
633
|
/**
|
|
634
634
|
* Service Quotas requirement to identify originating service
|
|
635
635
|
* @public
|
|
@@ -705,13 +705,13 @@ export interface CreateContactChannelRequest {
|
|
|
705
705
|
* Incident Manager can't engage your contact channel until it has been activated.</p>
|
|
706
706
|
* @public
|
|
707
707
|
*/
|
|
708
|
-
DeferActivation?: boolean;
|
|
708
|
+
DeferActivation?: boolean | undefined;
|
|
709
709
|
/**
|
|
710
710
|
* <p>A token ensuring that the operation is called only once with the specified
|
|
711
711
|
* details.</p>
|
|
712
712
|
* @public
|
|
713
713
|
*/
|
|
714
|
-
IdempotencyToken?: string;
|
|
714
|
+
IdempotencyToken?: string | undefined;
|
|
715
715
|
}
|
|
716
716
|
/**
|
|
717
717
|
* @public
|
|
@@ -782,17 +782,17 @@ export interface RecurrenceSettings {
|
|
|
782
782
|
* <p>Information about on-call rotations that recur monthly.</p>
|
|
783
783
|
* @public
|
|
784
784
|
*/
|
|
785
|
-
MonthlySettings?: MonthlySetting[];
|
|
785
|
+
MonthlySettings?: MonthlySetting[] | undefined;
|
|
786
786
|
/**
|
|
787
787
|
* <p>Information about on-call rotations that recur weekly.</p>
|
|
788
788
|
* @public
|
|
789
789
|
*/
|
|
790
|
-
WeeklySettings?: WeeklySetting[];
|
|
790
|
+
WeeklySettings?: WeeklySetting[] | undefined;
|
|
791
791
|
/**
|
|
792
792
|
* <p>Information about on-call rotations that recur daily.</p>
|
|
793
793
|
* @public
|
|
794
794
|
*/
|
|
795
|
-
DailySettings?: HandOffTime[];
|
|
795
|
+
DailySettings?: HandOffTime[] | undefined;
|
|
796
796
|
/**
|
|
797
797
|
* <p>The number of contacts, or shift team members designated to be on call concurrently
|
|
798
798
|
* during a shift. For example, in an on-call schedule containing ten contacts, a value of
|
|
@@ -804,7 +804,7 @@ export interface RecurrenceSettings {
|
|
|
804
804
|
* <p>Information about the days of the week included in on-call rotation coverage.</p>
|
|
805
805
|
* @public
|
|
806
806
|
*/
|
|
807
|
-
ShiftCoverages?: Partial<Record<DayOfWeek, CoverageTime[]
|
|
807
|
+
ShiftCoverages?: Partial<Record<DayOfWeek, CoverageTime[]>> | undefined;
|
|
808
808
|
/**
|
|
809
809
|
* <p>The number of days, weeks, or months a single rotation lasts.</p>
|
|
810
810
|
* @public
|
|
@@ -832,7 +832,7 @@ export interface CreateRotationRequest {
|
|
|
832
832
|
* <p>The date and time that the rotation goes into effect.</p>
|
|
833
833
|
* @public
|
|
834
834
|
*/
|
|
835
|
-
StartTime?: Date;
|
|
835
|
+
StartTime?: Date | undefined;
|
|
836
836
|
/**
|
|
837
837
|
* <p>The time zone to base the rotation’s activity on in Internet Assigned Numbers Authority
|
|
838
838
|
* (IANA) format. For example: "America/Los_Angeles", "UTC", or "Asia/Seoul". For more
|
|
@@ -857,13 +857,13 @@ export interface CreateRotationRequest {
|
|
|
857
857
|
* Guide</i>.</p>
|
|
858
858
|
* @public
|
|
859
859
|
*/
|
|
860
|
-
Tags?: Tag[];
|
|
860
|
+
Tags?: Tag[] | undefined;
|
|
861
861
|
/**
|
|
862
862
|
* <p>A token that ensures that the operation is called only once with the specified
|
|
863
863
|
* details.</p>
|
|
864
864
|
* @public
|
|
865
865
|
*/
|
|
866
|
-
IdempotencyToken?: string;
|
|
866
|
+
IdempotencyToken?: string | undefined;
|
|
867
867
|
}
|
|
868
868
|
/**
|
|
869
869
|
* @public
|
|
@@ -907,7 +907,7 @@ export interface CreateRotationOverrideRequest {
|
|
|
907
907
|
* details.</p>
|
|
908
908
|
* @public
|
|
909
909
|
*/
|
|
910
|
-
IdempotencyToken?: string;
|
|
910
|
+
IdempotencyToken?: string | undefined;
|
|
911
911
|
}
|
|
912
912
|
/**
|
|
913
913
|
* @public
|
|
@@ -1045,28 +1045,28 @@ export interface DescribeEngagementResult {
|
|
|
1045
1045
|
* engagements to <code>SMS</code>.</p>
|
|
1046
1046
|
* @public
|
|
1047
1047
|
*/
|
|
1048
|
-
PublicSubject?: string;
|
|
1048
|
+
PublicSubject?: string | undefined;
|
|
1049
1049
|
/**
|
|
1050
1050
|
* <p>The insecure content of the message that was sent to the contact. Use this field for
|
|
1051
1051
|
* engagements to <code>SMS</code>.</p>
|
|
1052
1052
|
* @public
|
|
1053
1053
|
*/
|
|
1054
|
-
PublicContent?: string;
|
|
1054
|
+
PublicContent?: string | undefined;
|
|
1055
1055
|
/**
|
|
1056
1056
|
* <p>The ARN of the incident in which the engagement occurred.</p>
|
|
1057
1057
|
* @public
|
|
1058
1058
|
*/
|
|
1059
|
-
IncidentId?: string;
|
|
1059
|
+
IncidentId?: string | undefined;
|
|
1060
1060
|
/**
|
|
1061
1061
|
* <p>The time that the engagement started.</p>
|
|
1062
1062
|
* @public
|
|
1063
1063
|
*/
|
|
1064
|
-
StartTime?: Date;
|
|
1064
|
+
StartTime?: Date | undefined;
|
|
1065
1065
|
/**
|
|
1066
1066
|
* <p>The time that the engagement ended.</p>
|
|
1067
1067
|
* @public
|
|
1068
1068
|
*/
|
|
1069
|
-
StopTime?: Date;
|
|
1069
|
+
StopTime?: Date | undefined;
|
|
1070
1070
|
}
|
|
1071
1071
|
/**
|
|
1072
1072
|
* @public
|
|
@@ -1119,33 +1119,33 @@ export interface DescribePageResult {
|
|
|
1119
1119
|
* engagements to <code>SMS</code>.</p>
|
|
1120
1120
|
* @public
|
|
1121
1121
|
*/
|
|
1122
|
-
PublicSubject?: string;
|
|
1122
|
+
PublicSubject?: string | undefined;
|
|
1123
1123
|
/**
|
|
1124
1124
|
* <p>The insecure content of the message that was sent to the contact. Use this field for
|
|
1125
1125
|
* engagements to <code>SMS</code>.</p>
|
|
1126
1126
|
* @public
|
|
1127
1127
|
*/
|
|
1128
|
-
PublicContent?: string;
|
|
1128
|
+
PublicContent?: string | undefined;
|
|
1129
1129
|
/**
|
|
1130
1130
|
* <p>The ARN of the incident that engaged the contact channel.</p>
|
|
1131
1131
|
* @public
|
|
1132
1132
|
*/
|
|
1133
|
-
IncidentId?: string;
|
|
1133
|
+
IncidentId?: string | undefined;
|
|
1134
1134
|
/**
|
|
1135
1135
|
* <p>The time the engagement was sent to the contact channel.</p>
|
|
1136
1136
|
* @public
|
|
1137
1137
|
*/
|
|
1138
|
-
SentTime?: Date;
|
|
1138
|
+
SentTime?: Date | undefined;
|
|
1139
1139
|
/**
|
|
1140
1140
|
* <p>The time that the contact channel acknowledged the engagement.</p>
|
|
1141
1141
|
* @public
|
|
1142
1142
|
*/
|
|
1143
|
-
ReadTime?: Date;
|
|
1143
|
+
ReadTime?: Date | undefined;
|
|
1144
1144
|
/**
|
|
1145
1145
|
* <p>The time that the contact channel received the engagement.</p>
|
|
1146
1146
|
* @public
|
|
1147
1147
|
*/
|
|
1148
|
-
DeliveryTime?: Date;
|
|
1148
|
+
DeliveryTime?: Date | undefined;
|
|
1149
1149
|
}
|
|
1150
1150
|
/**
|
|
1151
1151
|
* <p>Incident Manager reaching out to a contact or escalation plan to engage contact during an
|
|
@@ -1172,17 +1172,17 @@ export interface Engagement {
|
|
|
1172
1172
|
* <p>The ARN of the incident that's engaging the contact.</p>
|
|
1173
1173
|
* @public
|
|
1174
1174
|
*/
|
|
1175
|
-
IncidentId?: string;
|
|
1175
|
+
IncidentId?: string | undefined;
|
|
1176
1176
|
/**
|
|
1177
1177
|
* <p>The time that the engagement began.</p>
|
|
1178
1178
|
* @public
|
|
1179
1179
|
*/
|
|
1180
|
-
StartTime?: Date;
|
|
1180
|
+
StartTime?: Date | undefined;
|
|
1181
1181
|
/**
|
|
1182
1182
|
* <p>The time that the engagement ended.</p>
|
|
1183
1183
|
* @public
|
|
1184
1184
|
*/
|
|
1185
|
-
StopTime?: Date;
|
|
1185
|
+
StopTime?: Date | undefined;
|
|
1186
1186
|
}
|
|
1187
1187
|
/**
|
|
1188
1188
|
* @public
|
|
@@ -1213,7 +1213,7 @@ export interface GetContactResult {
|
|
|
1213
1213
|
* <p>The full name of the contact or escalation plan.</p>
|
|
1214
1214
|
* @public
|
|
1215
1215
|
*/
|
|
1216
|
-
DisplayName?: string;
|
|
1216
|
+
DisplayName?: string | undefined;
|
|
1217
1217
|
/**
|
|
1218
1218
|
* <p>The type of contact, either <code>PERSONAL</code> or <code>ESCALATION</code>.</p>
|
|
1219
1219
|
* @public
|
|
@@ -1270,7 +1270,7 @@ export interface GetContactChannelResult {
|
|
|
1270
1270
|
* <p>A Boolean value indicating if the contact channel has been activated or not.</p>
|
|
1271
1271
|
* @public
|
|
1272
1272
|
*/
|
|
1273
|
-
ActivationStatus?: ActivationStatus;
|
|
1273
|
+
ActivationStatus?: ActivationStatus | undefined;
|
|
1274
1274
|
}
|
|
1275
1275
|
/**
|
|
1276
1276
|
* @public
|
|
@@ -1290,12 +1290,12 @@ export interface GetContactPolicyResult {
|
|
|
1290
1290
|
* <p>The ARN of the contact or escalation plan.</p>
|
|
1291
1291
|
* @public
|
|
1292
1292
|
*/
|
|
1293
|
-
ContactArn?: string;
|
|
1293
|
+
ContactArn?: string | undefined;
|
|
1294
1294
|
/**
|
|
1295
1295
|
* <p>Details about the resource policy attached to the contact or escalation plan.</p>
|
|
1296
1296
|
* @public
|
|
1297
1297
|
*/
|
|
1298
|
-
Policy?: string;
|
|
1298
|
+
Policy?: string | undefined;
|
|
1299
1299
|
}
|
|
1300
1300
|
/**
|
|
1301
1301
|
* @public
|
|
@@ -1371,33 +1371,33 @@ export interface GetRotationOverrideResult {
|
|
|
1371
1371
|
* <p>The Amazon Resource Name (ARN) of the override to an on-call rotation.</p>
|
|
1372
1372
|
* @public
|
|
1373
1373
|
*/
|
|
1374
|
-
RotationOverrideId?: string;
|
|
1374
|
+
RotationOverrideId?: string | undefined;
|
|
1375
1375
|
/**
|
|
1376
1376
|
* <p>The Amazon Resource Name (ARN) of the on-call rotation that was overridden.</p>
|
|
1377
1377
|
* @public
|
|
1378
1378
|
*/
|
|
1379
|
-
RotationArn?: string;
|
|
1379
|
+
RotationArn?: string | undefined;
|
|
1380
1380
|
/**
|
|
1381
1381
|
* <p>The Amazon Resource Names (ARNs) of the contacts assigned to the override of the on-call
|
|
1382
1382
|
* rotation.</p>
|
|
1383
1383
|
* @public
|
|
1384
1384
|
*/
|
|
1385
|
-
NewContactIds?: string[];
|
|
1385
|
+
NewContactIds?: string[] | undefined;
|
|
1386
1386
|
/**
|
|
1387
1387
|
* <p>The date and time when the override goes into effect.</p>
|
|
1388
1388
|
* @public
|
|
1389
1389
|
*/
|
|
1390
|
-
StartTime?: Date;
|
|
1390
|
+
StartTime?: Date | undefined;
|
|
1391
1391
|
/**
|
|
1392
1392
|
* <p>The date and time when the override ends.</p>
|
|
1393
1393
|
* @public
|
|
1394
1394
|
*/
|
|
1395
|
-
EndTime?: Date;
|
|
1395
|
+
EndTime?: Date | undefined;
|
|
1396
1396
|
/**
|
|
1397
1397
|
* <p>The date and time when the override was created.</p>
|
|
1398
1398
|
* @public
|
|
1399
1399
|
*/
|
|
1400
|
-
CreateTime?: Date;
|
|
1400
|
+
CreateTime?: Date | undefined;
|
|
1401
1401
|
}
|
|
1402
1402
|
/**
|
|
1403
1403
|
* @public
|
|
@@ -1412,12 +1412,12 @@ export interface ListContactChannelsRequest {
|
|
|
1412
1412
|
* <p>The pagination token to continue to the next page of results.</p>
|
|
1413
1413
|
* @public
|
|
1414
1414
|
*/
|
|
1415
|
-
NextToken?: string;
|
|
1415
|
+
NextToken?: string | undefined;
|
|
1416
1416
|
/**
|
|
1417
1417
|
* <p>The maximum number of contact channels per page.</p>
|
|
1418
1418
|
* @public
|
|
1419
1419
|
*/
|
|
1420
|
-
MaxResults?: number;
|
|
1420
|
+
MaxResults?: number | undefined;
|
|
1421
1421
|
}
|
|
1422
1422
|
/**
|
|
1423
1423
|
* @public
|
|
@@ -1427,7 +1427,7 @@ export interface ListContactChannelsResult {
|
|
|
1427
1427
|
* <p>The pagination token to continue to the next page of results.</p>
|
|
1428
1428
|
* @public
|
|
1429
1429
|
*/
|
|
1430
|
-
NextToken?: string;
|
|
1430
|
+
NextToken?: string | undefined;
|
|
1431
1431
|
/**
|
|
1432
1432
|
* <p>A list of contact channels related to the specified contact.</p>
|
|
1433
1433
|
* @public
|
|
@@ -1442,23 +1442,23 @@ export interface ListContactsRequest {
|
|
|
1442
1442
|
* <p>The pagination token to continue to the next page of results.</p>
|
|
1443
1443
|
* @public
|
|
1444
1444
|
*/
|
|
1445
|
-
NextToken?: string;
|
|
1445
|
+
NextToken?: string | undefined;
|
|
1446
1446
|
/**
|
|
1447
1447
|
* <p>The maximum number of contacts and escalation plans per page of results.</p>
|
|
1448
1448
|
* @public
|
|
1449
1449
|
*/
|
|
1450
|
-
MaxResults?: number;
|
|
1450
|
+
MaxResults?: number | undefined;
|
|
1451
1451
|
/**
|
|
1452
1452
|
* <p>Used to list only contacts who's aliases start with the specified prefix.</p>
|
|
1453
1453
|
* @public
|
|
1454
1454
|
*/
|
|
1455
|
-
AliasPrefix?: string;
|
|
1455
|
+
AliasPrefix?: string | undefined;
|
|
1456
1456
|
/**
|
|
1457
1457
|
* <p>The type of contact. A contact is type <code>PERSONAL</code> and an escalation plan is
|
|
1458
1458
|
* type <code>ESCALATION</code>.</p>
|
|
1459
1459
|
* @public
|
|
1460
1460
|
*/
|
|
1461
|
-
Type?: ContactType;
|
|
1461
|
+
Type?: ContactType | undefined;
|
|
1462
1462
|
}
|
|
1463
1463
|
/**
|
|
1464
1464
|
* @public
|
|
@@ -1468,12 +1468,12 @@ export interface ListContactsResult {
|
|
|
1468
1468
|
* <p>The pagination token to continue to the next page of results.</p>
|
|
1469
1469
|
* @public
|
|
1470
1470
|
*/
|
|
1471
|
-
NextToken?: string;
|
|
1471
|
+
NextToken?: string | undefined;
|
|
1472
1472
|
/**
|
|
1473
1473
|
* <p>A list of the contacts and escalation plans in your Incident Manager account.</p>
|
|
1474
1474
|
* @public
|
|
1475
1475
|
*/
|
|
1476
|
-
Contacts?: Contact[];
|
|
1476
|
+
Contacts?: Contact[] | undefined;
|
|
1477
1477
|
}
|
|
1478
1478
|
/**
|
|
1479
1479
|
* <p>A range of between two set times</p>
|
|
@@ -1484,12 +1484,12 @@ export interface TimeRange {
|
|
|
1484
1484
|
* <p>The start of the time range.</p>
|
|
1485
1485
|
* @public
|
|
1486
1486
|
*/
|
|
1487
|
-
StartTime?: Date;
|
|
1487
|
+
StartTime?: Date | undefined;
|
|
1488
1488
|
/**
|
|
1489
1489
|
* <p>The end of the time range.</p>
|
|
1490
1490
|
* @public
|
|
1491
1491
|
*/
|
|
1492
|
-
EndTime?: Date;
|
|
1492
|
+
EndTime?: Date | undefined;
|
|
1493
1493
|
}
|
|
1494
1494
|
/**
|
|
1495
1495
|
* @public
|
|
@@ -1499,22 +1499,22 @@ export interface ListEngagementsRequest {
|
|
|
1499
1499
|
* <p>The pagination token to continue to the next page of results.</p>
|
|
1500
1500
|
* @public
|
|
1501
1501
|
*/
|
|
1502
|
-
NextToken?: string;
|
|
1502
|
+
NextToken?: string | undefined;
|
|
1503
1503
|
/**
|
|
1504
1504
|
* <p>The maximum number of engagements per page of results.</p>
|
|
1505
1505
|
* @public
|
|
1506
1506
|
*/
|
|
1507
|
-
MaxResults?: number;
|
|
1507
|
+
MaxResults?: number | undefined;
|
|
1508
1508
|
/**
|
|
1509
1509
|
* <p>The Amazon Resource Name (ARN) of the incident you're listing engagements for.</p>
|
|
1510
1510
|
* @public
|
|
1511
1511
|
*/
|
|
1512
|
-
IncidentId?: string;
|
|
1512
|
+
IncidentId?: string | undefined;
|
|
1513
1513
|
/**
|
|
1514
1514
|
* <p>The time range to lists engagements for an incident.</p>
|
|
1515
1515
|
* @public
|
|
1516
1516
|
*/
|
|
1517
|
-
TimeRangeValue?: TimeRange;
|
|
1517
|
+
TimeRangeValue?: TimeRange | undefined;
|
|
1518
1518
|
}
|
|
1519
1519
|
/**
|
|
1520
1520
|
* @public
|
|
@@ -1524,7 +1524,7 @@ export interface ListEngagementsResult {
|
|
|
1524
1524
|
* <p>The pagination token to continue to the next page of results.</p>
|
|
1525
1525
|
* @public
|
|
1526
1526
|
*/
|
|
1527
|
-
NextToken?: string;
|
|
1527
|
+
NextToken?: string | undefined;
|
|
1528
1528
|
/**
|
|
1529
1529
|
* <p>A list of each engagement that occurred during the specified time range of an
|
|
1530
1530
|
* incident.</p>
|
|
@@ -1545,12 +1545,12 @@ export interface ListPageReceiptsRequest {
|
|
|
1545
1545
|
* <p>The pagination token to continue to the next page of results.</p>
|
|
1546
1546
|
* @public
|
|
1547
1547
|
*/
|
|
1548
|
-
NextToken?: string;
|
|
1548
|
+
NextToken?: string | undefined;
|
|
1549
1549
|
/**
|
|
1550
1550
|
* <p>The maximum number of acknowledgements per page of results.</p>
|
|
1551
1551
|
* @public
|
|
1552
1552
|
*/
|
|
1553
|
-
MaxResults?: number;
|
|
1553
|
+
MaxResults?: number | undefined;
|
|
1554
1554
|
}
|
|
1555
1555
|
/**
|
|
1556
1556
|
* @public
|
|
@@ -1576,7 +1576,7 @@ export interface Receipt {
|
|
|
1576
1576
|
* <p>The Amazon Resource Name (ARN) of the contact channel Incident Manager engaged.</p>
|
|
1577
1577
|
* @public
|
|
1578
1578
|
*/
|
|
1579
|
-
ContactChannelArn?: string;
|
|
1579
|
+
ContactChannelArn?: string | undefined;
|
|
1580
1580
|
/**
|
|
1581
1581
|
* <p>The type follows the engagement cycle, <code>SENT</code>, <code>DELIVERED</code>, and
|
|
1582
1582
|
* <code>READ</code>.</p>
|
|
@@ -1587,7 +1587,7 @@ export interface Receipt {
|
|
|
1587
1587
|
* <p>Information provided during the page acknowledgement.</p>
|
|
1588
1588
|
* @public
|
|
1589
1589
|
*/
|
|
1590
|
-
ReceiptInfo?: string;
|
|
1590
|
+
ReceiptInfo?: string | undefined;
|
|
1591
1591
|
/**
|
|
1592
1592
|
* <p>The time receipt was <code>SENT</code>, <code>DELIVERED</code>, or
|
|
1593
1593
|
* <code>READ</code>.</p>
|
|
@@ -1603,12 +1603,12 @@ export interface ListPageReceiptsResult {
|
|
|
1603
1603
|
* <p>The pagination token to continue to the next page of results.</p>
|
|
1604
1604
|
* @public
|
|
1605
1605
|
*/
|
|
1606
|
-
NextToken?: string;
|
|
1606
|
+
NextToken?: string | undefined;
|
|
1607
1607
|
/**
|
|
1608
1608
|
* <p>A list of each acknowledgement.</p>
|
|
1609
1609
|
* @public
|
|
1610
1610
|
*/
|
|
1611
|
-
Receipts?: Receipt[];
|
|
1611
|
+
Receipts?: Receipt[] | undefined;
|
|
1612
1612
|
}
|
|
1613
1613
|
/**
|
|
1614
1614
|
* @public
|
|
@@ -1618,7 +1618,7 @@ export interface ListPageResolutionsRequest {
|
|
|
1618
1618
|
* <p>A token to start the list. Use this token to get the next set of results.</p>
|
|
1619
1619
|
* @public
|
|
1620
1620
|
*/
|
|
1621
|
-
NextToken?: string;
|
|
1621
|
+
NextToken?: string | undefined;
|
|
1622
1622
|
/**
|
|
1623
1623
|
* <p>The Amazon Resource Name (ARN) of the contact engaged for the incident.</p>
|
|
1624
1624
|
* @public
|
|
@@ -1650,7 +1650,7 @@ export interface ResolutionContact {
|
|
|
1650
1650
|
* <p>The stage in the escalation plan that resolves to this contact.</p>
|
|
1651
1651
|
* @public
|
|
1652
1652
|
*/
|
|
1653
|
-
StageIndex?: number;
|
|
1653
|
+
StageIndex?: number | undefined;
|
|
1654
1654
|
}
|
|
1655
1655
|
/**
|
|
1656
1656
|
* @public
|
|
@@ -1661,7 +1661,7 @@ export interface ListPageResolutionsResult {
|
|
|
1661
1661
|
* results.</p>
|
|
1662
1662
|
* @public
|
|
1663
1663
|
*/
|
|
1664
|
-
NextToken?: string;
|
|
1664
|
+
NextToken?: string | undefined;
|
|
1665
1665
|
/**
|
|
1666
1666
|
* <p>Information about the resolution for an engagement.</p>
|
|
1667
1667
|
* @public
|
|
@@ -1681,13 +1681,13 @@ export interface ListPagesByContactRequest {
|
|
|
1681
1681
|
* <p>The pagination token to continue to the next page of results.</p>
|
|
1682
1682
|
* @public
|
|
1683
1683
|
*/
|
|
1684
|
-
NextToken?: string;
|
|
1684
|
+
NextToken?: string | undefined;
|
|
1685
1685
|
/**
|
|
1686
1686
|
* <p>The maximum number of engagements to contact channels to list per page of results.
|
|
1687
1687
|
* </p>
|
|
1688
1688
|
* @public
|
|
1689
1689
|
*/
|
|
1690
|
-
MaxResults?: number;
|
|
1690
|
+
MaxResults?: number | undefined;
|
|
1691
1691
|
}
|
|
1692
1692
|
/**
|
|
1693
1693
|
* <p>Incident Manager engaging a contact's contact channel.</p>
|
|
@@ -1718,22 +1718,22 @@ export interface Page {
|
|
|
1718
1718
|
* <p>The ARN of the incident that's engaging the contact channel.</p>
|
|
1719
1719
|
* @public
|
|
1720
1720
|
*/
|
|
1721
|
-
IncidentId?: string;
|
|
1721
|
+
IncidentId?: string | undefined;
|
|
1722
1722
|
/**
|
|
1723
1723
|
* <p>The time that Incident Manager engaged the contact channel.</p>
|
|
1724
1724
|
* @public
|
|
1725
1725
|
*/
|
|
1726
|
-
SentTime?: Date;
|
|
1726
|
+
SentTime?: Date | undefined;
|
|
1727
1727
|
/**
|
|
1728
1728
|
* <p>The time the message was delivered to the contact channel.</p>
|
|
1729
1729
|
* @public
|
|
1730
1730
|
*/
|
|
1731
|
-
DeliveryTime?: Date;
|
|
1731
|
+
DeliveryTime?: Date | undefined;
|
|
1732
1732
|
/**
|
|
1733
1733
|
* <p>The time that the contact channel acknowledged engagement.</p>
|
|
1734
1734
|
* @public
|
|
1735
1735
|
*/
|
|
1736
|
-
ReadTime?: Date;
|
|
1736
|
+
ReadTime?: Date | undefined;
|
|
1737
1737
|
}
|
|
1738
1738
|
/**
|
|
1739
1739
|
* @public
|
|
@@ -1743,7 +1743,7 @@ export interface ListPagesByContactResult {
|
|
|
1743
1743
|
* <p>The pagination token to continue to the next page of results.</p>
|
|
1744
1744
|
* @public
|
|
1745
1745
|
*/
|
|
1746
|
-
NextToken?: string;
|
|
1746
|
+
NextToken?: string | undefined;
|
|
1747
1747
|
/**
|
|
1748
1748
|
* <p>The list of engagements to a contact's contact channel.</p>
|
|
1749
1749
|
* @public
|
|
@@ -1763,13 +1763,13 @@ export interface ListPagesByEngagementRequest {
|
|
|
1763
1763
|
* <p>The pagination token to continue to the next page of results.</p>
|
|
1764
1764
|
* @public
|
|
1765
1765
|
*/
|
|
1766
|
-
NextToken?: string;
|
|
1766
|
+
NextToken?: string | undefined;
|
|
1767
1767
|
/**
|
|
1768
1768
|
* <p>The maximum number of engagements to contact channels to list per page of
|
|
1769
1769
|
* results.</p>
|
|
1770
1770
|
* @public
|
|
1771
1771
|
*/
|
|
1772
|
-
MaxResults?: number;
|
|
1772
|
+
MaxResults?: number | undefined;
|
|
1773
1773
|
}
|
|
1774
1774
|
/**
|
|
1775
1775
|
* @public
|
|
@@ -1779,7 +1779,7 @@ export interface ListPagesByEngagementResult {
|
|
|
1779
1779
|
* <p>The pagination token to continue to the next page of results.</p>
|
|
1780
1780
|
* @public
|
|
1781
1781
|
*/
|
|
1782
|
-
NextToken?: string;
|
|
1782
|
+
NextToken?: string | undefined;
|
|
1783
1783
|
/**
|
|
1784
1784
|
* <p>The list of engagements to contact channels.</p>
|
|
1785
1785
|
* @public
|
|
@@ -1795,17 +1795,17 @@ export interface PreviewOverride {
|
|
|
1795
1795
|
* <p>Information about contacts to add to an on-call rotation override.</p>
|
|
1796
1796
|
* @public
|
|
1797
1797
|
*/
|
|
1798
|
-
NewMembers?: string[];
|
|
1798
|
+
NewMembers?: string[] | undefined;
|
|
1799
1799
|
/**
|
|
1800
1800
|
* <p>Information about the time a rotation override would begin.</p>
|
|
1801
1801
|
* @public
|
|
1802
1802
|
*/
|
|
1803
|
-
StartTime?: Date;
|
|
1803
|
+
StartTime?: Date | undefined;
|
|
1804
1804
|
/**
|
|
1805
1805
|
* <p>Information about the time a rotation override would end.</p>
|
|
1806
1806
|
* @public
|
|
1807
1807
|
*/
|
|
1808
|
-
EndTime?: Date;
|
|
1808
|
+
EndTime?: Date | undefined;
|
|
1809
1809
|
}
|
|
1810
1810
|
/**
|
|
1811
1811
|
* @public
|
|
@@ -1816,13 +1816,13 @@ export interface ListPreviewRotationShiftsRequest {
|
|
|
1816
1816
|
* and time.</p>
|
|
1817
1817
|
* @public
|
|
1818
1818
|
*/
|
|
1819
|
-
RotationStartTime?: Date;
|
|
1819
|
+
RotationStartTime?: Date | undefined;
|
|
1820
1820
|
/**
|
|
1821
1821
|
* <p>Used to filter the range of calculated shifts before sending the response back to the
|
|
1822
1822
|
* user. </p>
|
|
1823
1823
|
* @public
|
|
1824
1824
|
*/
|
|
1825
|
-
StartTime?: Date;
|
|
1825
|
+
StartTime?: Date | undefined;
|
|
1826
1826
|
/**
|
|
1827
1827
|
* <p>The date and time a rotation shift would end.</p>
|
|
1828
1828
|
* @public
|
|
@@ -1850,18 +1850,18 @@ export interface ListPreviewRotationShiftsRequest {
|
|
|
1850
1850
|
* <p>Information about changes that would be made in a rotation override.</p>
|
|
1851
1851
|
* @public
|
|
1852
1852
|
*/
|
|
1853
|
-
Overrides?: PreviewOverride[];
|
|
1853
|
+
Overrides?: PreviewOverride[] | undefined;
|
|
1854
1854
|
/**
|
|
1855
1855
|
* <p>A token to start the list. This token is used to get the next set of results.</p>
|
|
1856
1856
|
* @public
|
|
1857
1857
|
*/
|
|
1858
|
-
NextToken?: string;
|
|
1858
|
+
NextToken?: string | undefined;
|
|
1859
1859
|
/**
|
|
1860
1860
|
* <p>The maximum number of items to return for this call. The call also returns a token that
|
|
1861
1861
|
* can be specified in a subsequent call to get the next set of results.</p>
|
|
1862
1862
|
* @public
|
|
1863
1863
|
*/
|
|
1864
|
-
MaxResults?: number;
|
|
1864
|
+
MaxResults?: number | undefined;
|
|
1865
1865
|
}
|
|
1866
1866
|
/**
|
|
1867
1867
|
* <p>Information about overrides to an on-call rotation shift.</p>
|
|
@@ -1898,7 +1898,7 @@ export interface RotationShift {
|
|
|
1898
1898
|
* </p>
|
|
1899
1899
|
* @public
|
|
1900
1900
|
*/
|
|
1901
|
-
ContactIds?: string[];
|
|
1901
|
+
ContactIds?: string[] | undefined;
|
|
1902
1902
|
/**
|
|
1903
1903
|
* <p>The time a shift rotation begins.</p>
|
|
1904
1904
|
* @public
|
|
@@ -1913,12 +1913,12 @@ export interface RotationShift {
|
|
|
1913
1913
|
* <p>The type of shift rotation.</p>
|
|
1914
1914
|
* @public
|
|
1915
1915
|
*/
|
|
1916
|
-
Type?: ShiftType;
|
|
1916
|
+
Type?: ShiftType | undefined;
|
|
1917
1917
|
/**
|
|
1918
1918
|
* <p>Additional information about an on-call rotation shift.</p>
|
|
1919
1919
|
* @public
|
|
1920
1920
|
*/
|
|
1921
|
-
ShiftDetails?: ShiftDetails;
|
|
1921
|
+
ShiftDetails?: ShiftDetails | undefined;
|
|
1922
1922
|
}
|
|
1923
1923
|
/**
|
|
1924
1924
|
* @public
|
|
@@ -1928,13 +1928,13 @@ export interface ListPreviewRotationShiftsResult {
|
|
|
1928
1928
|
* <p>Details about a rotation shift, including times, types, and contacts.</p>
|
|
1929
1929
|
* @public
|
|
1930
1930
|
*/
|
|
1931
|
-
RotationShifts?: RotationShift[];
|
|
1931
|
+
RotationShifts?: RotationShift[] | undefined;
|
|
1932
1932
|
/**
|
|
1933
1933
|
* <p>The token for the next set of items to return. This token is used to get the next set of
|
|
1934
1934
|
* results.</p>
|
|
1935
1935
|
* @public
|
|
1936
1936
|
*/
|
|
1937
|
-
NextToken?: string;
|
|
1937
|
+
NextToken?: string | undefined;
|
|
1938
1938
|
}
|
|
1939
1939
|
/**
|
|
1940
1940
|
* @public
|
|
@@ -1959,13 +1959,13 @@ export interface ListRotationOverridesRequest {
|
|
|
1959
1959
|
* <p>A token to start the list. Use this token to get the next set of results.</p>
|
|
1960
1960
|
* @public
|
|
1961
1961
|
*/
|
|
1962
|
-
NextToken?: string;
|
|
1962
|
+
NextToken?: string | undefined;
|
|
1963
1963
|
/**
|
|
1964
1964
|
* <p>The maximum number of items to return for this call. The call also returns a token that
|
|
1965
1965
|
* you can specify in a subsequent call to get the next set of results.</p>
|
|
1966
1966
|
* @public
|
|
1967
1967
|
*/
|
|
1968
|
-
MaxResults?: number;
|
|
1968
|
+
MaxResults?: number | undefined;
|
|
1969
1969
|
}
|
|
1970
1970
|
/**
|
|
1971
1971
|
* <p>Information about an override specified for an on-call rotation.</p>
|
|
@@ -2007,13 +2007,13 @@ export interface ListRotationOverridesResult {
|
|
|
2007
2007
|
* <p>A list of rotation overrides in the specified time range.</p>
|
|
2008
2008
|
* @public
|
|
2009
2009
|
*/
|
|
2010
|
-
RotationOverrides?: RotationOverride[];
|
|
2010
|
+
RotationOverrides?: RotationOverride[] | undefined;
|
|
2011
2011
|
/**
|
|
2012
2012
|
* <p>The token for the next set of items to return. Use this token to get the next set of
|
|
2013
2013
|
* results.</p>
|
|
2014
2014
|
* @public
|
|
2015
2015
|
*/
|
|
2016
|
-
NextToken?: string;
|
|
2016
|
+
NextToken?: string | undefined;
|
|
2017
2017
|
}
|
|
2018
2018
|
/**
|
|
2019
2019
|
* @public
|
|
@@ -2025,18 +2025,18 @@ export interface ListRotationsRequest {
|
|
|
2025
2025
|
* as <code>production</code> and <code>prod-1</code>.</p>
|
|
2026
2026
|
* @public
|
|
2027
2027
|
*/
|
|
2028
|
-
RotationNamePrefix?: string;
|
|
2028
|
+
RotationNamePrefix?: string | undefined;
|
|
2029
2029
|
/**
|
|
2030
2030
|
* <p>A token to start the list. Use this token to get the next set of results.</p>
|
|
2031
2031
|
* @public
|
|
2032
2032
|
*/
|
|
2033
|
-
NextToken?: string;
|
|
2033
|
+
NextToken?: string | undefined;
|
|
2034
2034
|
/**
|
|
2035
2035
|
* <p>The maximum number of items to return for this call. The call also returns a token that
|
|
2036
2036
|
* you can specify in a subsequent call to get the next set of results.</p>
|
|
2037
2037
|
* @public
|
|
2038
2038
|
*/
|
|
2039
|
-
MaxResults?: number;
|
|
2039
|
+
MaxResults?: number | undefined;
|
|
2040
2040
|
}
|
|
2041
2041
|
/**
|
|
2042
2042
|
* <p>Information about a rotation in an on-call schedule.</p>
|
|
@@ -2057,25 +2057,25 @@ export interface Rotation {
|
|
|
2057
2057
|
* <p>The Amazon Resource Names (ARNs) of the contacts assigned to the rotation team.</p>
|
|
2058
2058
|
* @public
|
|
2059
2059
|
*/
|
|
2060
|
-
ContactIds?: string[];
|
|
2060
|
+
ContactIds?: string[] | undefined;
|
|
2061
2061
|
/**
|
|
2062
2062
|
* <p>The date and time the rotation becomes active.</p>
|
|
2063
2063
|
* @public
|
|
2064
2064
|
*/
|
|
2065
|
-
StartTime?: Date;
|
|
2065
|
+
StartTime?: Date | undefined;
|
|
2066
2066
|
/**
|
|
2067
2067
|
* <p>The time zone the rotation’s activity is based on, in Internet Assigned Numbers
|
|
2068
2068
|
* Authority (IANA) format. For example: "America/Los_Angeles", "UTC", or "Asia/Seoul".
|
|
2069
2069
|
* </p>
|
|
2070
2070
|
* @public
|
|
2071
2071
|
*/
|
|
2072
|
-
TimeZoneId?: string;
|
|
2072
|
+
TimeZoneId?: string | undefined;
|
|
2073
2073
|
/**
|
|
2074
2074
|
* <p>Information about when an on-call rotation is in effect and how long the rotation period
|
|
2075
2075
|
* lasts.</p>
|
|
2076
2076
|
* @public
|
|
2077
2077
|
*/
|
|
2078
|
-
Recurrence?: RecurrenceSettings;
|
|
2078
|
+
Recurrence?: RecurrenceSettings | undefined;
|
|
2079
2079
|
}
|
|
2080
2080
|
/**
|
|
2081
2081
|
* @public
|
|
@@ -2086,7 +2086,7 @@ export interface ListRotationsResult {
|
|
|
2086
2086
|
* results.</p>
|
|
2087
2087
|
* @public
|
|
2088
2088
|
*/
|
|
2089
|
-
NextToken?: string;
|
|
2089
|
+
NextToken?: string | undefined;
|
|
2090
2090
|
/**
|
|
2091
2091
|
* <p>Information about rotations that meet the filter criteria.</p>
|
|
2092
2092
|
* @public
|
|
@@ -2107,7 +2107,7 @@ export interface ListRotationShiftsRequest {
|
|
|
2107
2107
|
* <p>The date and time for the beginning of the time range to list shifts for.</p>
|
|
2108
2108
|
* @public
|
|
2109
2109
|
*/
|
|
2110
|
-
StartTime?: Date;
|
|
2110
|
+
StartTime?: Date | undefined;
|
|
2111
2111
|
/**
|
|
2112
2112
|
* <p>The date and time for the end of the time range to list shifts for.</p>
|
|
2113
2113
|
* @public
|
|
@@ -2117,13 +2117,13 @@ export interface ListRotationShiftsRequest {
|
|
|
2117
2117
|
* <p>A token to start the list. Use this token to get the next set of results.</p>
|
|
2118
2118
|
* @public
|
|
2119
2119
|
*/
|
|
2120
|
-
NextToken?: string;
|
|
2120
|
+
NextToken?: string | undefined;
|
|
2121
2121
|
/**
|
|
2122
2122
|
* <p>The maximum number of items to return for this call. The call also returns a token that
|
|
2123
2123
|
* you can specify in a subsequent call to get the next set of results.</p>
|
|
2124
2124
|
* @public
|
|
2125
2125
|
*/
|
|
2126
|
-
MaxResults?: number;
|
|
2126
|
+
MaxResults?: number | undefined;
|
|
2127
2127
|
}
|
|
2128
2128
|
/**
|
|
2129
2129
|
* @public
|
|
@@ -2133,13 +2133,13 @@ export interface ListRotationShiftsResult {
|
|
|
2133
2133
|
* <p>Information about shifts that meet the filter criteria.</p>
|
|
2134
2134
|
* @public
|
|
2135
2135
|
*/
|
|
2136
|
-
RotationShifts?: RotationShift[];
|
|
2136
|
+
RotationShifts?: RotationShift[] | undefined;
|
|
2137
2137
|
/**
|
|
2138
2138
|
* <p>The token for the next set of items to return. Use this token to get the next set of
|
|
2139
2139
|
* results.</p>
|
|
2140
2140
|
* @public
|
|
2141
2141
|
*/
|
|
2142
|
-
NextToken?: string;
|
|
2142
|
+
NextToken?: string | undefined;
|
|
2143
2143
|
}
|
|
2144
2144
|
/**
|
|
2145
2145
|
* @public
|
|
@@ -2159,7 +2159,7 @@ export interface ListTagsForResourceResult {
|
|
|
2159
2159
|
* <p>The tags related to the contact or escalation plan.</p>
|
|
2160
2160
|
* @public
|
|
2161
2161
|
*/
|
|
2162
|
-
Tags?: Tag[];
|
|
2162
|
+
Tags?: Tag[] | undefined;
|
|
2163
2163
|
}
|
|
2164
2164
|
/**
|
|
2165
2165
|
* @public
|
|
@@ -2227,24 +2227,24 @@ export interface StartEngagementRequest {
|
|
|
2227
2227
|
* engagements to <code>SMS</code>.</p>
|
|
2228
2228
|
* @public
|
|
2229
2229
|
*/
|
|
2230
|
-
PublicSubject?: string;
|
|
2230
|
+
PublicSubject?: string | undefined;
|
|
2231
2231
|
/**
|
|
2232
2232
|
* <p>The insecure content of the message that was sent to the contact. Use this field for
|
|
2233
2233
|
* engagements to <code>SMS</code>.</p>
|
|
2234
2234
|
* @public
|
|
2235
2235
|
*/
|
|
2236
|
-
PublicContent?: string;
|
|
2236
|
+
PublicContent?: string | undefined;
|
|
2237
2237
|
/**
|
|
2238
2238
|
* <p>The ARN of the incident that the engagement is part of.</p>
|
|
2239
2239
|
* @public
|
|
2240
2240
|
*/
|
|
2241
|
-
IncidentId?: string;
|
|
2241
|
+
IncidentId?: string | undefined;
|
|
2242
2242
|
/**
|
|
2243
2243
|
* <p>A token ensuring that the operation is called only once with the specified
|
|
2244
2244
|
* details.</p>
|
|
2245
2245
|
* @public
|
|
2246
2246
|
*/
|
|
2247
|
-
IdempotencyToken?: string;
|
|
2247
|
+
IdempotencyToken?: string | undefined;
|
|
2248
2248
|
}
|
|
2249
2249
|
/**
|
|
2250
2250
|
* @public
|
|
@@ -2269,7 +2269,7 @@ export interface StopEngagementRequest {
|
|
|
2269
2269
|
* <p>The reason that you're stopping the engagement.</p>
|
|
2270
2270
|
* @public
|
|
2271
2271
|
*/
|
|
2272
|
-
Reason?: string;
|
|
2272
|
+
Reason?: string | undefined;
|
|
2273
2273
|
}
|
|
2274
2274
|
/**
|
|
2275
2275
|
* @public
|
|
@@ -2329,13 +2329,13 @@ export interface UpdateContactRequest {
|
|
|
2329
2329
|
* <p>The full name of the contact or escalation plan.</p>
|
|
2330
2330
|
* @public
|
|
2331
2331
|
*/
|
|
2332
|
-
DisplayName?: string;
|
|
2332
|
+
DisplayName?: string | undefined;
|
|
2333
2333
|
/**
|
|
2334
2334
|
* <p>A list of stages. A contact has an engagement plan with stages for specified contact
|
|
2335
2335
|
* channels. An escalation plan uses these stages to contact specified contacts.</p>
|
|
2336
2336
|
* @public
|
|
2337
2337
|
*/
|
|
2338
|
-
Plan?: Plan;
|
|
2338
|
+
Plan?: Plan | undefined;
|
|
2339
2339
|
}
|
|
2340
2340
|
/**
|
|
2341
2341
|
* @public
|
|
@@ -2355,12 +2355,12 @@ export interface UpdateContactChannelRequest {
|
|
|
2355
2355
|
* <p>The name of the contact channel.</p>
|
|
2356
2356
|
* @public
|
|
2357
2357
|
*/
|
|
2358
|
-
Name?: string;
|
|
2358
|
+
Name?: string | undefined;
|
|
2359
2359
|
/**
|
|
2360
2360
|
* <p>The details that Incident Manager uses when trying to engage the contact channel.</p>
|
|
2361
2361
|
* @public
|
|
2362
2362
|
*/
|
|
2363
|
-
DeliveryAddress?: ContactChannelAddress;
|
|
2363
|
+
DeliveryAddress?: ContactChannelAddress | undefined;
|
|
2364
2364
|
}
|
|
2365
2365
|
/**
|
|
2366
2366
|
* @public
|
|
@@ -2382,12 +2382,12 @@ export interface UpdateRotationRequest {
|
|
|
2382
2382
|
* schedule.</p>
|
|
2383
2383
|
* @public
|
|
2384
2384
|
*/
|
|
2385
|
-
ContactIds?: string[];
|
|
2385
|
+
ContactIds?: string[] | undefined;
|
|
2386
2386
|
/**
|
|
2387
2387
|
* <p>The date and time the rotation goes into effect.</p>
|
|
2388
2388
|
* @public
|
|
2389
2389
|
*/
|
|
2390
|
-
StartTime?: Date;
|
|
2390
|
+
StartTime?: Date | undefined;
|
|
2391
2391
|
/**
|
|
2392
2392
|
* <p>The time zone to base the updated rotation’s activity on, in Internet Assigned Numbers
|
|
2393
2393
|
* Authority (IANA) format. For example: "America/Los_Angeles", "UTC", or "Asia/Seoul". For
|
|
@@ -2399,7 +2399,7 @@ export interface UpdateRotationRequest {
|
|
|
2399
2399
|
* </note>
|
|
2400
2400
|
* @public
|
|
2401
2401
|
*/
|
|
2402
|
-
TimeZoneId?: string;
|
|
2402
|
+
TimeZoneId?: string | undefined;
|
|
2403
2403
|
/**
|
|
2404
2404
|
* <p>Information about how long the updated rotation lasts before restarting at the beginning
|
|
2405
2405
|
* of the shift order.</p>
|