aws-sdk-autoscaling 1.122.0 → 1.123.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 57e7096d60d38716de04bc30dc7b7173348d3f8803f3d1600283a0b144fe8974
4
- data.tar.gz: 640d69b411d11838b366147978f1cd1c7687c8742eb38092b70f2ec0dfedf93a
3
+ metadata.gz: 021e27982d2cf20a329d3f036f4f6113c9e2551979911e49973488b7c31fe989
4
+ data.tar.gz: ed9a65c6cf930c9b27ac0bb92683199f50b6d51cf85ea3769fdf0cd1bf04ffab
5
5
  SHA512:
6
- metadata.gz: d6f4d6c22b61b2d1a8279cadca16656a8677a3ddb9e6c0cf59b0c77e71bc544fbcc36a8e4bc0710050dc3f11f7ecfbad2ccd5106b94dbcf36fbf3a74a47eac91
7
- data.tar.gz: e53a5668b52ea8e983a19445402b0ac734f5cf4318dd20f4d4891733183231873eb3eac167a5b2f31d266272312767d2741059465883a83a06e13a22d8b79a8c
6
+ metadata.gz: 61ffe80b0912626dc30573d2933e8f59f0d2b947ca033ef422facd346ec27c2efe00f3005c3aba146850683156a56afbb23db072c16f76c254ae7a0644c3c418
7
+ data.tar.gz: 9da1c8aa220d2f5dc5ce689be4c31a00d73e96e696e7a7274cf1a3181cd6493eac7310baef9d460cf6b92a74cbaa2a9b97cddcdb092a97bcf05bd3f8cb85ecbb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.123.0 (2024-10-21)
5
+ ------------------
6
+
7
+ * Feature - Adds support for removing the PlacementGroup setting on an Auto Scaling Group through the UpdateAutoScalingGroup API.
8
+
4
9
  1.122.0 (2024-10-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.122.0
1
+ 1.123.0
@@ -152,8 +152,12 @@ module Aws::AutoScaling
152
152
  data[:enabled_metrics]
153
153
  end
154
154
 
155
- # The current state of the group when the DeleteAutoScalingGroup
155
+ # The current state of the group when the [DeleteAutoScalingGroup][1]
156
156
  # operation is in progress.
157
+ #
158
+ #
159
+ #
160
+ # [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DeleteAutoScalingGroup.html
157
161
  # @return [String]
158
162
  def status
159
163
  data[:status]
@@ -1255,7 +1259,7 @@ module Aws::AutoScaling
1255
1259
  # availability_zones: ["XmlStringMaxLen255"],
1256
1260
  # health_check_type: "XmlStringMaxLen32",
1257
1261
  # health_check_grace_period: 1,
1258
- # placement_group: "XmlStringMaxLen255",
1262
+ # placement_group: "UpdatePlacementGroupParam",
1259
1263
  # vpc_zone_identifier: "XmlStringMaxLen5000",
1260
1264
  # termination_policies: ["XmlStringMaxLen1600"],
1261
1265
  # new_instances_protected_from_scale_in: false,
@@ -1346,8 +1350,10 @@ module Aws::AutoScaling
1346
1350
  # [1]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/health-check-grace-period.html
1347
1351
  # @option options [String] :placement_group
1348
1352
  # The name of an existing placement group into which to launch your
1349
- # instances. For more information, see [Placement groups][1] in the
1350
- # *Amazon EC2 User Guide for Linux Instances*.
1353
+ # instances. To remove the placement group setting, pass an empty string
1354
+ # for `placement-group`. For more information about placement groups,
1355
+ # see [Placement groups][1] in the *Amazon EC2 User Guide for Linux
1356
+ # Instances*.
1351
1357
  #
1352
1358
  # <note markdown="1"> A *cluster* placement group is a logical grouping of instances within
1353
1359
  # a single Availability Zone. You cannot specify multiple Availability
@@ -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 can
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 from
531
- # the Auto Scaling group, call the DetachLoadBalancerTargetGroups API.
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][1] in the
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/userguide/autoscaling-load-balancer.html
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 AttachTrafficSources, which can
587
- # attach multiple traffic sources types. We recommend using
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 Auto
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][1] in the
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/userguide/autoscaling-load-balancer.html
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 to
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 back
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][1] in the
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/userguide/completing-lifecycle-hooks.html
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. For
959
- # information about updating this limit, see [Quotas for Amazon EC2 Auto
960
- # Scaling][1] in the *Amazon EC2 Auto Scaling User Guide*.
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][2] in the
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/userguide/ec2-auto-scaling-quotas.html
976
- # [2]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/get-started-with-ec2-auto-scaling.html
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. For
1576
- # information about updating this limit, see [Quotas for Amazon EC2 Auto
1577
- # Scaling][1] in the *Amazon EC2 Auto Scaling User Guide*.
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][2] in the *Amazon
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][3] in the *Amazon EC2 Auto Scaling
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/userguide/ec2-auto-scaling-quotas.html
1595
- # [2]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/launch-configurations.html
1596
- # [3]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/launch-templates.html
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 option
1967
- # to decrement the desired capacity. This ensures that Amazon EC2 Auto
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][1]
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/userguide/as-process-shutdown.html
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 can
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][1] in the *Amazon EC2 Auto Scaling User
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][2]
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 target
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/userguide/ts-as-healthchecks.html
3290
- # [2]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/autoscaling-load-balancer.html
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 can
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 is
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][1] in the *Amazon EC2 Auto Scaling User
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][2]
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/userguide/ts-as-healthchecks.html
3396
- # [2]: https://docs.aws.amazon.com/autoscaling/ec2/userguide/autoscaling-load-balancer.html
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 ResumeProcesses
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 can
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 remain
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 groups
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 can
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 run.
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][1]
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 DeleteLifecycleHook
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/userguide/lifecycle-hooks.html
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 DescribeWarmPool
5939
- # API call. If you are no longer using a warm pool, you can delete it by
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][1]
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/userguide/ec2-auto-scaling-warm-pools.html
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][1]
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/userguide/lifecycle-hooks.html
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 API
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 is
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 ResumeProcesses
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 an
6845
- # Auto Scaling group, call the DescribePolicies API. If the group has
6846
- # scaling policies, you can update them by calling the PutScalingPolicy
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. For more information, see [Placement groups][1] in the
6938
- # *Amazon EC2 User Guide for Linux Instances*.
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: "XmlStringMaxLen255",
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.122.0'
7314
+ context[:gem_version] = '1.123.0'
7226
7315
  Seahorse::Client::Request.new(handlers, context)
