@aws-sdk/client-elastic-load-balancing 3.289.0 → 3.290.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.
Files changed (30) hide show
  1. package/dist-types/commands/AddTagsCommand.d.ts +10 -0
  2. package/dist-types/commands/ApplySecurityGroupsToLoadBalancerCommand.d.ts +10 -0
  3. package/dist-types/commands/AttachLoadBalancerToSubnetsCommand.d.ts +13 -0
  4. package/dist-types/commands/ConfigureHealthCheckCommand.d.ts +4 -0
  5. package/dist-types/commands/CreateAppCookieStickinessPolicyCommand.d.ts +13 -0
  6. package/dist-types/commands/CreateLBCookieStickinessPolicyCommand.d.ts +13 -0
  7. package/dist-types/commands/CreateLoadBalancerCommand.d.ts +39 -0
  8. package/dist-types/commands/CreateLoadBalancerListenersCommand.d.ts +18 -0
  9. package/dist-types/commands/CreateLoadBalancerPolicyCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteLoadBalancerCommand.d.ts +1 -0
  11. package/dist-types/commands/DeleteLoadBalancerListenersCommand.d.ts +4 -0
  12. package/dist-types/commands/DeleteLoadBalancerPolicyCommand.d.ts +7 -0
  13. package/dist-types/commands/DeregisterInstancesFromLoadBalancerCommand.d.ts +7 -0
  14. package/dist-types/commands/DescribeAccountLimitsCommand.d.ts +1 -0
  15. package/dist-types/commands/DescribeInstanceHealthCommand.d.ts +7 -0
  16. package/dist-types/commands/DescribeLoadBalancerAttributesCommand.d.ts +7 -0
  17. package/dist-types/commands/DescribeLoadBalancerPoliciesCommand.d.ts +7 -0
  18. package/dist-types/commands/DescribeLoadBalancerPolicyTypesCommand.d.ts +4 -0
  19. package/dist-types/commands/DescribeLoadBalancersCommand.d.ts +7 -0
  20. package/dist-types/commands/DescribeTagsCommand.d.ts +4 -0
  21. package/dist-types/commands/DetachLoadBalancerFromSubnetsCommand.d.ts +7 -0
  22. package/dist-types/commands/DisableAvailabilityZonesForLoadBalancerCommand.d.ts +7 -0
  23. package/dist-types/commands/EnableAvailabilityZonesForLoadBalancerCommand.d.ts +4 -0
  24. package/dist-types/commands/ModifyLoadBalancerAttributesCommand.d.ts +10 -0
  25. package/dist-types/commands/RegisterInstancesWithLoadBalancerCommand.d.ts +7 -0
  26. package/dist-types/commands/RemoveTagsCommand.d.ts +4 -0
  27. package/dist-types/commands/SetLoadBalancerListenerSSLCertificateCommand.d.ts +18 -0
  28. package/dist-types/commands/SetLoadBalancerPoliciesForBackendServerCommand.d.ts +10 -0
  29. package/dist-types/commands/SetLoadBalancerPoliciesOfListenerCommand.d.ts +13 -0
  30. package/package.json +30 -30
