aws-sdk-elasticloadbalancing 1.19.0 → 1.24.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 +5 -5
- data/lib/aws-sdk-elasticloadbalancing.rb +9 -4
- data/lib/aws-sdk-elasticloadbalancing/client.rb +86 -19
- data/lib/aws-sdk-elasticloadbalancing/client_api.rb +46 -0
- data/lib/aws-sdk-elasticloadbalancing/customizations.rb +1 -0
- data/lib/aws-sdk-elasticloadbalancing/errors.rb +266 -0
- data/lib/aws-sdk-elasticloadbalancing/resource.rb +3 -0
- data/lib/aws-sdk-elasticloadbalancing/types.rb +217 -0
- data/lib/aws-sdk-elasticloadbalancing/waiters.rb +65 -0
- metadata +5 -5
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,6 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::ElasticLoadBalancing
|
11
|
+
|
9
12
|
class Resource
|
10
13
|
|
11
14
|
# @param options ({})
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -48,9 +50,16 @@ module Aws::ElasticLoadBalancing
|
|
48
50
|
:s3_bucket_name,
|
49
51
|
:emit_interval,
|
50
52
|
:s3_bucket_prefix)
|
53
|
+
SENSITIVE = []
|
51
54
|
include Aws::Structure
|
52
55
|
end
|
53
56
|
|
57
|
+
# The specified load balancer does not exist.
|
58
|
+
#
|
59
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancing-2012-06-01/AccessPointNotFoundException AWS API Documentation
|
60
|
+
#
|
61
|
+
class AccessPointNotFoundException < Aws::EmptyStructure; end
|
62
|
+
|
54
63
|
# Contains the parameters for EnableAvailabilityZonesForLoadBalancer.
|
55
64
|
#
|
56
65
|
# @note When making an API call, you may pass AddAvailabilityZonesInput
|
@@ -75,6 +84,7 @@ module Aws::ElasticLoadBalancing
|
|
75
84
|
class AddAvailabilityZonesInput < Struct.new(
|
76
85
|
:load_balancer_name,
|
77
86
|
:availability_zones)
|
87
|
+
SENSITIVE = []
|
78
88
|
include Aws::Structure
|
79
89
|
end
|
80
90
|
|
@@ -88,6 +98,7 @@ module Aws::ElasticLoadBalancing
|
|
88
98
|
#
|
89
99
|
class AddAvailabilityZonesOutput < Struct.new(
|
90
100
|
:availability_zones)
|
101
|
+
SENSITIVE = []
|
91
102
|
include Aws::Structure
|
92
103
|
end
|
93
104
|
|
@@ -120,6 +131,7 @@ module Aws::ElasticLoadBalancing
|
|
120
131
|
class AddTagsInput < Struct.new(
|
121
132
|
:load_balancer_names,
|
122
133
|
:tags)
|
134
|
+
SENSITIVE = []
|
123
135
|
include Aws::Structure
|
124
136
|
end
|
125
137
|
|
@@ -152,6 +164,7 @@ module Aws::ElasticLoadBalancing
|
|
152
164
|
class AdditionalAttribute < Struct.new(
|
153
165
|
:key,
|
154
166
|
:value)
|
167
|
+
SENSITIVE = []
|
155
168
|
include Aws::Structure
|
156
169
|
end
|
157
170
|
|
@@ -172,6 +185,7 @@ module Aws::ElasticLoadBalancing
|
|
172
185
|
class AppCookieStickinessPolicy < Struct.new(
|
173
186
|
:policy_name,
|
174
187
|
:cookie_name)
|
188
|
+
SENSITIVE = []
|
175
189
|
include Aws::Structure
|
176
190
|
end
|
177
191
|
|
@@ -199,6 +213,7 @@ module Aws::ElasticLoadBalancing
|
|
199
213
|
class ApplySecurityGroupsToLoadBalancerInput < Struct.new(
|
200
214
|
:load_balancer_name,
|
201
215
|
:security_groups)
|
216
|
+
SENSITIVE = []
|
202
217
|
include Aws::Structure
|
203
218
|
end
|
204
219
|
|
@@ -212,6 +227,7 @@ module Aws::ElasticLoadBalancing
|
|
212
227
|
#
|
213
228
|
class ApplySecurityGroupsToLoadBalancerOutput < Struct.new(
|
214
229
|
:security_groups)
|
230
|
+
SENSITIVE = []
|
215
231
|
include Aws::Structure
|
216
232
|
end
|
217
233
|
|
@@ -239,6 +255,7 @@ module Aws::ElasticLoadBalancing
|
|
239
255
|
class AttachLoadBalancerToSubnetsInput < Struct.new(
|
240
256
|
:load_balancer_name,
|
241
257
|
:subnets)
|
258
|
+
SENSITIVE = []
|
242
259
|
include Aws::Structure
|
243
260
|
end
|
244
261
|
|
@@ -252,6 +269,7 @@ module Aws::ElasticLoadBalancing
|
|
252
269
|
#
|
253
270
|
class AttachLoadBalancerToSubnetsOutput < Struct.new(
|
254
271
|
:subnets)
|
272
|
+
SENSITIVE = []
|
255
273
|
include Aws::Structure
|
256
274
|
end
|
257
275
|
|
@@ -270,9 +288,19 @@ module Aws::ElasticLoadBalancing
|
|
270
288
|
class BackendServerDescription < Struct.new(
|
271
289
|
:instance_port,
|
272
290
|
:policy_names)
|
291
|
+
SENSITIVE = []
|
273
292
|
include Aws::Structure
|
274
293
|
end
|
275
294
|
|
295
|
+
# The specified ARN does not refer to a valid SSL certificate in AWS
|
296
|
+
# Identity and Access Management (IAM) or AWS Certificate Manager (ACM).
|
297
|
+
# Note that if you recently uploaded the certificate to IAM, this error
|
298
|
+
# might indicate that the certificate is not fully available yet.
|
299
|
+
#
|
300
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancing-2012-06-01/CertificateNotFoundException AWS API Documentation
|
301
|
+
#
|
302
|
+
class CertificateNotFoundException < Aws::EmptyStructure; end
|
303
|
+
|
276
304
|
# Contains the parameters for ConfigureHealthCheck.
|
277
305
|
#
|
278
306
|
# @note When making an API call, you may pass ConfigureHealthCheckInput
|
@@ -302,6 +330,7 @@ module Aws::ElasticLoadBalancing
|
|
302
330
|
class ConfigureHealthCheckInput < Struct.new(
|
303
331
|
:load_balancer_name,
|
304
332
|
:health_check)
|
333
|
+
SENSITIVE = []
|
305
334
|
include Aws::Structure
|
306
335
|
end
|
307
336
|
|
@@ -315,6 +344,7 @@ module Aws::ElasticLoadBalancing
|
|
315
344
|
#
|
316
345
|
class ConfigureHealthCheckOutput < Struct.new(
|
317
346
|
:health_check)
|
347
|
+
SENSITIVE = []
|
318
348
|
include Aws::Structure
|
319
349
|
end
|
320
350
|
|
@@ -343,6 +373,7 @@ module Aws::ElasticLoadBalancing
|
|
343
373
|
class ConnectionDraining < Struct.new(
|
344
374
|
:enabled,
|
345
375
|
:timeout)
|
376
|
+
SENSITIVE = []
|
346
377
|
include Aws::Structure
|
347
378
|
end
|
348
379
|
|
@@ -365,6 +396,7 @@ module Aws::ElasticLoadBalancing
|
|
365
396
|
#
|
366
397
|
class ConnectionSettings < Struct.new(
|
367
398
|
:idle_timeout)
|
399
|
+
SENSITIVE = []
|
368
400
|
include Aws::Structure
|
369
401
|
end
|
370
402
|
|
@@ -474,6 +506,7 @@ module Aws::ElasticLoadBalancing
|
|
474
506
|
:security_groups,
|
475
507
|
:scheme,
|
476
508
|
:tags)
|
509
|
+
SENSITIVE = []
|
477
510
|
include Aws::Structure
|
478
511
|
end
|
479
512
|
|
@@ -487,6 +520,7 @@ module Aws::ElasticLoadBalancing
|
|
487
520
|
#
|
488
521
|
class CreateAccessPointOutput < Struct.new(
|
489
522
|
:dns_name)
|
523
|
+
SENSITIVE = []
|
490
524
|
include Aws::Structure
|
491
525
|
end
|
492
526
|
|
@@ -521,6 +555,7 @@ module Aws::ElasticLoadBalancing
|
|
521
555
|
:load_balancer_name,
|
522
556
|
:policy_name,
|
523
557
|
:cookie_name)
|
558
|
+
SENSITIVE = []
|
524
559
|
include Aws::Structure
|
525
560
|
end
|
526
561
|
|
@@ -564,6 +599,7 @@ module Aws::ElasticLoadBalancing
|
|
564
599
|
:load_balancer_name,
|
565
600
|
:policy_name,
|
566
601
|
:cookie_expiration_period)
|
602
|
+
SENSITIVE = []
|
567
603
|
include Aws::Structure
|
568
604
|
end
|
569
605
|
|
@@ -604,6 +640,7 @@ module Aws::ElasticLoadBalancing
|
|
604
640
|
class CreateLoadBalancerListenerInput < Struct.new(
|
605
641
|
:load_balancer_name,
|
606
642
|
:listeners)
|
643
|
+
SENSITIVE = []
|
607
644
|
include Aws::Structure
|
608
645
|
end
|
609
646
|
|
@@ -655,6 +692,7 @@ module Aws::ElasticLoadBalancing
|
|
655
692
|
:policy_name,
|
656
693
|
:policy_type_name,
|
657
694
|
:policy_attributes)
|
695
|
+
SENSITIVE = []
|
658
696
|
include Aws::Structure
|
659
697
|
end
|
660
698
|
|
@@ -682,6 +720,7 @@ module Aws::ElasticLoadBalancing
|
|
682
720
|
#
|
683
721
|
class CrossZoneLoadBalancing < Struct.new(
|
684
722
|
:enabled)
|
723
|
+
SENSITIVE = []
|
685
724
|
include Aws::Structure
|
686
725
|
end
|
687
726
|
|
@@ -702,6 +741,7 @@ module Aws::ElasticLoadBalancing
|
|
702
741
|
#
|
703
742
|
class DeleteAccessPointInput < Struct.new(
|
704
743
|
:load_balancer_name)
|
744
|
+
SENSITIVE = []
|
705
745
|
include Aws::Structure
|
706
746
|
end
|
707
747
|
|
@@ -734,6 +774,7 @@ module Aws::ElasticLoadBalancing
|
|
734
774
|
class DeleteLoadBalancerListenerInput < Struct.new(
|
735
775
|
:load_balancer_name,
|
736
776
|
:load_balancer_ports)
|
777
|
+
SENSITIVE = []
|
737
778
|
include Aws::Structure
|
738
779
|
end
|
739
780
|
|
@@ -766,6 +807,7 @@ module Aws::ElasticLoadBalancing
|
|
766
807
|
class DeleteLoadBalancerPolicyInput < Struct.new(
|
767
808
|
:load_balancer_name,
|
768
809
|
:policy_name)
|
810
|
+
SENSITIVE = []
|
769
811
|
include Aws::Structure
|
770
812
|
end
|
771
813
|
|
@@ -775,6 +817,13 @@ module Aws::ElasticLoadBalancing
|
|
775
817
|
#
|
776
818
|
class DeleteLoadBalancerPolicyOutput < Aws::EmptyStructure; end
|
777
819
|
|
820
|
+
# A request made by Elastic Load Balancing to another service exceeds
|
821
|
+
# the maximum request rate permitted for your account.
|
822
|
+
#
|
823
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancing-2012-06-01/DependencyThrottleException AWS API Documentation
|
824
|
+
#
|
825
|
+
class DependencyThrottleException < Aws::EmptyStructure; end
|
826
|
+
|
778
827
|
# Contains the parameters for DeregisterInstancesFromLoadBalancer.
|
779
828
|
#
|
780
829
|
# @note When making an API call, you may pass DeregisterEndPointsInput
|
@@ -802,6 +851,7 @@ module Aws::ElasticLoadBalancing
|
|
802
851
|
class DeregisterEndPointsInput < Struct.new(
|
803
852
|
:load_balancer_name,
|
804
853
|
:instances)
|
854
|
+
SENSITIVE = []
|
805
855
|
include Aws::Structure
|
806
856
|
end
|
807
857
|
|
@@ -815,6 +865,7 @@ module Aws::ElasticLoadBalancing
|
|
815
865
|
#
|
816
866
|
class DeregisterEndPointsOutput < Struct.new(
|
817
867
|
:instances)
|
868
|
+
SENSITIVE = []
|
818
869
|
include Aws::Structure
|
819
870
|
end
|
820
871
|
|
@@ -849,6 +900,7 @@ module Aws::ElasticLoadBalancing
|
|
849
900
|
:load_balancer_names,
|
850
901
|
:marker,
|
851
902
|
:page_size)
|
903
|
+
SENSITIVE = []
|
852
904
|
include Aws::Structure
|
853
905
|
end
|
854
906
|
|
@@ -868,6 +920,7 @@ module Aws::ElasticLoadBalancing
|
|
868
920
|
class DescribeAccessPointsOutput < Struct.new(
|
869
921
|
:load_balancer_descriptions,
|
870
922
|
:next_marker)
|
923
|
+
SENSITIVE = []
|
871
924
|
include Aws::Structure
|
872
925
|
end
|
873
926
|
|
@@ -893,6 +946,7 @@ module Aws::ElasticLoadBalancing
|
|
893
946
|
class DescribeAccountLimitsInput < Struct.new(
|
894
947
|
:marker,
|
895
948
|
:page_size)
|
949
|
+
SENSITIVE = []
|
896
950
|
include Aws::Structure
|
897
951
|
end
|
898
952
|
|
@@ -910,6 +964,7 @@ module Aws::ElasticLoadBalancing
|
|
910
964
|
class DescribeAccountLimitsOutput < Struct.new(
|
911
965
|
:limits,
|
912
966
|
:next_marker)
|
967
|
+
SENSITIVE = []
|
913
968
|
include Aws::Structure
|
914
969
|
end
|
915
970
|
|
@@ -940,6 +995,7 @@ module Aws::ElasticLoadBalancing
|
|
940
995
|
class DescribeEndPointStateInput < Struct.new(
|
941
996
|
:load_balancer_name,
|
942
997
|
:instances)
|
998
|
+
SENSITIVE = []
|
943
999
|
include Aws::Structure
|
944
1000
|
end
|
945
1001
|
|
@@ -953,6 +1009,7 @@ module Aws::ElasticLoadBalancing
|
|
953
1009
|
#
|
954
1010
|
class DescribeEndPointStateOutput < Struct.new(
|
955
1011
|
:instance_states)
|
1012
|
+
SENSITIVE = []
|
956
1013
|
include Aws::Structure
|
957
1014
|
end
|
958
1015
|
|
@@ -973,6 +1030,7 @@ module Aws::ElasticLoadBalancing
|
|
973
1030
|
#
|
974
1031
|
class DescribeLoadBalancerAttributesInput < Struct.new(
|
975
1032
|
:load_balancer_name)
|
1033
|
+
SENSITIVE = []
|
976
1034
|
include Aws::Structure
|
977
1035
|
end
|
978
1036
|
|
@@ -986,6 +1044,7 @@ module Aws::ElasticLoadBalancing
|
|
986
1044
|
#
|
987
1045
|
class DescribeLoadBalancerAttributesOutput < Struct.new(
|
988
1046
|
:load_balancer_attributes)
|
1047
|
+
SENSITIVE = []
|
989
1048
|
include Aws::Structure
|
990
1049
|
end
|
991
1050
|
|
@@ -1012,6 +1071,7 @@ module Aws::ElasticLoadBalancing
|
|
1012
1071
|
class DescribeLoadBalancerPoliciesInput < Struct.new(
|
1013
1072
|
:load_balancer_name,
|
1014
1073
|
:policy_names)
|
1074
|
+
SENSITIVE = []
|
1015
1075
|
include Aws::Structure
|
1016
1076
|
end
|
1017
1077
|
|
@@ -1025,6 +1085,7 @@ module Aws::ElasticLoadBalancing
|
|
1025
1085
|
#
|
1026
1086
|
class DescribeLoadBalancerPoliciesOutput < Struct.new(
|
1027
1087
|
:policy_descriptions)
|
1088
|
+
SENSITIVE = []
|
1028
1089
|
include Aws::Structure
|
1029
1090
|
end
|
1030
1091
|
|
@@ -1046,6 +1107,7 @@ module Aws::ElasticLoadBalancing
|
|
1046
1107
|
#
|
1047
1108
|
class DescribeLoadBalancerPolicyTypesInput < Struct.new(
|
1048
1109
|
:policy_type_names)
|
1110
|
+
SENSITIVE = []
|
1049
1111
|
include Aws::Structure
|
1050
1112
|
end
|
1051
1113
|
|
@@ -1059,6 +1121,7 @@ module Aws::ElasticLoadBalancing
|
|
1059
1121
|
#
|
1060
1122
|
class DescribeLoadBalancerPolicyTypesOutput < Struct.new(
|
1061
1123
|
:policy_type_descriptions)
|
1124
|
+
SENSITIVE = []
|
1062
1125
|
include Aws::Structure
|
1063
1126
|
end
|
1064
1127
|
|
@@ -1079,6 +1142,7 @@ module Aws::ElasticLoadBalancing
|
|
1079
1142
|
#
|
1080
1143
|
class DescribeTagsInput < Struct.new(
|
1081
1144
|
:load_balancer_names)
|
1145
|
+
SENSITIVE = []
|
1082
1146
|
include Aws::Structure
|
1083
1147
|
end
|
1084
1148
|
|
@@ -1092,6 +1156,7 @@ module Aws::ElasticLoadBalancing
|
|
1092
1156
|
#
|
1093
1157
|
class DescribeTagsOutput < Struct.new(
|
1094
1158
|
:tag_descriptions)
|
1159
|
+
SENSITIVE = []
|
1095
1160
|
include Aws::Structure
|
1096
1161
|
end
|
1097
1162
|
|
@@ -1118,6 +1183,7 @@ module Aws::ElasticLoadBalancing
|
|
1118
1183
|
class DetachLoadBalancerFromSubnetsInput < Struct.new(
|
1119
1184
|
:load_balancer_name,
|
1120
1185
|
:subnets)
|
1186
|
+
SENSITIVE = []
|
1121
1187
|
include Aws::Structure
|
1122
1188
|
end
|
1123
1189
|
|
@@ -1131,9 +1197,37 @@ module Aws::ElasticLoadBalancing
|
|
1131
1197
|
#
|
1132
1198
|
class DetachLoadBalancerFromSubnetsOutput < Struct.new(
|
1133
1199
|
:subnets)
|
1200
|
+
SENSITIVE = []
|
1134
1201
|
include Aws::Structure
|
1135
1202
|
end
|
1136
1203
|
|
1204
|
+
# The specified load balancer name already exists for this account.
|
1205
|
+
#
|
1206
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancing-2012-06-01/DuplicateAccessPointNameException AWS API Documentation
|
1207
|
+
#
|
1208
|
+
class DuplicateAccessPointNameException < Aws::EmptyStructure; end
|
1209
|
+
|
1210
|
+
# A listener already exists for the specified load balancer name and
|
1211
|
+
# port, but with a different instance port, protocol, or SSL
|
1212
|
+
# certificate.
|
1213
|
+
#
|
1214
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancing-2012-06-01/DuplicateListenerException AWS API Documentation
|
1215
|
+
#
|
1216
|
+
class DuplicateListenerException < Aws::EmptyStructure; end
|
1217
|
+
|
1218
|
+
# A policy with the specified name already exists for this load
|
1219
|
+
# balancer.
|
1220
|
+
#
|
1221
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancing-2012-06-01/DuplicatePolicyNameException AWS API Documentation
|
1222
|
+
#
|
1223
|
+
class DuplicatePolicyNameException < Aws::EmptyStructure; end
|
1224
|
+
|
1225
|
+
# A tag key was specified more than once.
|
1226
|
+
#
|
1227
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancing-2012-06-01/DuplicateTagKeysException AWS API Documentation
|
1228
|
+
#
|
1229
|
+
class DuplicateTagKeysException < Aws::EmptyStructure; end
|
1230
|
+
|
1137
1231
|
# Information about a health check.
|
1138
1232
|
#
|
1139
1233
|
# @note When making an API call, you may pass HealthCheck
|
@@ -1199,6 +1293,7 @@ module Aws::ElasticLoadBalancing
|
|
1199
1293
|
:timeout,
|
1200
1294
|
:unhealthy_threshold,
|
1201
1295
|
:healthy_threshold)
|
1296
|
+
SENSITIVE = []
|
1202
1297
|
include Aws::Structure
|
1203
1298
|
end
|
1204
1299
|
|
@@ -1219,6 +1314,7 @@ module Aws::ElasticLoadBalancing
|
|
1219
1314
|
#
|
1220
1315
|
class Instance < Struct.new(
|
1221
1316
|
:instance_id)
|
1317
|
+
SENSITIVE = []
|
1222
1318
|
include Aws::Structure
|
1223
1319
|
end
|
1224
1320
|
|
@@ -1281,9 +1377,41 @@ module Aws::ElasticLoadBalancing
|
|
1281
1377
|
:state,
|
1282
1378
|
:reason_code,
|
1283
1379
|
:description)
|
1380
|
+
SENSITIVE = []
|
1284
1381
|
include Aws::Structure
|
1285
1382
|
end
|
1286
1383
|
|
1384
|
+
# The requested configuration change is not valid.
|
1385
|
+
#
|
1386
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancing-2012-06-01/InvalidConfigurationRequestException AWS API Documentation
|
1387
|
+
#
|
1388
|
+
class InvalidConfigurationRequestException < Aws::EmptyStructure; end
|
1389
|
+
|
1390
|
+
# The specified endpoint is not valid.
|
1391
|
+
#
|
1392
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancing-2012-06-01/InvalidEndPointException AWS API Documentation
|
1393
|
+
#
|
1394
|
+
class InvalidEndPointException < Aws::EmptyStructure; end
|
1395
|
+
|
1396
|
+
# The specified value for the schema is not valid. You can only specify
|
1397
|
+
# a scheme for load balancers in a VPC.
|
1398
|
+
#
|
1399
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancing-2012-06-01/InvalidSchemeException AWS API Documentation
|
1400
|
+
#
|
1401
|
+
class InvalidSchemeException < Aws::EmptyStructure; end
|
1402
|
+
|
1403
|
+
# One or more of the specified security groups do not exist.
|
1404
|
+
#
|
1405
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancing-2012-06-01/InvalidSecurityGroupException AWS API Documentation
|
1406
|
+
#
|
1407
|
+
class InvalidSecurityGroupException < Aws::EmptyStructure; end
|
1408
|
+
|
1409
|
+
# The specified VPC has no associated Internet gateway.
|
1410
|
+
#
|
1411
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancing-2012-06-01/InvalidSubnetException AWS API Documentation
|
1412
|
+
#
|
1413
|
+
class InvalidSubnetException < Aws::EmptyStructure; end
|
1414
|
+
|
1287
1415
|
# Information about a policy for duration-based session stickiness.
|
1288
1416
|
#
|
1289
1417
|
# @!attribute [rw] policy_name
|
@@ -1302,6 +1430,7 @@ module Aws::ElasticLoadBalancing
|
|
1302
1430
|
class LBCookieStickinessPolicy < Struct.new(
|
1303
1431
|
:policy_name,
|
1304
1432
|
:cookie_expiration_period)
|
1433
|
+
SENSITIVE = []
|
1305
1434
|
include Aws::Structure
|
1306
1435
|
end
|
1307
1436
|
|
@@ -1327,6 +1456,7 @@ module Aws::ElasticLoadBalancing
|
|
1327
1456
|
class Limit < Struct.new(
|
1328
1457
|
:name,
|
1329
1458
|
:max)
|
1459
|
+
SENSITIVE = []
|
1330
1460
|
include Aws::Structure
|
1331
1461
|
end
|
1332
1462
|
|
@@ -1395,6 +1525,7 @@ module Aws::ElasticLoadBalancing
|
|
1395
1525
|
:instance_protocol,
|
1396
1526
|
:instance_port,
|
1397
1527
|
:ssl_certificate_id)
|
1528
|
+
SENSITIVE = []
|
1398
1529
|
include Aws::Structure
|
1399
1530
|
end
|
1400
1531
|
|
@@ -1413,9 +1544,23 @@ module Aws::ElasticLoadBalancing
|
|
1413
1544
|
class ListenerDescription < Struct.new(
|
1414
1545
|
:listener,
|
1415
1546
|
:policy_names)
|
1547
|
+
SENSITIVE = []
|
1416
1548
|
include Aws::Structure
|
1417
1549
|
end
|
1418
1550
|
|
1551
|
+
# The load balancer does not have a listener configured at the specified
|
1552
|
+
# port.
|
1553
|
+
#
|
1554
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancing-2012-06-01/ListenerNotFoundException AWS API Documentation
|
1555
|
+
#
|
1556
|
+
class ListenerNotFoundException < Aws::EmptyStructure; end
|
1557
|
+
|
1558
|
+
# The specified load balancer attribute does not exist.
|
1559
|
+
#
|
1560
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancing-2012-06-01/LoadBalancerAttributeNotFoundException AWS API Documentation
|
1561
|
+
#
|
1562
|
+
class LoadBalancerAttributeNotFoundException < Aws::EmptyStructure; end
|
1563
|
+
|
1419
1564
|
# The attributes for a load balancer.
|
1420
1565
|
#
|
1421
1566
|
# @note When making an API call, you may pass LoadBalancerAttributes
|
@@ -1510,6 +1655,7 @@ module Aws::ElasticLoadBalancing
|
|
1510
1655
|
:connection_draining,
|
1511
1656
|
:connection_settings,
|
1512
1657
|
:additional_attributes)
|
1658
|
+
SENSITIVE = []
|
1513
1659
|
include Aws::Structure
|
1514
1660
|
end
|
1515
1661
|
|
@@ -1615,6 +1761,7 @@ module Aws::ElasticLoadBalancing
|
|
1615
1761
|
:security_groups,
|
1616
1762
|
:created_time,
|
1617
1763
|
:scheme)
|
1764
|
+
SENSITIVE = []
|
1618
1765
|
include Aws::Structure
|
1619
1766
|
end
|
1620
1767
|
|
@@ -1664,6 +1811,7 @@ module Aws::ElasticLoadBalancing
|
|
1664
1811
|
class ModifyLoadBalancerAttributesInput < Struct.new(
|
1665
1812
|
:load_balancer_name,
|
1666
1813
|
:load_balancer_attributes)
|
1814
|
+
SENSITIVE = []
|
1667
1815
|
include Aws::Structure
|
1668
1816
|
end
|
1669
1817
|
|
@@ -1682,9 +1830,16 @@ module Aws::ElasticLoadBalancing
|
|
1682
1830
|
class ModifyLoadBalancerAttributesOutput < Struct.new(
|
1683
1831
|
:load_balancer_name,
|
1684
1832
|
:load_balancer_attributes)
|
1833
|
+
SENSITIVE = []
|
1685
1834
|
include Aws::Structure
|
1686
1835
|
end
|
1687
1836
|
|
1837
|
+
# This operation is not allowed.
|
1838
|
+
#
|
1839
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancing-2012-06-01/OperationNotPermittedException AWS API Documentation
|
1840
|
+
#
|
1841
|
+
class OperationNotPermittedException < Aws::EmptyStructure; end
|
1842
|
+
|
1688
1843
|
# The policies for a load balancer.
|
1689
1844
|
#
|
1690
1845
|
# @!attribute [rw] app_cookie_stickiness_policies
|
@@ -1707,6 +1862,7 @@ module Aws::ElasticLoadBalancing
|
|
1707
1862
|
:app_cookie_stickiness_policies,
|
1708
1863
|
:lb_cookie_stickiness_policies,
|
1709
1864
|
:other_policies)
|
1865
|
+
SENSITIVE = []
|
1710
1866
|
include Aws::Structure
|
1711
1867
|
end
|
1712
1868
|
|
@@ -1733,6 +1889,7 @@ module Aws::ElasticLoadBalancing
|
|
1733
1889
|
class PolicyAttribute < Struct.new(
|
1734
1890
|
:attribute_name,
|
1735
1891
|
:attribute_value)
|
1892
|
+
SENSITIVE = []
|
1736
1893
|
include Aws::Structure
|
1737
1894
|
end
|
1738
1895
|
|
@@ -1751,6 +1908,7 @@ module Aws::ElasticLoadBalancing
|
|
1751
1908
|
class PolicyAttributeDescription < Struct.new(
|
1752
1909
|
:attribute_name,
|
1753
1910
|
:attribute_value)
|
1911
|
+
SENSITIVE = []
|
1754
1912
|
include Aws::Structure
|
1755
1913
|
end
|
1756
1914
|
|
@@ -1794,6 +1952,7 @@ module Aws::ElasticLoadBalancing
|
|
1794
1952
|
:description,
|
1795
1953
|
:default_value,
|
1796
1954
|
:cardinality)
|
1955
|
+
SENSITIVE = []
|
1797
1956
|
include Aws::Structure
|
1798
1957
|
end
|
1799
1958
|
|
@@ -1817,9 +1976,16 @@ module Aws::ElasticLoadBalancing
|
|
1817
1976
|
:policy_name,
|
1818
1977
|
:policy_type_name,
|
1819
1978
|
:policy_attribute_descriptions)
|
1979
|
+
SENSITIVE = []
|
1820
1980
|
include Aws::Structure
|
1821
1981
|
end
|
1822
1982
|
|
1983
|
+
# One or more of the specified policies do not exist.
|
1984
|
+
#
|
1985
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancing-2012-06-01/PolicyNotFoundException AWS API Documentation
|
1986
|
+
#
|
1987
|
+
class PolicyNotFoundException < Aws::EmptyStructure; end
|
1988
|
+
|
1823
1989
|
# Information about a policy type.
|
1824
1990
|
#
|
1825
1991
|
# @!attribute [rw] policy_type_name
|
@@ -1841,9 +2007,16 @@ module Aws::ElasticLoadBalancing
|
|
1841
2007
|
:policy_type_name,
|
1842
2008
|
:description,
|
1843
2009
|
:policy_attribute_type_descriptions)
|
2010
|
+
SENSITIVE = []
|
1844
2011
|
include Aws::Structure
|
1845
2012
|
end
|
1846
2013
|
|
2014
|
+
# One or more of the specified policy types do not exist.
|
2015
|
+
#
|
2016
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancing-2012-06-01/PolicyTypeNotFoundException AWS API Documentation
|
2017
|
+
#
|
2018
|
+
class PolicyTypeNotFoundException < Aws::EmptyStructure; end
|
2019
|
+
|
1847
2020
|
# Contains the parameters for RegisterInstancesWithLoadBalancer.
|
1848
2021
|
#
|
1849
2022
|
# @note When making an API call, you may pass RegisterEndPointsInput
|
@@ -1871,6 +2044,7 @@ module Aws::ElasticLoadBalancing
|
|
1871
2044
|
class RegisterEndPointsInput < Struct.new(
|
1872
2045
|
:load_balancer_name,
|
1873
2046
|
:instances)
|
2047
|
+
SENSITIVE = []
|
1874
2048
|
include Aws::Structure
|
1875
2049
|
end
|
1876
2050
|
|
@@ -1884,6 +2058,7 @@ module Aws::ElasticLoadBalancing
|
|
1884
2058
|
#
|
1885
2059
|
class RegisterEndPointsOutput < Struct.new(
|
1886
2060
|
:instances)
|
2061
|
+
SENSITIVE = []
|
1887
2062
|
include Aws::Structure
|
1888
2063
|
end
|
1889
2064
|
|
@@ -1910,6 +2085,7 @@ module Aws::ElasticLoadBalancing
|
|
1910
2085
|
class RemoveAvailabilityZonesInput < Struct.new(
|
1911
2086
|
:load_balancer_name,
|
1912
2087
|
:availability_zones)
|
2088
|
+
SENSITIVE = []
|
1913
2089
|
include Aws::Structure
|
1914
2090
|
end
|
1915
2091
|
|
@@ -1923,6 +2099,7 @@ module Aws::ElasticLoadBalancing
|
|
1923
2099
|
#
|
1924
2100
|
class RemoveAvailabilityZonesOutput < Struct.new(
|
1925
2101
|
:availability_zones)
|
2102
|
+
SENSITIVE = []
|
1926
2103
|
include Aws::Structure
|
1927
2104
|
end
|
1928
2105
|
|
@@ -1954,6 +2131,7 @@ module Aws::ElasticLoadBalancing
|
|
1954
2131
|
class RemoveTagsInput < Struct.new(
|
1955
2132
|
:load_balancer_names,
|
1956
2133
|
:tags)
|
2134
|
+
SENSITIVE = []
|
1957
2135
|
include Aws::Structure
|
1958
2136
|
end
|
1959
2137
|
|
@@ -1992,6 +2170,7 @@ module Aws::ElasticLoadBalancing
|
|
1992
2170
|
:load_balancer_name,
|
1993
2171
|
:load_balancer_port,
|
1994
2172
|
:ssl_certificate_id)
|
2173
|
+
SENSITIVE = []
|
1995
2174
|
include Aws::Structure
|
1996
2175
|
end
|
1997
2176
|
|
@@ -2031,6 +2210,7 @@ module Aws::ElasticLoadBalancing
|
|
2031
2210
|
:load_balancer_name,
|
2032
2211
|
:instance_port,
|
2033
2212
|
:policy_names)
|
2213
|
+
SENSITIVE = []
|
2034
2214
|
include Aws::Structure
|
2035
2215
|
end
|
2036
2216
|
|
@@ -2071,6 +2251,7 @@ module Aws::ElasticLoadBalancing
|
|
2071
2251
|
:load_balancer_name,
|
2072
2252
|
:load_balancer_port,
|
2073
2253
|
:policy_names)
|
2254
|
+
SENSITIVE = []
|
2074
2255
|
include Aws::Structure
|
2075
2256
|
end
|
2076
2257
|
|
@@ -2095,9 +2276,16 @@ module Aws::ElasticLoadBalancing
|
|
2095
2276
|
class SourceSecurityGroup < Struct.new(
|
2096
2277
|
:owner_alias,
|
2097
2278
|
:group_name)
|
2279
|
+
SENSITIVE = []
|
2098
2280
|
include Aws::Structure
|
2099
2281
|
end
|
2100
2282
|
|
2283
|
+
# One or more of the specified subnets do not exist.
|
2284
|
+
#
|
2285
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancing-2012-06-01/SubnetNotFoundException AWS API Documentation
|
2286
|
+
#
|
2287
|
+
class SubnetNotFoundException < Aws::EmptyStructure; end
|
2288
|
+
|
2101
2289
|
# Information about a tag.
|
2102
2290
|
#
|
2103
2291
|
# @note When making an API call, you may pass Tag
|
@@ -2121,6 +2309,7 @@ module Aws::ElasticLoadBalancing
|
|
2121
2309
|
class Tag < Struct.new(
|
2122
2310
|
:key,
|
2123
2311
|
:value)
|
2312
|
+
SENSITIVE = []
|
2124
2313
|
include Aws::Structure
|
2125
2314
|
end
|
2126
2315
|
|
@@ -2139,6 +2328,7 @@ module Aws::ElasticLoadBalancing
|
|
2139
2328
|
class TagDescription < Struct.new(
|
2140
2329
|
:load_balancer_name,
|
2141
2330
|
:tags)
|
2331
|
+
SENSITIVE = []
|
2142
2332
|
include Aws::Structure
|
2143
2333
|
end
|
2144
2334
|
|
@@ -2159,8 +2349,35 @@ module Aws::ElasticLoadBalancing
|
|
2159
2349
|
#
|
2160
2350
|
class TagKeyOnly < Struct.new(
|
2161
2351
|
:key)
|
2352
|
+
SENSITIVE = []
|
2162
2353
|
include Aws::Structure
|
2163
2354
|
end
|
2164
2355
|
|
2356
|
+
# The quota for the number of load balancers has been reached.
|
2357
|
+
#
|
2358
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancing-2012-06-01/TooManyAccessPointsException AWS API Documentation
|
2359
|
+
#
|
2360
|
+
class TooManyAccessPointsException < Aws::EmptyStructure; end
|
2361
|
+
|
2362
|
+
# The quota for the number of policies for this load balancer has been
|
2363
|
+
# reached.
|
2364
|
+
#
|
2365
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancing-2012-06-01/TooManyPoliciesException AWS API Documentation
|
2366
|
+
#
|
2367
|
+
class TooManyPoliciesException < Aws::EmptyStructure; end
|
2368
|
+
|
2369
|
+
# The quota for the number of tags that can be assigned to a load
|
2370
|
+
# balancer has been reached.
|
2371
|
+
#
|
2372
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancing-2012-06-01/TooManyTagsException AWS API Documentation
|
2373
|
+
#
|
2374
|
+
class TooManyTagsException < Aws::EmptyStructure; end
|
2375
|
+
|
2376
|
+
# The specified protocol or signature version is not supported.
|
2377
|
+
#
|
2378
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancing-2012-06-01/UnsupportedProtocolException AWS API Documentation
|
2379
|
+
#
|
2380
|
+
class UnsupportedProtocolException < Aws::EmptyStructure; end
|
2381
|
+
|
2165
2382
|
end
|
2166
2383
|
end
|