7227
7316
  end
7228
7317
 
@@ -375,6 +375,7 @@ module Aws::AutoScaling
375
375
  TrafficSourceStates = Shapes::ListShape.new(name: 'TrafficSourceStates')
376
376
  TrafficSources = Shapes::ListShape.new(name: 'TrafficSources')
377
377
  UpdateAutoScalingGroupType = Shapes::StructureShape.new(name: 'UpdateAutoScalingGroupType')
378
+ UpdatePlacementGroupParam = Shapes::StringShape.new(name: 'UpdatePlacementGroupParam')
378
379
  VCpuCountRequest = Shapes::StructureShape.new(name: 'VCpuCountRequest')
379
380
  Values = Shapes::ListShape.new(name: 'Values')
380
381
  WarmPoolConfiguration = Shapes::StructureShape.new(name: 'WarmPoolConfiguration')
@@ -1539,7 +1540,7 @@ module Aws::AutoScaling
1539
1540
  UpdateAutoScalingGroupType.add_member(:availability_zones, Shapes::ShapeRef.new(shape: AvailabilityZones, location_name: "AvailabilityZones"))
1540
1541
  UpdateAutoScalingGroupType.add_member(:health_check_type, Shapes::ShapeRef.new(shape: XmlStringMaxLen32, location_name: "HealthCheckType"))
1541
1542
  UpdateAutoScalingGroupType.add_member(:health_check_grace_period, Shapes::ShapeRef.new(shape: HealthCheckGracePeriod, location_name: "HealthCheckGracePeriod"))
1542
- UpdateAutoScalingGroupType.add_member(:placement_group, Shapes::ShapeRef.new(shape: XmlStringMaxLen255, location_name: "PlacementGroup"))
1543
+ UpdateAutoScalingGroupType.add_member(:placement_group, Shapes::ShapeRef.new(shape: UpdatePlacementGroupParam, location_name: "PlacementGroup"))
1543
1544
  UpdateAutoScalingGroupType.add_member(:vpc_zone_identifier, Shapes::ShapeRef.new(shape: XmlStringMaxLen5000, location_name: "VPCZoneIdentifier"))