@@ -35,6 +35,16 @@ export interface AddTagsCommandOutput extends AddTagsOutput, __MetadataBearer {
35
35
  * @see {@link AddTagsCommandOutput} for command's `response` shape.
36
36
  * @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
37
37
  *
38
+ * @throws {@link AccessPointNotFoundException} (client fault)
39
+ * <p>The specified load balancer does not exist.</p>
40
+ *
41
+ * @throws {@link DuplicateTagKeysException} (client fault)
42
+ * <p>A tag key was specified more than once.</p>
43
+ *
44
+ * @throws {@link TooManyTagsException} (client fault)
45
+ * <p>The quota for the number of tags that can be assigned to a load balancer has been reached.</p>
46
+ *
47
+ *
38
48
  * @example To add tags to a load balancer
39
49
  * ```javascript
40
50
  * // This example adds two tags to the specified load balancer.
@@ -31,6 +31,16 @@ export interface ApplySecurityGroupsToLoadBalancerCommandOutput extends ApplySec
31
31
  * @see {@link ApplySecurityGroupsToLoadBalancerCommandOutput} for command's `response` shape.
32
32
  * @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
33
33
  *
34
+ * @throws {@link AccessPointNotFoundException} (client fault)
35
+ * <p>The specified load balancer does not exist.</p>
36
+ *
37
+ * @throws {@link InvalidConfigurationRequestException} (client fault)
38
+ * <p>The requested configuration change is not valid.</p>
39
+ *
40
+ * @throws {@link InvalidSecurityGroupException} (client fault)
41
+ * <p>One or more of the specified security groups do not exist.</p>
42
+ *
43
+ *
34
44
  * @example To associate a security group with a load balancer in a VPC
35
45
  * ```javascript
36
46
  * // This example associates a security group with the specified load balancer in a VPC.
@@ -32,6 +32,19 @@ export interface AttachLoadBalancerToSubnetsCommandOutput extends AttachLoadBala
32
32
  * @see {@link AttachLoadBalancerToSubnetsCommandOutput} for command's `response` shape.
33
33
  * @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
34
34
  *
35
+ * @throws {@link AccessPointNotFoundException} (client fault)
36
+ * <p>The specified load balancer does not exist.</p>
37
+ *
38
+ * @throws {@link InvalidConfigurationRequestException} (client fault)
39
+ * <p>The requested configuration change is not valid.</p>
40
+ *
41
+ * @throws {@link InvalidSubnetException} (client fault)
42
+ * <p>The specified VPC has no associated Internet gateway.</p>
43
+ *
44
+ * @throws {@link SubnetNotFoundException} (client fault)
45
+ * <p>One or more of the specified subnets do not exist.</p>
46
+ *
47
+ *
35
48
  * @example To attach subnets to a load balancer
36
49
  * ```javascript
37
50
  * // This example adds the specified subnet to the set of configured subnets for the specified load balancer.
@@ -31,6 +31,10 @@ export interface ConfigureHealthCheckCommandOutput extends ConfigureHealthCheckO
31
31
  * @see {@link ConfigureHealthCheckCommandOutput} for command's `response` shape.
32
32
  * @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
33
33
  *
34
+ * @throws {@link AccessPointNotFoundException} (client fault)
35
+ * <p>The specified load balancer does not exist.</p>
36
+ *
37
+ *
34
38
  * @example To specify the health check settings for your backend EC2 instances
35
39
  * ```javascript
36
40
  * // This example specifies the health check settings used to evaluate the health of your backend EC2 instances.
@@ -37,6 +37,19 @@ export interface CreateAppCookieStickinessPolicyCommandOutput extends CreateAppC
37
37
  * @see {@link CreateAppCookieStickinessPolicyCommandOutput} for command's `response` shape.
38
38
  * @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
39
39
  *
40
+ * @throws {@link AccessPointNotFoundException} (client fault)
41
+ * <p>The specified load balancer does not exist.</p>
42
+ *
43
+ * @throws {@link DuplicatePolicyNameException} (client fault)
44
+ * <p>A policy with the specified name already exists for this load balancer.</p>
45
+ *
46
+ * @throws {@link InvalidConfigurationRequestException} (client fault)
47
+ * <p>The requested configuration change is not valid.</p>
48
+ *
49
+ * @throws {@link TooManyPoliciesException} (client fault)
50
+ * <p>The quota for the number of policies for this load balancer has been reached.</p>
51
+ *
52
+ *
40
53
  * @example To generate a stickiness policy for your load balancer
41
54
  * ```javascript
42
55
  * // This example generates a stickiness policy that follows the sticky session lifetimes of the application-generated cookie.
@@ -35,6 +35,19 @@ export interface CreateLBCookieStickinessPolicyCommandOutput extends CreateLBCoo
35
35
  * @see {@link CreateLBCookieStickinessPolicyCommandOutput} for command's `response` shape.
36
36
  * @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
37
37
  *
38
+ * @throws {@link AccessPointNotFoundException} (client fault)
39
+ * <p>The specified load balancer does not exist.</p>
40
+ *
41
+ * @throws {@link DuplicatePolicyNameException} (client fault)
42
+ * <p>A policy with the specified name already exists for this load balancer.</p>
43
+ *
44
+ * @throws {@link InvalidConfigurationRequestException} (client fault)
45
+ * <p>The requested configuration change is not valid.</p>
46
+ *
47
+ * @throws {@link TooManyPoliciesException} (client fault)
48
+ * <p>The quota for the number of policies for this load balancer has been reached.</p>
49
+ *
50
+ *
38
51
  * @example To generate a duration-based stickiness policy for your load balancer
39
52
  * ```javascript
40
53
  * // This example generates a stickiness policy with sticky session lifetimes controlled by the specified expiration period.
@@ -42,6 +42,45 @@ export interface CreateLoadBalancerCommandOutput extends CreateAccessPointOutput
42
42
  * @see {@link CreateLoadBalancerCommandOutput} for command's `response` shape.
43
43
  * @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
44
44
  *
45
+ * @throws {@link CertificateNotFoundException} (client fault)
46
+ * <p>The specified ARN does not refer to a valid SSL certificate in AWS Identity and Access Management (IAM)
47
+ * or AWS Certificate Manager (ACM). Note that if you recently uploaded the certificate to IAM, this error might
48
+ * indicate that the certificate is not fully available yet.</p>
49
+ *
50
+ * @throws {@link DuplicateAccessPointNameException} (client fault)
51
+ * <p>The specified load balancer name already exists for this account.</p>
52
+ *
53
+ * @throws {@link DuplicateTagKeysException} (client fault)
54
+ * <p>A tag key was specified more than once.</p>
55
+ *
56
+ * @throws {@link InvalidConfigurationRequestException} (client fault)
57
+ * <p>The requested configuration change is not valid.</p>
58
+ *
59
+ * @throws {@link InvalidSchemeException} (client fault)
60
+ * <p>The specified value for the schema is not valid. You can only specify a scheme for load balancers in a VPC.</p>
61
+ *
62
+ * @throws {@link InvalidSecurityGroupException} (client fault)
63
+ * <p>One or more of the specified security groups do not exist.</p>
64
+ *
65
+ * @throws {@link InvalidSubnetException} (client fault)
66
+ * <p>The specified VPC has no associated Internet gateway.</p>
67
+ *
68
+ * @throws {@link OperationNotPermittedException} (client fault)
69
+ * <p>This operation is not allowed.</p>
70
+ *
71
+ * @throws {@link SubnetNotFoundException} (client fault)
72
+ * <p>One or more of the specified subnets do not exist.</p>
73
+ *
74
+ * @throws {@link TooManyAccessPointsException} (client fault)
75
+ * <p>The quota for the number of load balancers has been reached.</p>
76
+ *
77
+ * @throws {@link TooManyTagsException} (client fault)
78
+ * <p>The quota for the number of tags that can be assigned to a load balancer has been reached.</p>
79
+ *
80
+ * @throws {@link UnsupportedProtocolException} (client fault)
81
+ * <p>The specified protocol or signature version is not supported.</p>
82
+ *
83
+ *
45
84
  * @example To create an HTTP load balancer in a VPC
46
85
  * ```javascript
47
86
  * // This example creates a load balancer with an HTTP listener in a VPC.
@@ -31,6 +31,24 @@ export interface CreateLoadBalancerListenersCommandOutput extends CreateLoadBala
31
31
  * @see {@link CreateLoadBalancerListenersCommandOutput} for command's `response` shape.
32
32
  * @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
33
33
  *
34
+ * @throws {@link AccessPointNotFoundException} (client fault)
35
+ * <p>The specified load balancer does not exist.</p>
36
+ *
37
+ * @throws {@link CertificateNotFoundException} (client fault)
38
+ * <p>The specified ARN does not refer to a valid SSL certificate in AWS Identity and Access Management (IAM)
39
+ * or AWS Certificate Manager (ACM). Note that if you recently uploaded the certificate to IAM, this error might
40
+ * indicate that the certificate is not fully available yet.</p>
41
+ *
42
+ * @throws {@link DuplicateListenerException} (client fault)
43
+ * <p>A listener already exists for the specified load balancer name and port, but with a different instance port, protocol, or SSL certificate.</p>
44
+ *
45
+ * @throws {@link InvalidConfigurationRequestException} (client fault)
46
+ * <p>The requested configuration change is not valid.</p>
47
+ *
48
+ * @throws {@link UnsupportedProtocolException} (client fault)
49
+ * <p>The specified protocol or signature version is not supported.</p>
50
+ *
51
+ *
34
52
  * @example To create an HTTP listener for a load balancer
35
53
  * ```javascript
36
54
  * // This example creates a listener for your load balancer at port 80 using the HTTP protocol.
@@ -30,6 +30,22 @@ export interface CreateLoadBalancerPolicyCommandOutput extends CreateLoadBalance
30
30
  * @see {@link CreateLoadBalancerPolicyCommandOutput} for command's `response` shape.
31
31
  * @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessPointNotFoundException} (client fault)
