aws-sdk-supportauthz 1.0.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.
@@ -0,0 +1,925 @@
1
+ # frozen_string_literal: true
2
+
3
+ # WARNING ABOUT GENERATED CODE
4
+ #
5
+ # This file is generated. See the contributing guide for more information:
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
+ #
8
+ # WARNING ABOUT GENERATED CODE
9
+
10
+ module Aws::SupportAuthZ
11
+ module Types
12
+
13
+ # You don't have sufficient permissions to perform this operation.
14
+ #
15
+ # @!attribute [rw] message
16
+ # @return [String]
17
+ #
18
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/AccessDeniedException AWS API Documentation
19
+ #
20
+ class AccessDeniedException < Struct.new(
21
+ :message)
22
+ SENSITIVE = []
23
+ include Aws::Structure
24
+ end
25
+
26
+ # The set of actions authorized by a permit. Specify either all actions
27
+ # or a list of specific actions.
28
+ #
29
+ # @note ActionSet is a union - when making an API calls you must set exactly one of the members.
30
+ #
31
+ # @note ActionSet is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ActionSet corresponding to the set member.
32
+ #
33
+ # @!attribute [rw] all_actions
34
+ # Authorizes all available support actions.
35
+ # @return [Types::Unit]
36
+ #
37
+ # @!attribute [rw] actions
38
+ # A list of specific support actions to authorize. Maximum of 10
39
+ # actions.
40
+ # @return [Array<String>]
41
+ #
42
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/ActionSet AWS API Documentation
43
+ #
44
+ class ActionSet < Struct.new(
45
+ :all_actions,
46
+ :actions,
47
+ :unknown)
48
+ SENSITIVE = []
49
+ include Aws::Structure
50
+ include Aws::Structure::Union
51
+
52
+ class AllActions < ActionSet; end
53
+ class Actions < ActionSet; end
54
+ class Unknown < ActionSet; end
55
+ end
56
+
57
+ # A summary of a support action.
58
+ #
59
+ # @!attribute [rw] action
60
+ # The name of the support action.
61
+ # @return [String]
62
+ #
63
+ # @!attribute [rw] service
64
+ # The AWS service associated with the support action.
65
+ # @return [String]
66
+ #
67
+ # @!attribute [rw] description
68
+ # A description of what the support action does.
69
+ # @return [String]
70
+ #
71
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/ActionSummary AWS API Documentation
72
+ #
73
+ class ActionSummary < Struct.new(
74
+ :action,
75
+ :service,
76
+ :description)
77
+ SENSITIVE = []
78
+ include Aws::Structure
79
+ end
80
+
81
+ # A time-window condition that constrains when a support permit is
82
+ # valid.
83
+ #
84
+ # @note Condition is a union - when making an API calls you must set exactly one of the members.
85
+ #
86
+ # @note Condition is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Condition corresponding to the set member.
87
+ #
88
+ # @!attribute [rw] allow_after
89
+ # The earliest time at which the permit becomes valid.
90
+ # @return [Time]
91
+ #
92
+ # @!attribute [rw] allow_before
93
+ # The latest time at which the permit remains valid.
94
+ # @return [Time]
95
+ #
96
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/Condition AWS API Documentation
97
+ #
98
+ class Condition < Struct.new(
99
+ :allow_after,
100
+ :allow_before,
101
+ :unknown)
102
+ SENSITIVE = []
103
+ include Aws::Structure
104
+ include Aws::Structure::Union
105
+
106
+ class AllowAfter < Condition; end
107
+ class AllowBefore < Condition; end
108
+ class Unknown < Condition; end
109
+ end
110
+
111
+ # The request conflicts with the current state of the resource.
112
+ #
113
+ # @!attribute [rw] message
114
+ # @return [String]
115
+ #
116
+ # @!attribute [rw] resource_id
117
+ # The identifier of the resource that caused the conflict.
118
+ # @return [String]
119
+ #
120
+ # @!attribute [rw] resource_type
121
+ # The type of the resource that caused the conflict.
122
+ # @return [String]
123
+ #
124
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/ConflictException AWS API Documentation
125
+ #
126
+ class ConflictException < Struct.new(
127
+ :message,
128
+ :resource_id,
129
+ :resource_type)
130
+ SENSITIVE = []
131
+ include Aws::Structure
132
+ end
133
+
134
+ # @!attribute [rw] permit
135
+ # The permit definition specifying the actions, resources, and
136
+ # time-window conditions that the support operator is authorized to
137
+ # use.
138
+ # @return [Types::Permit]
139
+ #
140
+ # @!attribute [rw] name
141
+ # A customer-chosen name for the support permit. Must be between 1 and
142
+ # 256 alphanumeric characters.
143
+ # @return [String]
144
+ #
145
+ # @!attribute [rw] description
146
+ # A human-readable description of why this permit is being created.
147
+ # Maximum length of 1024 characters.
148
+ # @return [String]
149
+ #
150
+ # @!attribute [rw] signing_key_info
151
+ # The signing key information used to sign the permit. Must reference
152
+ # an AWS KMS key with key usage SIGN\_VERIFY and key spec
153
+ # ECC\_NIST\_P384.
154
+ # @return [Types::SigningKeyInfo]
155
+ #
156
+ # @!attribute [rw] support_case_display_id
157
+ # The display identifier of the AWS Support case associated with this
158
+ # permit.
159
+ # @return [String]
160
+ #
161
+ # @!attribute [rw] client_token
162
+ # A unique, case-sensitive identifier to ensure that the operation
163
+ # completes no more than one time. If this token matches a previous
164
+ # request, the service returns the existing permit without creating a
165
+ # duplicate.
166
+ #
167
+ # **A suitable default value is auto-generated.** You should normally
168
+ # not need to pass this option.
169
+ # @return [String]
170
+ #
171
+ # @!attribute [rw] tags
172
+ # The tags to associate with the support permit on creation.
173
+ # @return [Hash<String,String>]
174
+ #
175
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/CreateSupportPermitInput AWS API Documentation
176
+ #
177
+ class CreateSupportPermitInput < Struct.new(
178
+ :permit,
179
+ :name,
180
+ :description,
181
+ :signing_key_info,
182
+ :support_case_display_id,
183
+ :client_token,
184
+ :tags)
185
+ SENSITIVE = []
186
+ include Aws::Structure
187
+ end
188
+
189
+ # @!attribute [rw] name
190
+ # The name of the support permit.
191
+ # @return [String]
192
+ #
193
+ # @!attribute [rw] arn
194
+ # The Amazon Resource Name (ARN) of the support permit.
195
+ # @return [String]
196
+ #
197
+ # @!attribute [rw] description
198
+ # The description of the support permit.
199
+ # @return [String]
200
+ #
201
+ # @!attribute [rw] permit
202
+ # The permit definition.
203
+ # @return [Types::Permit]
204
+ #
205
+ # @!attribute [rw] status
206
+ # The current status of the support permit.
207
+ # @return [String]
208
+ #
209
+ # @!attribute [rw] signing_key_info
210
+ # The signing key information for the permit.
211
+ # @return [Types::SigningKeyInfo]
212
+ #
213
+ # @!attribute [rw] created_at
214
+ # The timestamp when the permit was created.
215
+ # @return [Time]
216
+ #
217
+ # @!attribute [rw] support_case_display_id
218
+ # The display identifier of the support case associated with the
219
+ # permit.
220
+ # @return [String]
221
+ #
222
+ # @!attribute [rw] tags
223
+ # The tags associated with the support permit.
224
+ # @return [Hash<String,String>]
225
+ #
226
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/CreateSupportPermitOutput AWS API Documentation
227
+ #
228
+ class CreateSupportPermitOutput < Struct.new(
229
+ :name,
230
+ :arn,
231
+ :description,
232
+ :permit,
233
+ :status,
234
+ :signing_key_info,
235
+ :created_at,
236
+ :support_case_display_id,
237
+ :tags)
238
+ SENSITIVE = []
239
+ include Aws::Structure
240
+ end
241
+
242
+ # @!attribute [rw] support_permit_identifier
243
+ # The Amazon Resource Name (ARN) or name of the support permit to
244
+ # delete.
245
+ # @return [String]
246
+ #
247
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/DeleteSupportPermitInput AWS API Documentation
248
+ #
249
+ class DeleteSupportPermitInput < Struct.new(
250
+ :support_permit_identifier)
251
+ SENSITIVE = []
252
+ include Aws::Structure
253
+ end
254
+
255
+ # @!attribute [rw] name
256
+ # The name of the deleted support permit.
257
+ # @return [String]
258
+ #
259
+ # @!attribute [rw] arn
260
+ # The ARN of the deleted support permit.
261
+ # @return [String]
262
+ #
263
+ # @!attribute [rw] description
264
+ # The description of the deleted support permit.
265
+ # @return [String]
266
+ #
267
+ # @!attribute [rw] permit
268
+ # The permit definition of the deleted permit.
269
+ # @return [Types::Permit]
270
+ #
271
+ # @!attribute [rw] status
272
+ # The status of the support permit. Returns DELETING.
273
+ # @return [String]
274
+ #
275
+ # @!attribute [rw] signing_key_info
276
+ # The signing key information for the deleted permit.
277
+ # @return [Types::SigningKeyInfo]
278
+ #
279
+ # @!attribute [rw] created_at
280
+ # The timestamp when the permit was originally created.
281
+ # @return [Time]
282
+ #
283
+ # @!attribute [rw] support_case_display_id
284
+ # The display identifier of the support case associated with the
285
+ # deleted permit.
286
+ # @return [String]
287
+ #
288
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/DeleteSupportPermitOutput AWS API Documentation
289
+ #
290
+ class DeleteSupportPermitOutput < Struct.new(
291
+ :name,
292
+ :arn,
293
+ :description,
294
+ :permit,
295
+ :status,
296
+ :signing_key_info,
297
+ :created_at,
298
+ :support_case_display_id)
299
+ SENSITIVE = []
300
+ include Aws::Structure
301
+ end
302
+
303
+ # @!attribute [rw] action
304
+ # The name of the support action to retrieve.
305
+ # @return [String]
306
+ #
307
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/GetActionInput AWS API Documentation
308
+ #
309
+ class GetActionInput < Struct.new(
310
+ :action)
311
+ SENSITIVE = []
312
+ include Aws::Structure
313
+ end
314
+
315
+ # @!attribute [rw] action
316
+ # The name of the support action.
317
+ # @return [String]
318
+ #
319
+ # @!attribute [rw] service
320
+ # The AWS service associated with the support action.
321
+ # @return [String]
322
+ #
323
+ # @!attribute [rw] description
324
+ # A description of what the support action does.
325
+ # @return [String]
326
+ #
327
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/GetActionOutput AWS API Documentation
328
+ #
329
+ class GetActionOutput < Struct.new(
330
+ :action,
331
+ :service,
332
+ :description)
333
+ SENSITIVE = []
334
+ include Aws::Structure
335
+ end
336
+
337
+ # @!attribute [rw] support_permit_identifier
338
+ # The ARN or name of the support permit to retrieve.
339
+ # @return [String]
340
+ #
341
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/GetSupportPermitInput AWS API Documentation
342
+ #
343
+ class GetSupportPermitInput < Struct.new(
344
+ :support_permit_identifier)
345
+ SENSITIVE = []
346
+ include Aws::Structure
347
+ end
348
+
349
+ # @!attribute [rw] name
350
+ # The name of the support permit.
351
+ # @return [String]
352
+ #
353
+ # @!attribute [rw] arn
354
+ # The ARN of the support permit.
355
+ # @return [String]
356
+ #
357
+ # @!attribute [rw] description
358
+ # The description of the support permit.
359
+ # @return [String]
360
+ #
361
+ # @!attribute [rw] permit
362
+ # The permit definition.
363
+ # @return [Types::Permit]
364
+ #
365
+ # @!attribute [rw] status
366
+ # The current status of the support permit.
367
+ # @return [String]
368
+ #
369
+ # @!attribute [rw] signing_key_info
370
+ # The signing key information for the permit.
371
+ # @return [Types::SigningKeyInfo]
372
+ #
373
+ # @!attribute [rw] created_at
374
+ # The timestamp when the permit was created.
375
+ # @return [Time]
376
+ #
377
+ # @!attribute [rw] support_case_display_id
378
+ # The display identifier of the support case associated with the
379
+ # permit.
380
+ # @return [String]
381
+ #
382
+ # @!attribute [rw] tags
383
+ # The tags associated with the support permit.
384
+ # @return [Hash<String,String>]
385
+ #
386
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/GetSupportPermitOutput AWS API Documentation
387
+ #
388
+ class GetSupportPermitOutput < Struct.new(
389
+ :name,
390
+ :arn,
391
+ :description,
392
+ :permit,
393
+ :status,
394
+ :signing_key_info,
395
+ :created_at,
396
+ :support_case_display_id,
397
+ :tags)
398
+ SENSITIVE = []
399
+ include Aws::Structure
400
+ end
401
+
402
+ # An internal service error occurred. Try again later.
403
+ #
404
+ # @!attribute [rw] message
405
+ # @return [String]
406
+ #
407
+ # @!attribute [rw] retry_after_seconds
408
+ # The number of seconds to wait before retrying the request.
409
+ # @return [Integer]
410
+ #
411
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/InternalServerException AWS API Documentation
412
+ #
413
+ class InternalServerException < Struct.new(
414
+ :message,
415
+ :retry_after_seconds)
416
+ SENSITIVE = []
417
+ include Aws::Structure
418
+ end
419
+
420
+ # @!attribute [rw] next_token
421
+ # The token for the next page of results.
422
+ # @return [String]
423
+ #
424
+ # @!attribute [rw] max_results
425
+ # The maximum number of results to return in a single call. Valid
426
+ # range is 1 to 100.
427
+ # @return [Integer]
428
+ #
429
+ # @!attribute [rw] service
430
+ # The name of the AWS service for which to list available support
431
+ # actions.
432
+ # @return [String]
433
+ #
434
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/ListActionsInput AWS API Documentation
435
+ #
436
+ class ListActionsInput < Struct.new(
437
+ :next_token,
438
+ :max_results,
439
+ :service)
440
+ SENSITIVE = []
441
+ include Aws::Structure
442
+ end
443
+
444
+ # @!attribute [rw] action_summaries
445
+ # The list of support actions.
446
+ # @return [Array<Types::ActionSummary>]
447
+ #
448
+ # @!attribute [rw] next_token
449
+ # The token for the next page of results, or null if there are no more
450
+ # results.
451
+ # @return [String]
452
+ #
453
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/ListActionsOutput AWS API Documentation
454
+ #
455
+ class ListActionsOutput < Struct.new(
456
+ :action_summaries,
457
+ :next_token)
458
+ SENSITIVE = []
459
+ include Aws::Structure
460
+ end
461
+
462
+ # @!attribute [rw] next_token
463
+ # The token for the next page of results.
464
+ # @return [String]
465
+ #
466
+ # @!attribute [rw] max_results
467
+ # The maximum number of results to return in a single call. Valid
468
+ # range is 1 to 100.
469
+ # @return [Integer]
470
+ #
471
+ # @!attribute [rw] support_case_display_id
472
+ # Filters the results by support case display identifier.
473
+ # @return [String]
474
+ #
475
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/ListSupportPermitRequestsInput AWS API Documentation
476
+ #
477
+ class ListSupportPermitRequestsInput < Struct.new(
478
+ :next_token,
479
+ :max_results,
480
+ :support_case_display_id)
481
+ SENSITIVE = []
482
+ include Aws::Structure
483
+ end
484
+
485
+ # @!attribute [rw] support_permit_requests
486
+ # The list of permit requests.
487
+ # @return [Array<Types::SupportPermitRequest>]
488
+ #
489
+ # @!attribute [rw] next_token
490
+ # The token for the next page of results, or null if there are no more
491
+ # results.
492
+ # @return [String]
493
+ #
494
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/ListSupportPermitRequestsOutput AWS API Documentation
495
+ #
496
+ class ListSupportPermitRequestsOutput < Struct.new(
497
+ :support_permit_requests,
498
+ :next_token)
499
+ SENSITIVE = []
500
+ include Aws::Structure
501
+ end
502
+
503
+ # @!attribute [rw] next_token
504
+ # The token for the next page of results.
505
+ # @return [String]
506
+ #
507
+ # @!attribute [rw] max_results
508
+ # The maximum number of results to return in a single call. Valid
509
+ # range is 1 to 100.
510
+ # @return [Integer]
511
+ #
512
+ # @!attribute [rw] support_permit_statuses
513
+ # Filters the results by support permit status. Valid values: ACTIVE,
514
+ # INACTIVE, DELETING.
515
+ # @return [Array<String>]
516
+ #
517
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/ListSupportPermitsInput AWS API Documentation
518
+ #
519
+ class ListSupportPermitsInput < Struct.new(
520
+ :next_token,
521
+ :max_results,
522
+ :support_permit_statuses)
523
+ SENSITIVE = []
524
+ include Aws::Structure
525
+ end
526
+
527
+ # @!attribute [rw] support_permits
528
+ # The list of support permits.
529
+ # @return [Array<Types::SupportPermitSummary>]
530
+ #
531
+ # @!attribute [rw] next_token
532
+ # The token for the next page of results, or null if there are no more
533
+ # results.
534
+ # @return [String]
535
+ #
536
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/ListSupportPermitsOutput AWS API Documentation
537
+ #
538
+ class ListSupportPermitsOutput < Struct.new(
539
+ :support_permits,
540
+ :next_token)
541
+ SENSITIVE = []
542
+ include Aws::Structure
543
+ end
544
+
545
+ # @!attribute [rw] resource_arn
546
+ # The ARN of the resource to list tags for.
547
+ # @return [String]
548
+ #
549
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/ListTagsForResourceInput AWS API Documentation
550
+ #
551
+ class ListTagsForResourceInput < Struct.new(
552
+ :resource_arn)
553
+ SENSITIVE = []
554
+ include Aws::Structure
555
+ end
556
+
557
+ # @!attribute [rw] tags
558
+ # The tags associated with the resource.
559
+ # @return [Hash<String,String>]
560
+ #
561
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/ListTagsForResourceOutput AWS API Documentation
562
+ #
563
+ class ListTagsForResourceOutput < Struct.new(
564
+ :tags)
565
+ SENSITIVE = []
566
+ include Aws::Structure
567
+ end
568
+
569
+ # The permit definition specifying the authorized actions, resources,
570
+ # and time-window conditions for a support operator.
571
+ #
572
+ # @!attribute [rw] actions
573
+ # The set of actions that the support operator is authorized to
574
+ # perform.
575
+ # @return [Types::ActionSet]
576
+ #
577
+ # @!attribute [rw] resources
578
+ # The set of resources that the support operator is authorized to act
579
+ # upon.
580
+ # @return [Types::ResourceSet]
581
+ #
582
+ # @!attribute [rw] conditions
583
+ # The time-window conditions that constrain when the permit is valid.
584
+ # Maximum of 2 conditions.
585
+ # @return [Array<Types::Condition>]
586
+ #
587
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/Permit AWS API Documentation
588
+ #
589
+ class Permit < Struct.new(
590
+ :actions,
591
+ :resources,
592
+ :conditions)
593
+ SENSITIVE = []
594
+ include Aws::Structure
595
+ end
596
+
597
+ # @!attribute [rw] request_arn
598
+ # The ARN of the permit request to reject.
599
+ # @return [String]
600
+ #
601
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/RejectSupportPermitRequestInput AWS API Documentation
602
+ #
603
+ class RejectSupportPermitRequestInput < Struct.new(
604
+ :request_arn)
605
+ SENSITIVE = []
606
+ include Aws::Structure
607
+ end
608
+
609
+ # @!attribute [rw] request_arn
610
+ # The ARN of the rejected permit request.
611
+ # @return [String]
612
+ #
613
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/RejectSupportPermitRequestOutput AWS API Documentation
614
+ #
615
+ class RejectSupportPermitRequestOutput < Struct.new(
616
+ :request_arn)
617
+ SENSITIVE = []
618
+ include Aws::Structure
619
+ end
620
+
621
+ # The specified resource does not exist.
622
+ #
623
+ # @!attribute [rw] message
624
+ # @return [String]
625
+ #
626
+ # @!attribute [rw] resource_id
627
+ # The identifier of the resource that was not found.
628
+ # @return [String]
629
+ #
630
+ # @!attribute [rw] resource_type
631
+ # The type of the resource that was not found.
632
+ # @return [String]
633
+ #
634
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/ResourceNotFoundException AWS API Documentation
635
+ #
636
+ class ResourceNotFoundException < Struct.new(
637
+ :message,
638
+ :resource_id,
639
+ :resource_type)
640
+ SENSITIVE = []
641
+ include Aws::Structure
642
+ end
643
+
644
+ # The set of resources authorized by a permit. Specify either all
645
+ # resources in the Region or a list of specific resources.
646
+ #
647
+ # @note ResourceSet is a union - when making an API calls you must set exactly one of the members.
648
+ #
649
+ # @note ResourceSet is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ResourceSet corresponding to the set member.
650
+ #
651
+ # @!attribute [rw] all_resources_in_region
652
+ # Authorizes the support operator to act on all resources in the
653
+ # Region.
654
+ # @return [Types::Unit]
655
+ #
656
+ # @!attribute [rw] resources
657
+ # A list of specific resource identifiers that the support operator is
658
+ # authorized to act upon. Maximum of 5 resources.
659
+ # @return [Array<String>]
660
+ #
661
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/ResourceSet AWS API Documentation
662
+ #
663
+ class ResourceSet < Struct.new(
664
+ :all_resources_in_region,
665
+ :resources,
666
+ :unknown)
667
+ SENSITIVE = []
668
+ include Aws::Structure
669
+ include Aws::Structure::Union
670
+
671
+ class AllResourcesInRegion < ResourceSet; end
672
+ class Resources < ResourceSet; end
673
+ class Unknown < ResourceSet; end
674
+ end
675
+
676
+ # The request exceeds a service quota for your account.
677
+ #
678
+ # @!attribute [rw] message
679
+ # @return [String]
680
+ #
681
+ # @!attribute [rw] resource_id
682
+ # The identifier of the resource that exceeded the quota.
683
+ # @return [String]
684
+ #
685
+ # @!attribute [rw] resource_type
686
+ # The type of the resource that exceeded the quota.
687
+ # @return [String]
688
+ #
689
+ # @!attribute [rw] service_code
690
+ # The service code of the originating service.
691
+ # @return [String]
692
+ #
693
+ # @!attribute [rw] quota_code
694
+ # The quota code of the exceeded quota.
695
+ # @return [String]
696
+ #
697
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/ServiceQuotaExceededException AWS API Documentation
698
+ #
699
+ class ServiceQuotaExceededException < Struct.new(
700
+ :message,
701
+ :resource_id,
702
+ :resource_type,
703
+ :service_code,
704
+ :quota_code)
705
+ SENSITIVE = []
706
+ include Aws::Structure
707
+ end
708
+
709
+ # The signing key used to cryptographically sign a support permit.
710
+ #
711
+ # @note SigningKeyInfo is a union - when making an API calls you must set exactly one of the members.
712
+ #
713
+ # @note SigningKeyInfo is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of SigningKeyInfo corresponding to the set member.
714
+ #
715
+ # @!attribute [rw] kms_key
716
+ # The ARN of the AWS KMS key used to sign the permit. The key must
717
+ # have key spec ECC\_NIST\_P384 and key usage SIGN\_VERIFY.
718
+ # @return [String]
719
+ #
720
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/SigningKeyInfo AWS API Documentation
721
+ #
722
+ class SigningKeyInfo < Struct.new(
723
+ :kms_key,
724
+ :unknown)
725
+ SENSITIVE = []
726
+ include Aws::Structure
727
+ include Aws::Structure::Union
728
+
729
+ class KmsKey < SigningKeyInfo; end
730
+ class Unknown < SigningKeyInfo; end
731
+ end
732
+
733
+ # A permit request from an AWS support operator.
734
+ #
735
+ # @!attribute [rw] request_arn
736
+ # The ARN of the permit request.
737
+ # @return [String]
738
+ #
739
+ # @!attribute [rw] permit
740
+ # The permit definition requested by the operator.
741
+ # @return [Types::Permit]
742
+ #
743
+ # @!attribute [rw] support_case_display_id
744
+ # The display identifier of the support case associated with the
745
+ # request.
746
+ # @return [String]
747
+ #
748
+ # @!attribute [rw] status
749
+ # The current status of the permit request.
750
+ # @return [String]
751
+ #
752
+ # @!attribute [rw] created_at
753
+ # The timestamp when the request was created.
754
+ # @return [Time]
755
+ #
756
+ # @!attribute [rw] updated_at
757
+ # The timestamp when the request was last updated.
758
+ # @return [Time]
759
+ #
760
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/SupportPermitRequest AWS API Documentation
761
+ #
762
+ class SupportPermitRequest < Struct.new(
763
+ :request_arn,
764
+ :permit,
765
+ :support_case_display_id,
766
+ :status,
767
+ :created_at,
768
+ :updated_at)
769
+ SENSITIVE = []
770
+ include Aws::Structure
771
+ end
772
+
773
+ # A summary of a support permit.
774
+ #
775
+ # @!attribute [rw] name
776
+ # The name of the support permit.
777
+ # @return [String]
778
+ #
779
+ # @!attribute [rw] arn
780
+ # The ARN of the support permit.
781
+ # @return [String]
782
+ #
783
+ # @!attribute [rw] permit
784
+ # The permit definition.
785
+ # @return [Types::Permit]
786
+ #
787
+ # @!attribute [rw] status
788
+ # The current status of the support permit.
789
+ # @return [String]
790
+ #
791
+ # @!attribute [rw] signing_key_info
792
+ # The signing key information for the permit.
793
+ # @return [Types::SigningKeyInfo]
794
+ #
795
+ # @!attribute [rw] created_at
796
+ # The timestamp when the permit was created.
797
+ # @return [Time]
798
+ #
799
+ # @!attribute [rw] support_case_display_id
800
+ # The display identifier of the support case associated with the
801
+ # permit.
802
+ # @return [String]
803
+ #
804
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/SupportPermitSummary AWS API Documentation
805
+ #
806
+ class SupportPermitSummary < Struct.new(
807
+ :name,
808
+ :arn,
809
+ :permit,
810
+ :status,
811
+ :signing_key_info,
812
+ :created_at,
813
+ :support_case_display_id)
814
+ SENSITIVE = []
815
+ include Aws::Structure
816
+ end
817
+
818
+ # @!attribute [rw] resource_arn
819
+ # The ARN of the resource to tag.
820
+ # @return [String]
821
+ #
822
+ # @!attribute [rw] tags
823
+ # The tags to add to the resource. Maximum of 50 tags.
824
+ # @return [Hash<String,String>]
825
+ #
826
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/TagResourceInput AWS API Documentation
827
+ #
828
+ class TagResourceInput < Struct.new(
829
+ :resource_arn,
830
+ :tags)
831
+ SENSITIVE = []
832
+ include Aws::Structure
833
+ end
834
+
835
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/TagResourceOutput AWS API Documentation
836
+ #
837
+ class TagResourceOutput < Aws::EmptyStructure; end
838
+
839
+ # The request rate exceeded the allowed limit. Try again later.
840
+ #
841
+ # @!attribute [rw] message
842
+ # @return [String]
843
+ #
844
+ # @!attribute [rw] retry_after_seconds
845
+ # The number of seconds to wait before retrying the request.
846
+ # @return [Integer]
847
+ #
848
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/ThrottlingException AWS API Documentation
849
+ #
850
+ class ThrottlingException < Struct.new(
851
+ :message,
852
+ :retry_after_seconds)
853
+ SENSITIVE = []
854
+ include Aws::Structure
855
+ end
856
+
857
+ # @api private
858
+ #
859
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/Unit AWS API Documentation
860
+ #
861
+ class Unit < Aws::EmptyStructure; end
862
+
863
+ # @!attribute [rw] resource_arn
864
+ # The ARN of the resource to untag.
865
+ # @return [String]
866
+ #
867
+ # @!attribute [rw] tag_keys
868
+ # The tag keys to remove from the resource.
869
+ # @return [Array<String>]
870
+ #
871
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/UntagResourceInput AWS API Documentation
872
+ #
873
+ class UntagResourceInput < Struct.new(
874
+ :resource_arn,
875
+ :tag_keys)
876
+ SENSITIVE = []
877
+ include Aws::Structure
878
+ end
879
+
880
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/UntagResourceOutput AWS API Documentation
881
+ #
882
+ class UntagResourceOutput < Aws::EmptyStructure; end
883
+
884
+ # The input fails to satisfy the constraints specified by the service.
885
+ #
886
+ # @!attribute [rw] message
887
+ # @return [String]
888
+ #
889
+ # @!attribute [rw] field_list
890
+ # A list of fields that fail validation. Each entry identifies the
891
+ # field and the reason for the constraint violation.
892
+ # @return [Array<Types::ValidationExceptionField>]
893
+ #
894
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/ValidationException AWS API Documentation
895
+ #
896
+ class ValidationException < Struct.new(
897
+ :message,
898
+ :field_list)
899
+ SENSITIVE = []
900
+ include Aws::Structure
901
+ end
902
+
903
+ # Describes one specific validation failure for an input member.
904
+ #
905
+ # @!attribute [rw] path
906
+ # A JSONPointer expression to the structure member whose value failed
907
+ # to satisfy the modeled constraints.
908
+ # @return [String]
909
+ #
910
+ # @!attribute [rw] message
911
+ # A detailed description of the validation failure.
912
+ # @return [String]
913
+ #
914
+ # @see http://docs.aws.amazon.com/goto/WebAPI/supportauthz-2026-06-30/ValidationExceptionField AWS API Documentation
915
+ #
916
+ class ValidationExceptionField < Struct.new(
917
+ :path,
918
+ :message)
919
+ SENSITIVE = []
920
+ include Aws::Structure
921
+ end
922
+
923
+ end
924
+ end
925
+