1544
1545
  UpdateAutoScalingGroupType.add_member(:termination_policies, Shapes::ShapeRef.new(shape: TerminationPolicies, location_name: "TerminationPolicies"))
1545
1546
  UpdateAutoScalingGroupType.add_member(:new_instances_protected_from_scale_in, Shapes::ShapeRef.new(shape: InstanceProtected, location_name: "NewInstancesProtectedFromScaleIn"))
@@ -11,7 +11,11 @@ module Aws::AutoScaling
11
11
  module Types
12
12
 
13
13
  # Specifies the minimum and maximum for the `AcceleratorCount` object
14
- # when you specify InstanceRequirements for an Auto Scaling group.
14
+ # when you specify [InstanceRequirements][1] for an Auto Scaling group.
15
+ #
16
+ #
17
+ #
18
+ # [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html
15
19
  #
16
20
  # @!attribute [rw] min
17
21
  # The minimum value.
@@ -31,9 +35,13 @@ module Aws::AutoScaling
31
35
  end
32
36
 
33
37
  # Specifies the minimum and maximum for the `AcceleratorTotalMemoryMiB`
34
- # object when you specify InstanceRequirements for an Auto Scaling
38
+ # object when you specify [InstanceRequirements][1] for an Auto Scaling
35
39
  # group.
36
40
  #
41
+ #
42
+ #
43
+ # [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html
44
+ #
37
45
  # @!attribute [rw] min
38
46
  # The memory minimum in MiB.
39
47
  # @return [Integer]
@@ -415,8 +423,12 @@ module Aws::AutoScaling
415
423
  # @return [Array<Types::EnabledMetric>]
416
424
  #
417
425
  # @!attribute [rw] status
418
- # The current state of the group when the DeleteAutoScalingGroup
426
+ # The current state of the group when the [DeleteAutoScalingGroup][1]
419
427
  # operation is in progress.
428
+ #
429
+ #
430
+ #
431
+ # [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DeleteAutoScalingGroup.html
420
432
  # @return [String]
421
433
  #
422
434
  # @!attribute [rw] tags
@@ -680,9 +692,13 @@ module Aws::AutoScaling
680
692
  end
681
693
 
682
694
  # Specifies the minimum and maximum for the `BaselineEbsBandwidthMbps`
683
- # object when you specify InstanceRequirements for an Auto Scaling
695
+ # object when you specify [InstanceRequirements][1] for an Auto Scaling
684
696
  # group.
685
697
  #
698
+ #
699
+ #
700
+ # [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html
701
+ #
686
702
  # @!attribute [rw] min
687
703
  # The minimum value in Mbps.
688
704
  # @return [Integer]
@@ -3010,7 +3026,8 @@ module Aws::AutoScaling
3010
3026
  # The name of the filter.
3011
3027
  #
3012
3028
  # The valid values for `Name` depend on which API operation you're
3013
- # using with the filter (DescribeAutoScalingGroups or DescribeTags).
3029
+ # using with the filter ([DescribeAutoScalingGroups][1] or
3030
+ # [DescribeTags][2]).
3014
3031
  #
3015
3032
  # **DescribeAutoScalingGroups**
3016
3033
  #
@@ -3046,6 +3063,11 @@ module Aws::AutoScaling
3046
3063
  # whether tags propagate to instances at launch. The results only
3047
3064
  # include information about the tags associated with the specified
3048
3065
  # Boolean value.
3066
+ #
3067
+ #
3068
+ #
3069
+ # [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeAutoScalingGroups.html
3070
+ # [2]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeTags.html
3049
3071
  # @return [String]
3050
3072
  #
3051
3073
  # @!attribute [rw] values
@@ -3948,7 +3970,7 @@ module Aws::AutoScaling
3948
3970
  # : Uses price to determine which instance types are the highest
3949
3971
  # priority, launching the lowest priced instance types within an
3950
3972
  # Availability Zone first. This is the default value for Auto
3951
- # Scaling groups that specify InstanceRequirements.
3973
+ # Scaling groups that specify [InstanceRequirements][1].
3952
3974
  #
3953
3975
  # prioritized
3954
3976
  #