34
+ * <p>The specified load balancer does not exist.</p>
35
+ *
36
+ * @throws {@link DuplicatePolicyNameException} (client fault)
37
+ * <p>A policy with the specified name already exists for this load balancer.</p>
38
+ *
39
+ * @throws {@link InvalidConfigurationRequestException} (client fault)
40
+ * <p>The requested configuration change is not valid.</p>
41
+ *
42
+ * @throws {@link PolicyTypeNotFoundException} (client fault)
43
+ * <p>One or more of the specified policy types do not exist.</p>
44
+ *
45
+ * @throws {@link TooManyPoliciesException} (client fault)
46
+ * <p>The quota for the number of policies for this load balancer has been reached.</p>
47
+ *
48
+ *
33
49
  * @example To create a policy that enables Proxy Protocol on a load balancer
34
50
  * ```javascript
35
51
  * // This example creates a policy that enables Proxy Protocol on the specified load balancer.
@@ -32,6 +32,7 @@ export interface DeleteLoadBalancerCommandOutput extends DeleteAccessPointOutput
32
32
  * @see {@link DeleteLoadBalancerCommandOutput} for command's `response` shape.
33
33
  * @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
34
34
  *
35
+ *
35
36
  * @example To delete a load balancer
36
37
  * ```javascript
