aws-sdk-elasticloadbalancingv2 1.96.0 → 1.97.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.
data/sig/types.rbs ADDED
@@ -0,0 +1,1043 @@
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::ElasticLoadBalancingV2
9
+ module Types
10
+
11
+ class ALPNPolicyNotSupportedException < Aws::EmptyStructure
12
+ end
13
+
14
+ class Action
15
+ attr_accessor type: ("forward" | "authenticate-oidc" | "authenticate-cognito" | "redirect" | "fixed-response")
16
+ attr_accessor target_group_arn: ::String
17
+ attr_accessor authenticate_oidc_config: Types::AuthenticateOidcActionConfig
18
+ attr_accessor authenticate_cognito_config: Types::AuthenticateCognitoActionConfig
19
+ attr_accessor order: ::Integer
20
+ attr_accessor redirect_config: Types::RedirectActionConfig
21
+ attr_accessor fixed_response_config: Types::FixedResponseActionConfig
22
+ attr_accessor forward_config: Types::ForwardActionConfig
23
+ SENSITIVE: []
24
+ end
25
+
26
+ class AddListenerCertificatesInput
27
+ attr_accessor listener_arn: ::String
28
+ attr_accessor certificates: ::Array[Types::Certificate]
29
+ SENSITIVE: []
30
+ end
31
+
32
+ class AddListenerCertificatesOutput
33
+ attr_accessor certificates: ::Array[Types::Certificate]
34
+ SENSITIVE: []
35
+ end
36
+
37
+ class AddTagsInput
38
+ attr_accessor resource_arns: ::Array[::String]
39
+ attr_accessor tags: ::Array[Types::Tag]
40
+ SENSITIVE: []
41
+ end
42
+
43
+ class AddTagsOutput < Aws::EmptyStructure
44
+ end
45
+
46
+ class AddTrustStoreRevocationsInput
47
+ attr_accessor trust_store_arn: ::String
48
+ attr_accessor revocation_contents: ::Array[Types::RevocationContent]
49
+ SENSITIVE: []
50
+ end
51
+
52
+ class AddTrustStoreRevocationsOutput
53
+ attr_accessor trust_store_revocations: ::Array[Types::TrustStoreRevocation]
54
+ SENSITIVE: []
55
+ end
56
+
57
+ class AllocationIdNotFoundException < Aws::EmptyStructure
58
+ end
59
+
60
+ class AnomalyDetection
61
+ attr_accessor result: ("anomalous" | "normal")
62
+ attr_accessor mitigation_in_effect: ("yes" | "no")
63
+ SENSITIVE: []
64
+ end
65
+
66
+ class AuthenticateCognitoActionConfig
67
+ attr_accessor user_pool_arn: ::String
68
+ attr_accessor user_pool_client_id: ::String
69
+ attr_accessor user_pool_domain: ::String
70
+ attr_accessor session_cookie_name: ::String
71
+ attr_accessor scope: ::String
72
+ attr_accessor session_timeout: ::Integer
73
+ attr_accessor authentication_request_extra_params: ::Hash[::String, ::String]
74
+ attr_accessor on_unauthenticated_request: ("deny" | "allow" | "authenticate")
75
+ SENSITIVE: []
76
+ end
77
+
78
+ class AuthenticateOidcActionConfig
79
+ attr_accessor issuer: ::String
80
+ attr_accessor authorization_endpoint: ::String
81
+ attr_accessor token_endpoint: ::String
82
+ attr_accessor user_info_endpoint: ::String
83
+ attr_accessor client_id: ::String
84
+ attr_accessor client_secret: ::String
85
+ attr_accessor session_cookie_name: ::String
86
+ attr_accessor scope: ::String
87
+ attr_accessor session_timeout: ::Integer
88
+ attr_accessor authentication_request_extra_params: ::Hash[::String, ::String]
89
+ attr_accessor on_unauthenticated_request: ("deny" | "allow" | "authenticate")
90
+ attr_accessor use_existing_client_secret: bool
91
+ SENSITIVE: []
92
+ end
93
+
94
+ class AvailabilityZone
95
+ attr_accessor zone_name: ::String
96
+ attr_accessor subnet_id: ::String
97
+ attr_accessor outpost_id: ::String
98
+ attr_accessor load_balancer_addresses: ::Array[Types::LoadBalancerAddress]
99
+ SENSITIVE: []
100
+ end
101
+
102
+ class AvailabilityZoneNotSupportedException < Aws::EmptyStructure
103
+ end
104
+
105
+ class CaCertificatesBundleNotFoundException < Aws::EmptyStructure
106
+ end
107
+
108
+ class Certificate
109
+ attr_accessor certificate_arn: ::String
110
+ attr_accessor is_default: bool
111
+ SENSITIVE: []
112
+ end
113
+
114
+ class CertificateNotFoundException < Aws::EmptyStructure
115
+ end
116
+
117
+ class Cipher
118
+ attr_accessor name: ::String
119
+ attr_accessor priority: ::Integer
120
+ SENSITIVE: []
121
+ end
122
+
123
+ class CreateListenerInput
124
+ attr_accessor load_balancer_arn: ::String
125
+ attr_accessor protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE")
126
+ attr_accessor port: ::Integer
127
+ attr_accessor ssl_policy: ::String
128
+ attr_accessor certificates: ::Array[Types::Certificate]
129
+ attr_accessor default_actions: ::Array[Types::Action]
130
+ attr_accessor alpn_policy: ::Array[::String]
131
+ attr_accessor tags: ::Array[Types::Tag]
132
+ attr_accessor mutual_authentication: Types::MutualAuthenticationAttributes
133
+ SENSITIVE: []
134
+ end
135
+
136
+ class CreateListenerOutput
137
+ attr_accessor listeners: ::Array[Types::Listener]
138
+ SENSITIVE: []
139
+ end
140
+
141
+ class CreateLoadBalancerInput
142
+ attr_accessor name: ::String
143
+ attr_accessor subnets: ::Array[::String]
144
+ attr_accessor subnet_mappings: ::Array[Types::SubnetMapping]
145
+ attr_accessor security_groups: ::Array[::String]
146
+ attr_accessor scheme: ("internet-facing" | "internal")
147
+ attr_accessor tags: ::Array[Types::Tag]
148
+ attr_accessor type: ("application" | "network" | "gateway")
149
+ attr_accessor ip_address_type: ("ipv4" | "dualstack")
150
+ attr_accessor customer_owned_ipv_4_pool: ::String
151
+ SENSITIVE: []
152
+ end
153
+
154
+ class CreateLoadBalancerOutput
155
+ attr_accessor load_balancers: ::Array[Types::LoadBalancer]
156
+ SENSITIVE: []
157
+ end
158
+
159
+ class CreateRuleInput
160
+ attr_accessor listener_arn: ::String
161
+ attr_accessor conditions: ::Array[Types::RuleCondition]
162
+ attr_accessor priority: ::Integer
163
+ attr_accessor actions: ::Array[Types::Action]
164
+ attr_accessor tags: ::Array[Types::Tag]
165
+ SENSITIVE: []
166
+ end
167
+
168
+ class CreateRuleOutput
169
+ attr_accessor rules: ::Array[Types::Rule]
170
+ SENSITIVE: []
171
+ end
172
+
173
+ class CreateTargetGroupInput
174
+ attr_accessor name: ::String
175
+ attr_accessor protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE")
176
+ attr_accessor protocol_version: ::String
177
+ attr_accessor port: ::Integer
178
+ attr_accessor vpc_id: ::String
179
+ attr_accessor health_check_protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE")
180
+ attr_accessor health_check_port: ::String
181
+ attr_accessor health_check_enabled: bool
182
+ attr_accessor health_check_path: ::String
183
+ attr_accessor health_check_interval_seconds: ::Integer
184
+ attr_accessor health_check_timeout_seconds: ::Integer
185
+ attr_accessor healthy_threshold_count: ::Integer
186
+ attr_accessor unhealthy_threshold_count: ::Integer
187
+ attr_accessor matcher: Types::Matcher
188
+ attr_accessor target_type: ("instance" | "ip" | "lambda" | "alb")
189
+ attr_accessor tags: ::Array[Types::Tag]
190
+ attr_accessor ip_address_type: ("ipv4" | "ipv6")
191
+ SENSITIVE: []
192
+ end
193
+
194
+ class CreateTargetGroupOutput
195
+ attr_accessor target_groups: ::Array[Types::TargetGroup]
196
+ SENSITIVE: []
197
+ end
198
+
199
+ class CreateTrustStoreInput
200
+ attr_accessor name: ::String
201
+ attr_accessor ca_certificates_bundle_s3_bucket: ::String
202
+ attr_accessor ca_certificates_bundle_s3_key: ::String
203
+ attr_accessor ca_certificates_bundle_s3_object_version: ::String
204
+ attr_accessor tags: ::Array[Types::Tag]
205
+ SENSITIVE: []
206
+ end
207
+
208
+ class CreateTrustStoreOutput
209
+ attr_accessor trust_stores: ::Array[Types::TrustStore]
210
+ SENSITIVE: []
211
+ end
212
+
213
+ class DeleteListenerInput
214
+ attr_accessor listener_arn: ::String
215
+ SENSITIVE: []
216
+ end
217
+
218
+ class DeleteListenerOutput < Aws::EmptyStructure
219
+ end
220
+
221
+ class DeleteLoadBalancerInput
222
+ attr_accessor load_balancer_arn: ::String
223
+ SENSITIVE: []
224
+ end
225
+
226
+ class DeleteLoadBalancerOutput < Aws::EmptyStructure
227
+ end
228
+
229
+ class DeleteRuleInput
230
+ attr_accessor rule_arn: ::String
231
+ SENSITIVE: []
232
+ end
233
+
234
+ class DeleteRuleOutput < Aws::EmptyStructure
235
+ end
236
+
237
+ class DeleteTargetGroupInput
238
+ attr_accessor target_group_arn: ::String
239
+ SENSITIVE: []
240
+ end
241
+
242
+ class DeleteTargetGroupOutput < Aws::EmptyStructure
243
+ end
244
+
245
+ class DeleteTrustStoreInput
246
+ attr_accessor trust_store_arn: ::String
247
+ SENSITIVE: []
248
+ end
249
+
250
+ class DeleteTrustStoreOutput < Aws::EmptyStructure
251
+ end
252
+
253
+ class DeregisterTargetsInput
254
+ attr_accessor target_group_arn: ::String
255
+ attr_accessor targets: ::Array[Types::TargetDescription]
256
+ SENSITIVE: []
257
+ end
258
+
259
+ class DeregisterTargetsOutput < Aws::EmptyStructure
260
+ end
261
+
262
+ class DescribeAccountLimitsInput
263
+ attr_accessor marker: ::String
264
+ attr_accessor page_size: ::Integer
265
+ SENSITIVE: []
266
+ end
267
+
268
+ class DescribeAccountLimitsOutput
269
+ attr_accessor limits: ::Array[Types::Limit]
270
+ attr_accessor next_marker: ::String
271
+ SENSITIVE: []
272
+ end
273
+
274
+ class DescribeListenerCertificatesInput
275
+ attr_accessor listener_arn: ::String
276
+ attr_accessor marker: ::String
277
+ attr_accessor page_size: ::Integer
278
+ SENSITIVE: []
279
+ end
280
+
281
+ class DescribeListenerCertificatesOutput
282
+ attr_accessor certificates: ::Array[Types::Certificate]
283
+ attr_accessor next_marker: ::String
284
+ SENSITIVE: []
285
+ end
286
+
287
+ class DescribeListenersInput
288
+ attr_accessor load_balancer_arn: ::String
289
+ attr_accessor listener_arns: ::Array[::String]
290
+ attr_accessor marker: ::String
291
+ attr_accessor page_size: ::Integer
292
+ SENSITIVE: []
293
+ end
294
+
295
+ class DescribeListenersOutput
296
+ attr_accessor listeners: ::Array[Types::Listener]
297
+ attr_accessor next_marker: ::String
298
+ SENSITIVE: []
299
+ end
300
+
301
+ class DescribeLoadBalancerAttributesInput
302
+ attr_accessor load_balancer_arn: ::String
303
+ SENSITIVE: []
304
+ end
305
+
306
+ class DescribeLoadBalancerAttributesOutput
307
+ attr_accessor attributes: ::Array[Types::LoadBalancerAttribute]
308
+ SENSITIVE: []
309
+ end
310
+
311
+ class DescribeLoadBalancersInput
312
+ attr_accessor load_balancer_arns: ::Array[::String]
313
+ attr_accessor names: ::Array[::String]
314
+ attr_accessor marker: ::String
315
+ attr_accessor page_size: ::Integer
316
+ SENSITIVE: []
317
+ end
318
+
319
+ class DescribeLoadBalancersOutput
320
+ attr_accessor load_balancers: ::Array[Types::LoadBalancer]
321
+ attr_accessor next_marker: ::String
322
+ SENSITIVE: []
323
+ end
324
+
325
+ class DescribeRulesInput
326
+ attr_accessor listener_arn: ::String
327
+ attr_accessor rule_arns: ::Array[::String]
328
+ attr_accessor marker: ::String
329
+ attr_accessor page_size: ::Integer
330
+ SENSITIVE: []
331
+ end
332
+
333
+ class DescribeRulesOutput
334
+ attr_accessor rules: ::Array[Types::Rule]
335
+ attr_accessor next_marker: ::String
336
+ SENSITIVE: []
337
+ end
338
+
339
+ class DescribeSSLPoliciesInput
340
+ attr_accessor names: ::Array[::String]
341
+ attr_accessor marker: ::String
342
+ attr_accessor page_size: ::Integer
343
+ attr_accessor load_balancer_type: ("application" | "network" | "gateway")
344
+ SENSITIVE: []
345
+ end
346
+
347
+ class DescribeSSLPoliciesOutput
348
+ attr_accessor ssl_policies: ::Array[Types::SslPolicy]
349
+ attr_accessor next_marker: ::String
350
+ SENSITIVE: []
351
+ end
352
+
353
+ class DescribeTagsInput
354
+ attr_accessor resource_arns: ::Array[::String]
355
+ SENSITIVE: []
356
+ end
357
+
358
+ class DescribeTagsOutput
359
+ attr_accessor tag_descriptions: ::Array[Types::TagDescription]
360
+ SENSITIVE: []
361
+ end
362
+
363
+ class DescribeTargetGroupAttributesInput
364
+ attr_accessor target_group_arn: ::String
365
+ SENSITIVE: []
366
+ end
367
+
368
+ class DescribeTargetGroupAttributesOutput
369
+ attr_accessor attributes: ::Array[Types::TargetGroupAttribute]
370
+ SENSITIVE: []
371
+ end
372
+
373
+ class DescribeTargetGroupsInput
374
+ attr_accessor load_balancer_arn: ::String
375
+ attr_accessor target_group_arns: ::Array[::String]
376
+ attr_accessor names: ::Array[::String]
377
+ attr_accessor marker: ::String
378
+ attr_accessor page_size: ::Integer
379
+ SENSITIVE: []
380
+ end
381
+
382
+ class DescribeTargetGroupsOutput
383
+ attr_accessor target_groups: ::Array[Types::TargetGroup]
384
+ attr_accessor next_marker: ::String
385
+ SENSITIVE: []
386
+ end
387
+
388
+ class DescribeTargetHealthInput
389
+ attr_accessor target_group_arn: ::String
390
+ attr_accessor targets: ::Array[Types::TargetDescription]
391
+ attr_accessor include: ::Array[("AnomalyDetection" | "All")]
392
+ SENSITIVE: []
393
+ end
394
+
395
+ class DescribeTargetHealthOutput
396
+ attr_accessor target_health_descriptions: ::Array[Types::TargetHealthDescription]
397
+ SENSITIVE: []
398
+ end
399
+
400
+ class DescribeTrustStoreAssociationsInput
401
+ attr_accessor trust_store_arn: ::String
402
+ attr_accessor marker: ::String
403
+ attr_accessor page_size: ::Integer
404
+ SENSITIVE: []
405
+ end
406
+
407
+ class DescribeTrustStoreAssociationsOutput
408
+ attr_accessor trust_store_associations: ::Array[Types::TrustStoreAssociation]
409
+ attr_accessor next_marker: ::String
410
+ SENSITIVE: []
411
+ end
412
+
413
+ class DescribeTrustStoreRevocation
414
+ attr_accessor trust_store_arn: ::String
415
+ attr_accessor revocation_id: ::Integer
416
+ attr_accessor revocation_type: ("CRL")
417
+ attr_accessor number_of_revoked_entries: ::Integer
418
+ SENSITIVE: []
419
+ end
420
+
421
+ class DescribeTrustStoreRevocationsInput
422
+ attr_accessor trust_store_arn: ::String
423
+ attr_accessor revocation_ids: ::Array[::Integer]
424
+ attr_accessor marker: ::String
425
+ attr_accessor page_size: ::Integer
426
+ SENSITIVE: []
427
+ end
428
+
429
+ class DescribeTrustStoreRevocationsOutput
430
+ attr_accessor trust_store_revocations: ::Array[Types::DescribeTrustStoreRevocation]
431
+ attr_accessor next_marker: ::String
432
+ SENSITIVE: []
433
+ end
434
+
435
+ class DescribeTrustStoresInput
436
+ attr_accessor trust_store_arns: ::Array[::String]
437
+ attr_accessor names: ::Array[::String]
438
+ attr_accessor marker: ::String
439
+ attr_accessor page_size: ::Integer
440
+ SENSITIVE: []
441
+ end
442
+
443
+ class DescribeTrustStoresOutput
444
+ attr_accessor trust_stores: ::Array[Types::TrustStore]
445
+ attr_accessor next_marker: ::String
446
+ SENSITIVE: []
447
+ end
448
+
449
+ class DuplicateListenerException < Aws::EmptyStructure
450
+ end
451
+
452
+ class DuplicateLoadBalancerNameException < Aws::EmptyStructure
453
+ end
454
+
455
+ class DuplicateTagKeysException < Aws::EmptyStructure
456
+ end
457
+
458
+ class DuplicateTargetGroupNameException < Aws::EmptyStructure
459
+ end
460
+
461
+ class DuplicateTrustStoreNameException < Aws::EmptyStructure
462
+ end
463
+
464
+ class FixedResponseActionConfig
465
+ attr_accessor message_body: ::String
466
+ attr_accessor status_code: ::String
467
+ attr_accessor content_type: ::String
468
+ SENSITIVE: []
469
+ end
470
+
471
+ class ForwardActionConfig
472
+ attr_accessor target_groups: ::Array[Types::TargetGroupTuple]
473
+ attr_accessor target_group_stickiness_config: Types::TargetGroupStickinessConfig
474
+ SENSITIVE: []
475
+ end
476
+
477
+ class GetTrustStoreCaCertificatesBundleInput
478
+ attr_accessor trust_store_arn: ::String
479
+ SENSITIVE: []
480
+ end
481
+
482
+ class GetTrustStoreCaCertificatesBundleOutput
483
+ attr_accessor location: ::String
484
+ SENSITIVE: []
485
+ end
486
+
487
+ class GetTrustStoreRevocationContentInput
488
+ attr_accessor trust_store_arn: ::String
489
+ attr_accessor revocation_id: ::Integer
490
+ SENSITIVE: []
491
+ end
492
+
493
+ class GetTrustStoreRevocationContentOutput
494
+ attr_accessor location: ::String
495
+ SENSITIVE: []
496
+ end
497
+
498
+ class HealthUnavailableException < Aws::EmptyStructure
499
+ end
500
+
501
+ class HostHeaderConditionConfig
502
+ attr_accessor values: ::Array[::String]
503
+ SENSITIVE: []
504
+ end
505
+
506
+ class HttpHeaderConditionConfig
507
+ attr_accessor http_header_name: ::String
508
+ attr_accessor values: ::Array[::String]
509
+ SENSITIVE: []
510
+ end
511
+
512
+ class HttpRequestMethodConditionConfig
513
+ attr_accessor values: ::Array[::String]
514
+ SENSITIVE: []
515
+ end
516
+
517
+ class IncompatibleProtocolsException < Aws::EmptyStructure
518
+ end
519
+
520
+ class InvalidCaCertificatesBundleException < Aws::EmptyStructure
521
+ end
522
+
523
+ class InvalidConfigurationRequestException < Aws::EmptyStructure
524
+ end
525
+
526
+ class InvalidLoadBalancerActionException < Aws::EmptyStructure
527
+ end
528
+
529
+ class InvalidRevocationContentException < Aws::EmptyStructure
530
+ end
531
+
532
+ class InvalidSchemeException < Aws::EmptyStructure
533
+ end
534
+
535
+ class InvalidSecurityGroupException < Aws::EmptyStructure
536
+ end
537
+
538
+ class InvalidSubnetException < Aws::EmptyStructure
539
+ end
540
+
541
+ class InvalidTargetException < Aws::EmptyStructure
542
+ end
543
+
544
+ class Limit
545
+ attr_accessor name: ::String
546
+ attr_accessor max: ::String
547
+ SENSITIVE: []
548
+ end
549
+
550
+ class Listener
551
+ attr_accessor listener_arn: ::String
552
+ attr_accessor load_balancer_arn: ::String
553
+ attr_accessor port: ::Integer
554
+ attr_accessor protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE")
555
+ attr_accessor certificates: ::Array[Types::Certificate]
556
+ attr_accessor ssl_policy: ::String
557
+ attr_accessor default_actions: ::Array[Types::Action]
558
+ attr_accessor alpn_policy: ::Array[::String]
559
+ attr_accessor mutual_authentication: Types::MutualAuthenticationAttributes
560
+ SENSITIVE: []
561
+ end
562
+
563
+ class ListenerNotFoundException < Aws::EmptyStructure
564
+ end
565
+
566
+ class LoadBalancer
567
+ attr_accessor load_balancer_arn: ::String
568
+ attr_accessor dns_name: ::String
569
+ attr_accessor canonical_hosted_zone_id: ::String
570
+ attr_accessor created_time: ::Time
571
+ attr_accessor load_balancer_name: ::String
572
+ attr_accessor scheme: ("internet-facing" | "internal")
573
+ attr_accessor vpc_id: ::String
574
+ attr_accessor state: Types::LoadBalancerState
575
+ attr_accessor type: ("application" | "network" | "gateway")
576
+ attr_accessor availability_zones: ::Array[Types::AvailabilityZone]
577
+ attr_accessor security_groups: ::Array[::String]
578
+ attr_accessor ip_address_type: ("ipv4" | "dualstack")
579
+ attr_accessor customer_owned_ipv_4_pool: ::String
580
+ attr_accessor enforce_security_group_inbound_rules_on_private_link_traffic: ::String
581
+ SENSITIVE: []
582
+ end
583
+
584
+ class LoadBalancerAddress
585
+ attr_accessor ip_address: ::String
586
+ attr_accessor allocation_id: ::String
587
+ attr_accessor private_i_pv_4_address: ::String
588
+ attr_accessor i_pv_6_address: ::String
589
+ SENSITIVE: []
590
+ end
591
+
592
+ class LoadBalancerAttribute
593
+ attr_accessor key: ::String
594
+ attr_accessor value: ::String
595
+ SENSITIVE: []
596
+ end
597
+
598
+ class LoadBalancerNotFoundException < Aws::EmptyStructure
599
+ end
600
+
601
+ class LoadBalancerState
602
+ attr_accessor code: ("active" | "provisioning" | "active_impaired" | "failed")
603
+ attr_accessor reason: ::String
604
+ SENSITIVE: []
605
+ end
606
+
607
+ class Matcher
608
+ attr_accessor http_code: ::String
609
+ attr_accessor grpc_code: ::String
610
+ SENSITIVE: []
611
+ end
612
+
613
+ class ModifyListenerInput
614
+ attr_accessor listener_arn: ::String
615
+ attr_accessor port: ::Integer
616
+ attr_accessor protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE")
617
+ attr_accessor ssl_policy: ::String
618
+ attr_accessor certificates: ::Array[Types::Certificate]
619
+ attr_accessor default_actions: ::Array[Types::Action]
620
+ attr_accessor alpn_policy: ::Array[::String]
621
+ attr_accessor mutual_authentication: Types::MutualAuthenticationAttributes
622
+ SENSITIVE: []
623
+ end
624
+
625
+ class ModifyListenerOutput
626
+ attr_accessor listeners: ::Array[Types::Listener]
627
+ SENSITIVE: []
628
+ end
629
+
630
+ class ModifyLoadBalancerAttributesInput
631
+ attr_accessor load_balancer_arn: ::String
632
+ attr_accessor attributes: ::Array[Types::LoadBalancerAttribute]
633
+ SENSITIVE: []
634
+ end
635
+
636
+ class ModifyLoadBalancerAttributesOutput
637
+ attr_accessor attributes: ::Array[Types::LoadBalancerAttribute]
638
+ SENSITIVE: []
639
+ end
640
+
641
+ class ModifyRuleInput
642
+ attr_accessor rule_arn: ::String
643
+ attr_accessor conditions: ::Array[Types::RuleCondition]
644
+ attr_accessor actions: ::Array[Types::Action]
645
+ SENSITIVE: []
646
+ end
647
+
648
+ class ModifyRuleOutput
649
+ attr_accessor rules: ::Array[Types::Rule]
650
+ SENSITIVE: []
651
+ end
652
+
653
+ class ModifyTargetGroupAttributesInput
654
+ attr_accessor target_group_arn: ::String
655
+ attr_accessor attributes: ::Array[Types::TargetGroupAttribute]
656
+ SENSITIVE: []
657
+ end
658
+
659
+ class ModifyTargetGroupAttributesOutput
660
+ attr_accessor attributes: ::Array[Types::TargetGroupAttribute]
661
+ SENSITIVE: []
662
+ end
663
+
664
+ class ModifyTargetGroupInput
665
+ attr_accessor target_group_arn: ::String
666
+ attr_accessor health_check_protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE")
667
+ attr_accessor health_check_port: ::String
668
+ attr_accessor health_check_path: ::String
669
+ attr_accessor health_check_enabled: bool
670
+ attr_accessor health_check_interval_seconds: ::Integer
671
+ attr_accessor health_check_timeout_seconds: ::Integer
672
+ attr_accessor healthy_threshold_count: ::Integer
673
+ attr_accessor unhealthy_threshold_count: ::Integer
674
+ attr_accessor matcher: Types::Matcher
675
+ SENSITIVE: []
676
+ end
677
+
678
+ class ModifyTargetGroupOutput
679
+ attr_accessor target_groups: ::Array[Types::TargetGroup]
680
+ SENSITIVE: []
681
+ end
682
+
683
+ class ModifyTrustStoreInput
684
+ attr_accessor trust_store_arn: ::String
685
+ attr_accessor ca_certificates_bundle_s3_bucket: ::String
686
+ attr_accessor ca_certificates_bundle_s3_key: ::String
687
+ attr_accessor ca_certificates_bundle_s3_object_version: ::String
688
+ SENSITIVE: []
689
+ end
690
+
691
+ class ModifyTrustStoreOutput
692
+ attr_accessor trust_stores: ::Array[Types::TrustStore]
693
+ SENSITIVE: []
694
+ end
695
+
696
+ class MutualAuthenticationAttributes
697
+ attr_accessor mode: ::String
698
+ attr_accessor trust_store_arn: ::String
699
+ attr_accessor ignore_client_certificate_expiry: bool
700
+ SENSITIVE: []
701
+ end
702
+
703
+ class OperationNotPermittedException < Aws::EmptyStructure
704
+ end
705
+
706
+ class PathPatternConditionConfig
707
+ attr_accessor values: ::Array[::String]
708
+ SENSITIVE: []
709
+ end
710
+
711
+ class PriorityInUseException < Aws::EmptyStructure
712
+ end
713
+
714
+ class QueryStringConditionConfig
715
+ attr_accessor values: ::Array[Types::QueryStringKeyValuePair]
716
+ SENSITIVE: []
717
+ end
718
+
719
+ class QueryStringKeyValuePair
720
+ attr_accessor key: ::String
721
+ attr_accessor value: ::String
722
+ SENSITIVE: []
723
+ end
724
+
725
+ class RedirectActionConfig
726
+ attr_accessor protocol: ::String
727
+ attr_accessor port: ::String
728
+ attr_accessor host: ::String
729
+ attr_accessor path: ::String
730
+ attr_accessor query: ::String
731
+ attr_accessor status_code: ("HTTP_301" | "HTTP_302")
732
+ SENSITIVE: []
733
+ end
734
+
735
+ class RegisterTargetsInput
736
+ attr_accessor target_group_arn: ::String
737
+ attr_accessor targets: ::Array[Types::TargetDescription]
738
+ SENSITIVE: []
739
+ end
740
+
741
+ class RegisterTargetsOutput < Aws::EmptyStructure
742
+ end
743
+
744
+ class RemoveListenerCertificatesInput
745
+ attr_accessor listener_arn: ::String
746
+ attr_accessor certificates: ::Array[Types::Certificate]
747
+ SENSITIVE: []
748
+ end
749
+
750
+ class RemoveListenerCertificatesOutput < Aws::EmptyStructure
751
+ end
752
+
753
+ class RemoveTagsInput
754
+ attr_accessor resource_arns: ::Array[::String]
755
+ attr_accessor tag_keys: ::Array[::String]
756
+ SENSITIVE: []
757
+ end
758
+
759
+ class RemoveTagsOutput < Aws::EmptyStructure
760
+ end
761
+
762
+ class RemoveTrustStoreRevocationsInput
763
+ attr_accessor trust_store_arn: ::String
764
+ attr_accessor revocation_ids: ::Array[::Integer]
765
+ SENSITIVE: []
766
+ end
767
+
768
+ class RemoveTrustStoreRevocationsOutput < Aws::EmptyStructure
769
+ end
770
+
771
+ class ResourceInUseException < Aws::EmptyStructure
772
+ end
773
+
774
+ class RevocationContent
775
+ attr_accessor s3_bucket: ::String
776
+ attr_accessor s3_key: ::String
777
+ attr_accessor s3_object_version: ::String
778
+ attr_accessor revocation_type: ("CRL")
779
+ SENSITIVE: []
780
+ end
781
+
782
+ class RevocationContentNotFoundException < Aws::EmptyStructure
783
+ end
784
+
785
+ class RevocationIdNotFoundException < Aws::EmptyStructure
786
+ end
787
+
788
+ class Rule
789
+ attr_accessor rule_arn: ::String
790
+ attr_accessor priority: ::String
791
+ attr_accessor conditions: ::Array[Types::RuleCondition]
792
+ attr_accessor actions: ::Array[Types::Action]
793
+ attr_accessor is_default: bool
794
+ SENSITIVE: []
795
+ end
796
+
797
+ class RuleCondition
798
+ attr_accessor field: ::String
799
+ attr_accessor values: ::Array[::String]
800
+ attr_accessor host_header_config: Types::HostHeaderConditionConfig
801
+ attr_accessor path_pattern_config: Types::PathPatternConditionConfig
802
+ attr_accessor http_header_config: Types::HttpHeaderConditionConfig
803
+ attr_accessor query_string_config: Types::QueryStringConditionConfig
804
+ attr_accessor http_request_method_config: Types::HttpRequestMethodConditionConfig
805
+ attr_accessor source_ip_config: Types::SourceIpConditionConfig
806
+ SENSITIVE: []
807
+ end
808
+
809
+ class RuleNotFoundException < Aws::EmptyStructure
810
+ end
811
+
812
+ class RulePriorityPair
813
+ attr_accessor rule_arn: ::String
814
+ attr_accessor priority: ::Integer
815
+ SENSITIVE: []
816
+ end
817
+
818
+ class SSLPolicyNotFoundException < Aws::EmptyStructure
819
+ end
820
+
821
+ class SetIpAddressTypeInput
822
+ attr_accessor load_balancer_arn: ::String
823
+ attr_accessor ip_address_type: ("ipv4" | "dualstack")
824
+ SENSITIVE: []
825
+ end
826
+
827
+ class SetIpAddressTypeOutput
828
+ attr_accessor ip_address_type: ("ipv4" | "dualstack")
829
+ SENSITIVE: []
830
+ end
831
+
832
+ class SetRulePrioritiesInput
833
+ attr_accessor rule_priorities: ::Array[Types::RulePriorityPair]
834
+ SENSITIVE: []
835
+ end
836
+
837
+ class SetRulePrioritiesOutput
838
+ attr_accessor rules: ::Array[Types::Rule]
839
+ SENSITIVE: []
840
+ end
841
+
842
+ class SetSecurityGroupsInput
843
+ attr_accessor load_balancer_arn: ::String
844
+ attr_accessor security_groups: ::Array[::String]
845
+ attr_accessor enforce_security_group_inbound_rules_on_private_link_traffic: ("on" | "off")
846
+ SENSITIVE: []
847
+ end
848
+
849
+ class SetSecurityGroupsOutput
850
+ attr_accessor security_group_ids: ::Array[::String]
851
+ attr_accessor enforce_security_group_inbound_rules_on_private_link_traffic: ("on" | "off")
852
+ SENSITIVE: []
853
+ end
854
+
855
+ class SetSubnetsInput
856
+ attr_accessor load_balancer_arn: ::String
857
+ attr_accessor subnets: ::Array[::String]
858
+ attr_accessor subnet_mappings: ::Array[Types::SubnetMapping]
859
+ attr_accessor ip_address_type: ("ipv4" | "dualstack")
860
+ SENSITIVE: []
861
+ end
862
+
863
+ class SetSubnetsOutput
864
+ attr_accessor availability_zones: ::Array[Types::AvailabilityZone]
865
+ attr_accessor ip_address_type: ("ipv4" | "dualstack")
866
+ SENSITIVE: []
867
+ end
868
+
869
+ class SourceIpConditionConfig
870
+ attr_accessor values: ::Array[::String]
871
+ SENSITIVE: []
872
+ end
873
+
874
+ class SslPolicy
875
+ attr_accessor ssl_protocols: ::Array[::String]
876
+ attr_accessor ciphers: ::Array[Types::Cipher]
877
+ attr_accessor name: ::String
878
+ attr_accessor supported_load_balancer_types: ::Array[::String]
879
+ SENSITIVE: []
880
+ end
881
+
882
+ class SubnetMapping
883
+ attr_accessor subnet_id: ::String
884
+ attr_accessor allocation_id: ::String
885
+ attr_accessor private_i_pv_4_address: ::String
886
+ attr_accessor i_pv_6_address: ::String
887
+ SENSITIVE: []
888
+ end
889
+
890
+ class SubnetNotFoundException < Aws::EmptyStructure
891
+ end
892
+
893
+ class Tag
894
+ attr_accessor key: ::String
895
+ attr_accessor value: ::String
896
+ SENSITIVE: []
897
+ end
898
+
899
+ class TagDescription
900
+ attr_accessor resource_arn: ::String
901
+ attr_accessor tags: ::Array[Types::Tag]
902
+ SENSITIVE: []
903
+ end
904
+
905
+ class TargetDescription
906
+ attr_accessor id: ::String
907
+ attr_accessor port: ::Integer
908
+ attr_accessor availability_zone: ::String
909
+ SENSITIVE: []
910
+ end
911
+
912
+ class TargetGroup
913
+ attr_accessor target_group_arn: ::String
914
+ attr_accessor target_group_name: ::String
915
+ attr_accessor protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE")
916
+ attr_accessor port: ::Integer
917
+ attr_accessor vpc_id: ::String
918
+ attr_accessor health_check_protocol: ("HTTP" | "HTTPS" | "TCP" | "TLS" | "UDP" | "TCP_UDP" | "GENEVE")
919
+ attr_accessor health_check_port: ::String
920
+ attr_accessor health_check_enabled: bool
921
+ attr_accessor health_check_interval_seconds: ::Integer
922
+ attr_accessor health_check_timeout_seconds: ::Integer
923
+ attr_accessor healthy_threshold_count: ::Integer
924
+ attr_accessor unhealthy_threshold_count: ::Integer
925
+ attr_accessor health_check_path: ::String
926
+ attr_accessor matcher: Types::Matcher
927
+ attr_accessor load_balancer_arns: ::Array[::String]
928
+ attr_accessor target_type: ("instance" | "ip" | "lambda" | "alb")
929
+ attr_accessor protocol_version: ::String
930
+ attr_accessor ip_address_type: ("ipv4" | "ipv6")
931
+ SENSITIVE: []
932
+ end
933
+
934
+ class TargetGroupAssociationLimitException < Aws::EmptyStructure
935
+ end
936
+
937
+ class TargetGroupAttribute
938
+ attr_accessor key: ::String
939
+ attr_accessor value: ::String
940
+ SENSITIVE: []
941
+ end
942
+
943
+ class TargetGroupNotFoundException < Aws::EmptyStructure
944
+ end
945
+
946
+ class TargetGroupStickinessConfig
947
+ attr_accessor enabled: bool
948
+ attr_accessor duration_seconds: ::Integer
949
+ SENSITIVE: []
950
+ end
951
+
952
+ class TargetGroupTuple
953
+ attr_accessor target_group_arn: ::String
954
+ attr_accessor weight: ::Integer
955
+ SENSITIVE: []
956
+ end
957
+
958
+ class TargetHealth
959
+ attr_accessor state: ("initial" | "healthy" | "unhealthy" | "unused" | "draining" | "unavailable")
960
+ attr_accessor reason: ("Elb.RegistrationInProgress" | "Elb.InitialHealthChecking" | "Target.ResponseCodeMismatch" | "Target.Timeout" | "Target.FailedHealthChecks" | "Target.NotRegistered" | "Target.NotInUse" | "Target.DeregistrationInProgress" | "Target.InvalidState" | "Target.IpUnusable" | "Target.HealthCheckDisabled" | "Elb.InternalError")
961
+ attr_accessor description: ::String
962
+ SENSITIVE: []
963
+ end
964
+
965
+ class TargetHealthDescription
966
+ attr_accessor target: Types::TargetDescription
967
+ attr_accessor health_check_port: ::String
968
+ attr_accessor target_health: Types::TargetHealth
969
+ attr_accessor anomaly_detection: Types::AnomalyDetection
970
+ SENSITIVE: []
971
+ end
972
+
973
+ class TooManyActionsException < Aws::EmptyStructure
974
+ end
975
+
976
+ class TooManyCertificatesException < Aws::EmptyStructure
977
+ end
978
+
979
+ class TooManyListenersException < Aws::EmptyStructure
980
+ end
981
+
982
+ class TooManyLoadBalancersException < Aws::EmptyStructure
983
+ end
984
+
985
+ class TooManyRegistrationsForTargetIdException < Aws::EmptyStructure
986
+ end
987
+
988
+ class TooManyRulesException < Aws::EmptyStructure
989
+ end
990
+
991
+ class TooManyTagsException < Aws::EmptyStructure
992
+ end
993
+
994
+ class TooManyTargetGroupsException < Aws::EmptyStructure
995
+ end
996
+
997
+ class TooManyTargetsException < Aws::EmptyStructure
998
+ end
999
+
1000
+ class TooManyTrustStoreRevocationEntriesException < Aws::EmptyStructure
1001
+ end
1002
+
1003
+ class TooManyTrustStoresException < Aws::EmptyStructure
1004
+ end
1005
+
1006
+ class TooManyUniqueTargetGroupsPerLoadBalancerException < Aws::EmptyStructure
1007
+ end
1008
+
1009
+ class TrustStore
1010
+ attr_accessor name: ::String
1011
+ attr_accessor trust_store_arn: ::String
1012
+ attr_accessor status: ("ACTIVE" | "CREATING")
1013
+ attr_accessor number_of_ca_certificates: ::Integer
1014
+ attr_accessor total_revoked_entries: ::Integer
1015
+ SENSITIVE: []
1016
+ end
1017
+
1018
+ class TrustStoreAssociation
1019
+ attr_accessor resource_arn: ::String
1020
+ SENSITIVE: []
1021
+ end
1022
+
1023
+ class TrustStoreInUseException < Aws::EmptyStructure
1024
+ end
1025
+
1026
+ class TrustStoreNotFoundException < Aws::EmptyStructure
1027
+ end
1028
+
1029
+ class TrustStoreNotReadyException < Aws::EmptyStructure
1030
+ end
1031
+
1032
+ class TrustStoreRevocation
1033
+ attr_accessor trust_store_arn: ::String
1034
+ attr_accessor revocation_id: ::Integer
1035
+ attr_accessor revocation_type: ("CRL")
1036
+ attr_accessor number_of_revoked_entries: ::Integer
1037
+ SENSITIVE: []
1038
+ end
1039
+
1040
+ class UnsupportedProtocolException < Aws::EmptyStructure
1041
+ end
1042
+ end
1043
+ end