@@ -3959,8 +3981,12 @@ module Aws::AutoScaling
3959
3981
  # fulfilled using your highest priority instance type, then Amazon
3960
3982
  # EC2 Auto Scaling launches the remaining capacity using the second
3961
3983
  # priority instance type, and so on. This is the default value for
3962
- # Auto Scaling groups that don't specify InstanceRequirements and
3963
- # cannot be used for groups that do.
3984
+ # Auto Scaling groups that don't specify [InstanceRequirements][1]
3985
+ # and cannot be used for groups that do.
3986
+ #
3987
+ #
3988
+ #
3989
+ # [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html
3964
3990
  # @return [String]
3965
3991
  #
3966
3992
  # @!attribute [rw] on_demand_base_capacity
@@ -4011,7 +4037,7 @@ module Aws::AutoScaling
4011
4037
  # first. Note that if the On-Demand allocation strategy is set to
4012
4038
  # `prioritized`, the same priority is applied when fulfilling
4013
4039
  # On-Demand capacity. This is not a valid value for Auto Scaling
4014
- # groups that specify InstanceRequirements.
4040
+ # groups that specify [InstanceRequirements][1].
4015
4041
  #
4016
4042
  # lowest-price
4017
4043
  #
@@ -4028,6 +4054,10 @@ module Aws::AutoScaling
4028
4054
  # : The price and capacity optimized allocation strategy looks at both
4029
4055
  # price and capacity to select the Spot Instance pools that are the
4030
4056
  # least likely to be interrupted and have the lowest possible price.
4057
+ #
4058
+ #
4059
+ #
4060
+ # [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html
4031
4061
  # @return [String]
4032
4062
  #
4033
4063
  # @!attribute [rw] spot_instance_pools
@@ -4833,7 +4863,11 @@ module Aws::AutoScaling
4833
4863
  end
4834
4864
 
4835
4865
  # Specifies the minimum and maximum for the `MemoryGiBPerVCpu` object
4836
- # when you specify InstanceRequirements for an Auto Scaling group.
4866
+ # when you specify [InstanceRequirements][1] for an Auto Scaling group.
4867
+ #
4868
+ #
4869
+ #
4870
+ # [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html
4837
4871
  #
4838
4872
  # @!attribute [rw] min
4839
4873
  # The memory minimum in GiB.
@@ -4853,7 +4887,11 @@ module Aws::AutoScaling
4853
4887
  end
4854
4888
 
4855
4889
  # Specifies the minimum and maximum for the `MemoryMiB` object when you
4856
- # specify InstanceRequirements for an Auto Scaling group.
4890
+ # specify [InstanceRequirements][1] for an Auto Scaling group.
4891
+ #
4892
+ #
4893
+ #
4894
+ # [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html
4857
4895
  #
4858
4896
  # @!attribute [rw] min
4859
4897
  # The memory minimum in MiB.
@@ -5160,21 +5198,22 @@ module Aws::AutoScaling
5160
5198
  end
5161
5199
 
5162
5200
  # Specifies the minimum and maximum for the `NetworkBandwidthGbps`
5163
- # object when you specify InstanceRequirements for an Auto Scaling
5201
+ # object when you specify [InstanceRequirements][1] for an Auto Scaling
5164
5202
  # group.
5165
5203
  #
5166
5204
  # <note markdown="1"> Setting the minimum bandwidth does not guarantee that your instance
5167
5205
  # will achieve the minimum bandwidth. Amazon EC2 will identify instance
5168
5206
  # types that support the specified minimum bandwidth, but the actual
5169
5207
  # bandwidth of your instance might go below the specified minimum at
5170
- # times. For more information, see [Available instance bandwidth][1] in
5208
+ # times. For more information, see [Available instance bandwidth][2] in
5171
5209
  # the *Amazon EC2 User Guide for Linux Instances*.
5172
5210
  #
5173
5211
  # </note>
5174
5212
  #
5175
5213
  #
5176
5214
  #
5177
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-network-bandwidth.html#available-instance-bandwidth
5215
+ # [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html
5216
+ # [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-network-bandwidth.html#available-instance-bandwidth
5178
5217
  #
5179
5218
  # @!attribute [rw] min
5180
5219
  # The minimum amount of network bandwidth, in gigabits per second
@@ -5196,9 +5235,13 @@ module Aws::AutoScaling
5196
5235
  end
5197
5236
 