37
38
  * // This example deletes the specified load balancer.
@@ -29,6 +29,10 @@ export interface DeleteLoadBalancerListenersCommandOutput extends DeleteLoadBala
29
29
  * @see {@link DeleteLoadBalancerListenersCommandOutput} for command's `response` shape.
30
30
  * @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessPointNotFoundException} (client fault)
33
+ * <p>The specified load balancer does not exist.</p>
34
+ *
35
+ *
32
36
  * @example To delete a listener from your load balancer
33
37
  * ```javascript
34
38
  * // This example deletes the listener for the specified port from the specified load balancer.
@@ -29,6 +29,13 @@ export interface DeleteLoadBalancerPolicyCommandOutput extends DeleteLoadBalance
29
29
  * @see {@link DeleteLoadBalancerPolicyCommandOutput} for command's `response` shape.
30
30
  * @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessPointNotFoundException} (client fault)
33
+ * <p>The specified load balancer does not exist.</p>
34
+ *
35
+ * @throws {@link InvalidConfigurationRequestException} (client fault)
36
+ * <p>The requested configuration change is not valid.</p>
37
+ *
38
+ *
32
39
  * @example To delete a policy from your load balancer
33
40
  * ```javascript
34
41
  * // This example deletes the specified policy from the specified load balancer. The policy must not be enabled on any listener.
@@ -34,6 +34,13 @@ export interface DeregisterInstancesFromLoadBalancerCommandOutput extends Deregi
34
34
  * @see {@link DeregisterInstancesFromLoadBalancerCommandOutput} for command's `response` shape.
35
35
  * @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
36
36
  *
37
+ * @throws {@link AccessPointNotFoundException} (client fault)
38
+ * <p>The specified load balancer does not exist.</p>
39
+ *
40
+ * @throws {@link InvalidEndPointException} (client fault)
41
+ * <p>The specified endpoint is not valid.</p>
42
+ *
43
+ *
37
44
  * @example To deregister instances from a load balancer
