aws-sdk-autoscaling 1.121.0 → 1.123.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-autoscaling/auto_scaling_group.rb +10 -4
- data/lib/aws-sdk-autoscaling/client.rb +202 -113
- data/lib/aws-sdk-autoscaling/client_api.rb +2 -1
- data/lib/aws-sdk-autoscaling/endpoint_parameters.rb +9 -6
- data/lib/aws-sdk-autoscaling/endpoints.rb +2 -713
- data/lib/aws-sdk-autoscaling/plugins/endpoints.rb +1 -136
- data/lib/aws-sdk-autoscaling/types.rb +82 -21
- data/lib/aws-sdk-autoscaling.rb +1 -1
- metadata +4 -4
@@ -504,8 +504,8 @@ module Aws::AutoScaling
|
|
504
504
|
req.send_request(options)
|
505
505
|
end
|
506
506
|
|
507
|
-
# <note markdown="1"> This API operation is superseded by AttachTrafficSources, which
|
508
|
-
# attach multiple traffic sources types. We recommend using
|
507
|
+
# <note markdown="1"> This API operation is superseded by [AttachTrafficSources][1], which
|
508
|
+
# can attach multiple traffic sources types. We recommend using
|
509
509
|
# `AttachTrafficSources` to simplify how you manage traffic sources.
|
510
510
|
# However, we continue to support `AttachLoadBalancerTargetGroups`. You
|
511
511
|
# can use both the original `AttachLoadBalancerTargetGroups` API
|
@@ -527,19 +527,23 @@ module Aws::AutoScaling
|
|
527
527
|
# * Gateway Load Balancer - Operates at the network layer (layer 3).
|
528
528
|
#
|
529
529
|
# To describe the target groups for an Auto Scaling group, call the
|
530
|
-
# DescribeLoadBalancerTargetGroups API. To detach the target group
|
531
|
-
# the Auto Scaling group, call the
|
530
|
+
# [DescribeLoadBalancerTargetGroups][2] API. To detach the target group
|
531
|
+
# from the Auto Scaling group, call the
|
532
|
+
# [DetachLoadBalancerTargetGroups][3] API.
|
532
533
|
#
|
533
534
|
# This operation is additive and does not detach existing target groups
|
534
535
|
# or Classic Load Balancers from the Auto Scaling group.
|
535
536
|
#
|
536
537
|
# For more information, see [Use Elastic Load Balancing to distribute
|
537
|
-
# traffic across the instances in your Auto Scaling group][
|
538
|
+
# traffic across the instances in your Auto Scaling group][4] in the
|
538
539
|
# *Amazon EC2 Auto Scaling User Guide*.
|
539
540
|
#
|
540
541
|
#
|
541
542
|
#
|
542
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/
|
543
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_AttachTrafficSources.html
|
544
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeLoadBalancerTargetGroups.html
|
545
|
+
# [3]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DetachLoadBalancerTargetGroups.html
|
546
|
+
# [4]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/autoscaling-load-balancer.html
|
543
547
|
#
|
544
548
|
# @option params [required, String] :auto_scaling_group_name
|
545
549
|
# The name of the Auto Scaling group.
|
@@ -583,8 +587,9 @@ module Aws::AutoScaling
|
|
583
587
|
req.send_request(options)
|
584
588
|
end
|
585
589
|
|
586
|
-
# <note markdown="1"> This API operation is superseded by
|
587
|
-
#
|
590
|
+
# <note markdown="1"> This API operation is superseded by
|
591
|
+
# [https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API\_AttachTrafficSources.html][1],
|
592
|
+
# which can attach multiple traffic sources types. We recommend using
|
588
593
|
# `AttachTrafficSources` to simplify how you manage traffic sources.
|
589
594
|
# However, we continue to support `AttachLoadBalancers`. You can use
|
590
595
|
# both the original `AttachLoadBalancers` API operation and
|
@@ -597,19 +602,22 @@ module Aws::AutoScaling
|
|
597
602
|
# with these Classic Load Balancers.
|
598
603
|
#
|
599
604
|
# To describe the load balancers for an Auto Scaling group, call the
|
600
|
-
# DescribeLoadBalancers API. To detach a load balancer from the
|
601
|
-
# Scaling group, call the DetachLoadBalancers API.
|
605
|
+
# [DescribeLoadBalancers][2] API. To detach a load balancer from the
|
606
|
+
# Auto Scaling group, call the [DetachLoadBalancers][3] API.
|
602
607
|
#
|
603
608
|
# This operation is additive and does not detach existing Classic Load
|
604
609
|
# Balancers or target groups from the Auto Scaling group.
|
605
610
|
#
|
606
611
|
# For more information, see [Use Elastic Load Balancing to distribute
|
607
|
-
# traffic across the instances in your Auto Scaling group][
|
612
|
+
# traffic across the instances in your Auto Scaling group][4] in the
|
608
613
|
# *Amazon EC2 Auto Scaling User Guide*.
|
609
614
|
#
|
610
615
|
#
|
611
616
|
#
|
612
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/
|
617
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_AttachTrafficSources.html
|
618
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeLoadBalancers.html
|
619
|
+
# [3]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DetachLoadBalancers.html
|
620
|
+
# [4]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/autoscaling-load-balancer.html
|
613
621
|
#
|
614
622
|
# @option params [required, String] :auto_scaling_group_name
|
615
623
|
# The name of the Auto Scaling group.
|
@@ -667,10 +675,15 @@ module Aws::AutoScaling
|
|
667
675
|
# This operation is additive and does not detach existing traffic
|
668
676
|
# sources from the Auto Scaling group.
|
669
677
|
#
|
670
|
-
# After the operation completes, use the DescribeTrafficSources API
|
671
|
-
# return details about the state of the attachments between traffic
|
678
|
+
# After the operation completes, use the [DescribeTrafficSources][1] API
|
679
|
+
# to return details about the state of the attachments between traffic
|
672
680
|
# sources and your Auto Scaling group. To detach a traffic source from
|
673
|
-
# the Auto Scaling group, call the DetachTrafficSources API.
|
681
|
+
# the Auto Scaling group, call the [DetachTrafficSources][2] API.
|
682
|
+
#
|
683
|
+
#
|
684
|
+
#
|
685
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeTrafficSources.html
|
686
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DetachTrafficSources.html
|
674
687
|
#
|
675
688
|
# @option params [required, String] :auto_scaling_group_name
|
676
689
|
# The name of the Auto Scaling group.
|
@@ -813,12 +826,13 @@ module Aws::AutoScaling
|
|
813
826
|
# Scaling group after you make configuration changes.
|
814
827
|
#
|
815
828
|
# When you cancel an instance refresh, this does not roll back any
|
816
|
-
# changes that it made. Use the RollbackInstanceRefresh API to roll
|
817
|
-
# instead.
|
829
|
+
# changes that it made. Use the [RollbackInstanceRefresh][2] API to roll
|
830
|
+
# back instead.
|
818
831
|
#
|
819
832
|
#
|
820
833
|
#
|
821
834
|
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/asg-instance-refresh.html
|
835
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_RollbackInstanceRefresh.html
|
822
836
|
#
|
823
837
|
# @option params [required, String] :auto_scaling_group_name
|
824
838
|
# The name of the Auto Scaling group.
|
@@ -886,14 +900,15 @@ module Aws::AutoScaling
|
|
886
900
|
# keep the instance in a wait state.
|
887
901
|
#
|
888
902
|
# 6. **If you finish before the timeout period ends, send a callback by
|
889
|
-
# using the CompleteLifecycleAction API call.**
|
903
|
+
# using the [CompleteLifecycleAction][1] API call.**
|
890
904
|
#
|
891
|
-
# For more information, see [Complete a lifecycle action][
|
905
|
+
# For more information, see [Complete a lifecycle action][2] in the
|
892
906
|
# *Amazon EC2 Auto Scaling User Guide*.
|
893
907
|
#
|
894
908
|
#
|
895
909
|
#
|
896
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/
|
910
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_CompleteLifecycleAction.html
|
911
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/completing-lifecycle-hooks.html
|
897
912
|
#
|
898
913
|
# @option params [required, String] :lifecycle_hook_name
|
899
914
|
# The name of the lifecycle hook.
|
@@ -955,12 +970,12 @@ module Aws::AutoScaling
|
|
955
970
|
# Creates an Auto Scaling group with the specified name and attributes.
|
956
971
|
#
|
957
972
|
# If you exceed your maximum limit of Auto Scaling groups, the call
|
958
|
-
# fails. To query this limit, call the DescribeAccountLimits API.
|
959
|
-
# information about updating this limit, see [Quotas for Amazon EC2
|
960
|
-
# Scaling][
|
973
|
+
# fails. To query this limit, call the [DescribeAccountLimits][1] API.
|
974
|
+
# For information about updating this limit, see [Quotas for Amazon EC2
|
975
|
+
# Auto Scaling][2] in the *Amazon EC2 Auto Scaling User Guide*.
|
961
976
|
#
|
962
977
|
# If you're new to Amazon EC2 Auto Scaling, see the introductory
|
963
|
-
# tutorials in [Get started with Amazon EC2 Auto Scaling][
|
978
|
+
# tutorials in [Get started with Amazon EC2 Auto Scaling][3] in the
|
964
979
|
# *Amazon EC2 Auto Scaling User Guide*.
|
965
980
|
#
|
966
981
|
# Every Auto Scaling group has three size properties (`DesiredCapacity`,
|
@@ -972,8 +987,9 @@ module Aws::AutoScaling
|
|
972
987
|
#
|
973
988
|
#
|
974
989
|
#
|
975
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/
|
976
|
-
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/
|
990
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeAccountLimits.html
|
991
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-quotas.html
|
992
|
+
# [3]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/get-started-with-ec2-auto-scaling.html
|
977
993
|
#
|
978
994
|
# @option params [required, String] :auto_scaling_group_name
|
979
995
|
# The name of the Auto Scaling group. This name must be unique per
|
@@ -1572,11 +1588,11 @@ module Aws::AutoScaling
|
|
1572
1588
|
# Creates a launch configuration.
|
1573
1589
|
#
|
1574
1590
|
# If you exceed your maximum limit of launch configurations, the call
|
1575
|
-
# fails. To query this limit, call the DescribeAccountLimits API.
|
1576
|
-
# information about updating this limit, see [Quotas for Amazon EC2
|
1577
|
-
# Scaling][
|
1591
|
+
# fails. To query this limit, call the [DescribeAccountLimits][1] API.
|
1592
|
+
# For information about updating this limit, see [Quotas for Amazon EC2
|
1593
|
+
# Auto Scaling][2] in the *Amazon EC2 Auto Scaling User Guide*.
|
1578
1594
|
#
|
1579
|
-
# For more information, see [Launch configurations][
|
1595
|
+
# For more information, see [Launch configurations][3] in the *Amazon
|
1580
1596
|
# EC2 Auto Scaling User Guide*.
|
1581
1597
|
#
|
1582
1598
|
# <note markdown="1"> Amazon EC2 Auto Scaling configures instances launched as part of an
|
@@ -1584,16 +1600,17 @@ module Aws::AutoScaling
|
|
1584
1600
|
# configuration. We strongly recommend that you do not use launch
|
1585
1601
|
# configurations. They do not provide full functionality for Amazon EC2
|
1586
1602
|
# Auto Scaling or Amazon EC2. For information about using launch
|
1587
|
-
# templates, see [Launch templates][
|
1603
|
+
# templates, see [Launch templates][4] in the *Amazon EC2 Auto Scaling
|
1588
1604
|
# User Guide*.
|
1589
1605
|
#
|
1590
1606
|
# </note>
|
1591
1607
|
#
|
1592
1608
|
#
|
1593
1609
|
#
|
1594
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/
|
1595
|
-
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/
|
1596
|
-
# [3]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/launch-
|
1610
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeAccountLimits.html
|
1611
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-quotas.html
|
1612
|
+
# [3]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/launch-configurations.html
|
1613
|
+
# [4]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/launch-templates.html
|
1597
1614
|
#
|
1598
1615
|
# @option params [required, String] :launch_configuration_name
|
1599
1616
|
# The name of the launch configuration. This name must be unique per
|
@@ -1963,24 +1980,26 @@ module Aws::AutoScaling
|
|
1963
1980
|
# warm pool.
|
1964
1981
|
#
|
1965
1982
|
# To remove instances from the Auto Scaling group before deleting it,
|
1966
|
-
# call the DetachInstances API with the list of instances and the
|
1967
|
-
# to decrement the desired capacity. This ensures that Amazon EC2
|
1968
|
-
# Scaling does not launch replacement instances.
|
1983
|
+
# call the [DetachInstances][1] API with the list of instances and the
|
1984
|
+
# option to decrement the desired capacity. This ensures that Amazon EC2
|
1985
|
+
# Auto Scaling does not launch replacement instances.
|
1969
1986
|
#
|
1970
1987
|
# To terminate all instances before deleting the Auto Scaling group,
|
1971
|
-
# call the UpdateAutoScalingGroup API and set the minimum size and
|
1988
|
+
# call the [UpdateAutoScalingGroup][2] API and set the minimum size and
|
1972
1989
|
# desired capacity of the Auto Scaling group to zero.
|
1973
1990
|
#
|
1974
1991
|
# If the group has scaling policies, deleting the group deletes the
|
1975
1992
|
# policies, the underlying alarm actions, and any alarm that no longer
|
1976
1993
|
# has an associated action.
|
1977
1994
|
#
|
1978
|
-
# For more information, see [Delete your Auto Scaling infrastructure][
|
1995
|
+
# For more information, see [Delete your Auto Scaling infrastructure][3]
|
1979
1996
|
# in the *Amazon EC2 Auto Scaling User Guide*.
|
1980
1997
|
#
|
1981
1998
|
#
|
1982
1999
|
#
|
1983
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/
|
2000
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DetachInstances.html
|
2001
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_UpdateAutoScalingGroup.html
|
2002
|
+
# [3]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/as-process-shutdown.html
|
1984
2003
|
#
|
1985
2004
|
# @option params [required, String] :auto_scaling_group_name
|
1986
2005
|
# The name of the Auto Scaling group.
|
@@ -2419,7 +2438,11 @@ module Aws::AutoScaling
|
|
2419
2438
|
#
|
2420
2439
|
# This operation also returns information about instances in Auto
|
2421
2440
|
# Scaling groups. To retrieve information about the instances in a warm
|
2422
|
-
# pool, you must call the DescribeWarmPool API.
|
2441
|
+
# pool, you must call the [DescribeWarmPool][1] API.
|
2442
|
+
#
|
2443
|
+
#
|
2444
|
+
#
|
2445
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeWarmPool.html
|
2423
2446
|
#
|
2424
2447
|
# @option params [Array<String>] :auto_scaling_group_names
|
2425
2448
|
# The names of the Auto Scaling groups. By default, you can only specify
|
@@ -3242,8 +3265,8 @@ module Aws::AutoScaling
|
|
3242
3265
|
req.send_request(options)
|
3243
3266
|
end
|
3244
3267
|
|
3245
|
-
# <note markdown="1"> This API operation is superseded by DescribeTrafficSources, which
|
3246
|
-
# describe multiple traffic sources types. We recommend using
|
3268
|
+
# <note markdown="1"> This API operation is superseded by [DescribeTrafficSources][1], which
|
3269
|
+
# can describe multiple traffic sources types. We recommend using
|
3247
3270
|
# `DetachTrafficSources` to simplify how you manage traffic sources.
|
3248
3271
|
# However, we continue to support `DescribeLoadBalancerTargetGroups`.
|
3249
3272
|
# You can use both the original `DescribeLoadBalancerTargetGroups` API
|
@@ -3267,27 +3290,32 @@ module Aws::AutoScaling
|
|
3267
3290
|
# target group doesn't enter the `InService` state.
|
3268
3291
|
#
|
3269
3292
|
# Target groups also have an `InService` state if you attach them in the
|
3270
|
-
# CreateAutoScalingGroup API call. If your target group state is
|
3293
|
+
# [CreateAutoScalingGroup][2] API call. If your target group state is
|
3271
3294
|
# `InService`, but it is not working properly, check the scaling
|
3272
|
-
# activities by calling DescribeScalingActivities and take any
|
3295
|
+
# activities by calling [DescribeScalingActivities][3] and take any
|
3273
3296
|
# corrective actions necessary.
|
3274
3297
|
#
|
3275
3298
|
# For help with failed health checks, see [Troubleshooting Amazon EC2
|
3276
|
-
# Auto Scaling: Health checks][
|
3299
|
+
# Auto Scaling: Health checks][4] in the *Amazon EC2 Auto Scaling User
|
3277
3300
|
# Guide*. For more information, see [Use Elastic Load Balancing to
|
3278
|
-
# distribute traffic across the instances in your Auto Scaling group][
|
3301
|
+
# distribute traffic across the instances in your Auto Scaling group][5]
|
3279
3302
|
# in the *Amazon EC2 Auto Scaling User Guide*.
|
3280
3303
|
#
|
3281
3304
|
# <note markdown="1"> You can use this operation to describe target groups that were
|
3282
|
-
# attached by using AttachLoadBalancerTargetGroups, but not for
|
3283
|
-
# groups that were attached by using AttachTrafficSources.
|
3305
|
+
# attached by using [AttachLoadBalancerTargetGroups][6], but not for
|
3306
|
+
# target groups that were attached by using [AttachTrafficSources][7].
|
3284
3307
|
#
|
3285
3308
|
# </note>
|
3286
3309
|
#
|
3287
3310
|
#
|
3288
3311
|
#
|
3289
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/
|
3290
|
-
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/
|
3312
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeTrafficSources.html
|
3313
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_CreateAutoScalingGroup.html
|
3314
|
+
# [3]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeScalingActivities.html
|
3315
|
+
# [4]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/ts-as-healthchecks.html
|
3316
|
+
# [5]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/autoscaling-load-balancer.html
|
3317
|
+
# [6]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_AttachLoadBalancerTargetGroups.html
|
3318
|
+
# [7]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_AttachTrafficSources.html
|
3291
3319
|
#
|
3292
3320
|
# @option params [required, String] :auto_scaling_group_name
|
3293
3321
|
# The name of the Auto Scaling group.
|
@@ -3350,8 +3378,8 @@ module Aws::AutoScaling
|
|
3350
3378
|
req.send_request(options)
|
3351
3379
|
end
|
3352
3380
|
|
3353
|
-
# <note markdown="1"> This API operation is superseded by DescribeTrafficSources, which
|
3354
|
-
# describe multiple traffic sources types. We recommend using
|
3381
|
+
# <note markdown="1"> This API operation is superseded by [DescribeTrafficSources][1], which
|
3382
|
+
# can describe multiple traffic sources types. We recommend using
|
3355
3383
|
# `DescribeTrafficSources` to simplify how you manage traffic sources.
|
3356
3384
|
# However, we continue to support `DescribeLoadBalancers`. You can use
|
3357
3385
|
# both the original `DescribeLoadBalancers` API operation and
|
@@ -3364,7 +3392,7 @@ module Aws::AutoScaling
|
|
3364
3392
|
#
|
3365
3393
|
# This operation describes only Classic Load Balancers. If you have
|
3366
3394
|
# Application Load Balancers, Network Load Balancers, or Gateway Load
|
3367
|
-
# Balancers, use the DescribeLoadBalancerTargetGroups API instead.
|
3395
|
+
# Balancers, use the [DescribeLoadBalancerTargetGroups][2] API instead.
|
3368
3396
|
#
|
3369
3397
|
# To determine the attachment status of the load balancer, use the
|
3370
3398
|
# `State` element in the response. When you attach a load balancer to an
|
@@ -3379,21 +3407,25 @@ module Aws::AutoScaling
|
|
3379
3407
|
# load balancer doesn't enter the `InService` state.
|
3380
3408
|
#
|
3381
3409
|
# Load balancers also have an `InService` state if you attach them in
|
3382
|
-
# the CreateAutoScalingGroup API call. If your load balancer state
|
3383
|
-
# `InService`, but it is not working properly, check the scaling
|
3384
|
-
# activities by calling DescribeScalingActivities and take any
|
3410
|
+
# the [CreateAutoScalingGroup][3] API call. If your load balancer state
|
3411
|
+
# is `InService`, but it is not working properly, check the scaling
|
3412
|
+
# activities by calling [DescribeScalingActivities][4] and take any
|
3385
3413
|
# corrective actions necessary.
|
3386
3414
|
#
|
3387
3415
|
# For help with failed health checks, see [Troubleshooting Amazon EC2
|
3388
|
-
# Auto Scaling: Health checks][
|
3416
|
+
# Auto Scaling: Health checks][5] in the *Amazon EC2 Auto Scaling User
|
3389
3417
|
# Guide*. For more information, see [Use Elastic Load Balancing to
|
3390
|
-
# distribute traffic across the instances in your Auto Scaling group][
|
3418
|
+
# distribute traffic across the instances in your Auto Scaling group][6]
|
3391
3419
|
# in the *Amazon EC2 Auto Scaling User Guide*.
|
3392
3420
|
#
|
3393
3421
|
#
|
3394
3422
|
#
|
3395
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/
|
3396
|
-
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/
|
3423
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeTrafficSources.html
|
3424
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeLoadBalancerTargetGroups.html
|
3425
|
+
# [3]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_CreateAutoScalingGroup.html
|
3426
|
+
# [4]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeScalingActivities.html
|
3427
|
+
# [5]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/ts-as-healthchecks.html
|
3428
|
+
# [6]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/autoscaling-load-balancer.html
|
3397
3429
|
#
|
3398
3430
|
# @option params [required, String] :auto_scaling_group_name
|
3399
3431
|
# The name of the Auto Scaling group.
|
@@ -3892,8 +3924,13 @@ module Aws::AutoScaling
|
|
3892
3924
|
req.send_request(options)
|
3893
3925
|
end
|
3894
3926
|
|
3895
|
-
# Describes the scaling process types for use with the
|
3896
|
-
# and SuspendProcesses APIs.
|
3927
|
+
# Describes the scaling process types for use with the
|
3928
|
+
# [ResumeProcesses][1] and [SuspendProcesses][2] APIs.
|
3929
|
+
#
|
3930
|
+
#
|
3931
|
+
#
|
3932
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_ResumeProcesses.html
|
3933
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_SuspendProcesses.html
|
3897
3934
|
#
|
3898
3935
|
# @return [Types::ProcessesType] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3899
3936
|
#
|
@@ -3955,7 +3992,11 @@ module Aws::AutoScaling
|
|
3955
3992
|
# have not reached their end time.
|
3956
3993
|
#
|
3957
3994
|
# To describe the scaling activities for scheduled actions that have
|
3958
|
-
# already run, call the DescribeScalingActivities API.
|
3995
|
+
# already run, call the [DescribeScalingActivities][1] API.
|
3996
|
+
#
|
3997
|
+
#
|
3998
|
+
#
|
3999
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeScalingActivities.html
|
3959
4000
|
#
|
3960
4001
|
# @option params [String] :auto_scaling_group_name
|
3961
4002
|
# The name of the Auto Scaling group.
|
@@ -4455,8 +4496,8 @@ module Aws::AutoScaling
|
|
4455
4496
|
req.send_request(options)
|
4456
4497
|
end
|
4457
4498
|
|
4458
|
-
# <note markdown="1"> This API operation is superseded by DetachTrafficSources, which
|
4459
|
-
# detach multiple traffic sources types. We recommend using
|
4499
|
+
# <note markdown="1"> This API operation is superseded by [DetachTrafficSources][1], which
|
4500
|
+
# can detach multiple traffic sources types. We recommend using
|
4460
4501
|
# `DetachTrafficSources` to simplify how you manage traffic sources.
|
4461
4502
|
# However, we continue to support `DetachLoadBalancerTargetGroups`. You
|
4462
4503
|
# can use both the original `DetachLoadBalancerTargetGroups` API
|
@@ -4470,15 +4511,22 @@ module Aws::AutoScaling
|
|
4470
4511
|
# When you detach a target group, it enters the `Removing` state while
|
4471
4512
|
# deregistering the instances in the group. When all instances are
|
4472
4513
|
# deregistered, then you can no longer describe the target group using
|
4473
|
-
# the DescribeLoadBalancerTargetGroups API call. The instances
|
4474
|
-
# running.
|
4514
|
+
# the [DescribeLoadBalancerTargetGroups][2] API call. The instances
|
4515
|
+
# remain running.
|
4475
4516
|
#
|
4476
4517
|
# <note markdown="1"> You can use this operation to detach target groups that were attached
|
4477
|
-
# by using AttachLoadBalancerTargetGroups, but not for target
|
4478
|
-
# that were attached by using AttachTrafficSources.
|
4518
|
+
# by using [AttachLoadBalancerTargetGroups][3], but not for target
|
4519
|
+
# groups that were attached by using [AttachTrafficSources][4].
|
4479
4520
|
#
|
4480
4521
|
# </note>
|
4481
4522
|
#
|
4523
|
+
#
|
4524
|
+
#
|
4525
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeTrafficSources.html
|
4526
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeLoadBalancerTargetGroups.html
|
4527
|
+
# [3]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_AttachLoadBalancerTargetGroups.html
|
4528
|
+
# [4]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_AttachTrafficSources.html
|
4529
|
+
#
|
4482
4530
|
# @option params [required, String] :auto_scaling_group_name
|
4483
4531
|
# The name of the Auto Scaling group.
|
4484
4532
|
#
|
@@ -4516,8 +4564,8 @@ module Aws::AutoScaling
|
|
4516
4564
|
req.send_request(options)
|
4517
4565
|
end
|
4518
4566
|
|
4519
|
-
# <note markdown="1"> This API operation is superseded by DetachTrafficSources, which
|
4520
|
-
# detach multiple traffic sources types. We recommend using
|
4567
|
+
# <note markdown="1"> This API operation is superseded by [DetachTrafficSources][1], which
|
4568
|
+
# can detach multiple traffic sources types. We recommend using
|
4521
4569
|
# `DetachTrafficSources` to simplify how you manage traffic sources.
|
4522
4570
|
# However, we continue to support `DetachLoadBalancers`. You can use
|
4523
4571
|
# both the original `DetachLoadBalancers` API operation and
|
@@ -4530,12 +4578,18 @@ module Aws::AutoScaling
|
|
4530
4578
|
#
|
4531
4579
|
# This operation detaches only Classic Load Balancers. If you have
|
4532
4580
|
# Application Load Balancers, Network Load Balancers, or Gateway Load
|
4533
|
-
# Balancers, use the DetachLoadBalancerTargetGroups API instead.
|
4581
|
+
# Balancers, use the [DetachLoadBalancerTargetGroups][2] API instead.
|
4534
4582
|
#
|
4535
4583
|
# When you detach a load balancer, it enters the `Removing` state while
|
4536
4584
|
# deregistering the instances in the group. When all instances are
|
4537
4585
|
# deregistered, then you can no longer describe the load balancer using
|
4538
|
-
# the DescribeLoadBalancers API call. The instances remain running.
|
4586
|
+
# the [DescribeLoadBalancers][3] API call. The instances remain running.
|
4587
|
+
#
|
4588
|
+
#
|
4589
|
+
#
|
4590
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DetachTrafficSources.html
|
4591
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DetachLoadBalancerTargetGroups.html
|
4592
|
+
# [3]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeLoadBalancers.html
|
4539
4593
|
#
|
4540
4594
|
# @option params [required, String] :auto_scaling_group_name
|
4541
4595
|
# The name of the Auto Scaling group.
|
@@ -4580,7 +4634,12 @@ module Aws::AutoScaling
|
|
4580
4634
|
# When you detach a traffic source, it enters the `Removing` state while
|
4581
4635
|
# deregistering the instances in the group. When all instances are
|
4582
4636
|
# deregistered, then you can no longer describe the traffic source using
|
4583
|
-
# the DescribeTrafficSources API call. The instances continue to
|
4637
|
+
# the [DescribeTrafficSources][1] API call. The instances continue to
|
4638
|
+
# run.
|
4639
|
+
#
|
4640
|
+
#
|
4641
|
+
#
|
4642
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeTrafficSources.html
|
4584
4643
|
#
|
4585
4644
|
# @option params [required, String] :auto_scaling_group_name
|
4586
4645
|
# The name of the Auto Scaling group.
|
@@ -5220,25 +5279,29 @@ module Aws::AutoScaling
|
|
5220
5279
|
#
|
5221
5280
|
# 5. If you need more time, record the lifecycle action heartbeat to
|
5222
5281
|
# keep the instance in a wait state using the
|
5223
|
-
# RecordLifecycleActionHeartbeat API call.
|
5282
|
+
# [RecordLifecycleActionHeartbeat][1] API call.
|
5224
5283
|
#
|
5225
5284
|
# 6. If you finish before the timeout period ends, send a callback by
|
5226
|
-
# using the CompleteLifecycleAction API call.
|
5285
|
+
# using the [CompleteLifecycleAction][2] API call.
|
5227
5286
|
#
|
5228
|
-
# For more information, see [Amazon EC2 Auto Scaling lifecycle hooks][
|
5287
|
+
# For more information, see [Amazon EC2 Auto Scaling lifecycle hooks][3]
|
5229
5288
|
# in the *Amazon EC2 Auto Scaling User Guide*.
|
5230
5289
|
#
|
5231
5290
|
# If you exceed your maximum limit of lifecycle hooks, which by default
|
5232
5291
|
# is 50 per Auto Scaling group, the call fails.
|
5233
5292
|
#
|
5234
5293
|
# You can view the lifecycle hooks for an Auto Scaling group using the
|
5235
|
-
# DescribeLifecycleHooks API call. If you are no longer using a
|
5236
|
-
# lifecycle hook, you can delete it by calling the
|
5237
|
-
# API.
|
5294
|
+
# [DescribeLifecycleHooks][4] API call. If you are no longer using a
|
5295
|
+
# lifecycle hook, you can delete it by calling the
|
5296
|
+
# [DeleteLifecycleHook][5] API.
|
5238
5297
|
#
|
5239
5298
|
#
|
5240
5299
|
#
|
5241
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/
|
5300
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_RecordLifecycleActionHeartbeat.html
|
5301
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_CompleteLifecycleAction.html
|
5302
|
+
# [3]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/lifecycle-hooks.html
|
5303
|
+
# [4]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeLifecycleHooks.html
|
5304
|
+
# [5]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DeleteLifecycleHook.html
|
5242
5305
|
#
|
5243
5306
|
# @option params [required, String] :lifecycle_hook_name
|
5244
5307
|
# The name of the lifecycle hook.
|
@@ -5362,7 +5425,11 @@ module Aws::AutoScaling
|
|
5362
5425
|
# @option params [required, Array<String>] :notification_types
|
5363
5426
|
# The type of event that causes the notification to be sent. To query
|
5364
5427
|
# the notification types supported by Amazon EC2 Auto Scaling, call the
|
5365
|
-
# DescribeAutoScalingNotificationTypes API.
|
5428
|
+
# [DescribeAutoScalingNotificationTypes][1] API.
|
5429
|
+
#
|
5430
|
+
#
|
5431
|
+
#
|
5432
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeAutoScalingNotificationTypes.html
|
5366
5433
|
#
|
5367
5434
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
5368
5435
|
#
|
@@ -5410,14 +5477,16 @@ module Aws::AutoScaling
|
|
5410
5477
|
# Scaling User Guide*.
|
5411
5478
|
#
|
5412
5479
|
# You can view the scaling policies for an Auto Scaling group using the
|
5413
|
-
# DescribePolicies API call. If you are no longer using a scaling
|
5414
|
-
# policy, you can delete it by calling the DeletePolicy API.
|
5480
|
+
# [DescribePolicies][4] API call. If you are no longer using a scaling
|
5481
|
+
# policy, you can delete it by calling the [DeletePolicy][5] API.
|
5415
5482
|
#
|
5416
5483
|
#
|
5417
5484
|
#
|
5418
5485
|
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/as-scaling-target-tracking.html
|
5419
5486
|
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/as-scaling-simple-step.html
|
5420
5487
|
# [3]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-predictive-scaling.html
|
5488
|
+
# [4]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribePolicies.html
|
5489
|
+
# [5]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DeletePolicy.html
|
5421
5490
|
#
|
5422
5491
|
# @option params [required, String] :auto_scaling_group_name
|
5423
5492
|
# The name of the Auto Scaling group.
|
@@ -5806,9 +5875,9 @@ module Aws::AutoScaling
|
|
5806
5875
|
# Auto Scaling User Guide*.
|
5807
5876
|
#
|
5808
5877
|
# You can view the scheduled actions for an Auto Scaling group using the
|
5809
|
-
# DescribeScheduledActions API call. If you are no longer using a
|
5878
|
+
# [DescribeScheduledActions][2] API call. If you are no longer using a
|
5810
5879
|
# scheduled action, you can delete it by calling the
|
5811
|
-
# DeleteScheduledAction API.
|
5880
|
+
# [DeleteScheduledAction][3] API.
|
5812
5881
|
#
|
5813
5882
|
# If you try to schedule your action in the past, Amazon EC2 Auto
|
5814
5883
|
# Scaling returns an error message.
|
@@ -5816,6 +5885,8 @@ module Aws::AutoScaling
|
|
5816
5885
|
#
|
5817
5886
|
#
|
5818
5887
|
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-scheduled-scaling.html
|
5888
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeScheduledActions.html
|
5889
|
+
# [3]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DeleteScheduledAction.html
|
5819
5890
|
#
|
5820
5891
|
# @option params [required, String] :auto_scaling_group_name
|
5821
5892
|
# The name of the Auto Scaling group.
|
@@ -5935,16 +6006,18 @@ module Aws::AutoScaling
|
|
5935
6006
|
# This operation must be called from the Region in which the Auto
|
5936
6007
|
# Scaling group was created.
|
5937
6008
|
#
|
5938
|
-
# You can view the instances in the warm pool using the
|
5939
|
-
# API call. If you are no longer using a warm
|
5940
|
-
# calling the DeleteWarmPool API.
|
6009
|
+
# You can view the instances in the warm pool using the
|
6010
|
+
# [DescribeWarmPool][1] API call. If you are no longer using a warm
|
6011
|
+
# pool, you can delete it by calling the [DeleteWarmPool][2] API.
|
5941
6012
|
#
|
5942
|
-
# For more information, see [Warm pools for Amazon EC2 Auto Scaling][
|
6013
|
+
# For more information, see [Warm pools for Amazon EC2 Auto Scaling][3]
|
5943
6014
|
# in the *Amazon EC2 Auto Scaling User Guide*.
|
5944
6015
|
#
|
5945
6016
|
#
|
5946
6017
|
#
|
5947
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/
|
6018
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeWarmPool.html
|
6019
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DeleteWarmPool.html
|
6020
|
+
# [3]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/ec2-auto-scaling-warm-pools.html
|
5948
6021
|
#
|
5949
6022
|
# @option params [required, String] :auto_scaling_group_name
|
5950
6023
|
# The name of the Auto Scaling group.
|
@@ -6026,7 +6099,7 @@ module Aws::AutoScaling
|
|
6026
6099
|
|
6027
6100
|
# Records a heartbeat for the lifecycle action associated with the
|
6028
6101
|
# specified token or instance. This extends the timeout by the length of
|
6029
|
-
# time defined using the PutLifecycleHook API call.
|
6102
|
+
# time defined using the [PutLifecycleHook][1] API call.
|
6030
6103
|
#
|
6031
6104
|
# This step is a part of the procedure for adding a lifecycle hook to an
|
6032
6105
|
# Auto Scaling group:
|
@@ -6051,14 +6124,16 @@ module Aws::AutoScaling
|
|
6051
6124
|
# keep the instance in a wait state.**
|
6052
6125
|
#
|
6053
6126
|
# 6. If you finish before the timeout period ends, send a callback by
|
6054
|
-
# using the CompleteLifecycleAction API call.
|
6127
|
+
# using the [CompleteLifecycleAction][2] API call.
|
6055
6128
|
#
|
6056
|
-
# For more information, see [Amazon EC2 Auto Scaling lifecycle hooks][
|
6129
|
+
# For more information, see [Amazon EC2 Auto Scaling lifecycle hooks][3]
|
6057
6130
|
# in the *Amazon EC2 Auto Scaling User Guide*.
|
6058
6131
|
#
|
6059
6132
|
#
|
6060
6133
|
#
|
6061
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/
|
6134
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_PutLifecycleHook.html
|
6135
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_CompleteLifecycleAction.html
|
6136
|
+
# [3]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/lifecycle-hooks.html
|
6062
6137
|
#
|
6063
6138
|
# @option params [required, String] :lifecycle_hook_name
|
6064
6139
|
# The name of the lifecycle hook.
|
@@ -6196,12 +6271,13 @@ module Aws::AutoScaling
|
|
6196
6271
|
#
|
6197
6272
|
# When you receive a successful response from this operation, Amazon EC2
|
6198
6273
|
# Auto Scaling immediately begins replacing instances. You can check the
|
6199
|
-
# status of this operation through the DescribeInstanceRefreshes
|
6200
|
-
# operation.
|
6274
|
+
# status of this operation through the [DescribeInstanceRefreshes][2]
|
6275
|
+
# API operation.
|
6201
6276
|
#
|
6202
6277
|
#
|
6203
6278
|
#
|
6204
6279
|
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/asg-instance-refresh.html
|
6280
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeInstanceRefreshes.html
|
6205
6281
|
#
|
6206
6282
|
# @option params [required, String] :auto_scaling_group_name
|
6207
6283
|
# The name of the Auto Scaling group.
|
@@ -6428,28 +6504,32 @@ module Aws::AutoScaling
|
|
6428
6504
|
#
|
6429
6505
|
# If successful, the request's response contains a unique ID that you
|
6430
6506
|
# can use to track the progress of the instance refresh. To query its
|
6431
|
-
# status, call the DescribeInstanceRefreshes API. To describe the
|
6507
|
+
# status, call the [DescribeInstanceRefreshes][2] API. To describe the
|
6432
6508
|
# instance refreshes that have already run, call the
|
6433
|
-
# DescribeInstanceRefreshes API. To cancel an instance refresh that
|
6434
|
-
# in progress, use the CancelInstanceRefresh API.
|
6509
|
+
# [DescribeInstanceRefreshes][2] API. To cancel an instance refresh that
|
6510
|
+
# is in progress, use the [CancelInstanceRefresh][3] API.
|
6435
6511
|
#
|
6436
6512
|
# An instance refresh might fail for several reasons, such as EC2 launch
|
6437
6513
|
# failures, misconfigured health checks, or not ignoring or allowing the
|
6438
6514
|
# termination of instances that are in `Standby` state or protected from
|
6439
6515
|
# scale in. You can monitor for failed EC2 launches using the scaling
|
6440
6516
|
# activities. To find the scaling activities, call the
|
6441
|
-
# DescribeScalingActivities API.
|
6517
|
+
# [DescribeScalingActivities][4] API.
|
6442
6518
|
#
|
6443
6519
|
# If you enable auto rollback, your Auto Scaling group will be rolled
|
6444
6520
|
# back automatically when the instance refresh fails. You can enable
|
6445
6521
|
# this feature before starting an instance refresh by specifying the
|
6446
6522
|
# `AutoRollback` property in the instance refresh preferences.
|
6447
6523
|
# Otherwise, to roll back an instance refresh before it finishes, use
|
6448
|
-
# the RollbackInstanceRefresh API.
|
6524
|
+
# the [RollbackInstanceRefresh][5] API.
|
6449
6525
|
#
|
6450
6526
|
#
|
6451
6527
|
#
|
6452
6528
|
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/asg-instance-refresh.html
|
6529
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeInstanceRefreshes.html
|
6530
|
+
# [3]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_CancelInstanceRefresh.html
|
6531
|
+
# [4]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeScalingActivities.html
|
6532
|
+
# [5]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_RollbackInstanceRefresh.html
|
6453
6533
|
#
|
6454
6534
|
# @option params [required, String] :auto_scaling_group_name
|
6455
6535
|
# The name of the Auto Scaling group.
|
@@ -6657,12 +6737,13 @@ module Aws::AutoScaling
|
|
6657
6737
|
# information, see [Suspend and resume Amazon EC2 Auto Scaling
|
6658
6738
|
# processes][1] in the *Amazon EC2 Auto Scaling User Guide*.
|
6659
6739
|
#
|
6660
|
-
# To resume processes that have been suspended, call the
|
6661
|
-
# API.
|
6740
|
+
# To resume processes that have been suspended, call the
|
6741
|
+
# [ResumeProcesses][2] API.
|
6662
6742
|
#
|
6663
6743
|
#
|
6664
6744
|
#
|
6665
6745
|
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/as-suspend-resume-processes.html
|
6746
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_ResumeProcesses.html
|
6666
6747
|
#
|
6667
6748
|
# @option params [required, String] :auto_scaling_group_name
|
6668
6749
|
# The name of the Auto Scaling group.
|
@@ -6841,10 +6922,16 @@ module Aws::AutoScaling
|
|
6841
6922
|
# to the new `MaxSize` value.
|
6842
6923
|
#
|
6843
6924
|
# To see which properties have been set, call the
|
6844
|
-
# DescribeAutoScalingGroups API. To view the scaling policies for
|
6845
|
-
# Auto Scaling group, call the DescribePolicies API. If the
|
6846
|
-
# scaling policies, you can update them by calling the
|
6847
|
-
# API.
|
6925
|
+
# [DescribeAutoScalingGroups][1] API. To view the scaling policies for
|
6926
|
+
# an Auto Scaling group, call the [DescribePolicies][2] API. If the
|
6927
|
+
# group has scaling policies, you can update them by calling the
|
6928
|
+
# [PutScalingPolicy][3] API.
|
6929
|
+
#
|
6930
|
+
#
|
6931
|
+
#
|
6932
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeAutoScalingGroups.html
|
6933
|
+
# [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribePolicies.html
|
6934
|
+
# [3]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_PutScalingPolicy.html
|
6848
6935
|
#
|
6849
6936
|
# @option params [required, String] :auto_scaling_group_name
|
6850
6937
|
# The name of the Auto Scaling group.
|
@@ -6934,8 +7021,10 @@ module Aws::AutoScaling
|
|
6934
7021
|
#
|
6935
7022
|
# @option params [String] :placement_group
|
6936
7023
|
# The name of an existing placement group into which to launch your
|
6937
|
-
# instances.
|
6938
|
-
#
|
7024
|
+
# instances. To remove the placement group setting, pass an empty string
|
7025
|
+
# for `placement-group`. For more information about placement groups,
|
7026
|
+
# see [Placement groups][1] in the *Amazon EC2 User Guide for Linux
|
7027
|
+
# Instances*.
|
6939
7028
|
#
|
6940
7029
|
# <note markdown="1"> A *cluster* placement group is a logical grouping of instances within
|
6941
7030
|
# a single Availability Zone. You cannot specify multiple Availability
|
@@ -7179,7 +7268,7 @@ module Aws::AutoScaling
|
|
7179
7268
|
# availability_zones: ["XmlStringMaxLen255"],
|
7180
7269
|
# health_check_type: "XmlStringMaxLen32",
|
7181
7270
|
# health_check_grace_period: 1,
|
7182
|
-
# placement_group: "
|
7271
|
+
# placement_group: "UpdatePlacementGroupParam",
|
7183
7272
|
# vpc_zone_identifier: "XmlStringMaxLen5000",
|
7184
7273
|
# termination_policies: ["XmlStringMaxLen1600"],
|
7185
7274
|
# new_instances_protected_from_scale_in: false,
|
@@ -7222,7 +7311,7 @@ module Aws::AutoScaling
|
|
7222
7311
|
tracer: tracer
|
7223
7312
|
)
|
7224
7313
|
context[:gem_name] = 'aws-sdk-autoscaling'
|
7225
|
-
context[:gem_version] = '1.
|
7314
|
+
context[:gem_version] = '1.123.0'
|
7226
7315
|
Seahorse::Client::Request.new(handlers, context)
|
7227
7316
|
end
|
7228
7317
|
|