5198
5237
  # Specifies the minimum and maximum for the `NetworkInterfaceCount`
5199
- # object when you specify InstanceRequirements for an Auto Scaling
5238
+ # object when you specify [InstanceRequirements][1] for an Auto Scaling
5200
5239
  # group.
5201
5240
  #
5241
+ #
5242
+ #
5243
+ # [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html
5244
+ #
5202
5245
  # @!attribute [rw] min
5203
5246
  # The minimum number of network interfaces.
5204
5247
  # @return [Integer]
@@ -5887,7 +5930,11 @@ module Aws::AutoScaling
5887
5930
  # @!attribute [rw] notification_types
5888
5931
  # The type of event that causes the notification to be sent. To query
5889
5932
  # the notification types supported by Amazon EC2 Auto Scaling, call
5890
- # the DescribeAutoScalingNotificationTypes API.
5933
+ # the [DescribeAutoScalingNotificationTypes][1] API.
5934
+ #
5935
+ #
5936
+ #
5937
+ # [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_DescribeAutoScalingNotificationTypes.html
5891
5938
  # @return [Array<String>]
5892
5939
  #
5893
5940
  # @see http://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/PutNotificationConfigurationType AWS API Documentation
@@ -6826,7 +6873,11 @@ module Aws::AutoScaling
6826
6873
  end
6827
6874
 
6828
6875
  # Describes information used for one or more scheduled scaling action
6829
- # updates in a BatchPutScheduledUpdateGroupAction operation.
6876
+ # updates in a [BatchPutScheduledUpdateGroupAction][1] operation.
6877
+ #
6878
+ #
6879
+ #
6880
+ # [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_BatchPutScheduledUpdateGroupAction.html
6830
6881
  #
6831
6882
  # @!attribute [rw] scheduled_action_name
6832
6883
  # The name of the scaling action.
@@ -7450,7 +7501,11 @@ module Aws::AutoScaling
7450
7501
  end
7451
7502
 
7452
7503
  # Specifies the minimum and maximum for the `TotalLocalStorageGB` object
7453
- # when you specify InstanceRequirements for an Auto Scaling group.
7504
+ # when you specify [InstanceRequirements][1] for an Auto Scaling group.
7505
+ #
7506
+ #
7507
+ #
7508
+ # [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html
7454
7509
  #
7455
7510
  # @!attribute [rw] min
7456
7511
  # The storage minimum in GB.
@@ -7696,8 +7751,10 @@ module Aws::AutoScaling
7696
7751
  #
7697
7752
  # @!attribute [rw] placement_group
7698
7753
  # The name of an existing placement group into which to launch your
7699
- # instances. For more information, see [Placement groups][1] in the
7700
- # *Amazon EC2 User Guide for Linux Instances*.
7754
+ # instances. To remove the placement group setting, pass an empty
7755
+ # string for `placement-group`. For more information about placement
7756
+ # groups, see [Placement groups][1] in the *Amazon EC2 User Guide for
7757
+ # Linux Instances*.
7701
7758
  #
7702
7759
  # <note markdown="1"> A *cluster* placement group is a logical grouping of instances
7703
7760
  # within a single Availability Zone. You cannot specify multiple
@@ -7867,7 +7924,11 @@ module Aws::AutoScaling
7867
7924
  end
7868
7925
 
7869
7926
  # Specifies the minimum and maximum for the `VCpuCount` object when you
7870
- # specify InstanceRequirements for an Auto Scaling group.
7927
+ # specify [InstanceRequirements][1] for an Auto Scaling group.
7928
+ #
7929
+ #
7930
+ #
7931
+ # [1]: https://docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html
7871
7932
  #
7872
7933
  # @!attribute [rw] min
7873
7934
  # The minimum number of vCPUs.
@@ -65,7 +65,7 @@ module Aws::AutoScaling
65
65
  autoload :ScheduledAction, 'aws-sdk-autoscaling/scheduled_action'
66
66
  autoload :Tag, 'aws-sdk-autoscaling/tag'
67
67
 
68
- GEM_VERSION = '1.122.0'
68
+ GEM_VERSION = '1.123.0'
69
69
 
70
70
  end
71
71
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-autoscaling
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.122.0
4
+ version: 1.123.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-18 00:00:00.000000000 Z
11
+ date: 2024-10-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core