38
45
  * ```javascript
39
46
  * // This example deregisters the specified instance from the specified load balancer.
@@ -31,6 +31,7 @@ export interface DescribeAccountLimitsCommandOutput extends DescribeAccountLimit
31
31
  * @see {@link DescribeAccountLimitsCommandOutput} for command's `response` shape.
32
32
  * @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
33
33
  *
34
+ *
34
35
  */
35
36
  export declare class DescribeAccountLimitsCommand extends $Command<DescribeAccountLimitsCommandInput, DescribeAccountLimitsCommandOutput, ElasticLoadBalancingClientResolvedConfig> {
36
37
  readonly input: DescribeAccountLimitsCommandInput;
@@ -29,6 +29,13 @@ export interface DescribeInstanceHealthCommandOutput extends DescribeEndPointSta
29
29
  * @see {@link DescribeInstanceHealthCommandOutput} for command's `response` shape.
30
30
  * @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessPointNotFoundException} (client fault)
33
+ * <p>The specified load balancer does not exist.</p>
34
+ *
35
+ * @throws {@link InvalidEndPointException} (client fault)
36
+ * <p>The specified endpoint is not valid.</p>
37
+ *
38
+ *
32
39
  * @example To describe the health of the instances for a load balancer
33
40
  * ```javascript
34
41
  * // This example describes the health of the instances for the specified load balancer.
@@ -29,6 +29,13 @@ export interface DescribeLoadBalancerAttributesCommandOutput extends DescribeLoa
29
29
  * @see {@link DescribeLoadBalancerAttributesCommandOutput} for command's `response` shape.
30
30
  * @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessPointNotFoundException} (client fault)
33
+ * <p>The specified load balancer does not exist.</p>
34
+ *
35
+ * @throws {@link LoadBalancerAttributeNotFoundException} (client fault)
36
+ * <p>The specified load balancer attribute does not exist.</p>
37
+ *
38
+ *
32
39
  * @example To describe the attributes of a load balancer
33
40
  * ```javascript
34
41
  * // This example describes the attributes of the specified load balancer.
@@ -33,6 +33,13 @@ export interface DescribeLoadBalancerPoliciesCommandOutput extends DescribeLoadB
33
33
  * @see {@link DescribeLoadBalancerPoliciesCommandOutput} for command's `response` shape.
34
34
  * @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
35
35
  *
36
+ * @throws {@link AccessPointNotFoundException} (client fault)
37
+ * <p>The specified load balancer does not exist.</p>
38
+ *
39
+ * @throws {@link PolicyNotFoundException} (client fault)
40
+ * <p>One or more of the specified policies do not exist.</p>
41
+ *
42
+ *
36
43
  * @example To describe a policy associated with a load balancer
37
44
  * ```javascript
38
45
  * // This example describes the specified policy associated with the specified load balancer.
@@ -36,6 +36,10 @@ export interface DescribeLoadBalancerPolicyTypesCommandOutput extends DescribeLo
36
36
  * @see {@link DescribeLoadBalancerPolicyTypesCommandOutput} for command's `response` shape.
37
37
  * @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
38
38
  *
39
+ * @throws {@link PolicyTypeNotFoundException} (client fault)
40
+ * <p>One or more of the specified policy types do not exist.</p>
41
+ *
42
+ *
39
43
  * @example To describe a load balancer policy type defined by Elastic Load Balancing
40
44
  * ```javascript
41
45
  * // This example describes the specified load balancer policy type.
@@ -29,6 +29,13 @@ export interface DescribeLoadBalancersCommandOutput extends DescribeAccessPoints
29
29
  * @see {@link DescribeLoadBalancersCommandOutput} for command's `response` shape.
30
30
  * @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessPointNotFoundException} (client fault)
33
+ * <p>The specified load balancer does not exist.</p>
34
+ *
35
+ * @throws {@link DependencyThrottleException} (client fault)
36
+ * <p>A request made by Elastic Load Balancing to another service exceeds the maximum request rate permitted for your account.</p>
37
+ *
38
+ *
32
39
  * @example To describe one of your load balancers
33
40
  * ```javascript
34
41
  * // This example describes the specified load balancer.
@@ -29,6 +29,10 @@ export interface DescribeTagsCommandOutput extends DescribeTagsOutput, __Metadat
29
29
  * @see {@link DescribeTagsCommandOutput} for command's `response` shape.
30
30
  * @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessPointNotFoundException} (client fault)
