aws-sdk-elasticloadbalancingv2 1.94.0 → 1.95.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-elasticloadbalancingv2/client.rb +438 -3
- data/lib/aws-sdk-elasticloadbalancingv2/client_api.rb +355 -0
- data/lib/aws-sdk-elasticloadbalancingv2/endpoint_provider.rb +2 -2
- data/lib/aws-sdk-elasticloadbalancingv2/endpoints.rb +140 -0
- data/lib/aws-sdk-elasticloadbalancingv2/errors.rb +121 -0
- data/lib/aws-sdk-elasticloadbalancingv2/plugins/endpoints.rb +20 -0
- data/lib/aws-sdk-elasticloadbalancingv2/types.rb +644 -8
- data/lib/aws-sdk-elasticloadbalancingv2.rb +1 -1
- metadata +2 -2
@@ -138,12 +138,60 @@ module Aws::ElasticLoadBalancingV2
|
|
138
138
|
#
|
139
139
|
class AddTagsOutput < Aws::EmptyStructure; end
|
140
140
|
|
141
|
+
# @!attribute [rw] trust_store_arn
|
142
|
+
# The Amazon Resource Name (ARN) of the trust store.
|
143
|
+
# @return [String]
|
144
|
+
#
|
145
|
+
# @!attribute [rw] revocation_contents
|
146
|
+
# The revocation file to add.
|
147
|
+
# @return [Array<Types::RevocationContent>]
|
148
|
+
#
|
149
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/AddTrustStoreRevocationsInput AWS API Documentation
|
150
|
+
#
|
151
|
+
class AddTrustStoreRevocationsInput < Struct.new(
|
152
|
+
:trust_store_arn,
|
153
|
+
:revocation_contents)
|
154
|
+
SENSITIVE = []
|
155
|
+
include Aws::Structure
|
156
|
+
end
|
157
|
+
|
158
|
+
# @!attribute [rw] trust_store_revocations
|
159
|
+
# Information about the revocation file added to the trust store.
|
160
|
+
# @return [Array<Types::TrustStoreRevocation>]
|
161
|
+
#
|
162
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/AddTrustStoreRevocationsOutput AWS API Documentation
|
163
|
+
#
|
164
|
+
class AddTrustStoreRevocationsOutput < Struct.new(
|
165
|
+
:trust_store_revocations)
|
166
|
+
SENSITIVE = []
|
167
|
+
include Aws::Structure
|
168
|
+
end
|
169
|
+
|
141
170
|
# The specified allocation ID does not exist.
|
142
171
|
#
|
143
172
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/AllocationIdNotFoundException AWS API Documentation
|
144
173
|
#
|
145
174
|
class AllocationIdNotFoundException < Aws::EmptyStructure; end
|
146
175
|
|
176
|
+
# Information about anomaly detection and mitigation.
|
177
|
+
#
|
178
|
+
# @!attribute [rw] result
|
179
|
+
# The latest anomaly detection result.
|
180
|
+
# @return [String]
|
181
|
+
#
|
182
|
+
# @!attribute [rw] mitigation_in_effect
|
183
|
+
# Indicates whether anomaly mitigation is in progress.
|
184
|
+
# @return [String]
|
185
|
+
#
|
186
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/AnomalyDetection AWS API Documentation
|
187
|
+
#
|
188
|
+
class AnomalyDetection < Struct.new(
|
189
|
+
:result,
|
190
|
+
:mitigation_in_effect)
|
191
|
+
SENSITIVE = []
|
192
|
+
include Aws::Structure
|
193
|
+
end
|
194
|
+
|
147
195
|
# Request parameters to use when integrating with Amazon Cognito to
|
148
196
|
# authenticate users.
|
149
197
|
#
|
@@ -343,6 +391,12 @@ module Aws::ElasticLoadBalancingV2
|
|
343
391
|
#
|
344
392
|
class AvailabilityZoneNotSupportedException < Aws::EmptyStructure; end
|
345
393
|
|
394
|
+
# The specified ca certificate bundle does not exist.
|
395
|
+
#
|
396
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/CaCertificatesBundleNotFoundException AWS API Documentation
|
397
|
+
#
|
398
|
+
class CaCertificatesBundleNotFoundException < Aws::EmptyStructure; end
|
399
|
+
|
346
400
|
# Information about an SSL server certificate.
|
347
401
|
#
|
348
402
|
# @!attribute [rw] certificate_arn
|
@@ -459,6 +513,10 @@ module Aws::ElasticLoadBalancingV2
|
|
459
513
|
# The tags to assign to the listener.
|
460
514
|
# @return [Array<Types::Tag>]
|
461
515
|
#
|
516
|
+
# @!attribute [rw] mutual_authentication
|
517
|
+
# The mutual authentication configuration information.
|
518
|
+
# @return [Types::MutualAuthenticationAttributes]
|
519
|
+
#
|
462
520
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/CreateListenerInput AWS API Documentation
|
463
521
|
#
|
464
522
|
class CreateListenerInput < Struct.new(
|
@@ -469,7 +527,8 @@ module Aws::ElasticLoadBalancingV2
|
|
469
527
|
:certificates,
|
470
528
|
:default_actions,
|
471
529
|
:alpn_policy,
|
472
|
-
:tags
|
530
|
+
:tags,
|
531
|
+
:mutual_authentication)
|
473
532
|
SENSITIVE = []
|
474
533
|
include Aws::Structure
|
475
534
|
end
|
@@ -842,6 +901,54 @@ module Aws::ElasticLoadBalancingV2
|
|
842
901
|
include Aws::Structure
|
843
902
|
end
|
844
903
|
|
904
|
+
# @!attribute [rw] name
|
905
|
+
# The name of the trust store.
|
906
|
+
#
|
907
|
+
# This name must be unique per region and cannot be changed after
|
908
|
+
# creation.
|
909
|
+
# @return [String]
|
910
|
+
#
|
911
|
+
# @!attribute [rw] ca_certificates_bundle_s3_bucket
|
912
|
+
# The Amazon S3 bucket for the ca certificates bundle.
|
913
|
+
# @return [String]
|
914
|
+
#
|
915
|
+
# @!attribute [rw] ca_certificates_bundle_s3_key
|
916
|
+
# The Amazon S3 path for the ca certificates bundle.
|
917
|
+
# @return [String]
|
918
|
+
#
|
919
|
+
# @!attribute [rw] ca_certificates_bundle_s3_object_version
|
920
|
+
# The Amazon S3 object version for the ca certificates bundle. If
|
921
|
+
# undefined the current version is used.
|
922
|
+
# @return [String]
|
923
|
+
#
|
924
|
+
# @!attribute [rw] tags
|
925
|
+
# The tags to assign to the trust store.
|
926
|
+
# @return [Array<Types::Tag>]
|
927
|
+
#
|
928
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/CreateTrustStoreInput AWS API Documentation
|
929
|
+
#
|
930
|
+
class CreateTrustStoreInput < Struct.new(
|
931
|
+
:name,
|
932
|
+
:ca_certificates_bundle_s3_bucket,
|
933
|
+
:ca_certificates_bundle_s3_key,
|
934
|
+
:ca_certificates_bundle_s3_object_version,
|
935
|
+
:tags)
|
936
|
+
SENSITIVE = []
|
937
|
+
include Aws::Structure
|
938
|
+
end
|
939
|
+
|
940
|
+
# @!attribute [rw] trust_stores
|
941
|
+
# Information about the trust store created.
|
942
|
+
# @return [Array<Types::TrustStore>]
|
943
|
+
#
|
944
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/CreateTrustStoreOutput AWS API Documentation
|
945
|
+
#
|
946
|
+
class CreateTrustStoreOutput < Struct.new(
|
947
|
+
:trust_stores)
|
948
|
+
SENSITIVE = []
|
949
|
+
include Aws::Structure
|
950
|
+
end
|
951
|
+
|
845
952
|
# @!attribute [rw] listener_arn
|
846
953
|
# The Amazon Resource Name (ARN) of the listener.
|
847
954
|
# @return [String]
|
@@ -906,6 +1013,22 @@ module Aws::ElasticLoadBalancingV2
|
|
906
1013
|
#
|
907
1014
|
class DeleteTargetGroupOutput < Aws::EmptyStructure; end
|
908
1015
|
|
1016
|
+
# @!attribute [rw] trust_store_arn
|
1017
|
+
# The Amazon Resource Name (ARN) of the trust store.
|
1018
|
+
# @return [String]
|
1019
|
+
#
|
1020
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DeleteTrustStoreInput AWS API Documentation
|
1021
|
+
#
|
1022
|
+
class DeleteTrustStoreInput < Struct.new(
|
1023
|
+
:trust_store_arn)
|
1024
|
+
SENSITIVE = []
|
1025
|
+
include Aws::Structure
|
1026
|
+
end
|
1027
|
+
|
1028
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DeleteTrustStoreOutput AWS API Documentation
|
1029
|
+
#
|
1030
|
+
class DeleteTrustStoreOutput < Aws::EmptyStructure; end
|
1031
|
+
|
909
1032
|
# @!attribute [rw] target_group_arn
|
910
1033
|
# The Amazon Resource Name (ARN) of the target group.
|
911
1034
|
# @return [String]
|
@@ -1324,11 +1447,16 @@ module Aws::ElasticLoadBalancingV2
|
|
1324
1447
|
# The targets.
|
1325
1448
|
# @return [Array<Types::TargetDescription>]
|
1326
1449
|
#
|
1450
|
+
# @!attribute [rw] include
|
1451
|
+
# Used to inclue anomaly detection information.
|
1452
|
+
# @return [Array<String>]
|
1453
|
+
#
|
1327
1454
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DescribeTargetHealthInput AWS API Documentation
|
1328
1455
|
#
|
1329
1456
|
class DescribeTargetHealthInput < Struct.new(
|
1330
1457
|
:target_group_arn,
|
1331
|
-
:targets
|
1458
|
+
:targets,
|
1459
|
+
:include)
|
1332
1460
|
SENSITIVE = []
|
1333
1461
|
include Aws::Structure
|
1334
1462
|
end
|
@@ -1345,6 +1473,168 @@ module Aws::ElasticLoadBalancingV2
|
|
1345
1473
|
include Aws::Structure
|
1346
1474
|
end
|
1347
1475
|
|
1476
|
+
# @!attribute [rw] trust_store_arn
|
1477
|
+
# The Amazon Resource Name (ARN) of the trust store.
|
1478
|
+
# @return [String]
|
1479
|
+
#
|
1480
|
+
# @!attribute [rw] marker
|
1481
|
+
# The marker for the next set of results. (You received this marker
|
1482
|
+
# from a previous call.)
|
1483
|
+
# @return [String]
|
1484
|
+
#
|
1485
|
+
# @!attribute [rw] page_size
|
1486
|
+
# The maximum number of results to return with this call.
|
1487
|
+
# @return [Integer]
|
1488
|
+
#
|
1489
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DescribeTrustStoreAssociationsInput AWS API Documentation
|
1490
|
+
#
|
1491
|
+
class DescribeTrustStoreAssociationsInput < Struct.new(
|
1492
|
+
:trust_store_arn,
|
1493
|
+
:marker,
|
1494
|
+
:page_size)
|
1495
|
+
SENSITIVE = []
|
1496
|
+
include Aws::Structure
|
1497
|
+
end
|
1498
|
+
|
1499
|
+
# @!attribute [rw] trust_store_associations
|
1500
|
+
# Information about the resources the trust store is associated to.
|
1501
|
+
# @return [Array<Types::TrustStoreAssociation>]
|
1502
|
+
#
|
1503
|
+
# @!attribute [rw] next_marker
|
1504
|
+
# If there are additional results, this is the marker for the next set
|
1505
|
+
# of results. Otherwise, this is null.
|
1506
|
+
# @return [String]
|
1507
|
+
#
|
1508
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DescribeTrustStoreAssociationsOutput AWS API Documentation
|
1509
|
+
#
|
1510
|
+
class DescribeTrustStoreAssociationsOutput < Struct.new(
|
1511
|
+
:trust_store_associations,
|
1512
|
+
:next_marker)
|
1513
|
+
SENSITIVE = []
|
1514
|
+
include Aws::Structure
|
1515
|
+
end
|
1516
|
+
|
1517
|
+
# Information about the revocations used by a trust store.
|
1518
|
+
#
|
1519
|
+
# @!attribute [rw] trust_store_arn
|
1520
|
+
# The Amazon Resource Name (ARN) of the trust store.
|
1521
|
+
# @return [String]
|
1522
|
+
#
|
1523
|
+
# @!attribute [rw] revocation_id
|
1524
|
+
# The revocation ID of a revocation file in use.
|
1525
|
+
# @return [Integer]
|
1526
|
+
#
|
1527
|
+
# @!attribute [rw] revocation_type
|
1528
|
+
# The type of revocation file.
|
1529
|
+
# @return [String]
|
1530
|
+
#
|
1531
|
+
# @!attribute [rw] number_of_revoked_entries
|
1532
|
+
# The number of revoked certificates.
|
1533
|
+
# @return [Integer]
|
1534
|
+
#
|
1535
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DescribeTrustStoreRevocation AWS API Documentation
|
1536
|
+
#
|
1537
|
+
class DescribeTrustStoreRevocation < Struct.new(
|
1538
|
+
:trust_store_arn,
|
1539
|
+
:revocation_id,
|
1540
|
+
:revocation_type,
|
1541
|
+
:number_of_revoked_entries)
|
1542
|
+
SENSITIVE = []
|
1543
|
+
include Aws::Structure
|
1544
|
+
end
|
1545
|
+
|
1546
|
+
# @!attribute [rw] trust_store_arn
|
1547
|
+
# The Amazon Resource Name (ARN) of the trust store.
|
1548
|
+
# @return [String]
|
1549
|
+
#
|
1550
|
+
# @!attribute [rw] revocation_ids
|
1551
|
+
# The revocation IDs of the revocation files you want to describe.
|
1552
|
+
# @return [Array<Integer>]
|
1553
|
+
#
|
1554
|
+
# @!attribute [rw] marker
|
1555
|
+
# The marker for the next set of results. (You received this marker
|
1556
|
+
# from a previous call.)
|
1557
|
+
# @return [String]
|
1558
|
+
#
|
1559
|
+
# @!attribute [rw] page_size
|
1560
|
+
# The maximum number of results to return with this call.
|
1561
|
+
# @return [Integer]
|
1562
|
+
#
|
1563
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DescribeTrustStoreRevocationsInput AWS API Documentation
|
1564
|
+
#
|
1565
|
+
class DescribeTrustStoreRevocationsInput < Struct.new(
|
1566
|
+
:trust_store_arn,
|
1567
|
+
:revocation_ids,
|
1568
|
+
:marker,
|
1569
|
+
:page_size)
|
1570
|
+
SENSITIVE = []
|
1571
|
+
include Aws::Structure
|
1572
|
+
end
|
1573
|
+
|
1574
|
+
# @!attribute [rw] trust_store_revocations
|
1575
|
+
# Information about the revocation file in the trust store.
|
1576
|
+
# @return [Array<Types::DescribeTrustStoreRevocation>]
|
1577
|
+
#
|
1578
|
+
# @!attribute [rw] next_marker
|
1579
|
+
# If there are additional results, this is the marker for the next set
|
1580
|
+
# of results. Otherwise, this is null.
|
1581
|
+
# @return [String]
|
1582
|
+
#
|
1583
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DescribeTrustStoreRevocationsOutput AWS API Documentation
|
1584
|
+
#
|
1585
|
+
class DescribeTrustStoreRevocationsOutput < Struct.new(
|
1586
|
+
:trust_store_revocations,
|
1587
|
+
:next_marker)
|
1588
|
+
SENSITIVE = []
|
1589
|
+
include Aws::Structure
|
1590
|
+
end
|
1591
|
+
|
1592
|
+
# @!attribute [rw] trust_store_arns
|
1593
|
+
# The Amazon Resource Name (ARN) of the trust store.
|
1594
|
+
# @return [Array<String>]
|
1595
|
+
#
|
1596
|
+
# @!attribute [rw] names
|
1597
|
+
# The names of the trust stores.
|
1598
|
+
# @return [Array<String>]
|
1599
|
+
#
|
1600
|
+
# @!attribute [rw] marker
|
1601
|
+
# The marker for the next set of results. (You received this marker
|
1602
|
+
# from a previous call.)
|
1603
|
+
# @return [String]
|
1604
|
+
#
|
1605
|
+
# @!attribute [rw] page_size
|
1606
|
+
# The maximum number of results to return with this call.
|
1607
|
+
# @return [Integer]
|
1608
|
+
#
|
1609
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DescribeTrustStoresInput AWS API Documentation
|
1610
|
+
#
|
1611
|
+
class DescribeTrustStoresInput < Struct.new(
|
1612
|
+
:trust_store_arns,
|
1613
|
+
:names,
|
1614
|
+
:marker,
|
1615
|
+
:page_size)
|
1616
|
+
SENSITIVE = []
|
1617
|
+
include Aws::Structure
|
1618
|
+
end
|
1619
|
+
|
1620
|
+
# @!attribute [rw] trust_stores
|
1621
|
+
# Information about the trust stores.
|
1622
|
+
# @return [Array<Types::TrustStore>]
|
1623
|
+
#
|
1624
|
+
# @!attribute [rw] next_marker
|
1625
|
+
# If there are additional results, this is the marker for the next set
|
1626
|
+
# of results. Otherwise, this is null.
|
1627
|
+
# @return [String]
|
1628
|
+
#
|
1629
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DescribeTrustStoresOutput AWS API Documentation
|
1630
|
+
#
|
1631
|
+
class DescribeTrustStoresOutput < Struct.new(
|
1632
|
+
:trust_stores,
|
1633
|
+
:next_marker)
|
1634
|
+
SENSITIVE = []
|
1635
|
+
include Aws::Structure
|
1636
|
+
end
|
1637
|
+
|
1348
1638
|
# A listener with the specified port already exists.
|
1349
1639
|
#
|
1350
1640
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DuplicateListenerException AWS API Documentation
|
@@ -1369,6 +1659,12 @@ module Aws::ElasticLoadBalancingV2
|
|
1369
1659
|
#
|
1370
1660
|
class DuplicateTargetGroupNameException < Aws::EmptyStructure; end
|
1371
1661
|
|
1662
|
+
# A trust store with the specified name already exists.
|
1663
|
+
#
|
1664
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/DuplicateTrustStoreNameException AWS API Documentation
|
1665
|
+
#
|
1666
|
+
class DuplicateTrustStoreNameException < Aws::EmptyStructure; end
|
1667
|
+
|
1372
1668
|
# Information about an action that returns a custom HTTP response.
|
1373
1669
|
#
|
1374
1670
|
# @!attribute [rw] message_body
|
@@ -1416,6 +1712,59 @@ module Aws::ElasticLoadBalancingV2
|
|
1416
1712
|
include Aws::Structure
|
1417
1713
|
end
|
1418
1714
|
|
1715
|
+
# @!attribute [rw] trust_store_arn
|
1716
|
+
# The Amazon Resource Name (ARN) of the trust store.
|
1717
|
+
# @return [String]
|
1718
|
+
#
|
1719
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/GetTrustStoreCaCertificatesBundleInput AWS API Documentation
|
1720
|
+
#
|
1721
|
+
class GetTrustStoreCaCertificatesBundleInput < Struct.new(
|
1722
|
+
:trust_store_arn)
|
1723
|
+
SENSITIVE = []
|
1724
|
+
include Aws::Structure
|
1725
|
+
end
|
1726
|
+
|
1727
|
+
# @!attribute [rw] location
|
1728
|
+
# The ca certificate bundles Amazon S3 URI.
|
1729
|
+
# @return [String]
|
1730
|
+
#
|
1731
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/GetTrustStoreCaCertificatesBundleOutput AWS API Documentation
|
1732
|
+
#
|
1733
|
+
class GetTrustStoreCaCertificatesBundleOutput < Struct.new(
|
1734
|
+
:location)
|
1735
|
+
SENSITIVE = []
|
1736
|
+
include Aws::Structure
|
1737
|
+
end
|
1738
|
+
|
1739
|
+
# @!attribute [rw] trust_store_arn
|
1740
|
+
# The Amazon Resource Name (ARN) of the trust store.
|
1741
|
+
# @return [String]
|
1742
|
+
#
|
1743
|
+
# @!attribute [rw] revocation_id
|
1744
|
+
# The revocation ID of the revocation file.
|
1745
|
+
# @return [Integer]
|
1746
|
+
#
|
1747
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/GetTrustStoreRevocationContentInput AWS API Documentation
|
1748
|
+
#
|
1749
|
+
class GetTrustStoreRevocationContentInput < Struct.new(
|
1750
|
+
:trust_store_arn,
|
1751
|
+
:revocation_id)
|
1752
|
+
SENSITIVE = []
|
1753
|
+
include Aws::Structure
|
1754
|
+
end
|
1755
|
+
|
1756
|
+
# @!attribute [rw] location
|
1757
|
+
# The revocation files Amazon S3 URI.
|
1758
|
+
# @return [String]
|
1759
|
+
#
|
1760
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/GetTrustStoreRevocationContentOutput AWS API Documentation
|
1761
|
+
#
|
1762
|
+
class GetTrustStoreRevocationContentOutput < Struct.new(
|
1763
|
+
:location)
|
1764
|
+
SENSITIVE = []
|
1765
|
+
include Aws::Structure
|
1766
|
+
end
|
1767
|
+
|
1419
1768
|
# The health of the specified targets could not be retrieved due to an
|
1420
1769
|
# internal error.
|
1421
1770
|
#
|
@@ -1517,6 +1866,13 @@ module Aws::ElasticLoadBalancingV2
|
|
1517
1866
|
#
|
1518
1867
|
class IncompatibleProtocolsException < Aws::EmptyStructure; end
|
1519
1868
|
|
1869
|
+
# The specified ca certificate bundle is in an invalid format, or
|
1870
|
+
# corrupt.
|
1871
|
+
#
|
1872
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/InvalidCaCertificatesBundleException AWS API Documentation
|
1873
|
+
#
|
1874
|
+
class InvalidCaCertificatesBundleException < Aws::EmptyStructure; end
|
1875
|
+
|
1520
1876
|
# The requested configuration is not valid.
|
1521
1877
|
#
|
1522
1878
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/InvalidConfigurationRequestException AWS API Documentation
|
@@ -1529,6 +1885,13 @@ module Aws::ElasticLoadBalancingV2
|
|
1529
1885
|
#
|
1530
1886
|
class InvalidLoadBalancerActionException < Aws::EmptyStructure; end
|
1531
1887
|
|
1888
|
+
# The provided revocation file is an invalid format, or uses an
|
1889
|
+
# incorrect algorithm.
|
1890
|
+
#
|
1891
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/InvalidRevocationContentException AWS API Documentation
|
1892
|
+
#
|
1893
|
+
class InvalidRevocationContentException < Aws::EmptyStructure; end
|
1894
|
+
|
1532
1895
|
# The requested scheme is not valid.
|
1533
1896
|
#
|
1534
1897
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/InvalidSchemeException AWS API Documentation
|
@@ -1660,6 +2023,10 @@ module Aws::ElasticLoadBalancingV2
|
|
1660
2023
|
# Negotiation (ALPN) policy.
|
1661
2024
|
# @return [Array<String>]
|
1662
2025
|
#
|
2026
|
+
# @!attribute [rw] mutual_authentication
|
2027
|
+
# The mutual authentication configuration information.
|
2028
|
+
# @return [Types::MutualAuthenticationAttributes]
|
2029
|
+
#
|
1663
2030
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/Listener AWS API Documentation
|
1664
2031
|
#
|
1665
2032
|
class Listener < Struct.new(
|
@@ -1670,7 +2037,8 @@ module Aws::ElasticLoadBalancingV2
|
|
1670
2037
|
:certificates,
|
1671
2038
|
:ssl_policy,
|
1672
2039
|
:default_actions,
|
1673
|
-
:alpn_policy
|
2040
|
+
:alpn_policy,
|
2041
|
+
:mutual_authentication)
|
1674
2042
|
SENSITIVE = []
|
1675
2043
|
include Aws::Structure
|
1676
2044
|
end
|
@@ -1852,6 +2220,19 @@ module Aws::ElasticLoadBalancingV2
|
|
1852
2220
|
# seconds. The valid range is 1-4000 seconds. The default is 60
|
1853
2221
|
# seconds.
|
1854
2222
|
#
|
2223
|
+
# * `connection_logs.s3.enabled` - Indicates whether connection logs
|
2224
|
+
# are enabled. The value is `true` or `false`. The default is
|
2225
|
+
# `false`.
|
2226
|
+
#
|
2227
|
+
# * `connection_logs.s3.bucket` - The name of the S3 bucket for the
|
2228
|
+
# connection logs. This attribute is required if connection logs are
|
2229
|
+
# enabled. The bucket must exist in the same region as the load
|
2230
|
+
# balancer and have a bucket policy that grants Elastic Load
|
2231
|
+
# Balancing permissions to write to the bucket.
|
2232
|
+
#
|
2233
|
+
# * `connection_logs.s3.prefix` - The prefix for the location in the
|
2234
|
+
# S3 bucket for the connection logs.
|
2235
|
+
#
|
1855
2236
|
# * `routing.http.desync_mitigation_mode` - Determines how the load
|
1856
2237
|
# balancer handles requests that might pose a security risk to your
|
1857
2238
|
# application. The possible values are `monitor`, `defensive`, and
|
@@ -2068,6 +2449,10 @@ module Aws::ElasticLoadBalancingV2
|
|
2068
2449
|
# [1]: https://docs.aws.amazon.com/elasticloadbalancing/latest/network/create-tls-listener.html#alpn-policies
|
2069
2450
|
# @return [Array<String>]
|
2070
2451
|
#
|
2452
|
+
# @!attribute [rw] mutual_authentication
|
2453
|
+
# The mutual authentication configuration information.
|
2454
|
+
# @return [Types::MutualAuthenticationAttributes]
|
2455
|
+
#
|
2071
2456
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/ModifyListenerInput AWS API Documentation
|
2072
2457
|
#
|
2073
2458
|
class ModifyListenerInput < Struct.new(
|
@@ -2077,7 +2462,8 @@ module Aws::ElasticLoadBalancingV2
|
|
2077
2462
|
:ssl_policy,
|
2078
2463
|
:certificates,
|
2079
2464
|
:default_actions,
|
2080
|
-
:alpn_policy
|
2465
|
+
:alpn_policy,
|
2466
|
+
:mutual_authentication)
|
2081
2467
|
SENSITIVE = []
|
2082
2468
|
include Aws::Structure
|
2083
2469
|
end
|
@@ -2279,6 +2665,71 @@ module Aws::ElasticLoadBalancingV2
|
|
2279
2665
|
include Aws::Structure
|
2280
2666
|
end
|
2281
2667
|
|
2668
|
+
# @!attribute [rw] trust_store_arn
|
2669
|
+
# The Amazon Resource Name (ARN) of the trust store.
|
2670
|
+
# @return [String]
|
2671
|
+
#
|
2672
|
+
# @!attribute [rw] ca_certificates_bundle_s3_bucket
|
2673
|
+
# The Amazon S3 bucket for the ca certificates bundle.
|
2674
|
+
# @return [String]
|
2675
|
+
#
|
2676
|
+
# @!attribute [rw] ca_certificates_bundle_s3_key
|
2677
|
+
# The Amazon S3 path for the ca certificates bundle.
|
2678
|
+
# @return [String]
|
2679
|
+
#
|
2680
|
+
# @!attribute [rw] ca_certificates_bundle_s3_object_version
|
2681
|
+
# The Amazon S3 object version for the ca certificates bundle. If
|
2682
|
+
# undefined the current version is used.
|
2683
|
+
# @return [String]
|
2684
|
+
#
|
2685
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/ModifyTrustStoreInput AWS API Documentation
|
2686
|
+
#
|
2687
|
+
class ModifyTrustStoreInput < Struct.new(
|
2688
|
+
:trust_store_arn,
|
2689
|
+
:ca_certificates_bundle_s3_bucket,
|
2690
|
+
:ca_certificates_bundle_s3_key,
|
2691
|
+
:ca_certificates_bundle_s3_object_version)
|
2692
|
+
SENSITIVE = []
|
2693
|
+
include Aws::Structure
|
2694
|
+
end
|
2695
|
+
|
2696
|
+
# @!attribute [rw] trust_stores
|
2697
|
+
# Information about the modified trust store.
|
2698
|
+
# @return [Array<Types::TrustStore>]
|
2699
|
+
#
|
2700
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/ModifyTrustStoreOutput AWS API Documentation
|
2701
|
+
#
|
2702
|
+
class ModifyTrustStoreOutput < Struct.new(
|
2703
|
+
:trust_stores)
|
2704
|
+
SENSITIVE = []
|
2705
|
+
include Aws::Structure
|
2706
|
+
end
|
2707
|
+
|
2708
|
+
# Information about the mutual authentication attributes of a listener.
|
2709
|
+
#
|
2710
|
+
# @!attribute [rw] mode
|
2711
|
+
# The client certificate handling method. Options are `off`,
|
2712
|
+
# `passthrough` or `verify`. The default value is `off`.
|
2713
|
+
# @return [String]
|
2714
|
+
#
|
2715
|
+
# @!attribute [rw] trust_store_arn
|
2716
|
+
# The Amazon Resource Name (ARN) of the trust store.
|
2717
|
+
# @return [String]
|
2718
|
+
#
|
2719
|
+
# @!attribute [rw] ignore_client_certificate_expiry
|
2720
|
+
# Indicates whether expired client certificates are ignored.
|
2721
|
+
# @return [Boolean]
|
2722
|
+
#
|
2723
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/MutualAuthenticationAttributes AWS API Documentation
|
2724
|
+
#
|
2725
|
+
class MutualAuthenticationAttributes < Struct.new(
|
2726
|
+
:mode,
|
2727
|
+
:trust_store_arn,
|
2728
|
+
:ignore_client_certificate_expiry)
|
2729
|
+
SENSITIVE = []
|
2730
|
+
include Aws::Structure
|
2731
|
+
end
|
2732
|
+
|
2282
2733
|
# This operation is not allowed.
|
2283
2734
|
#
|
2284
2735
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/OperationNotPermittedException AWS API Documentation
|
@@ -2495,12 +2946,74 @@ module Aws::ElasticLoadBalancingV2
|
|
2495
2946
|
#
|
2496
2947
|
class RemoveTagsOutput < Aws::EmptyStructure; end
|
2497
2948
|
|
2949
|
+
# @!attribute [rw] trust_store_arn
|
2950
|
+
# The Amazon Resource Name (ARN) of the trust store.
|
2951
|
+
# @return [String]
|
2952
|
+
#
|
2953
|
+
# @!attribute [rw] revocation_ids
|
2954
|
+
# The revocation IDs of the revocation files you want to remove.
|
2955
|
+
# @return [Array<Integer>]
|
2956
|
+
#
|
2957
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/RemoveTrustStoreRevocationsInput AWS API Documentation
|
2958
|
+
#
|
2959
|
+
class RemoveTrustStoreRevocationsInput < Struct.new(
|
2960
|
+
:trust_store_arn,
|
2961
|
+
:revocation_ids)
|
2962
|
+
SENSITIVE = []
|
2963
|
+
include Aws::Structure
|
2964
|
+
end
|
2965
|
+
|
2966
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/RemoveTrustStoreRevocationsOutput AWS API Documentation
|
2967
|
+
#
|
2968
|
+
class RemoveTrustStoreRevocationsOutput < Aws::EmptyStructure; end
|
2969
|
+
|
2498
2970
|
# A specified resource is in use.
|
2499
2971
|
#
|
2500
2972
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/ResourceInUseException AWS API Documentation
|
2501
2973
|
#
|
2502
2974
|
class ResourceInUseException < Aws::EmptyStructure; end
|
2503
2975
|
|
2976
|
+
# Information about a revocation file.
|
2977
|
+
#
|
2978
|
+
# @!attribute [rw] s3_bucket
|
2979
|
+
# The Amazon S3 bucket for the revocation file.
|
2980
|
+
# @return [String]
|
2981
|
+
#
|
2982
|
+
# @!attribute [rw] s3_key
|
2983
|
+
# The Amazon S3 path for the revocation file.
|
2984
|
+
# @return [String]
|
2985
|
+
#
|
2986
|
+
# @!attribute [rw] s3_object_version
|
2987
|
+
# The Amazon S3 object version of the revocation file.
|
2988
|
+
# @return [String]
|
2989
|
+
#
|
2990
|
+
# @!attribute [rw] revocation_type
|
2991
|
+
# The type of revocation file.
|
2992
|
+
# @return [String]
|
2993
|
+
#
|
2994
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/RevocationContent AWS API Documentation
|
2995
|
+
#
|
2996
|
+
class RevocationContent < Struct.new(
|
2997
|
+
:s3_bucket,
|
2998
|
+
:s3_key,
|
2999
|
+
:s3_object_version,
|
3000
|
+
:revocation_type)
|
3001
|
+
SENSITIVE = []
|
3002
|
+
include Aws::Structure
|
3003
|
+
end
|
3004
|
+
|
3005
|
+
# The specified revocation file does not exist.
|
3006
|
+
#
|
3007
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/RevocationContentNotFoundException AWS API Documentation
|
3008
|
+
#
|
3009
|
+
class RevocationContentNotFoundException < Aws::EmptyStructure; end
|
3010
|
+
|
3011
|
+
# The specified revocation ID does not exist.
|
3012
|
+
#
|
3013
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/RevocationIdNotFoundException AWS API Documentation
|
3014
|
+
#
|
3015
|
+
class RevocationIdNotFoundException < Aws::EmptyStructure; end
|
3016
|
+
|
2504
3017
|
# Information about a rule.
|
2505
3018
|
#
|
2506
3019
|
# @!attribute [rw] rule_arn
|
@@ -3252,8 +3765,14 @@ module Aws::ElasticLoadBalancingV2
|
|
3252
3765
|
#
|
3253
3766
|
# * `load_balancing.algorithm.type` - The load balancing algorithm
|
3254
3767
|
# determines how the load balancer selects targets when routing
|
3255
|
-
# requests. The value is `round_robin
|
3256
|
-
# `least_outstanding_requests`. The default is
|
3768
|
+
# requests. The value is `round_robin`,
|
3769
|
+
# `least_outstanding_requests`, or `weighted_random`. The default is
|
3770
|
+
# `round_robin`.
|
3771
|
+
#
|
3772
|
+
# * `load_balancing.algorithm.anomaly_mitigation` - Only available
|
3773
|
+
# when `load_balancing.algorithm.type` is `weighted_random`.
|
3774
|
+
# Indicates whether anomaly mitigation is enabled. The value is `on`
|
3775
|
+
# or `off`. The default is `off`.
|
3257
3776
|
#
|
3258
3777
|
# * `slow_start.duration_seconds` - The time period, in seconds,
|
3259
3778
|
# during which a newly registered target receives an increasing
|
@@ -3500,12 +4019,21 @@ module Aws::ElasticLoadBalancingV2
|
|
3500
4019
|
# The health information for the target.
|
3501
4020
|
# @return [Types::TargetHealth]
|
3502
4021
|
#
|
4022
|
+
# @!attribute [rw] anomaly_detection
|
4023
|
+
# The anomaly detection result for the target.
|
4024
|
+
#
|
4025
|
+
# If no anomalies were detected, the result is `normal`.
|
4026
|
+
#
|
4027
|
+
# If anomalies were detected, the result is `anomalous`.
|
4028
|
+
# @return [Types::AnomalyDetection]
|
4029
|
+
#
|
3503
4030
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/TargetHealthDescription AWS API Documentation
|
3504
4031
|
#
|
3505
4032
|
class TargetHealthDescription < Struct.new(
|
3506
4033
|
:target,
|
3507
4034
|
:health_check_port,
|
3508
|
-
:target_health
|
4035
|
+
:target_health,
|
4036
|
+
:anomaly_detection)
|
3509
4037
|
SENSITIVE = []
|
3510
4038
|
include Aws::Structure
|
3511
4039
|
end
|
@@ -3550,7 +4078,7 @@ module Aws::ElasticLoadBalancingV2
|
|
3550
4078
|
#
|
3551
4079
|
class TooManyRulesException < Aws::EmptyStructure; end
|
3552
4080
|
|
3553
|
-
# You've reached the limit on the number of tags
|
4081
|
+
# You've reached the limit on the number of tags for this resource.
|
3554
4082
|
#
|
3555
4083
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/TooManyTagsException AWS API Documentation
|
3556
4084
|
#
|
@@ -3569,6 +4097,19 @@ module Aws::ElasticLoadBalancingV2
|
|
3569
4097
|
#
|
3570
4098
|
class TooManyTargetsException < Aws::EmptyStructure; end
|
3571
4099
|
|
4100
|
+
# The specified trust store has too many revocation entries.
|
4101
|
+
#
|
4102
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/TooManyTrustStoreRevocationEntriesException AWS API Documentation
|
4103
|
+
#
|
4104
|
+
class TooManyTrustStoreRevocationEntriesException < Aws::EmptyStructure; end
|
4105
|
+
|
4106
|
+
# You've reached the limit on the number of trust stores for your
|
4107
|
+
# Amazon Web Services account.
|
4108
|
+
#
|
4109
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/TooManyTrustStoresException AWS API Documentation
|
4110
|
+
#
|
4111
|
+
class TooManyTrustStoresException < Aws::EmptyStructure; end
|
4112
|
+
|
3572
4113
|
# You've reached the limit on the number of unique target groups per
|
3573
4114
|
# load balancer across all listeners. If a target group is used by
|
3574
4115
|
# multiple actions for a load balancer, it is counted as only one use.
|
@@ -3577,6 +4118,101 @@ module Aws::ElasticLoadBalancingV2
|
|
3577
4118
|
#
|
3578
4119
|
class TooManyUniqueTargetGroupsPerLoadBalancerException < Aws::EmptyStructure; end
|
3579
4120
|
|
4121
|
+
# Information about a trust store.
|
4122
|
+
#
|
4123
|
+
# @!attribute [rw] name
|
4124
|
+
# The name of the trust store.
|
4125
|
+
# @return [String]
|
4126
|
+
#
|
4127
|
+
# @!attribute [rw] trust_store_arn
|
4128
|
+
# The Amazon Resource Name (ARN) of the trust store.
|
4129
|
+
# @return [String]
|
4130
|
+
#
|
4131
|
+
# @!attribute [rw] status
|
4132
|
+
# The current status of the trust store.
|
4133
|
+
# @return [String]
|
4134
|
+
#
|
4135
|
+
# @!attribute [rw] number_of_ca_certificates
|
4136
|
+
# The number of ca certificates in the trust store.
|
4137
|
+
# @return [Integer]
|
4138
|
+
#
|
4139
|
+
# @!attribute [rw] total_revoked_entries
|
4140
|
+
# The number of revoked certificates in the trust store.
|
4141
|
+
# @return [Integer]
|
4142
|
+
#
|
4143
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/TrustStore AWS API Documentation
|
4144
|
+
#
|
4145
|
+
class TrustStore < Struct.new(
|
4146
|
+
:name,
|
4147
|
+
:trust_store_arn,
|
4148
|
+
:status,
|
4149
|
+
:number_of_ca_certificates,
|
4150
|
+
:total_revoked_entries)
|
4151
|
+
SENSITIVE = []
|
4152
|
+
include Aws::Structure
|
4153
|
+
end
|
4154
|
+
|
4155
|
+
# Information about the resources a trust store is associated with.
|
4156
|
+
#
|
4157
|
+
# @!attribute [rw] resource_arn
|
4158
|
+
# The Amazon Resource Name (ARN) of the resource.
|
4159
|
+
# @return [String]
|
4160
|
+
#
|
4161
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/TrustStoreAssociation AWS API Documentation
|
4162
|
+
#
|
4163
|
+
class TrustStoreAssociation < Struct.new(
|
4164
|
+
:resource_arn)
|
4165
|
+
SENSITIVE = []
|
4166
|
+
include Aws::Structure
|
4167
|
+
end
|
4168
|
+
|
4169
|
+
# The specified trust store is currently in use.
|
4170
|
+
#
|
4171
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/TrustStoreInUseException AWS API Documentation
|
4172
|
+
#
|
4173
|
+
class TrustStoreInUseException < Aws::EmptyStructure; end
|
4174
|
+
|
4175
|
+
# The specified trust store does not exist.
|
4176
|
+
#
|
4177
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/TrustStoreNotFoundException AWS API Documentation
|
4178
|
+
#
|
4179
|
+
class TrustStoreNotFoundException < Aws::EmptyStructure; end
|
4180
|
+
|
4181
|
+
# The specified trust store is not active.
|
4182
|
+
#
|
4183
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/TrustStoreNotReadyException AWS API Documentation
|
4184
|
+
#
|
4185
|
+
class TrustStoreNotReadyException < Aws::EmptyStructure; end
|
4186
|
+
|
4187
|
+
# Information about a revocation file in use by a trust store.
|
4188
|
+
#
|
4189
|
+
# @!attribute [rw] trust_store_arn
|
4190
|
+
# The Amazon Resource Name (ARN) of the trust store.
|
4191
|
+
# @return [String]
|
4192
|
+
#
|
4193
|
+
# @!attribute [rw] revocation_id
|
4194
|
+
# The revocation ID of the revocation file.
|
4195
|
+
# @return [Integer]
|
4196
|
+
#
|
4197
|
+
# @!attribute [rw] revocation_type
|
4198
|
+
# The type of revocation file.
|
4199
|
+
# @return [String]
|
4200
|
+
#
|
4201
|
+
# @!attribute [rw] number_of_revoked_entries
|
4202
|
+
# The number of revoked certificates.
|
4203
|
+
# @return [Integer]
|
4204
|
+
#
|
4205
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/TrustStoreRevocation AWS API Documentation
|
4206
|
+
#
|
4207
|
+
class TrustStoreRevocation < Struct.new(
|
4208
|
+
:trust_store_arn,
|
4209
|
+
:revocation_id,
|
4210
|
+
:revocation_type,
|
4211
|
+
:number_of_revoked_entries)
|
4212
|
+
SENSITIVE = []
|
4213
|
+
include Aws::Structure
|
4214
|
+
end
|
4215
|
+
|
3580
4216
|
# The specified protocol is not supported.
|
3581
4217
|
#
|
3582
4218
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/UnsupportedProtocolException AWS API Documentation
|