aws-sdk-ssmcontacts 1.26.0 → 1.27.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/types.rbs ADDED
@@ -0,0 +1,745 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws::SSMContacts
9
+ module Types
10
+
11
+ class AcceptPageRequest
12
+ attr_accessor page_id: ::String
13
+ attr_accessor contact_channel_id: ::String
14
+ attr_accessor accept_type: ("DELIVERED" | "READ")
15
+ attr_accessor note: ::String
16
+ attr_accessor accept_code: ::String
17
+ attr_accessor accept_code_validation: ("IGNORE" | "ENFORCE")
18
+ SENSITIVE: []
19
+ end
20
+
21
+ class AcceptPageResult < Aws::EmptyStructure
22
+ end
23
+
24
+ class AccessDeniedException
25
+ attr_accessor message: ::String
26
+ SENSITIVE: []
27
+ end
28
+
29
+ class ActivateContactChannelRequest
30
+ attr_accessor contact_channel_id: ::String
31
+ attr_accessor activation_code: ::String
32
+ SENSITIVE: []
33
+ end
34
+
35
+ class ActivateContactChannelResult < Aws::EmptyStructure
36
+ end
37
+
38
+ class ChannelTargetInfo
39
+ attr_accessor contact_channel_id: ::String
40
+ attr_accessor retry_interval_in_minutes: ::Integer
41
+ SENSITIVE: []
42
+ end
43
+
44
+ class ConflictException
45
+ attr_accessor message: ::String
46
+ attr_accessor resource_id: ::String
47
+ attr_accessor resource_type: ::String
48
+ attr_accessor dependent_entities: ::Array[Types::DependentEntity]
49
+ SENSITIVE: []
50
+ end
51
+
52
+ class Contact
53
+ attr_accessor contact_arn: ::String
54
+ attr_accessor alias: ::String
55
+ attr_accessor display_name: ::String
56
+ attr_accessor type: ("PERSONAL" | "ESCALATION" | "ONCALL_SCHEDULE")
57
+ SENSITIVE: []
58
+ end
59
+
60
+ class ContactChannel
61
+ attr_accessor contact_channel_arn: ::String
62
+ attr_accessor contact_arn: ::String
63
+ attr_accessor name: ::String
64
+ attr_accessor type: ("SMS" | "VOICE" | "EMAIL")
65
+ attr_accessor delivery_address: Types::ContactChannelAddress
66
+ attr_accessor activation_status: ("ACTIVATED" | "NOT_ACTIVATED")
67
+ SENSITIVE: []
68
+ end
69
+
70
+ class ContactChannelAddress
71
+ attr_accessor simple_address: ::String
72
+ SENSITIVE: []
73
+ end
74
+
75
+ class ContactTargetInfo
76
+ attr_accessor contact_id: ::String
77
+ attr_accessor is_essential: bool
78
+ SENSITIVE: []
79
+ end
80
+
81
+ class CoverageTime
82
+ attr_accessor start: Types::HandOffTime
83
+ attr_accessor end: Types::HandOffTime
84
+ SENSITIVE: []
85
+ end
86
+
87
+ class CreateContactChannelRequest
88
+ attr_accessor contact_id: ::String
89
+ attr_accessor name: ::String
90
+ attr_accessor type: ("SMS" | "VOICE" | "EMAIL")
91
+ attr_accessor delivery_address: Types::ContactChannelAddress
92
+ attr_accessor defer_activation: bool
93
+ attr_accessor idempotency_token: ::String
94
+ SENSITIVE: []
95
+ end
96
+
97
+ class CreateContactChannelResult
98
+ attr_accessor contact_channel_arn: ::String
99
+ SENSITIVE: []
100
+ end
101
+
102
+ class CreateContactRequest
103
+ attr_accessor alias: ::String
104
+ attr_accessor display_name: ::String
105
+ attr_accessor type: ("PERSONAL" | "ESCALATION" | "ONCALL_SCHEDULE")
106
+ attr_accessor plan: Types::Plan
107
+ attr_accessor tags: ::Array[Types::Tag]
108
+ attr_accessor idempotency_token: ::String
109
+ SENSITIVE: []
110
+ end
111
+
112
+ class CreateContactResult
113
+ attr_accessor contact_arn: ::String
114
+ SENSITIVE: []
115
+ end
116
+
117
+ class CreateRotationOverrideRequest
118
+ attr_accessor rotation_id: ::String
119
+ attr_accessor new_contact_ids: ::Array[::String]
120
+ attr_accessor start_time: ::Time
121
+ attr_accessor end_time: ::Time
122
+ attr_accessor idempotency_token: ::String
123
+ SENSITIVE: []
124
+ end
125
+
126
+ class CreateRotationOverrideResult
127
+ attr_accessor rotation_override_id: ::String
128
+ SENSITIVE: []
129
+ end
130
+
131
+ class CreateRotationRequest
132
+ attr_accessor name: ::String
133
+ attr_accessor contact_ids: ::Array[::String]
134
+ attr_accessor start_time: ::Time
135
+ attr_accessor time_zone_id: ::String
136
+ attr_accessor recurrence: Types::RecurrenceSettings
137
+ attr_accessor tags: ::Array[Types::Tag]
138
+ attr_accessor idempotency_token: ::String
139
+ SENSITIVE: []
140
+ end
141
+
142
+ class CreateRotationResult
143
+ attr_accessor rotation_arn: ::String
144
+ SENSITIVE: []
145
+ end
146
+
147
+ class DataEncryptionException
148
+ attr_accessor message: ::String
149
+ SENSITIVE: []
150
+ end
151
+
152
+ class DeactivateContactChannelRequest
153
+ attr_accessor contact_channel_id: ::String
154
+ SENSITIVE: []
155
+ end
156
+
157
+ class DeactivateContactChannelResult < Aws::EmptyStructure
158
+ end
159
+
160
+ class DeleteContactChannelRequest
161
+ attr_accessor contact_channel_id: ::String
162
+ SENSITIVE: []
163
+ end
164
+
165
+ class DeleteContactChannelResult < Aws::EmptyStructure
166
+ end
167
+
168
+ class DeleteContactRequest
169
+ attr_accessor contact_id: ::String
170
+ SENSITIVE: []
171
+ end
172
+
173
+ class DeleteContactResult < Aws::EmptyStructure
174
+ end
175
+
176
+ class DeleteRotationOverrideRequest
177
+ attr_accessor rotation_id: ::String
178
+ attr_accessor rotation_override_id: ::String
179
+ SENSITIVE: []
180
+ end
181
+
182
+ class DeleteRotationOverrideResult < Aws::EmptyStructure
183
+ end
184
+
185
+ class DeleteRotationRequest
186
+ attr_accessor rotation_id: ::String
187
+ SENSITIVE: []
188
+ end
189
+
190
+ class DeleteRotationResult < Aws::EmptyStructure
191
+ end
192
+
193
+ class DependentEntity
194
+ attr_accessor relation_type: ::String
195
+ attr_accessor dependent_resource_ids: ::Array[::String]
196
+ SENSITIVE: []
197
+ end
198
+
199
+ class DescribeEngagementRequest
200
+ attr_accessor engagement_id: ::String
201
+ SENSITIVE: []
202
+ end
203
+
204
+ class DescribeEngagementResult
205
+ attr_accessor contact_arn: ::String
206
+ attr_accessor engagement_arn: ::String
207
+ attr_accessor sender: ::String
208
+ attr_accessor subject: ::String
209
+ attr_accessor content: ::String
210
+ attr_accessor public_subject: ::String
211
+ attr_accessor public_content: ::String
212
+ attr_accessor incident_id: ::String
213
+ attr_accessor start_time: ::Time
214
+ attr_accessor stop_time: ::Time
215
+ SENSITIVE: []
216
+ end
217
+
218
+ class DescribePageRequest
219
+ attr_accessor page_id: ::String
220
+ SENSITIVE: []
221
+ end
222
+
223
+ class DescribePageResult
224
+ attr_accessor page_arn: ::String
225
+ attr_accessor engagement_arn: ::String
226
+ attr_accessor contact_arn: ::String
227
+ attr_accessor sender: ::String
228
+ attr_accessor subject: ::String
229
+ attr_accessor content: ::String
230
+ attr_accessor public_subject: ::String
231
+ attr_accessor public_content: ::String
232
+ attr_accessor incident_id: ::String
233
+ attr_accessor sent_time: ::Time
234
+ attr_accessor read_time: ::Time
235
+ attr_accessor delivery_time: ::Time
236
+ SENSITIVE: []
237
+ end
238
+
239
+ class Engagement
240
+ attr_accessor engagement_arn: ::String
241
+ attr_accessor contact_arn: ::String
242
+ attr_accessor sender: ::String
243
+ attr_accessor incident_id: ::String
244
+ attr_accessor start_time: ::Time
245
+ attr_accessor stop_time: ::Time
246
+ SENSITIVE: []
247
+ end
248
+
249
+ class GetContactChannelRequest
250
+ attr_accessor contact_channel_id: ::String
251
+ SENSITIVE: []
252
+ end
253
+
254
+ class GetContactChannelResult
255
+ attr_accessor contact_arn: ::String
256
+ attr_accessor contact_channel_arn: ::String
257
+ attr_accessor name: ::String
258
+ attr_accessor type: ("SMS" | "VOICE" | "EMAIL")
259
+ attr_accessor delivery_address: Types::ContactChannelAddress
260
+ attr_accessor activation_status: ("ACTIVATED" | "NOT_ACTIVATED")
261
+ SENSITIVE: []
262
+ end
263
+
264
+ class GetContactPolicyRequest
265
+ attr_accessor contact_arn: ::String
266
+ SENSITIVE: []
267
+ end
268
+
269
+ class GetContactPolicyResult
270
+ attr_accessor contact_arn: ::String
271
+ attr_accessor policy: ::String
272
+ SENSITIVE: []
273
+ end
274
+
275
+ class GetContactRequest
276
+ attr_accessor contact_id: ::String
277
+ SENSITIVE: []
278
+ end
279
+
280
+ class GetContactResult
281
+ attr_accessor contact_arn: ::String
282
+ attr_accessor alias: ::String
283
+ attr_accessor display_name: ::String
284
+ attr_accessor type: ("PERSONAL" | "ESCALATION" | "ONCALL_SCHEDULE")
285
+ attr_accessor plan: Types::Plan
286
+ SENSITIVE: []
287
+ end
288
+
289
+ class GetRotationOverrideRequest
290
+ attr_accessor rotation_id: ::String
291
+ attr_accessor rotation_override_id: ::String
292
+ SENSITIVE: []
293
+ end
294
+
295
+ class GetRotationOverrideResult
296
+ attr_accessor rotation_override_id: ::String
297
+ attr_accessor rotation_arn: ::String
298
+ attr_accessor new_contact_ids: ::Array[::String]
299
+ attr_accessor start_time: ::Time
300
+ attr_accessor end_time: ::Time
301
+ attr_accessor create_time: ::Time
302
+ SENSITIVE: []
303
+ end
304
+
305
+ class GetRotationRequest
306
+ attr_accessor rotation_id: ::String
307
+ SENSITIVE: []
308
+ end
309
+
310
+ class GetRotationResult
311
+ attr_accessor rotation_arn: ::String
312
+ attr_accessor name: ::String
313
+ attr_accessor contact_ids: ::Array[::String]
314
+ attr_accessor start_time: ::Time
315
+ attr_accessor time_zone_id: ::String
316
+ attr_accessor recurrence: Types::RecurrenceSettings
317
+ SENSITIVE: []
318
+ end
319
+
320
+ class HandOffTime
321
+ attr_accessor hour_of_day: ::Integer
322
+ attr_accessor minute_of_hour: ::Integer
323
+ SENSITIVE: []
324
+ end
325
+
326
+ class InternalServerException
327
+ attr_accessor message: ::String
328
+ attr_accessor retry_after_seconds: ::Integer
329
+ SENSITIVE: []
330
+ end
331
+
332
+ class ListContactChannelsRequest
333
+ attr_accessor contact_id: ::String
334
+ attr_accessor next_token: ::String
335
+ attr_accessor max_results: ::Integer
336
+ SENSITIVE: []
337
+ end
338
+
339
+ class ListContactChannelsResult
340
+ attr_accessor next_token: ::String
341
+ attr_accessor contact_channels: ::Array[Types::ContactChannel]
342
+ SENSITIVE: []
343
+ end
344
+
345
+ class ListContactsRequest
346
+ attr_accessor next_token: ::String
347
+ attr_accessor max_results: ::Integer
348
+ attr_accessor alias_prefix: ::String
349
+ attr_accessor type: ("PERSONAL" | "ESCALATION" | "ONCALL_SCHEDULE")
350
+ SENSITIVE: []
351
+ end
352
+
353
+ class ListContactsResult
354
+ attr_accessor next_token: ::String
355
+ attr_accessor contacts: ::Array[Types::Contact]
356
+ SENSITIVE: []
357
+ end
358
+
359
+ class ListEngagementsRequest
360
+ attr_accessor next_token: ::String
361
+ attr_accessor max_results: ::Integer
362
+ attr_accessor incident_id: ::String
363
+ attr_accessor time_range_value: Types::TimeRange
364
+ SENSITIVE: []
365
+ end
366
+
367
+ class ListEngagementsResult
368
+ attr_accessor next_token: ::String
369
+ attr_accessor engagements: ::Array[Types::Engagement]
370
+ SENSITIVE: []
371
+ end
372
+
373
+ class ListPageReceiptsRequest
374
+ attr_accessor page_id: ::String
375
+ attr_accessor next_token: ::String
376
+ attr_accessor max_results: ::Integer
377
+ SENSITIVE: []
378
+ end
379
+
380
+ class ListPageReceiptsResult
381
+ attr_accessor next_token: ::String
382
+ attr_accessor receipts: ::Array[Types::Receipt]
383
+ SENSITIVE: []
384
+ end
385
+
386
+ class ListPageResolutionsRequest
387
+ attr_accessor next_token: ::String
388
+ attr_accessor page_id: ::String
389
+ SENSITIVE: []
390
+ end
391
+
392
+ class ListPageResolutionsResult
393
+ attr_accessor next_token: ::String
394
+ attr_accessor page_resolutions: ::Array[Types::ResolutionContact]
395
+ SENSITIVE: []
396
+ end
397
+
398
+ class ListPagesByContactRequest
399
+ attr_accessor contact_id: ::String
400
+ attr_accessor next_token: ::String
401
+ attr_accessor max_results: ::Integer
402
+ SENSITIVE: []
403
+ end
404
+
405
+ class ListPagesByContactResult
406
+ attr_accessor next_token: ::String
407
+ attr_accessor pages: ::Array[Types::Page]
408
+ SENSITIVE: []
409
+ end
410
+
411
+ class ListPagesByEngagementRequest
412
+ attr_accessor engagement_id: ::String
413
+ attr_accessor next_token: ::String
414
+ attr_accessor max_results: ::Integer
415
+ SENSITIVE: []
416
+ end
417
+
418
+ class ListPagesByEngagementResult
419
+ attr_accessor next_token: ::String
420
+ attr_accessor pages: ::Array[Types::Page]
421
+ SENSITIVE: []
422
+ end
423
+
424
+ class ListPreviewRotationShiftsRequest
425
+ attr_accessor rotation_start_time: ::Time
426
+ attr_accessor start_time: ::Time
427
+ attr_accessor end_time: ::Time
428
+ attr_accessor members: ::Array[::String]
429
+ attr_accessor time_zone_id: ::String
430
+ attr_accessor recurrence: Types::RecurrenceSettings
431
+ attr_accessor overrides: ::Array[Types::PreviewOverride]
432
+ attr_accessor next_token: ::String
433
+ attr_accessor max_results: ::Integer
434
+ SENSITIVE: []
435
+ end
436
+
437
+ class ListPreviewRotationShiftsResult
438
+ attr_accessor rotation_shifts: ::Array[Types::RotationShift]
439
+ attr_accessor next_token: ::String
440
+ SENSITIVE: []
441
+ end
442
+
443
+ class ListRotationOverridesRequest
444
+ attr_accessor rotation_id: ::String
445
+ attr_accessor start_time: ::Time
446
+ attr_accessor end_time: ::Time
447
+ attr_accessor next_token: ::String
448
+ attr_accessor max_results: ::Integer
449
+ SENSITIVE: []
450
+ end
451
+
452
+ class ListRotationOverridesResult
453
+ attr_accessor rotation_overrides: ::Array[Types::RotationOverride]
454
+ attr_accessor next_token: ::String
455
+ SENSITIVE: []
456
+ end
457
+
458
+ class ListRotationShiftsRequest
459
+ attr_accessor rotation_id: ::String
460
+ attr_accessor start_time: ::Time
461
+ attr_accessor end_time: ::Time
462
+ attr_accessor next_token: ::String
463
+ attr_accessor max_results: ::Integer
464
+ SENSITIVE: []
465
+ end
466
+
467
+ class ListRotationShiftsResult
468
+ attr_accessor rotation_shifts: ::Array[Types::RotationShift]
469
+ attr_accessor next_token: ::String
470
+ SENSITIVE: []
471
+ end
472
+
473
+ class ListRotationsRequest
474
+ attr_accessor rotation_name_prefix: ::String
475
+ attr_accessor next_token: ::String
476
+ attr_accessor max_results: ::Integer
477
+ SENSITIVE: []
478
+ end
479
+
480
+ class ListRotationsResult
481
+ attr_accessor next_token: ::String
482
+ attr_accessor rotations: ::Array[Types::Rotation]
483
+ SENSITIVE: []
484
+ end
485
+
486
+ class ListTagsForResourceRequest
487
+ attr_accessor resource_arn: ::String
488
+ SENSITIVE: []
489
+ end
490
+
491
+ class ListTagsForResourceResult
492
+ attr_accessor tags: ::Array[Types::Tag]
493
+ SENSITIVE: []
494
+ end
495
+
496
+ class MonthlySetting
497
+ attr_accessor day_of_month: ::Integer
498
+ attr_accessor hand_off_time: Types::HandOffTime
499
+ SENSITIVE: []
500
+ end
501
+
502
+ class Page
503
+ attr_accessor page_arn: ::String
504
+ attr_accessor engagement_arn: ::String
505
+ attr_accessor contact_arn: ::String
506
+ attr_accessor sender: ::String
507
+ attr_accessor incident_id: ::String
508
+ attr_accessor sent_time: ::Time
509
+ attr_accessor delivery_time: ::Time
510
+ attr_accessor read_time: ::Time
511
+ SENSITIVE: []
512
+ end
513
+
514
+ class Plan
515
+ attr_accessor stages: ::Array[Types::Stage]
516
+ attr_accessor rotation_ids: ::Array[::String]
517
+ SENSITIVE: []
518
+ end
519
+
520
+ class PreviewOverride
521
+ attr_accessor new_members: ::Array[::String]
522
+ attr_accessor start_time: ::Time
523
+ attr_accessor end_time: ::Time
524
+ SENSITIVE: []
525
+ end
526
+
527
+ class PutContactPolicyRequest
528
+ attr_accessor contact_arn: ::String
529
+ attr_accessor policy: ::String
530
+ SENSITIVE: []
531
+ end
532
+
533
+ class PutContactPolicyResult < Aws::EmptyStructure
534
+ end
535
+
536
+ class Receipt
537
+ attr_accessor contact_channel_arn: ::String
538
+ attr_accessor receipt_type: ("DELIVERED" | "ERROR" | "READ" | "SENT" | "STOP")
539
+ attr_accessor receipt_info: ::String
540
+ attr_accessor receipt_time: ::Time
541
+ SENSITIVE: []
542
+ end
543
+
544
+ class RecurrenceSettings
545
+ attr_accessor monthly_settings: ::Array[Types::MonthlySetting]
546
+ attr_accessor weekly_settings: ::Array[Types::WeeklySetting]
547
+ attr_accessor daily_settings: ::Array[Types::HandOffTime]
548
+ attr_accessor number_of_on_calls: ::Integer
549
+ attr_accessor shift_coverages: ::Hash[("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN"), ::Array[Types::CoverageTime]]
550
+ attr_accessor recurrence_multiplier: ::Integer
551
+ SENSITIVE: []
552
+ end
553
+
554
+ class ResolutionContact
555
+ attr_accessor contact_arn: ::String
556
+ attr_accessor type: ("PERSONAL" | "ESCALATION" | "ONCALL_SCHEDULE")
557
+ attr_accessor stage_index: ::Integer
558
+ SENSITIVE: []
559
+ end
560
+
561
+ class ResourceNotFoundException
562
+ attr_accessor message: ::String
563
+ attr_accessor resource_id: ::String
564
+ attr_accessor resource_type: ::String
565
+ SENSITIVE: []
566
+ end
567
+
568
+ class Rotation
569
+ attr_accessor rotation_arn: ::String
570
+ attr_accessor name: ::String
571
+ attr_accessor contact_ids: ::Array[::String]
572
+ attr_accessor start_time: ::Time
573
+ attr_accessor time_zone_id: ::String
574
+ attr_accessor recurrence: Types::RecurrenceSettings
575
+ SENSITIVE: []
576
+ end
577
+
578
+ class RotationOverride
579
+ attr_accessor rotation_override_id: ::String
580
+ attr_accessor new_contact_ids: ::Array[::String]
581
+ attr_accessor start_time: ::Time
582
+ attr_accessor end_time: ::Time
583
+ attr_accessor create_time: ::Time
584
+ SENSITIVE: []
585
+ end
586
+
587
+ class RotationShift
588
+ attr_accessor contact_ids: ::Array[::String]
589
+ attr_accessor start_time: ::Time
590
+ attr_accessor end_time: ::Time
591
+ attr_accessor type: ("REGULAR" | "OVERRIDDEN")
592
+ attr_accessor shift_details: Types::ShiftDetails
593
+ SENSITIVE: []
594
+ end
595
+
596
+ class SendActivationCodeRequest
597
+ attr_accessor contact_channel_id: ::String
598
+ SENSITIVE: []
599
+ end
600
+
601
+ class SendActivationCodeResult < Aws::EmptyStructure
602
+ end
603
+
604
+ class ServiceQuotaExceededException
605
+ attr_accessor message: ::String
606
+ attr_accessor resource_id: ::String
607
+ attr_accessor resource_type: ::String
608
+ attr_accessor quota_code: ::String
609
+ attr_accessor service_code: ::String
610
+ SENSITIVE: []
611
+ end
612
+
613
+ class ShiftDetails
614
+ attr_accessor overridden_contact_ids: ::Array[::String]
615
+ SENSITIVE: []
616
+ end
617
+
618
+ class Stage
619
+ attr_accessor duration_in_minutes: ::Integer
620
+ attr_accessor targets: ::Array[Types::Target]
621
+ SENSITIVE: []
622
+ end
623
+
624
+ class StartEngagementRequest
625
+ attr_accessor contact_id: ::String
626
+ attr_accessor sender: ::String
627
+ attr_accessor subject: ::String
628
+ attr_accessor content: ::String
629
+ attr_accessor public_subject: ::String
630
+ attr_accessor public_content: ::String
631
+ attr_accessor incident_id: ::String
632
+ attr_accessor idempotency_token: ::String
633
+ SENSITIVE: []
634
+ end
635
+
636
+ class StartEngagementResult
637
+ attr_accessor engagement_arn: ::String
638
+ SENSITIVE: []
639
+ end
640
+
641
+ class StopEngagementRequest
642
+ attr_accessor engagement_id: ::String
643
+ attr_accessor reason: ::String
644
+ SENSITIVE: []
645
+ end
646
+
647
+ class StopEngagementResult < Aws::EmptyStructure
648
+ end
649
+
650
+ class Tag
651
+ attr_accessor key: ::String
652
+ attr_accessor value: ::String
653
+ SENSITIVE: []
654
+ end
655
+
656
+ class TagResourceRequest
657
+ attr_accessor resource_arn: ::String
658
+ attr_accessor tags: ::Array[Types::Tag]
659
+ SENSITIVE: []
660
+ end
661
+
662
+ class TagResourceResult < Aws::EmptyStructure
663
+ end
664
+
665
+ class Target
666
+ attr_accessor channel_target_info: Types::ChannelTargetInfo
667
+ attr_accessor contact_target_info: Types::ContactTargetInfo
668
+ SENSITIVE: []
669
+ end
670
+
671
+ class ThrottlingException
672
+ attr_accessor message: ::String
673
+ attr_accessor quota_code: ::String
674
+ attr_accessor service_code: ::String
675
+ attr_accessor retry_after_seconds: ::Integer
676
+ SENSITIVE: []
677
+ end
678
+
679
+ class TimeRange
680
+ attr_accessor start_time: ::Time
681
+ attr_accessor end_time: ::Time
682
+ SENSITIVE: []
683
+ end
684
+
685
+ class UntagResourceRequest
686
+ attr_accessor resource_arn: ::String
687
+ attr_accessor tag_keys: ::Array[::String]
688
+ SENSITIVE: []
689
+ end
690
+
691
+ class UntagResourceResult < Aws::EmptyStructure
692
+ end
693
+
694
+ class UpdateContactChannelRequest
695
+ attr_accessor contact_channel_id: ::String
696
+ attr_accessor name: ::String
697
+ attr_accessor delivery_address: Types::ContactChannelAddress
698
+ SENSITIVE: []
699
+ end
700
+
701
+ class UpdateContactChannelResult < Aws::EmptyStructure
702
+ end
703
+
704
+ class UpdateContactRequest
705
+ attr_accessor contact_id: ::String
706
+ attr_accessor display_name: ::String
707
+ attr_accessor plan: Types::Plan
708
+ SENSITIVE: []
709
+ end
710
+
711
+ class UpdateContactResult < Aws::EmptyStructure
712
+ end
713
+
714
+ class UpdateRotationRequest
715
+ attr_accessor rotation_id: ::String
716
+ attr_accessor contact_ids: ::Array[::String]
717
+ attr_accessor start_time: ::Time
718
+ attr_accessor time_zone_id: ::String
719
+ attr_accessor recurrence: Types::RecurrenceSettings
720
+ SENSITIVE: []
721
+ end
722
+
723
+ class UpdateRotationResult < Aws::EmptyStructure
724
+ end
725
+
726
+ class ValidationException
727
+ attr_accessor message: ::String
728
+ attr_accessor reason: ("UNKNOWN_OPERATION" | "CANNOT_PARSE" | "FIELD_VALIDATION_FAILED" | "OTHER")
729
+ attr_accessor fields: ::Array[Types::ValidationExceptionField]
730
+ SENSITIVE: []
731
+ end
732
+
733
+ class ValidationExceptionField
734
+ attr_accessor name: ::String
735
+ attr_accessor message: ::String
736
+ SENSITIVE: []
737
+ end
738
+
739
+ class WeeklySetting
740
+ attr_accessor day_of_week: ("MON" | "TUE" | "WED" | "THU" | "FRI" | "SAT" | "SUN")
741
+ attr_accessor hand_off_time: Types::HandOffTime
742
+ SENSITIVE: []
743
+ end
744
+ end
745
+ end