33
+ * <p>The specified load balancer does not exist.</p>
34
+ *
35
+ *
32
36
  * @example To describe the tags for a load balancer
33
37
  * ```javascript
34
38
  * // This example describes the tags for the specified load balancer.
@@ -32,6 +32,13 @@ export interface DetachLoadBalancerFromSubnetsCommandOutput extends DetachLoadBa
32
32
  * @see {@link DetachLoadBalancerFromSubnetsCommandOutput} for command's `response` shape.
33
33
  * @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
34
34
  *
35
+ * @throws {@link AccessPointNotFoundException} (client fault)
36
+ * <p>The specified load balancer does not exist.</p>
37
+ *
38
+ * @throws {@link InvalidConfigurationRequestException} (client fault)
39
+ * <p>The requested configuration change is not valid.</p>
40
+ *
41
+ *
35
42
  * @example To detach a load balancer from a subnet
36
43
  * ```javascript
37
44
  * // This example detaches the specified load balancer from the specified subnet.
@@ -37,6 +37,13 @@ export interface DisableAvailabilityZonesForLoadBalancerCommandOutput extends Re
37
37
  * @see {@link DisableAvailabilityZonesForLoadBalancerCommandOutput} for command's `response` shape.
38
38
  * @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
39
39
  *
40
+ * @throws {@link AccessPointNotFoundException} (client fault)
41
+ * <p>The specified load balancer does not exist.</p>
42
+ *
43
+ * @throws {@link InvalidConfigurationRequestException} (client fault)
44
+ * <p>The requested configuration change is not valid.</p>
45
+ *
46
+ *
40
47
  * @example To disable an Availability Zone for a load balancer
41
48
  * ```javascript
42
49
  * // This example removes the specified Availability Zone from the set of Availability Zones for the specified load balancer.
@@ -34,6 +34,10 @@ export interface EnableAvailabilityZonesForLoadBalancerCommandOutput extends Add
34
34
  * @see {@link EnableAvailabilityZonesForLoadBalancerCommandOutput} for command's `response` shape.
35
35
  * @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
36
36
  *
37
+ * @throws {@link AccessPointNotFoundException} (client fault)
38
+ * <p>The specified load balancer does not exist.</p>
39
+ *
40
+ *
37
41
  * @example To enable an Availability Zone for a load balancer
38
42
  * ```javascript
39
43
  * // This example adds the specified Availability Zone to the specified load balancer.
@@ -55,6 +55,16 @@ export interface ModifyLoadBalancerAttributesCommandOutput extends ModifyLoadBal
55
55
  * @see {@link ModifyLoadBalancerAttributesCommandOutput} for command's `response` shape.
56
56
  * @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
57
57
  *
58
+ * @throws {@link AccessPointNotFoundException} (client fault)
59
+ * <p>The specified load balancer does not exist.</p>
60
+ *
61
+ * @throws {@link InvalidConfigurationRequestException} (client fault)
62
+ * <p>The requested configuration change is not valid.</p>
63
+ *
64
+ * @throws {@link LoadBalancerAttributeNotFoundException} (client fault)
65
+ * <p>The specified load balancer attribute does not exist.</p>
66
+ *
67
+ *
58
68
  * @example To enable cross-zone load balancing
59
69
  * ```javascript
60
70
  * // This example enables cross-zone load balancing for the specified load balancer.
@@ -47,6 +47,13 @@ export interface RegisterInstancesWithLoadBalancerCommandOutput extends Register
47
47
  * @see {@link RegisterInstancesWithLoadBalancerCommandOutput} for command's `response` shape.
48
48
  * @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
49
49
  *
50
+ * @throws {@link AccessPointNotFoundException} (client fault)
51
+ * <p>The specified load balancer does not exist.</p>
52
+ *
53
+ * @throws {@link InvalidEndPointException} (client fault)
54
+ * <p>The specified endpoint is not valid.</p>
55
+ *
56
+ *
50
57
  * @example To register instances with a load balancer
51
58
  * ```javascript
52
59
  * // This example registers the specified instance with the specified load balancer.
@@ -29,6 +29,10 @@ export interface RemoveTagsCommandOutput extends RemoveTagsOutput, __MetadataBea
29
29
  * @see {@link RemoveTagsCommandOutput} for command's `response` shape.
