aws-sdk-amplify 1.54.0 → 1.56.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,756 @@
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::Amplify
9
+ module Types
10
+
11
+ class App
12
+ attr_accessor app_id: ::String
13
+ attr_accessor app_arn: ::String
14
+ attr_accessor name: ::String
15
+ attr_accessor tags: ::Hash[::String, ::String]
16
+ attr_accessor description: ::String
17
+ attr_accessor repository: ::String
18
+ attr_accessor platform: ("WEB" | "WEB_DYNAMIC" | "WEB_COMPUTE")
19
+ attr_accessor create_time: ::Time
20
+ attr_accessor update_time: ::Time
21
+ attr_accessor iam_service_role_arn: ::String
22
+ attr_accessor environment_variables: ::Hash[::String, ::String]
23
+ attr_accessor default_domain: ::String
24
+ attr_accessor enable_branch_auto_build: bool
25
+ attr_accessor enable_branch_auto_deletion: bool
26
+ attr_accessor enable_basic_auth: bool
27
+ attr_accessor basic_auth_credentials: ::String
28
+ attr_accessor custom_rules: ::Array[Types::CustomRule]
29
+ attr_accessor production_branch: Types::ProductionBranch
30
+ attr_accessor build_spec: ::String
31
+ attr_accessor custom_headers: ::String
32
+ attr_accessor enable_auto_branch_creation: bool
33
+ attr_accessor auto_branch_creation_patterns: ::Array[::String]
34
+ attr_accessor auto_branch_creation_config: Types::AutoBranchCreationConfig
35
+ attr_accessor repository_clone_method: ("SSH" | "TOKEN" | "SIGV4")
36
+ SENSITIVE: [:basic_auth_credentials, :build_spec]
37
+ end
38
+
39
+ class Artifact
40
+ attr_accessor artifact_file_name: ::String
41
+ attr_accessor artifact_id: ::String
42
+ SENSITIVE: []
43
+ end
44
+
45
+ class AutoBranchCreationConfig
46
+ attr_accessor stage: ("PRODUCTION" | "BETA" | "DEVELOPMENT" | "EXPERIMENTAL" | "PULL_REQUEST")
47
+ attr_accessor framework: ::String
48
+ attr_accessor enable_auto_build: bool
49
+ attr_accessor environment_variables: ::Hash[::String, ::String]
50
+ attr_accessor basic_auth_credentials: ::String
51
+ attr_accessor enable_basic_auth: bool
52
+ attr_accessor enable_performance_mode: bool
53
+ attr_accessor build_spec: ::String
54
+ attr_accessor enable_pull_request_preview: bool
55
+ attr_accessor pull_request_environment_name: ::String
56
+ SENSITIVE: [:basic_auth_credentials, :build_spec]
57
+ end
58
+
59
+ class Backend
60
+ attr_accessor stack_arn: ::String
61
+ SENSITIVE: []
62
+ end
63
+
64
+ class BackendEnvironment
65
+ attr_accessor backend_environment_arn: ::String
66
+ attr_accessor environment_name: ::String
67
+ attr_accessor stack_name: ::String
68
+ attr_accessor deployment_artifacts: ::String
69
+ attr_accessor create_time: ::Time
70
+ attr_accessor update_time: ::Time
71
+ SENSITIVE: []
72
+ end
73
+
74
+ class BadRequestException
75
+ attr_accessor message: ::String
76
+ SENSITIVE: []
77
+ end
78
+
79
+ class Branch
80
+ attr_accessor branch_arn: ::String
81
+ attr_accessor branch_name: ::String
82
+ attr_accessor description: ::String
83
+ attr_accessor tags: ::Hash[::String, ::String]
84
+ attr_accessor stage: ("PRODUCTION" | "BETA" | "DEVELOPMENT" | "EXPERIMENTAL" | "PULL_REQUEST")
85
+ attr_accessor display_name: ::String
86
+ attr_accessor enable_notification: bool
87
+ attr_accessor create_time: ::Time
88
+ attr_accessor update_time: ::Time
89
+ attr_accessor environment_variables: ::Hash[::String, ::String]
90
+ attr_accessor enable_auto_build: bool
91
+ attr_accessor custom_domains: ::Array[::String]
92
+ attr_accessor framework: ::String
93
+ attr_accessor active_job_id: ::String
94
+ attr_accessor total_number_of_jobs: ::String
95
+ attr_accessor enable_basic_auth: bool
96
+ attr_accessor enable_performance_mode: bool
97
+ attr_accessor thumbnail_url: ::String
98
+ attr_accessor basic_auth_credentials: ::String
99
+ attr_accessor build_spec: ::String
100
+ attr_accessor ttl: ::String
101
+ attr_accessor associated_resources: ::Array[::String]
102
+ attr_accessor enable_pull_request_preview: bool
103
+ attr_accessor pull_request_environment_name: ::String
104
+ attr_accessor destination_branch: ::String
105
+ attr_accessor source_branch: ::String
106
+ attr_accessor backend_environment_arn: ::String
107
+ attr_accessor backend: Types::Backend
108
+ SENSITIVE: [:basic_auth_credentials, :build_spec]
109
+ end
110
+
111
+ class Certificate
112
+ attr_accessor type: ("AMPLIFY_MANAGED" | "CUSTOM")
113
+ attr_accessor custom_certificate_arn: ::String
114
+ attr_accessor certificate_verification_dns_record: ::String
115
+ SENSITIVE: []
116
+ end
117
+
118
+ class CertificateSettings
119
+ attr_accessor type: ("AMPLIFY_MANAGED" | "CUSTOM")
120
+ attr_accessor custom_certificate_arn: ::String
121
+ SENSITIVE: []
122
+ end
123
+
124
+ class CreateAppRequest
125
+ attr_accessor name: ::String
126
+ attr_accessor description: ::String
127
+ attr_accessor repository: ::String
128
+ attr_accessor platform: ("WEB" | "WEB_DYNAMIC" | "WEB_COMPUTE")
129
+ attr_accessor iam_service_role_arn: ::String
130
+ attr_accessor oauth_token: ::String
131
+ attr_accessor access_token: ::String
132
+ attr_accessor environment_variables: ::Hash[::String, ::String]
133
+ attr_accessor enable_branch_auto_build: bool
134
+ attr_accessor enable_branch_auto_deletion: bool
135
+ attr_accessor enable_basic_auth: bool
136
+ attr_accessor basic_auth_credentials: ::String
137
+ attr_accessor custom_rules: ::Array[Types::CustomRule]
138
+ attr_accessor tags: ::Hash[::String, ::String]
139
+ attr_accessor build_spec: ::String
140
+ attr_accessor custom_headers: ::String
141
+ attr_accessor enable_auto_branch_creation: bool
142
+ attr_accessor auto_branch_creation_patterns: ::Array[::String]
143
+ attr_accessor auto_branch_creation_config: Types::AutoBranchCreationConfig
144
+ SENSITIVE: [:oauth_token, :access_token, :basic_auth_credentials, :build_spec]
145
+ end
146
+
147
+ class CreateAppResult
148
+ attr_accessor app: Types::App
149
+ SENSITIVE: []
150
+ end
151
+
152
+ class CreateBackendEnvironmentRequest
153
+ attr_accessor app_id: ::String
154
+ attr_accessor environment_name: ::String
155
+ attr_accessor stack_name: ::String
156
+ attr_accessor deployment_artifacts: ::String
157
+ SENSITIVE: []
158
+ end
159
+
160
+ class CreateBackendEnvironmentResult
161
+ attr_accessor backend_environment: Types::BackendEnvironment
162
+ SENSITIVE: []
163
+ end
164
+
165
+ class CreateBranchRequest
166
+ attr_accessor app_id: ::String
167
+ attr_accessor branch_name: ::String
168
+ attr_accessor description: ::String
169
+ attr_accessor stage: ("PRODUCTION" | "BETA" | "DEVELOPMENT" | "EXPERIMENTAL" | "PULL_REQUEST")
170
+ attr_accessor framework: ::String
171
+ attr_accessor enable_notification: bool
172
+ attr_accessor enable_auto_build: bool
173
+ attr_accessor environment_variables: ::Hash[::String, ::String]
174
+ attr_accessor basic_auth_credentials: ::String
175
+ attr_accessor enable_basic_auth: bool
176
+ attr_accessor enable_performance_mode: bool
177
+ attr_accessor tags: ::Hash[::String, ::String]
178
+ attr_accessor build_spec: ::String
179
+ attr_accessor ttl: ::String
180
+ attr_accessor display_name: ::String
181
+ attr_accessor enable_pull_request_preview: bool
182
+ attr_accessor pull_request_environment_name: ::String
183
+ attr_accessor backend_environment_arn: ::String
184
+ attr_accessor backend: Types::Backend
185
+ SENSITIVE: [:basic_auth_credentials, :build_spec]
186
+ end
187
+
188
+ class CreateBranchResult
189
+ attr_accessor branch: Types::Branch
190
+ SENSITIVE: []
191
+ end
192
+
193
+ class CreateDeploymentRequest
194
+ attr_accessor app_id: ::String
195
+ attr_accessor branch_name: ::String
196
+ attr_accessor file_map: ::Hash[::String, ::String]
197
+ SENSITIVE: []
198
+ end
199
+
200
+ class CreateDeploymentResult
201
+ attr_accessor job_id: ::String
202
+ attr_accessor file_upload_urls: ::Hash[::String, ::String]
203
+ attr_accessor zip_upload_url: ::String
204
+ SENSITIVE: []
205
+ end
206
+
207
+ class CreateDomainAssociationRequest
208
+ attr_accessor app_id: ::String
209
+ attr_accessor domain_name: ::String
210
+ attr_accessor enable_auto_sub_domain: bool
211
+ attr_accessor sub_domain_settings: ::Array[Types::SubDomainSetting]
212
+ attr_accessor auto_sub_domain_creation_patterns: ::Array[::String]
213
+ attr_accessor auto_sub_domain_iam_role: ::String
214
+ attr_accessor certificate_settings: Types::CertificateSettings
215
+ SENSITIVE: []
216
+ end
217
+
218
+ class CreateDomainAssociationResult
219
+ attr_accessor domain_association: Types::DomainAssociation
220
+ SENSITIVE: []
221
+ end
222
+
223
+ class CreateWebhookRequest
224
+ attr_accessor app_id: ::String
225
+ attr_accessor branch_name: ::String
226
+ attr_accessor description: ::String
227
+ SENSITIVE: []
228
+ end
229
+
230
+ class CreateWebhookResult
231
+ attr_accessor webhook: Types::Webhook
232
+ SENSITIVE: []
233
+ end
234
+
235
+ class CustomRule
236
+ attr_accessor source: ::String
237
+ attr_accessor target: ::String
238
+ attr_accessor status: ::String
239
+ attr_accessor condition: ::String
240
+ SENSITIVE: []
241
+ end
242
+
243
+ class DeleteAppRequest
244
+ attr_accessor app_id: ::String
245
+ SENSITIVE: []
246
+ end
247
+
248
+ class DeleteAppResult
249
+ attr_accessor app: Types::App
250
+ SENSITIVE: []
251
+ end
252
+
253
+ class DeleteBackendEnvironmentRequest
254
+ attr_accessor app_id: ::String
255
+ attr_accessor environment_name: ::String
256
+ SENSITIVE: []
257
+ end
258
+
259
+ class DeleteBackendEnvironmentResult
260
+ attr_accessor backend_environment: Types::BackendEnvironment
261
+ SENSITIVE: []
262
+ end
263
+
264
+ class DeleteBranchRequest
265
+ attr_accessor app_id: ::String
266
+ attr_accessor branch_name: ::String
267
+ SENSITIVE: []
268
+ end
269
+
270
+ class DeleteBranchResult
271
+ attr_accessor branch: Types::Branch
272
+ SENSITIVE: []
273
+ end
274
+
275
+ class DeleteDomainAssociationRequest
276
+ attr_accessor app_id: ::String
277
+ attr_accessor domain_name: ::String
278
+ SENSITIVE: []
279
+ end
280
+
281
+ class DeleteDomainAssociationResult
282
+ attr_accessor domain_association: Types::DomainAssociation
283
+ SENSITIVE: []
284
+ end
285
+
286
+ class DeleteJobRequest
287
+ attr_accessor app_id: ::String
288
+ attr_accessor branch_name: ::String
289
+ attr_accessor job_id: ::String
290
+ SENSITIVE: []
291
+ end
292
+
293
+ class DeleteJobResult
294
+ attr_accessor job_summary: Types::JobSummary
295
+ SENSITIVE: []
296
+ end
297
+
298
+ class DeleteWebhookRequest
299
+ attr_accessor webhook_id: ::String
300
+ SENSITIVE: []
301
+ end
302
+
303
+ class DeleteWebhookResult
304
+ attr_accessor webhook: Types::Webhook
305
+ SENSITIVE: []
306
+ end
307
+
308
+ class DependentServiceFailureException
309
+ attr_accessor message: ::String
310
+ SENSITIVE: []
311
+ end
312
+
313
+ class DomainAssociation
314
+ attr_accessor domain_association_arn: ::String
315
+ attr_accessor domain_name: ::String
316
+ attr_accessor enable_auto_sub_domain: bool
317
+ attr_accessor auto_sub_domain_creation_patterns: ::Array[::String]
318
+ attr_accessor auto_sub_domain_iam_role: ::String
319
+ attr_accessor domain_status: ("PENDING_VERIFICATION" | "IN_PROGRESS" | "AVAILABLE" | "IMPORTING_CUSTOM_CERTIFICATE" | "PENDING_DEPLOYMENT" | "AWAITING_APP_CNAME" | "FAILED" | "CREATING" | "REQUESTING_CERTIFICATE" | "UPDATING")
320
+ attr_accessor update_status: ("REQUESTING_CERTIFICATE" | "PENDING_VERIFICATION" | "IMPORTING_CUSTOM_CERTIFICATE" | "PENDING_DEPLOYMENT" | "AWAITING_APP_CNAME" | "UPDATE_COMPLETE" | "UPDATE_FAILED")
321
+ attr_accessor status_reason: ::String
322
+ attr_accessor certificate_verification_dns_record: ::String
323
+ attr_accessor sub_domains: ::Array[Types::SubDomain]
324
+ attr_accessor certificate: Types::Certificate
325
+ SENSITIVE: []
326
+ end
327
+
328
+ class GenerateAccessLogsRequest
329
+ attr_accessor start_time: ::Time
330
+ attr_accessor end_time: ::Time
331
+ attr_accessor domain_name: ::String
332
+ attr_accessor app_id: ::String
333
+ SENSITIVE: []
334
+ end
335
+
336
+ class GenerateAccessLogsResult
337
+ attr_accessor log_url: ::String
338
+ SENSITIVE: []
339
+ end
340
+
341
+ class GetAppRequest
342
+ attr_accessor app_id: ::String
343
+ SENSITIVE: []
344
+ end
345
+
346
+ class GetAppResult
347
+ attr_accessor app: Types::App
348
+ SENSITIVE: []
349
+ end
350
+
351
+ class GetArtifactUrlRequest
352
+ attr_accessor artifact_id: ::String
353
+ SENSITIVE: []
354
+ end
355
+
356
+ class GetArtifactUrlResult
357
+ attr_accessor artifact_id: ::String
358
+ attr_accessor artifact_url: ::String
359
+ SENSITIVE: []
360
+ end
361
+
362
+ class GetBackendEnvironmentRequest
363
+ attr_accessor app_id: ::String
364
+ attr_accessor environment_name: ::String
365
+ SENSITIVE: []
366
+ end
367
+
368
+ class GetBackendEnvironmentResult
369
+ attr_accessor backend_environment: Types::BackendEnvironment
370
+ SENSITIVE: []
371
+ end
372
+
373
+ class GetBranchRequest
374
+ attr_accessor app_id: ::String
375
+ attr_accessor branch_name: ::String
376
+ SENSITIVE: []
377
+ end
378
+
379
+ class GetBranchResult
380
+ attr_accessor branch: Types::Branch
381
+ SENSITIVE: []
382
+ end
383
+
384
+ class GetDomainAssociationRequest
385
+ attr_accessor app_id: ::String
386
+ attr_accessor domain_name: ::String
387
+ SENSITIVE: []
388
+ end
389
+
390
+ class GetDomainAssociationResult
391
+ attr_accessor domain_association: Types::DomainAssociation
392
+ SENSITIVE: []
393
+ end
394
+
395
+ class GetJobRequest
396
+ attr_accessor app_id: ::String
397
+ attr_accessor branch_name: ::String
398
+ attr_accessor job_id: ::String
399
+ SENSITIVE: []
400
+ end
401
+
402
+ class GetJobResult
403
+ attr_accessor job: Types::Job
404
+ SENSITIVE: []
405
+ end
406
+
407
+ class GetWebhookRequest
408
+ attr_accessor webhook_id: ::String
409
+ SENSITIVE: []
410
+ end
411
+
412
+ class GetWebhookResult
413
+ attr_accessor webhook: Types::Webhook
414
+ SENSITIVE: []
415
+ end
416
+
417
+ class InternalFailureException
418
+ attr_accessor message: ::String
419
+ SENSITIVE: []
420
+ end
421
+
422
+ class Job
423
+ attr_accessor summary: Types::JobSummary
424
+ attr_accessor steps: ::Array[Types::Step]
425
+ SENSITIVE: []
426
+ end
427
+
428
+ class JobSummary
429
+ attr_accessor job_arn: ::String
430
+ attr_accessor job_id: ::String
431
+ attr_accessor commit_id: ::String
432
+ attr_accessor commit_message: ::String
433
+ attr_accessor commit_time: ::Time
434
+ attr_accessor start_time: ::Time
435
+ attr_accessor status: ("PENDING" | "PROVISIONING" | "RUNNING" | "FAILED" | "SUCCEED" | "CANCELLING" | "CANCELLED")
436
+ attr_accessor end_time: ::Time
437
+ attr_accessor job_type: ("RELEASE" | "RETRY" | "MANUAL" | "WEB_HOOK")
438
+ SENSITIVE: []
439
+ end
440
+
441
+ class LimitExceededException
442
+ attr_accessor message: ::String
443
+ SENSITIVE: []
444
+ end
445
+
446
+ class ListAppsRequest
447
+ attr_accessor next_token: ::String
448
+ attr_accessor max_results: ::Integer
449
+ SENSITIVE: []
450
+ end
451
+
452
+ class ListAppsResult
453
+ attr_accessor apps: ::Array[Types::App]
454
+ attr_accessor next_token: ::String
455
+ SENSITIVE: []
456
+ end
457
+
458
+ class ListArtifactsRequest
459
+ attr_accessor app_id: ::String
460
+ attr_accessor branch_name: ::String
461
+ attr_accessor job_id: ::String
462
+ attr_accessor next_token: ::String
463
+ attr_accessor max_results: ::Integer
464
+ SENSITIVE: []
465
+ end
466
+
467
+ class ListArtifactsResult
468
+ attr_accessor artifacts: ::Array[Types::Artifact]
469
+ attr_accessor next_token: ::String
470
+ SENSITIVE: []
471
+ end
472
+
473
+ class ListBackendEnvironmentsRequest
474
+ attr_accessor app_id: ::String
475
+ attr_accessor environment_name: ::String
476
+ attr_accessor next_token: ::String
477
+ attr_accessor max_results: ::Integer
478
+ SENSITIVE: []
479
+ end
480
+
481
+ class ListBackendEnvironmentsResult
482
+ attr_accessor backend_environments: ::Array[Types::BackendEnvironment]
483
+ attr_accessor next_token: ::String
484
+ SENSITIVE: []
485
+ end
486
+
487
+ class ListBranchesRequest
488
+ attr_accessor app_id: ::String
489
+ attr_accessor next_token: ::String
490
+ attr_accessor max_results: ::Integer
491
+ SENSITIVE: []
492
+ end
493
+
494
+ class ListBranchesResult
495
+ attr_accessor branches: ::Array[Types::Branch]
496
+ attr_accessor next_token: ::String
497
+ SENSITIVE: []
498
+ end
499
+
500
+ class ListDomainAssociationsRequest
501
+ attr_accessor app_id: ::String
502
+ attr_accessor next_token: ::String
503
+ attr_accessor max_results: ::Integer
504
+ SENSITIVE: []
505
+ end
506
+
507
+ class ListDomainAssociationsResult
508
+ attr_accessor domain_associations: ::Array[Types::DomainAssociation]
509
+ attr_accessor next_token: ::String
510
+ SENSITIVE: []
511
+ end
512
+
513
+ class ListJobsRequest
514
+ attr_accessor app_id: ::String
515
+ attr_accessor branch_name: ::String
516
+ attr_accessor next_token: ::String
517
+ attr_accessor max_results: ::Integer
518
+ SENSITIVE: []
519
+ end
520
+
521
+ class ListJobsResult
522
+ attr_accessor job_summaries: ::Array[Types::JobSummary]
523
+ attr_accessor next_token: ::String
524
+ SENSITIVE: []
525
+ end
526
+
527
+ class ListTagsForResourceRequest
528
+ attr_accessor resource_arn: ::String
529
+ SENSITIVE: []
530
+ end
531
+
532
+ class ListTagsForResourceResponse
533
+ attr_accessor tags: ::Hash[::String, ::String]
534
+ SENSITIVE: []
535
+ end
536
+
537
+ class ListWebhooksRequest
538
+ attr_accessor app_id: ::String
539
+ attr_accessor next_token: ::String
540
+ attr_accessor max_results: ::Integer
541
+ SENSITIVE: []
542
+ end
543
+
544
+ class ListWebhooksResult
545
+ attr_accessor webhooks: ::Array[Types::Webhook]
546
+ attr_accessor next_token: ::String
547
+ SENSITIVE: []
548
+ end
549
+
550
+ class NotFoundException
551
+ attr_accessor message: ::String
552
+ SENSITIVE: []
553
+ end
554
+
555
+ class ProductionBranch
556
+ attr_accessor last_deploy_time: ::Time
557
+ attr_accessor status: ::String
558
+ attr_accessor thumbnail_url: ::String
559
+ attr_accessor branch_name: ::String
560
+ SENSITIVE: []
561
+ end
562
+
563
+ class ResourceNotFoundException
564
+ attr_accessor code: ::String
565
+ attr_accessor message: ::String
566
+ SENSITIVE: []
567
+ end
568
+
569
+ class StartDeploymentRequest
570
+ attr_accessor app_id: ::String
571
+ attr_accessor branch_name: ::String
572
+ attr_accessor job_id: ::String
573
+ attr_accessor source_url: ::String
574
+ SENSITIVE: []
575
+ end
576
+
577
+ class StartDeploymentResult
578
+ attr_accessor job_summary: Types::JobSummary
579
+ SENSITIVE: []
580
+ end
581
+
582
+ class StartJobRequest
583
+ attr_accessor app_id: ::String
584
+ attr_accessor branch_name: ::String
585
+ attr_accessor job_id: ::String
586
+ attr_accessor job_type: ("RELEASE" | "RETRY" | "MANUAL" | "WEB_HOOK")
587
+ attr_accessor job_reason: ::String
588
+ attr_accessor commit_id: ::String
589
+ attr_accessor commit_message: ::String
590
+ attr_accessor commit_time: ::Time
591
+ SENSITIVE: []
592
+ end
593
+
594
+ class StartJobResult
595
+ attr_accessor job_summary: Types::JobSummary
596
+ SENSITIVE: []
597
+ end
598
+
599
+ class Step
600
+ attr_accessor step_name: ::String
601
+ attr_accessor start_time: ::Time
602
+ attr_accessor status: ("PENDING" | "PROVISIONING" | "RUNNING" | "FAILED" | "SUCCEED" | "CANCELLING" | "CANCELLED")
603
+ attr_accessor end_time: ::Time
604
+ attr_accessor log_url: ::String
605
+ attr_accessor artifacts_url: ::String
606
+ attr_accessor test_artifacts_url: ::String
607
+ attr_accessor test_config_url: ::String
608
+ attr_accessor screenshots: ::Hash[::String, ::String]
609
+ attr_accessor status_reason: ::String
610
+ attr_accessor context: ::String
611
+ SENSITIVE: []
612
+ end
613
+
614
+ class StopJobRequest
615
+ attr_accessor app_id: ::String
616
+ attr_accessor branch_name: ::String
617
+ attr_accessor job_id: ::String
618
+ SENSITIVE: []
619
+ end
620
+
621
+ class StopJobResult
622
+ attr_accessor job_summary: Types::JobSummary
623
+ SENSITIVE: []
624
+ end
625
+
626
+ class SubDomain
627
+ attr_accessor sub_domain_setting: Types::SubDomainSetting
628
+ attr_accessor verified: bool
629
+ attr_accessor dns_record: ::String
630
+ SENSITIVE: []
631
+ end
632
+
633
+ class SubDomainSetting
634
+ attr_accessor prefix: ::String
635
+ attr_accessor branch_name: ::String
636
+ SENSITIVE: []
637
+ end
638
+
639
+ class TagResourceRequest
640
+ attr_accessor resource_arn: ::String
641
+ attr_accessor tags: ::Hash[::String, ::String]
642
+ SENSITIVE: []
643
+ end
644
+
645
+ class TagResourceResponse < Aws::EmptyStructure
646
+ end
647
+
648
+ class UnauthorizedException
649
+ attr_accessor message: ::String
650
+ SENSITIVE: []
651
+ end
652
+
653
+ class UntagResourceRequest
654
+ attr_accessor resource_arn: ::String
655
+ attr_accessor tag_keys: ::Array[::String]
656
+ SENSITIVE: []
657
+ end
658
+
659
+ class UntagResourceResponse < Aws::EmptyStructure
660
+ end
661
+
662
+ class UpdateAppRequest
663
+ attr_accessor app_id: ::String
664
+ attr_accessor name: ::String
665
+ attr_accessor description: ::String
666
+ attr_accessor platform: ("WEB" | "WEB_DYNAMIC" | "WEB_COMPUTE")
667
+ attr_accessor iam_service_role_arn: ::String
668
+ attr_accessor environment_variables: ::Hash[::String, ::String]
669
+ attr_accessor enable_branch_auto_build: bool
670
+ attr_accessor enable_branch_auto_deletion: bool
671
+ attr_accessor enable_basic_auth: bool
672
+ attr_accessor basic_auth_credentials: ::String
673
+ attr_accessor custom_rules: ::Array[Types::CustomRule]
674
+ attr_accessor build_spec: ::String
675
+ attr_accessor custom_headers: ::String
676
+ attr_accessor enable_auto_branch_creation: bool
677
+ attr_accessor auto_branch_creation_patterns: ::Array[::String]
678
+ attr_accessor auto_branch_creation_config: Types::AutoBranchCreationConfig
679
+ attr_accessor repository: ::String
680
+ attr_accessor oauth_token: ::String
681
+ attr_accessor access_token: ::String
682
+ SENSITIVE: [:basic_auth_credentials, :build_spec, :oauth_token, :access_token]
683
+ end
684
+
685
+ class UpdateAppResult
686
+ attr_accessor app: Types::App
687
+ SENSITIVE: []
688
+ end
689
+
690
+ class UpdateBranchRequest
691
+ attr_accessor app_id: ::String
692
+ attr_accessor branch_name: ::String
693
+ attr_accessor description: ::String
694
+ attr_accessor framework: ::String
695
+ attr_accessor stage: ("PRODUCTION" | "BETA" | "DEVELOPMENT" | "EXPERIMENTAL" | "PULL_REQUEST")
696
+ attr_accessor enable_notification: bool
697
+ attr_accessor enable_auto_build: bool
698
+ attr_accessor environment_variables: ::Hash[::String, ::String]
699
+ attr_accessor basic_auth_credentials: ::String
700
+ attr_accessor enable_basic_auth: bool
701
+ attr_accessor enable_performance_mode: bool
702
+ attr_accessor build_spec: ::String
703
+ attr_accessor ttl: ::String
704
+ attr_accessor display_name: ::String
705
+ attr_accessor enable_pull_request_preview: bool
706
+ attr_accessor pull_request_environment_name: ::String
707
+ attr_accessor backend_environment_arn: ::String
708
+ attr_accessor backend: Types::Backend
709
+ SENSITIVE: [:basic_auth_credentials, :build_spec]
710
+ end
711
+
712
+ class UpdateBranchResult
713
+ attr_accessor branch: Types::Branch
714
+ SENSITIVE: []
715
+ end
716
+
717
+ class UpdateDomainAssociationRequest
718
+ attr_accessor app_id: ::String
719
+ attr_accessor domain_name: ::String
720
+ attr_accessor enable_auto_sub_domain: bool
721
+ attr_accessor sub_domain_settings: ::Array[Types::SubDomainSetting]
722
+ attr_accessor auto_sub_domain_creation_patterns: ::Array[::String]
723
+ attr_accessor auto_sub_domain_iam_role: ::String
724
+ attr_accessor certificate_settings: Types::CertificateSettings
725
+ SENSITIVE: []
726
+ end
727
+
728
+ class UpdateDomainAssociationResult
729
+ attr_accessor domain_association: Types::DomainAssociation
730
+ SENSITIVE: []
731
+ end
732
+
733
+ class UpdateWebhookRequest
734
+ attr_accessor webhook_id: ::String
735
+ attr_accessor branch_name: ::String
736
+ attr_accessor description: ::String
737
+ SENSITIVE: []
738
+ end
739
+
740
+ class UpdateWebhookResult
741
+ attr_accessor webhook: Types::Webhook
742
+ SENSITIVE: []
743
+ end
744
+
745
+ class Webhook
746
+ attr_accessor webhook_arn: ::String
747
+ attr_accessor webhook_id: ::String
748
+ attr_accessor webhook_url: ::String
749
+ attr_accessor branch_name: ::String
750
+ attr_accessor description: ::String
751
+ attr_accessor create_time: ::Time
752
+ attr_accessor update_time: ::Time
753
+ SENSITIVE: []
754
+ end
755
+ end
756
+ end