30
30
  * @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessPointNotFoundException} (client fault)
33
+ * <p>The specified load balancer does not exist.</p>
34
+ *
35
+ *
32
36
  * @example To remove tags from a load balancer
33
37
  * ```javascript
34
38
  * // This example removes the specified tag from the specified load balancer.
@@ -33,6 +33,24 @@ export interface SetLoadBalancerListenerSSLCertificateCommandOutput extends SetL
33
33
  * @see {@link SetLoadBalancerListenerSSLCertificateCommandOutput} for command's `response` shape.
34
34
  * @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
35
35
  *
36
+ * @throws {@link AccessPointNotFoundException} (client fault)
37
+ * <p>The specified load balancer does not exist.</p>
38
+ *
39
+ * @throws {@link CertificateNotFoundException} (client fault)
40
+ * <p>The specified ARN does not refer to a valid SSL certificate in AWS Identity and Access Management (IAM)
41
+ * or AWS Certificate Manager (ACM). Note that if you recently uploaded the certificate to IAM, this error might
42
+ * indicate that the certificate is not fully available yet.</p>
43
+ *
44
+ * @throws {@link InvalidConfigurationRequestException} (client fault)
45
+ * <p>The requested configuration change is not valid.</p>
46
+ *
47
+ * @throws {@link ListenerNotFoundException} (client fault)
48
+ * <p>The load balancer does not have a listener configured at the specified port.</p>
49
+ *
50
+ * @throws {@link UnsupportedProtocolException} (client fault)
51
+ * <p>The specified protocol or signature version is not supported.</p>
52
+ *
53
+ *
36
54
  * @example To update the SSL certificate for an HTTPS listener
37
55
  * ```javascript
38
56
  * // This example replaces the existing SSL certificate for the specified HTTPS listener.
@@ -39,6 +39,16 @@ export interface SetLoadBalancerPoliciesForBackendServerCommandOutput extends Se
39
39
  * @see {@link SetLoadBalancerPoliciesForBackendServerCommandOutput} for command's `response` shape.
40
40
  * @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
41
41
  *
42
+ * @throws {@link AccessPointNotFoundException} (client fault)
43
+ * <p>The specified load balancer does not exist.</p>
44
+ *
45
+ * @throws {@link InvalidConfigurationRequestException} (client fault)
46
+ * <p>The requested configuration change is not valid.</p>
47
+ *
48
+ * @throws {@link PolicyNotFoundException} (client fault)
49
+ * <p>One or more of the specified policies do not exist.</p>
50
+ *
51
+ *
42
52
  * @example To replace the policies associated with a port for a backend instance
43
53
  * ```javascript
44
54
  * // This example replaces the policies that are currently associated with the specified port.
@@ -35,6 +35,19 @@ export interface SetLoadBalancerPoliciesOfListenerCommandOutput extends SetLoadB
35
35
  * @see {@link SetLoadBalancerPoliciesOfListenerCommandOutput} for command's `response` shape.
36
36
  * @see {@link ElasticLoadBalancingClientResolvedConfig | config} for ElasticLoadBalancingClient's `config` shape.
37
37
  *
38
+ * @throws {@link AccessPointNotFoundException} (client fault)
39
+ * <p>The specified load balancer does not exist.</p>
40
+ *
41
+ * @throws {@link InvalidConfigurationRequestException} (client fault)
42
+ * <p>The requested configuration change is not valid.</p>
43
+ *
44
+ * @throws {@link ListenerNotFoundException} (client fault)
45
+ * <p>The load balancer does not have a listener configured at the specified port.</p>
46
+ *
47
+ * @throws {@link PolicyNotFoundException} (client fault)
48
+ * <p>One or more of the specified policies do not exist.</p>
49
+ *
50
+ *
38
51
  * @example To replace the policies associated with a listener
39
52
  * ```javascript
40
53
  * // This example replaces the policies that are currently associated with the specified listener.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-elastic-load-balancing",
3
3
  "description": "AWS SDK for JavaScript Elastic Load Balancing Client for Node.js, Browser and React Native",
4
- "version": "3.289.0",
4
+ "version": "3.290.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,39 +20,39 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.289.0",
24
- "@aws-sdk/config-resolver": "3.289.0",
25
- "@aws-sdk/credential-provider-node": "3.289.0",
26
- "@aws-sdk/fetch-http-handler": "3.289.0",
27
- "@aws-sdk/hash-node": "3.289.0",
28
- "@aws-sdk/invalid-dependency": "3.289.0",
29
- "@aws-sdk/middleware-content-length": "3.289.0",
30
- "@aws-sdk/middleware-endpoint": "3.289.0",
31
- "@aws-sdk/middleware-host-header": "3.289.0",
32
- "@aws-sdk/middleware-logger": "3.289.0",
33
- "@aws-sdk/middleware-recursion-detection": "3.289.0",
34
- "@aws-sdk/middleware-retry": "3.289.0",
35
- "@aws-sdk/middleware-serde": "3.289.0",
36
- "@aws-sdk/middleware-signing": "3.289.0",
37
- "@aws-sdk/middleware-stack": "3.289.0",
38
- "@aws-sdk/middleware-user-agent": "3.289.0",
39
- "@aws-sdk/node-config-provider": "3.289.0",
40
- "@aws-sdk/node-http-handler": "3.289.0",
41
- "@aws-sdk/protocol-http": "3.289.0",
42
- "@aws-sdk/smithy-client": "3.289.0",
43
- "@aws-sdk/types": "3.289.0",
44
- "@aws-sdk/url-parser": "3.289.0",
23
+ "@aws-sdk/client-sts": "3.290.0",
24
+ "@aws-sdk/config-resolver": "3.290.0",
25
+ "@aws-sdk/credential-provider-node": "3.290.0",
26
+ "@aws-sdk/fetch-http-handler": "3.290.0",
27
+ "@aws-sdk/hash-node": "3.290.0",
28
+ "@aws-sdk/invalid-dependency": "3.290.0",
29
+ "@aws-sdk/middleware-content-length": "3.290.0",
30
+ "@aws-sdk/middleware-endpoint": "3.290.0",
31
+ "@aws-sdk/middleware-host-header": "3.290.0",
32
+ "@aws-sdk/middleware-logger": "3.290.0",
33
+ "@aws-sdk/middleware-recursion-detection": "3.290.0",
34
+ "@aws-sdk/middleware-retry": "3.290.0",
35
+ "@aws-sdk/middleware-serde": "3.290.0",
36
+ "@aws-sdk/middleware-signing": "3.290.0",
37
+ "@aws-sdk/middleware-stack": "3.290.0",
38
+ "@aws-sdk/middleware-user-agent": "3.290.0",
39
+ "@aws-sdk/node-config-provider": "3.290.0",
40
+ "@aws-sdk/node-http-handler": "3.290.0",
41
+ "@aws-sdk/protocol-http": "3.290.0",
42
+ "@aws-sdk/smithy-client": "3.290.0",
43
+ "@aws-sdk/types": "3.290.0",
44
+ "@aws-sdk/url-parser": "3.290.0",
45
45
  "@aws-sdk/util-base64": "3.208.0",
46
46
  "@aws-sdk/util-body-length-browser": "3.188.0",
47
47
  "@aws-sdk/util-body-length-node": "3.208.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.289.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.289.0",
50
- "@aws-sdk/util-endpoints": "3.289.0",
51
- "@aws-sdk/util-retry": "3.289.0",
52
- "@aws-sdk/util-user-agent-browser": "3.289.0",
53
- "@aws-sdk/util-user-agent-node": "3.289.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.290.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.290.0",
50
+ "@aws-sdk/util-endpoints": "3.290.0",
51
+ "@aws-sdk/util-retry": "3.290.0",
52
+ "@aws-sdk/util-user-agent-browser": "3.290.0",
53
+ "@aws-sdk/util-user-agent-node": "3.290.0",
54
54
  "@aws-sdk/util-utf8": "3.254.0",
55
- "@aws-sdk/util-waiter": "3.289.0",
55
+ "@aws-sdk/util-waiter": "3.290.0",
56
56
  "fast-xml-parser": "4.1.2",
57
57
  "tslib": "^2.3.1"
58
58
  },