aws-sdk-applicationautoscaling 1.86.0 → 1.87.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-applicationautoscaling/client.rb +176 -115
- data/lib/aws-sdk-applicationautoscaling/client_api.rb +1 -0
- data/lib/aws-sdk-applicationautoscaling/types.rb +202 -122
- data/lib/aws-sdk-applicationautoscaling.rb +1 -1
- data/sig/client.rbs +21 -21
- data/sig/types.rbs +29 -29
- metadata +2 -2
@@ -145,7 +145,7 @@ module Aws::ApplicationAutoScaling
|
|
145
145
|
#
|
146
146
|
# * ECS service - The resource type is `service` and the unique
|
147
147
|
# identifier is the cluster name and service name. Example:
|
148
|
-
# `service/
|
148
|
+
# `service/my-cluster/my-service`.
|
149
149
|
#
|
150
150
|
# * Spot Fleet - The resource type is `spot-fleet-request` and the
|
151
151
|
# unique identifier is the Spot Fleet request ID. Example:
|
@@ -208,7 +208,7 @@ module Aws::ApplicationAutoScaling
|
|
208
208
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
209
209
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
210
210
|
#
|
211
|
-
# * SageMaker
|
211
|
+
# * SageMaker serverless endpoint - The resource type is `variant` and
|
212
212
|
# the unique identifier is the resource ID. Example:
|
213
213
|
# `endpoint/my-end-point/variant/KMeansClustering`.
|
214
214
|
#
|
@@ -216,6 +216,10 @@ module Aws::ApplicationAutoScaling
|
|
216
216
|
# `inference-component` and the unique identifier is the resource
|
217
217
|
# ID. Example: `inference-component/my-inference-component`.
|
218
218
|
#
|
219
|
+
# * Amazon WorkSpaces - The resource type is `workspacespool` and the
|
220
|
+
# unique identifier is the pool ID. Example:
|
221
|
+
# `workspacespool/wspool-123456`.
|
222
|
+
#
|
219
223
|
#
|
220
224
|
#
|
221
225
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -225,8 +229,7 @@ module Aws::ApplicationAutoScaling
|
|
225
229
|
# The scalable dimension. This string consists of the service
|
226
230
|
# namespace, resource type, and scaling property.
|
227
231
|
#
|
228
|
-
# * `ecs:service:DesiredCount` - The
|
229
|
-
# service.
|
232
|
+
# * `ecs:service:DesiredCount` - The task count of an ECS service.
|
230
233
|
#
|
231
234
|
# * `elasticmapreduce:instancegroup:InstanceCount` - The instance
|
232
235
|
# count of an EMR Instance Group.
|
@@ -234,8 +237,8 @@ module Aws::ApplicationAutoScaling
|
|
234
237
|
# * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
|
235
238
|
# Spot Fleet.
|
236
239
|
#
|
237
|
-
# * `appstream:fleet:DesiredCapacity` - The
|
238
|
-
#
|
240
|
+
# * `appstream:fleet:DesiredCapacity` - The capacity of an AppStream
|
241
|
+
# 2.0 fleet.
|
239
242
|
#
|
240
243
|
# * `dynamodb:table:ReadCapacityUnits` - The provisioned read capacity
|
241
244
|
# for a DynamoDB table.
|
@@ -289,10 +292,13 @@ module Aws::ApplicationAutoScaling
|
|
289
292
|
# an Amazon Neptune DB cluster.
|
290
293
|
#
|
291
294
|
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The
|
292
|
-
# provisioned concurrency for a SageMaker
|
295
|
+
# provisioned concurrency for a SageMaker serverless endpoint.
|
293
296
|
#
|
294
297
|
# * `sagemaker:inference-component:DesiredCopyCount` - The number of
|
295
298
|
# copies across an endpoint for a SageMaker inference component.
|
299
|
+
#
|
300
|
+
# * `workspaces:workspacespool:DesiredUserSessions` - The capacity of
|
301
|
+
# a WorkSpaces pool.
|
296
302
|
# @return [String]
|
297
303
|
#
|
298
304
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeleteScalingPolicyRequest AWS API Documentation
|
@@ -326,7 +332,7 @@ module Aws::ApplicationAutoScaling
|
|
326
332
|
#
|
327
333
|
# * ECS service - The resource type is `service` and the unique
|
328
334
|
# identifier is the cluster name and service name. Example:
|
329
|
-
# `service/
|
335
|
+
# `service/my-cluster/my-service`.
|
330
336
|
#
|
331
337
|
# * Spot Fleet - The resource type is `spot-fleet-request` and the
|
332
338
|
# unique identifier is the Spot Fleet request ID. Example:
|
@@ -389,7 +395,7 @@ module Aws::ApplicationAutoScaling
|
|
389
395
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
390
396
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
391
397
|
#
|
392
|
-
# * SageMaker
|
398
|
+
# * SageMaker serverless endpoint - The resource type is `variant` and
|
393
399
|
# the unique identifier is the resource ID. Example:
|
394
400
|
# `endpoint/my-end-point/variant/KMeansClustering`.
|
395
401
|
#
|
@@ -397,6 +403,10 @@ module Aws::ApplicationAutoScaling
|
|
397
403
|
# `inference-component` and the unique identifier is the resource
|
398
404
|
# ID. Example: `inference-component/my-inference-component`.
|
399
405
|
#
|
406
|
+
# * Amazon WorkSpaces - The resource type is `workspacespool` and the
|
407
|
+
# unique identifier is the pool ID. Example:
|
408
|
+
# `workspacespool/wspool-123456`.
|
409
|
+
#
|
400
410
|
#
|
401
411
|
#
|
402
412
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -406,8 +416,7 @@ module Aws::ApplicationAutoScaling
|
|
406
416
|
# The scalable dimension. This string consists of the service
|
407
417
|
# namespace, resource type, and scaling property.
|
408
418
|
#
|
409
|
-
# * `ecs:service:DesiredCount` - The
|
410
|
-
# service.
|
419
|
+
# * `ecs:service:DesiredCount` - The task count of an ECS service.
|
411
420
|
#
|
412
421
|
# * `elasticmapreduce:instancegroup:InstanceCount` - The instance
|
413
422
|
# count of an EMR Instance Group.
|
@@ -415,8 +424,8 @@ module Aws::ApplicationAutoScaling
|
|
415
424
|
# * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
|
416
425
|
# Spot Fleet.
|
417
426
|
#
|
418
|
-
# * `appstream:fleet:DesiredCapacity` - The
|
419
|
-
#
|
427
|
+
# * `appstream:fleet:DesiredCapacity` - The capacity of an AppStream
|
428
|
+
# 2.0 fleet.
|
420
429
|
#
|
421
430
|
# * `dynamodb:table:ReadCapacityUnits` - The provisioned read capacity
|
422
431
|
# for a DynamoDB table.
|
@@ -470,10 +479,13 @@ module Aws::ApplicationAutoScaling
|
|
470
479
|
# an Amazon Neptune DB cluster.
|
471
480
|
#
|
472
481
|
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The
|
473
|
-
# provisioned concurrency for a SageMaker
|
482
|
+
# provisioned concurrency for a SageMaker serverless endpoint.
|
474
483
|
#
|
475
484
|
# * `sagemaker:inference-component:DesiredCopyCount` - The number of
|
476
485
|
# copies across an endpoint for a SageMaker inference component.
|
486
|
+
#
|
487
|
+
# * `workspaces:workspacespool:DesiredUserSessions` - The capacity of
|
488
|
+
# a WorkSpaces pool.
|
477
489
|
# @return [String]
|
478
490
|
#
|
479
491
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeleteScheduledActionRequest AWS API Documentation
|
@@ -503,7 +515,7 @@ module Aws::ApplicationAutoScaling
|
|
503
515
|
#
|
504
516
|
# * ECS service - The resource type is `service` and the unique
|
505
517
|
# identifier is the cluster name and service name. Example:
|
506
|
-
# `service/
|
518
|
+
# `service/my-cluster/my-service`.
|
507
519
|
#
|
508
520
|
# * Spot Fleet - The resource type is `spot-fleet-request` and the
|
509
521
|
# unique identifier is the Spot Fleet request ID. Example:
|
@@ -566,7 +578,7 @@ module Aws::ApplicationAutoScaling
|
|
566
578
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
567
579
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
568
580
|
#
|
569
|
-
# * SageMaker
|
581
|
+
# * SageMaker serverless endpoint - The resource type is `variant` and
|
570
582
|
# the unique identifier is the resource ID. Example:
|
571
583
|
# `endpoint/my-end-point/variant/KMeansClustering`.
|
572
584
|
#
|
@@ -574,6 +586,10 @@ module Aws::ApplicationAutoScaling
|
|
574
586
|
# `inference-component` and the unique identifier is the resource
|
575
587
|
# ID. Example: `inference-component/my-inference-component`.
|
576
588
|
#
|
589
|
+
# * Amazon WorkSpaces - The resource type is `workspacespool` and the
|
590
|
+
# unique identifier is the pool ID. Example:
|
591
|
+
# `workspacespool/wspool-123456`.
|
592
|
+
#
|
577
593
|
#
|
578
594
|
#
|
579
595
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -584,8 +600,7 @@ module Aws::ApplicationAutoScaling
|
|
584
600
|
# string consists of the service namespace, resource type, and scaling
|
585
601
|
# property.
|
586
602
|
#
|
587
|
-
# * `ecs:service:DesiredCount` - The
|
588
|
-
# service.
|
603
|
+
# * `ecs:service:DesiredCount` - The task count of an ECS service.
|
589
604
|
#
|
590
605
|
# * `elasticmapreduce:instancegroup:InstanceCount` - The instance
|
591
606
|
# count of an EMR Instance Group.
|
@@ -593,8 +608,8 @@ module Aws::ApplicationAutoScaling
|
|
593
608
|
# * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
|
594
609
|
# Spot Fleet.
|
595
610
|
#
|
596
|
-
# * `appstream:fleet:DesiredCapacity` - The
|
597
|
-
#
|
611
|
+
# * `appstream:fleet:DesiredCapacity` - The capacity of an AppStream
|
612
|
+
# 2.0 fleet.
|
598
613
|
#
|
599
614
|
# * `dynamodb:table:ReadCapacityUnits` - The provisioned read capacity
|
600
615
|
# for a DynamoDB table.
|
@@ -648,10 +663,13 @@ module Aws::ApplicationAutoScaling
|
|
648
663
|
# an Amazon Neptune DB cluster.
|
649
664
|
#
|
650
665
|
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The
|
651
|
-
# provisioned concurrency for a SageMaker
|
666
|
+
# provisioned concurrency for a SageMaker serverless endpoint.
|
652
667
|
#
|
653
668
|
# * `sagemaker:inference-component:DesiredCopyCount` - The number of
|
654
669
|
# copies across an endpoint for a SageMaker inference component.
|
670
|
+
#
|
671
|
+
# * `workspaces:workspacespool:DesiredUserSessions` - The capacity of
|
672
|
+
# a WorkSpaces pool.
|
655
673
|
# @return [String]
|
656
674
|
#
|
657
675
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeregisterScalableTargetRequest AWS API Documentation
|
@@ -680,7 +698,7 @@ module Aws::ApplicationAutoScaling
|
|
680
698
|
#
|
681
699
|
# * ECS service - The resource type is `service` and the unique
|
682
700
|
# identifier is the cluster name and service name. Example:
|
683
|
-
# `service/
|
701
|
+
# `service/my-cluster/my-service`.
|
684
702
|
#
|
685
703
|
# * Spot Fleet - The resource type is `spot-fleet-request` and the
|
686
704
|
# unique identifier is the Spot Fleet request ID. Example:
|
@@ -743,7 +761,7 @@ module Aws::ApplicationAutoScaling
|
|
743
761
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
744
762
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
745
763
|
#
|
746
|
-
# * SageMaker
|
764
|
+
# * SageMaker serverless endpoint - The resource type is `variant` and
|
747
765
|
# the unique identifier is the resource ID. Example:
|
748
766
|
# `endpoint/my-end-point/variant/KMeansClustering`.
|
749
767
|
#
|
@@ -751,6 +769,10 @@ module Aws::ApplicationAutoScaling
|
|
751
769
|
# `inference-component` and the unique identifier is the resource
|
752
770
|
# ID. Example: `inference-component/my-inference-component`.
|
753
771
|
#
|
772
|
+
# * Amazon WorkSpaces - The resource type is `workspacespool` and the
|
773
|
+
# unique identifier is the pool ID. Example:
|
774
|
+
# `workspacespool/wspool-123456`.
|
775
|
+
#
|
754
776
|
#
|
755
777
|
#
|
756
778
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -762,8 +784,7 @@ module Aws::ApplicationAutoScaling
|
|
762
784
|
# property. If you specify a scalable dimension, you must also specify
|
763
785
|
# a resource ID.
|
764
786
|
#
|
765
|
-
# * `ecs:service:DesiredCount` - The
|
766
|
-
# service.
|
787
|
+
# * `ecs:service:DesiredCount` - The task count of an ECS service.
|
767
788
|
#
|
768
789
|
# * `elasticmapreduce:instancegroup:InstanceCount` - The instance
|
769
790
|
# count of an EMR Instance Group.
|
@@ -771,8 +792,8 @@ module Aws::ApplicationAutoScaling
|
|
771
792
|
# * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
|
772
793
|
# Spot Fleet.
|
773
794
|
#
|
774
|
-
# * `appstream:fleet:DesiredCapacity` - The
|
775
|
-
#
|
795
|
+
# * `appstream:fleet:DesiredCapacity` - The capacity of an AppStream
|
796
|
+
# 2.0 fleet.
|
776
797
|
#
|
777
798
|
# * `dynamodb:table:ReadCapacityUnits` - The provisioned read capacity
|
778
799
|
# for a DynamoDB table.
|
@@ -826,10 +847,13 @@ module Aws::ApplicationAutoScaling
|
|
826
847
|
# an Amazon Neptune DB cluster.
|
827
848
|
#
|
828
849
|
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The
|
829
|
-
# provisioned concurrency for a SageMaker
|
850
|
+
# provisioned concurrency for a SageMaker serverless endpoint.
|
830
851
|
#
|
831
852
|
# * `sagemaker:inference-component:DesiredCopyCount` - The number of
|
832
853
|
# copies across an endpoint for a SageMaker inference component.
|
854
|
+
#
|
855
|
+
# * `workspaces:workspacespool:DesiredUserSessions` - The capacity of
|
856
|
+
# a WorkSpaces pool.
|
833
857
|
# @return [String]
|
834
858
|
#
|
835
859
|
# @!attribute [rw] max_results
|
@@ -889,7 +913,7 @@ module Aws::ApplicationAutoScaling
|
|
889
913
|
#
|
890
914
|
# * ECS service - The resource type is `service` and the unique
|
891
915
|
# identifier is the cluster name and service name. Example:
|
892
|
-
# `service/
|
916
|
+
# `service/my-cluster/my-service`.
|
893
917
|
#
|
894
918
|
# * Spot Fleet - The resource type is `spot-fleet-request` and the
|
895
919
|
# unique identifier is the Spot Fleet request ID. Example:
|
@@ -952,7 +976,7 @@ module Aws::ApplicationAutoScaling
|
|
952
976
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
953
977
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
954
978
|
#
|
955
|
-
# * SageMaker
|
979
|
+
# * SageMaker serverless endpoint - The resource type is `variant` and
|
956
980
|
# the unique identifier is the resource ID. Example:
|
957
981
|
# `endpoint/my-end-point/variant/KMeansClustering`.
|
958
982
|
#
|
@@ -960,6 +984,10 @@ module Aws::ApplicationAutoScaling
|
|
960
984
|
# `inference-component` and the unique identifier is the resource
|
961
985
|
# ID. Example: `inference-component/my-inference-component`.
|
962
986
|
#
|
987
|
+
# * Amazon WorkSpaces - The resource type is `workspacespool` and the
|
988
|
+
# unique identifier is the pool ID. Example:
|
989
|
+
# `workspacespool/wspool-123456`.
|
990
|
+
#
|
963
991
|
#
|
964
992
|
#
|
965
993
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -970,8 +998,7 @@ module Aws::ApplicationAutoScaling
|
|
970
998
|
# namespace, resource type, and scaling property. If you specify a
|
971
999
|
# scalable dimension, you must also specify a resource ID.
|
972
1000
|
#
|
973
|
-
# * `ecs:service:DesiredCount` - The
|
974
|
-
# service.
|
1001
|
+
# * `ecs:service:DesiredCount` - The task count of an ECS service.
|
975
1002
|
#
|
976
1003
|
# * `elasticmapreduce:instancegroup:InstanceCount` - The instance
|
977
1004
|
# count of an EMR Instance Group.
|
@@ -979,8 +1006,8 @@ module Aws::ApplicationAutoScaling
|
|
979
1006
|
# * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
|
980
1007
|
# Spot Fleet.
|
981
1008
|
#
|
982
|
-
# * `appstream:fleet:DesiredCapacity` - The
|
983
|
-
#
|
1009
|
+
# * `appstream:fleet:DesiredCapacity` - The capacity of an AppStream
|
1010
|
+
# 2.0 fleet.
|
984
1011
|
#
|
985
1012
|
# * `dynamodb:table:ReadCapacityUnits` - The provisioned read capacity
|
986
1013
|
# for a DynamoDB table.
|
@@ -1034,10 +1061,13 @@ module Aws::ApplicationAutoScaling
|
|
1034
1061
|
# an Amazon Neptune DB cluster.
|
1035
1062
|
#
|
1036
1063
|
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The
|
1037
|
-
# provisioned concurrency for a SageMaker
|
1064
|
+
# provisioned concurrency for a SageMaker serverless endpoint.
|
1038
1065
|
#
|
1039
1066
|
# * `sagemaker:inference-component:DesiredCopyCount` - The number of
|
1040
1067
|
# copies across an endpoint for a SageMaker inference component.
|
1068
|
+
#
|
1069
|
+
# * `workspaces:workspacespool:DesiredUserSessions` - The capacity of
|
1070
|
+
# a WorkSpaces pool.
|
1041
1071
|
# @return [String]
|
1042
1072
|
#
|
1043
1073
|
# @!attribute [rw] max_results
|
@@ -1115,7 +1145,7 @@ module Aws::ApplicationAutoScaling
|
|
1115
1145
|
#
|
1116
1146
|
# * ECS service - The resource type is `service` and the unique
|
1117
1147
|
# identifier is the cluster name and service name. Example:
|
1118
|
-
# `service/
|
1148
|
+
# `service/my-cluster/my-service`.
|
1119
1149
|
#
|
1120
1150
|
# * Spot Fleet - The resource type is `spot-fleet-request` and the
|
1121
1151
|
# unique identifier is the Spot Fleet request ID. Example:
|
@@ -1178,7 +1208,7 @@ module Aws::ApplicationAutoScaling
|
|
1178
1208
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
1179
1209
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
1180
1210
|
#
|
1181
|
-
# * SageMaker
|
1211
|
+
# * SageMaker serverless endpoint - The resource type is `variant` and
|
1182
1212
|
# the unique identifier is the resource ID. Example:
|
1183
1213
|
# `endpoint/my-end-point/variant/KMeansClustering`.
|
1184
1214
|
#
|
@@ -1186,6 +1216,10 @@ module Aws::ApplicationAutoScaling
|
|
1186
1216
|
# `inference-component` and the unique identifier is the resource
|
1187
1217
|
# ID. Example: `inference-component/my-inference-component`.
|
1188
1218
|
#
|
1219
|
+
# * Amazon WorkSpaces - The resource type is `workspacespool` and the
|
1220
|
+
# unique identifier is the pool ID. Example:
|
1221
|
+
# `workspacespool/wspool-123456`.
|
1222
|
+
#
|
1189
1223
|
#
|
1190
1224
|
#
|
1191
1225
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -1196,8 +1230,7 @@ module Aws::ApplicationAutoScaling
|
|
1196
1230
|
# namespace, resource type, and scaling property. If you specify a
|
1197
1231
|
# scalable dimension, you must also specify a resource ID.
|
1198
1232
|
#
|
1199
|
-
# * `ecs:service:DesiredCount` - The
|
1200
|
-
# service.
|
1233
|
+
# * `ecs:service:DesiredCount` - The task count of an ECS service.
|
1201
1234
|
#
|
1202
1235
|
# * `elasticmapreduce:instancegroup:InstanceCount` - The instance
|
1203
1236
|
# count of an EMR Instance Group.
|
@@ -1205,8 +1238,8 @@ module Aws::ApplicationAutoScaling
|
|
1205
1238
|
# * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
|
1206
1239
|
# Spot Fleet.
|
1207
1240
|
#
|
1208
|
-
# * `appstream:fleet:DesiredCapacity` - The
|
1209
|
-
#
|
1241
|
+
# * `appstream:fleet:DesiredCapacity` - The capacity of an AppStream
|
1242
|
+
# 2.0 fleet.
|
1210
1243
|
#
|
1211
1244
|
# * `dynamodb:table:ReadCapacityUnits` - The provisioned read capacity
|
1212
1245
|
# for a DynamoDB table.
|
@@ -1260,10 +1293,13 @@ module Aws::ApplicationAutoScaling
|
|
1260
1293
|
# an Amazon Neptune DB cluster.
|
1261
1294
|
#
|
1262
1295
|
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The
|
1263
|
-
# provisioned concurrency for a SageMaker
|
1296
|
+
# provisioned concurrency for a SageMaker serverless endpoint.
|
1264
1297
|
#
|
1265
1298
|
# * `sagemaker:inference-component:DesiredCopyCount` - The number of
|
1266
1299
|
# copies across an endpoint for a SageMaker inference component.
|
1300
|
+
#
|
1301
|
+
# * `workspaces:workspacespool:DesiredUserSessions` - The capacity of
|
1302
|
+
# a WorkSpaces pool.
|
1267
1303
|
# @return [String]
|
1268
1304
|
#
|
1269
1305
|
# @!attribute [rw] max_results
|
@@ -1328,7 +1364,7 @@ module Aws::ApplicationAutoScaling
|
|
1328
1364
|
#
|
1329
1365
|
# * ECS service - The resource type is `service` and the unique
|
1330
1366
|
# identifier is the cluster name and service name. Example:
|
1331
|
-
# `service/
|
1367
|
+
# `service/my-cluster/my-service`.
|
1332
1368
|
#
|
1333
1369
|
# * Spot Fleet - The resource type is `spot-fleet-request` and the
|
1334
1370
|
# unique identifier is the Spot Fleet request ID. Example:
|
@@ -1391,7 +1427,7 @@ module Aws::ApplicationAutoScaling
|
|
1391
1427
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
1392
1428
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
1393
1429
|
#
|
1394
|
-
# * SageMaker
|
1430
|
+
# * SageMaker serverless endpoint - The resource type is `variant` and
|
1395
1431
|
# the unique identifier is the resource ID. Example:
|
1396
1432
|
# `endpoint/my-end-point/variant/KMeansClustering`.
|
1397
1433
|
#
|
@@ -1399,6 +1435,10 @@ module Aws::ApplicationAutoScaling
|
|
1399
1435
|
# `inference-component` and the unique identifier is the resource
|
1400
1436
|
# ID. Example: `inference-component/my-inference-component`.
|
1401
1437
|
#
|
1438
|
+
# * Amazon WorkSpaces - The resource type is `workspacespool` and the
|
1439
|
+
# unique identifier is the pool ID. Example:
|
1440
|
+
# `workspacespool/wspool-123456`.
|
1441
|
+
#
|
1402
1442
|
#
|
1403
1443
|
#
|
1404
1444
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -1409,8 +1449,7 @@ module Aws::ApplicationAutoScaling
|
|
1409
1449
|
# namespace, resource type, and scaling property. If you specify a
|
1410
1450
|
# scalable dimension, you must also specify a resource ID.
|
1411
1451
|
#
|
1412
|
-
# * `ecs:service:DesiredCount` - The
|
1413
|
-
# service.
|
1452
|
+
# * `ecs:service:DesiredCount` - The task count of an ECS service.
|
1414
1453
|
#
|
1415
1454
|
# * `elasticmapreduce:instancegroup:InstanceCount` - The instance
|
1416
1455
|
# count of an EMR Instance Group.
|
@@ -1418,8 +1457,8 @@ module Aws::ApplicationAutoScaling
|
|
1418
1457
|
# * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
|
1419
1458
|
# Spot Fleet.
|
1420
1459
|
#
|
1421
|
-
# * `appstream:fleet:DesiredCapacity` - The
|
1422
|
-
#
|
1460
|
+
# * `appstream:fleet:DesiredCapacity` - The capacity of an AppStream
|
1461
|
+
# 2.0 fleet.
|
1423
1462
|
#
|
1424
1463
|
# * `dynamodb:table:ReadCapacityUnits` - The provisioned read capacity
|
1425
1464
|
# for a DynamoDB table.
|
@@ -1473,10 +1512,13 @@ module Aws::ApplicationAutoScaling
|
|
1473
1512
|
# an Amazon Neptune DB cluster.
|
1474
1513
|
#
|
1475
1514
|
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The
|
1476
|
-
# provisioned concurrency for a SageMaker
|
1515
|
+
# provisioned concurrency for a SageMaker serverless endpoint.
|
1477
1516
|
#
|
1478
1517
|
# * `sagemaker:inference-component:DesiredCopyCount` - The number of
|
1479
1518
|
# copies across an endpoint for a SageMaker inference component.
|
1519
|
+
#
|
1520
|
+
# * `workspaces:workspacespool:DesiredUserSessions` - The capacity of
|
1521
|
+
# a WorkSpaces pool.
|
1480
1522
|
# @return [String]
|
1481
1523
|
#
|
1482
1524
|
# @!attribute [rw] max_results
|
@@ -1641,7 +1683,7 @@ module Aws::ApplicationAutoScaling
|
|
1641
1683
|
# Describes the reason for an activity that isn't scaled (*not scaled
|
1642
1684
|
# activity*), in machine-readable format. For help interpreting the not
|
1643
1685
|
# scaled reason details, see [Scaling activities for Application Auto
|
1644
|
-
# Scaling][1]
|
1686
|
+
# Scaling][1] in the *Application Auto Scaling User Guide*.
|
1645
1687
|
#
|
1646
1688
|
#
|
1647
1689
|
#
|
@@ -1707,16 +1749,12 @@ module Aws::ApplicationAutoScaling
|
|
1707
1749
|
# Represents a predefined metric for a target tracking scaling policy to
|
1708
1750
|
# use with Application Auto Scaling.
|
1709
1751
|
#
|
1710
|
-
#
|
1711
|
-
#
|
1712
|
-
# looking up its namespace and dimension using the CloudWatch metrics
|
1713
|
-
# dashboard in the console, follow the procedure in [Monitor your
|
1714
|
-
# resources using CloudWatch][1] in the *Application Auto Scaling User
|
1715
|
-
# Guide*.
|
1752
|
+
# For more information, [Predefined metrics for target tracking scaling
|
1753
|
+
# policies][1] in the *Application Auto Scaling User Guide*.
|
1716
1754
|
#
|
1717
1755
|
#
|
1718
1756
|
#
|
1719
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/application/userguide/
|
1757
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/application/userguide/monitor-cloudwatch-metrics.html#predefined-metrics
|
1720
1758
|
#
|
1721
1759
|
# @!attribute [rw] predefined_metric_type
|
1722
1760
|
# The metric type. The `ALBRequestCountPerTarget` metric type applies
|
@@ -1783,7 +1821,7 @@ module Aws::ApplicationAutoScaling
|
|
1783
1821
|
#
|
1784
1822
|
# * ECS service - The resource type is `service` and the unique
|
1785
1823
|
# identifier is the cluster name and service name. Example:
|
1786
|
-
# `service/
|
1824
|
+
# `service/my-cluster/my-service`.
|
1787
1825
|
#
|
1788
1826
|
# * Spot Fleet - The resource type is `spot-fleet-request` and the
|
1789
1827
|
# unique identifier is the Spot Fleet request ID. Example:
|
@@ -1846,7 +1884,7 @@ module Aws::ApplicationAutoScaling
|
|
1846
1884
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
1847
1885
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
1848
1886
|
#
|
1849
|
-
# * SageMaker
|
1887
|
+
# * SageMaker serverless endpoint - The resource type is `variant` and
|
1850
1888
|
# the unique identifier is the resource ID. Example:
|
1851
1889
|
# `endpoint/my-end-point/variant/KMeansClustering`.
|
1852
1890
|
#
|
@@ -1854,6 +1892,10 @@ module Aws::ApplicationAutoScaling
|
|
1854
1892
|
# `inference-component` and the unique identifier is the resource
|
1855
1893
|
# ID. Example: `inference-component/my-inference-component`.
|
1856
1894
|
#
|
1895
|
+
# * Amazon WorkSpaces - The resource type is `workspacespool` and the
|
1896
|
+
# unique identifier is the pool ID. Example:
|
1897
|
+
# `workspacespool/wspool-123456`.
|
1898
|
+
#
|
1857
1899
|
#
|
1858
1900
|
#
|
1859
1901
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -1863,8 +1905,7 @@ module Aws::ApplicationAutoScaling
|
|
1863
1905
|
# The scalable dimension. This string consists of the service
|
1864
1906
|
# namespace, resource type, and scaling property.
|
1865
1907
|
#
|
1866
|
-
# * `ecs:service:DesiredCount` - The
|
1867
|
-
# service.
|
1908
|
+
# * `ecs:service:DesiredCount` - The task count of an ECS service.
|
1868
1909
|
#
|
1869
1910
|
# * `elasticmapreduce:instancegroup:InstanceCount` - The instance
|
1870
1911
|
# count of an EMR Instance Group.
|
@@ -1872,8 +1913,8 @@ module Aws::ApplicationAutoScaling
|
|
1872
1913
|
# * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
|
1873
1914
|
# Spot Fleet.
|
1874
1915
|
#
|
1875
|
-
# * `appstream:fleet:DesiredCapacity` - The
|
1876
|
-
#
|
1916
|
+
# * `appstream:fleet:DesiredCapacity` - The capacity of an AppStream
|
1917
|
+
# 2.0 fleet.
|
1877
1918
|
#
|
1878
1919
|
# * `dynamodb:table:ReadCapacityUnits` - The provisioned read capacity
|
1879
1920
|
# for a DynamoDB table.
|
@@ -1927,10 +1968,13 @@ module Aws::ApplicationAutoScaling
|
|
1927
1968
|
# an Amazon Neptune DB cluster.
|
1928
1969
|
#
|
1929
1970
|
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The
|
1930
|
-
# provisioned concurrency for a SageMaker
|
1971
|
+
# provisioned concurrency for a SageMaker serverless endpoint.
|
1931
1972
|
#
|
1932
1973
|
# * `sagemaker:inference-component:DesiredCopyCount` - The number of
|
1933
1974
|
# copies across an endpoint for a SageMaker inference component.
|
1975
|
+
#
|
1976
|
+
# * `workspaces:workspacespool:DesiredUserSessions` - The capacity of
|
1977
|
+
# a WorkSpaces pool.
|
1934
1978
|
# @return [String]
|
1935
1979
|
#
|
1936
1980
|
# @!attribute [rw] policy_type
|
@@ -2031,13 +2075,12 @@ module Aws::ApplicationAutoScaling
|
|
2031
2075
|
# For rate expressions, *value* is a positive integer and *unit* is
|
2032
2076
|
# `minute` \| `minutes` \| `hour` \| `hours` \| `day` \| `days`.
|
2033
2077
|
#
|
2034
|
-
# For more information
|
2035
|
-
#
|
2036
|
-
# User Guide*.
|
2078
|
+
# For more information, see [Schedule recurring scaling actions using
|
2079
|
+
# cron expressions][1] in the *Application Auto Scaling User Guide*.
|
2037
2080
|
#
|
2038
2081
|
#
|
2039
2082
|
#
|
2040
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/application/userguide/
|
2083
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/application/userguide/scheduled-scaling-using-cron-expressions.html
|
2041
2084
|
# @return [String]
|
2042
2085
|
#
|
2043
2086
|
# @!attribute [rw] timezone
|
@@ -2066,7 +2109,7 @@ module Aws::ApplicationAutoScaling
|
|
2066
2109
|
#
|
2067
2110
|
# * ECS service - The resource type is `service` and the unique
|
2068
2111
|
# identifier is the cluster name and service name. Example:
|
2069
|
-
# `service/
|
2112
|
+
# `service/my-cluster/my-service`.
|
2070
2113
|
#
|
2071
2114
|
# * Spot Fleet - The resource type is `spot-fleet-request` and the
|
2072
2115
|
# unique identifier is the Spot Fleet request ID. Example:
|
@@ -2129,7 +2172,7 @@ module Aws::ApplicationAutoScaling
|
|
2129
2172
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
2130
2173
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
2131
2174
|
#
|
2132
|
-
# * SageMaker
|
2175
|
+
# * SageMaker serverless endpoint - The resource type is `variant` and
|
2133
2176
|
# the unique identifier is the resource ID. Example:
|
2134
2177
|
# `endpoint/my-end-point/variant/KMeansClustering`.
|
2135
2178
|
#
|
@@ -2137,6 +2180,10 @@ module Aws::ApplicationAutoScaling
|
|
2137
2180
|
# `inference-component` and the unique identifier is the resource
|
2138
2181
|
# ID. Example: `inference-component/my-inference-component`.
|
2139
2182
|
#
|
2183
|
+
# * Amazon WorkSpaces - The resource type is `workspacespool` and the
|
2184
|
+
# unique identifier is the pool ID. Example:
|
2185
|
+
# `workspacespool/wspool-123456`.
|
2186
|
+
#
|
2140
2187
|
#
|
2141
2188
|
#
|
2142
2189
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -2146,8 +2193,7 @@ module Aws::ApplicationAutoScaling
|
|
2146
2193
|
# The scalable dimension. This string consists of the service
|
2147
2194
|
# namespace, resource type, and scaling property.
|
2148
2195
|
#
|
2149
|
-
# * `ecs:service:DesiredCount` - The
|
2150
|
-
# service.
|
2196
|
+
# * `ecs:service:DesiredCount` - The task count of an ECS service.
|
2151
2197
|
#
|
2152
2198
|
# * `elasticmapreduce:instancegroup:InstanceCount` - The instance
|
2153
2199
|
# count of an EMR Instance Group.
|
@@ -2155,8 +2201,8 @@ module Aws::ApplicationAutoScaling
|
|
2155
2201
|
# * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
|
2156
2202
|
# Spot Fleet.
|
2157
2203
|
#
|
2158
|
-
# * `appstream:fleet:DesiredCapacity` - The
|
2159
|
-
#
|
2204
|
+
# * `appstream:fleet:DesiredCapacity` - The capacity of an AppStream
|
2205
|
+
# 2.0 fleet.
|
2160
2206
|
#
|
2161
2207
|
# * `dynamodb:table:ReadCapacityUnits` - The provisioned read capacity
|
2162
2208
|
# for a DynamoDB table.
|
@@ -2210,10 +2256,13 @@ module Aws::ApplicationAutoScaling
|
|
2210
2256
|
# an Amazon Neptune DB cluster.
|
2211
2257
|
#
|
2212
2258
|
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The
|
2213
|
-
# provisioned concurrency for a SageMaker
|
2259
|
+
# provisioned concurrency for a SageMaker serverless endpoint.
|
2214
2260
|
#
|
2215
2261
|
# * `sagemaker:inference-component:DesiredCopyCount` - The number of
|
2216
2262
|
# copies across an endpoint for a SageMaker inference component.
|
2263
|
+
#
|
2264
|
+
# * `workspaces:workspacespool:DesiredUserSessions` - The capacity of
|
2265
|
+
# a WorkSpaces pool.
|
2217
2266
|
# @return [String]
|
2218
2267
|
#
|
2219
2268
|
# @!attribute [rw] start_time
|
@@ -2266,7 +2315,7 @@ module Aws::ApplicationAutoScaling
|
|
2266
2315
|
#
|
2267
2316
|
# * ECS service - The resource type is `service` and the unique
|
2268
2317
|
# identifier is the cluster name and service name. Example:
|
2269
|
-
# `service/
|
2318
|
+
# `service/my-cluster/my-service`.
|
2270
2319
|
#
|
2271
2320
|
# * Spot Fleet - The resource type is `spot-fleet-request` and the
|
2272
2321
|
# unique identifier is the Spot Fleet request ID. Example:
|
@@ -2329,7 +2378,7 @@ module Aws::ApplicationAutoScaling
|
|
2329
2378
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
2330
2379
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
2331
2380
|
#
|
2332
|
-
# * SageMaker
|
2381
|
+
# * SageMaker serverless endpoint - The resource type is `variant` and
|
2333
2382
|
# the unique identifier is the resource ID. Example:
|
2334
2383
|
# `endpoint/my-end-point/variant/KMeansClustering`.
|
2335
2384
|
#
|
@@ -2337,6 +2386,10 @@ module Aws::ApplicationAutoScaling
|
|
2337
2386
|
# `inference-component` and the unique identifier is the resource
|
2338
2387
|
# ID. Example: `inference-component/my-inference-component`.
|
2339
2388
|
#
|
2389
|
+
# * Amazon WorkSpaces - The resource type is `workspacespool` and the
|
2390
|
+
# unique identifier is the pool ID. Example:
|
2391
|
+
# `workspacespool/wspool-123456`.
|
2392
|
+
#
|
2340
2393
|
#
|
2341
2394
|
#
|
2342
2395
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -2347,8 +2400,7 @@ module Aws::ApplicationAutoScaling
|
|
2347
2400
|
# string consists of the service namespace, resource type, and scaling
|
2348
2401
|
# property.
|
2349
2402
|
#
|
2350
|
-
# * `ecs:service:DesiredCount` - The
|
2351
|
-
# service.
|
2403
|
+
# * `ecs:service:DesiredCount` - The task count of an ECS service.
|
2352
2404
|
#
|
2353
2405
|
# * `elasticmapreduce:instancegroup:InstanceCount` - The instance
|
2354
2406
|
# count of an EMR Instance Group.
|
@@ -2356,8 +2408,8 @@ module Aws::ApplicationAutoScaling
|
|
2356
2408
|
# * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
|
2357
2409
|
# Spot Fleet.
|
2358
2410
|
#
|
2359
|
-
# * `appstream:fleet:DesiredCapacity` - The
|
2360
|
-
#
|
2411
|
+
# * `appstream:fleet:DesiredCapacity` - The capacity of an AppStream
|
2412
|
+
# 2.0 fleet.
|
2361
2413
|
#
|
2362
2414
|
# * `dynamodb:table:ReadCapacityUnits` - The provisioned read capacity
|
2363
2415
|
# for a DynamoDB table.
|
@@ -2411,10 +2463,13 @@ module Aws::ApplicationAutoScaling
|
|
2411
2463
|
# an Amazon Neptune DB cluster.
|
2412
2464
|
#
|
2413
2465
|
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The
|
2414
|
-
# provisioned concurrency for a SageMaker
|
2466
|
+
# provisioned concurrency for a SageMaker serverless endpoint.
|
2415
2467
|
#
|
2416
2468
|
# * `sagemaker:inference-component:DesiredCopyCount` - The number of
|
2417
2469
|
# copies across an endpoint for a SageMaker inference component.
|
2470
|
+
#
|
2471
|
+
# * `workspaces:workspacespool:DesiredUserSessions` - The capacity of
|
2472
|
+
# a WorkSpaces pool.
|
2418
2473
|
# @return [String]
|
2419
2474
|
#
|
2420
2475
|
# @!attribute [rw] min_capacity
|
@@ -2438,7 +2493,9 @@ module Aws::ApplicationAutoScaling
|
|
2438
2493
|
#
|
2439
2494
|
# * SageMaker endpoint variants
|
2440
2495
|
#
|
2441
|
-
# * SageMaker
|
2496
|
+
# * SageMaker inference components
|
2497
|
+
#
|
2498
|
+
# * SageMaker serverless endpoint provisioned concurrency
|
2442
2499
|
#
|
2443
2500
|
# * Spot Fleets
|
2444
2501
|
#
|
@@ -2485,12 +2542,12 @@ module Aws::ApplicationAutoScaling
|
|
2485
2542
|
#
|
2486
2543
|
# If the service supports service-linked roles, Application Auto
|
2487
2544
|
# Scaling uses a service-linked role, which it creates if it does not
|
2488
|
-
# yet exist. For more information, see [Application Auto Scaling
|
2489
|
-
#
|
2545
|
+
# yet exist. For more information, see [How Application Auto Scaling
|
2546
|
+
# works with IAM][1].
|
2490
2547
|
#
|
2491
2548
|
#
|
2492
2549
|
#
|
2493
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/application/userguide/security_iam_service-with-iam.html
|
2550
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/application/userguide/security_iam_service-with-iam.html
|
2494
2551
|
# @return [String]
|
2495
2552
|
#
|
2496
2553
|
# @!attribute [rw] suspended_state
|
@@ -2514,8 +2571,8 @@ module Aws::ApplicationAutoScaling
|
|
2514
2571
|
# all scaling activities that involve scheduled actions are
|
2515
2572
|
# suspended.
|
2516
2573
|
#
|
2517
|
-
# For more information, see [
|
2518
|
-
#
|
2574
|
+
# For more information, see [Suspend and resume scaling][1] in the
|
2575
|
+
# *Application Auto Scaling User Guide*.
|
2519
2576
|
#
|
2520
2577
|
#
|
2521
2578
|
#
|
@@ -2599,7 +2656,7 @@ module Aws::ApplicationAutoScaling
|
|
2599
2656
|
#
|
2600
2657
|
# * ECS service - The resource type is `service` and the unique
|
2601
2658
|
# identifier is the cluster name and service name. Example:
|
2602
|
-
# `service/
|
2659
|
+
# `service/my-cluster/my-service`.
|
2603
2660
|
#
|
2604
2661
|
# * Spot Fleet - The resource type is `spot-fleet-request` and the
|
2605
2662
|
# unique identifier is the Spot Fleet request ID. Example:
|
@@ -2662,7 +2719,7 @@ module Aws::ApplicationAutoScaling
|
|
2662
2719
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
2663
2720
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
2664
2721
|
#
|
2665
|
-
# * SageMaker
|
2722
|
+
# * SageMaker serverless endpoint - The resource type is `variant` and
|
2666
2723
|
# the unique identifier is the resource ID. Example:
|
2667
2724
|
# `endpoint/my-end-point/variant/KMeansClustering`.
|
2668
2725
|
#
|
@@ -2670,6 +2727,10 @@ module Aws::ApplicationAutoScaling
|
|
2670
2727
|
# `inference-component` and the unique identifier is the resource
|
2671
2728
|
# ID. Example: `inference-component/my-inference-component`.
|
2672
2729
|
#
|
2730
|
+
# * Amazon WorkSpaces - The resource type is `workspacespool` and the
|
2731
|
+
# unique identifier is the pool ID. Example:
|
2732
|
+
# `workspacespool/wspool-123456`.
|
2733
|
+
#
|
2673
2734
|
#
|
2674
2735
|
#
|
2675
2736
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -2680,8 +2741,7 @@ module Aws::ApplicationAutoScaling
|
|
2680
2741
|
# string consists of the service namespace, resource type, and scaling
|
2681
2742
|
# property.
|
2682
2743
|
#
|
2683
|
-
# * `ecs:service:DesiredCount` - The
|
2684
|
-
# service.
|
2744
|
+
# * `ecs:service:DesiredCount` - The task count of an ECS service.
|
2685
2745
|
#
|
2686
2746
|
# * `elasticmapreduce:instancegroup:InstanceCount` - The instance
|
2687
2747
|
# count of an EMR Instance Group.
|
@@ -2689,8 +2749,8 @@ module Aws::ApplicationAutoScaling
|
|
2689
2749
|
# * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
|
2690
2750
|
# Spot Fleet.
|
2691
2751
|
#
|
2692
|
-
# * `appstream:fleet:DesiredCapacity` - The
|
2693
|
-
#
|
2752
|
+
# * `appstream:fleet:DesiredCapacity` - The capacity of an AppStream
|
2753
|
+
# 2.0 fleet.
|
2694
2754
|
#
|
2695
2755
|
# * `dynamodb:table:ReadCapacityUnits` - The provisioned read capacity
|
2696
2756
|
# for a DynamoDB table.
|
@@ -2744,10 +2804,13 @@ module Aws::ApplicationAutoScaling
|
|
2744
2804
|
# an Amazon Neptune DB cluster.
|
2745
2805
|
#
|
2746
2806
|
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The
|
2747
|
-
# provisioned concurrency for a SageMaker
|
2807
|
+
# provisioned concurrency for a SageMaker serverless endpoint.
|
2748
2808
|
#
|
2749
2809
|
# * `sagemaker:inference-component:DesiredCopyCount` - The number of
|
2750
2810
|
# copies across an endpoint for a SageMaker inference component.
|
2811
|
+
#
|
2812
|
+
# * `workspaces:workspacespool:DesiredUserSessions` - The capacity of
|
2813
|
+
# a WorkSpaces pool.
|
2751
2814
|
# @return [String]
|
2752
2815
|
#
|
2753
2816
|
# @!attribute [rw] min_capacity
|
@@ -2846,7 +2909,7 @@ module Aws::ApplicationAutoScaling
|
|
2846
2909
|
#
|
2847
2910
|
# * ECS service - The resource type is `service` and the unique
|
2848
2911
|
# identifier is the cluster name and service name. Example:
|
2849
|
-
# `service/
|
2912
|
+
# `service/my-cluster/my-service`.
|
2850
2913
|
#
|
2851
2914
|
# * Spot Fleet - The resource type is `spot-fleet-request` and the
|
2852
2915
|
# unique identifier is the Spot Fleet request ID. Example:
|
@@ -2909,7 +2972,7 @@ module Aws::ApplicationAutoScaling
|
|
2909
2972
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
2910
2973
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
2911
2974
|
#
|
2912
|
-
# * SageMaker
|
2975
|
+
# * SageMaker serverless endpoint - The resource type is `variant` and
|
2913
2976
|
# the unique identifier is the resource ID. Example:
|
2914
2977
|
# `endpoint/my-end-point/variant/KMeansClustering`.
|
2915
2978
|
#
|
@@ -2917,6 +2980,10 @@ module Aws::ApplicationAutoScaling
|
|
2917
2980
|
# `inference-component` and the unique identifier is the resource
|
2918
2981
|
# ID. Example: `inference-component/my-inference-component`.
|
2919
2982
|
#
|
2983
|
+
# * Amazon WorkSpaces - The resource type is `workspacespool` and the
|
2984
|
+
# unique identifier is the pool ID. Example:
|
2985
|
+
# `workspacespool/wspool-123456`.
|
2986
|
+
#
|
2920
2987
|
#
|
2921
2988
|
#
|
2922
2989
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -2926,8 +2993,7 @@ module Aws::ApplicationAutoScaling
|
|
2926
2993
|
# The scalable dimension. This string consists of the service
|
2927
2994
|
# namespace, resource type, and scaling property.
|
2928
2995
|
#
|
2929
|
-
# * `ecs:service:DesiredCount` - The
|
2930
|
-
# service.
|
2996
|
+
# * `ecs:service:DesiredCount` - The task count of an ECS service.
|
2931
2997
|
#
|
2932
2998
|
# * `elasticmapreduce:instancegroup:InstanceCount` - The instance
|
2933
2999
|
# count of an EMR Instance Group.
|
@@ -2935,8 +3001,8 @@ module Aws::ApplicationAutoScaling
|
|
2935
3001
|
# * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
|
2936
3002
|
# Spot Fleet.
|
2937
3003
|
#
|
2938
|
-
# * `appstream:fleet:DesiredCapacity` - The
|
2939
|
-
#
|
3004
|
+
# * `appstream:fleet:DesiredCapacity` - The capacity of an AppStream
|
3005
|
+
# 2.0 fleet.
|
2940
3006
|
#
|
2941
3007
|
# * `dynamodb:table:ReadCapacityUnits` - The provisioned read capacity
|
2942
3008
|
# for a DynamoDB table.
|
@@ -2990,10 +3056,13 @@ module Aws::ApplicationAutoScaling
|
|
2990
3056
|
# an Amazon Neptune DB cluster.
|
2991
3057
|
#
|
2992
3058
|
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The
|
2993
|
-
# provisioned concurrency for a SageMaker
|
3059
|
+
# provisioned concurrency for a SageMaker serverless endpoint.
|
2994
3060
|
#
|
2995
3061
|
# * `sagemaker:inference-component:DesiredCopyCount` - The number of
|
2996
3062
|
# copies across an endpoint for a SageMaker inference component.
|
3063
|
+
#
|
3064
|
+
# * `workspaces:workspacespool:DesiredUserSessions` - The capacity of
|
3065
|
+
# a WorkSpaces pool.
|
2997
3066
|
# @return [String]
|
2998
3067
|
#
|
2999
3068
|
# @!attribute [rw] description
|
@@ -3084,7 +3153,7 @@ module Aws::ApplicationAutoScaling
|
|
3084
3153
|
#
|
3085
3154
|
# * ECS service - The resource type is `service` and the unique
|
3086
3155
|
# identifier is the cluster name and service name. Example:
|
3087
|
-
# `service/
|
3156
|
+
# `service/my-cluster/my-service`.
|
3088
3157
|
#
|
3089
3158
|
# * Spot Fleet - The resource type is `spot-fleet-request` and the
|
3090
3159
|
# unique identifier is the Spot Fleet request ID. Example:
|
@@ -3147,7 +3216,7 @@ module Aws::ApplicationAutoScaling
|
|
3147
3216
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
3148
3217
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
3149
3218
|
#
|
3150
|
-
# * SageMaker
|
3219
|
+
# * SageMaker serverless endpoint - The resource type is `variant` and
|
3151
3220
|
# the unique identifier is the resource ID. Example:
|
3152
3221
|
# `endpoint/my-end-point/variant/KMeansClustering`.
|
3153
3222
|
#
|
@@ -3155,6 +3224,10 @@ module Aws::ApplicationAutoScaling
|
|
3155
3224
|
# `inference-component` and the unique identifier is the resource
|
3156
3225
|
# ID. Example: `inference-component/my-inference-component`.
|
3157
3226
|
#
|
3227
|
+
# * Amazon WorkSpaces - The resource type is `workspacespool` and the
|
3228
|
+
# unique identifier is the pool ID. Example:
|
3229
|
+
# `workspacespool/wspool-123456`.
|
3230
|
+
#
|
3158
3231
|
#
|
3159
3232
|
#
|
3160
3233
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -3164,8 +3237,7 @@ module Aws::ApplicationAutoScaling
|
|
3164
3237
|
# The scalable dimension. This string consists of the service
|
3165
3238
|
# namespace, resource type, and scaling property.
|
3166
3239
|
#
|
3167
|
-
# * `ecs:service:DesiredCount` - The
|
3168
|
-
# service.
|
3240
|
+
# * `ecs:service:DesiredCount` - The task count of an ECS service.
|
3169
3241
|
#
|
3170
3242
|
# * `elasticmapreduce:instancegroup:InstanceCount` - The instance
|
3171
3243
|
# count of an EMR Instance Group.
|
@@ -3173,8 +3245,8 @@ module Aws::ApplicationAutoScaling
|
|
3173
3245
|
# * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
|
3174
3246
|
# Spot Fleet.
|
3175
3247
|
#
|
3176
|
-
# * `appstream:fleet:DesiredCapacity` - The
|
3177
|
-
#
|
3248
|
+
# * `appstream:fleet:DesiredCapacity` - The capacity of an AppStream
|
3249
|
+
# 2.0 fleet.
|
3178
3250
|
#
|
3179
3251
|
# * `dynamodb:table:ReadCapacityUnits` - The provisioned read capacity
|
3180
3252
|
# for a DynamoDB table.
|
@@ -3228,10 +3300,13 @@ module Aws::ApplicationAutoScaling
|
|
3228
3300
|
# an Amazon Neptune DB cluster.
|
3229
3301
|
#
|
3230
3302
|
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The
|
3231
|
-
# provisioned concurrency for a SageMaker
|
3303
|
+
# provisioned concurrency for a SageMaker serverless endpoint.
|
3232
3304
|
#
|
3233
3305
|
# * `sagemaker:inference-component:DesiredCopyCount` - The number of
|
3234
3306
|
# copies across an endpoint for a SageMaker inference component.
|
3307
|
+
#
|
3308
|
+
# * `workspaces:workspacespool:DesiredUserSessions` - The capacity of
|
3309
|
+
# a WorkSpaces pool.
|
3235
3310
|
# @return [String]
|
3236
3311
|
#
|
3237
3312
|
# @!attribute [rw] policy_type
|
@@ -3317,13 +3392,12 @@ module Aws::ApplicationAutoScaling
|
|
3317
3392
|
# For rate expressions, *value* is a positive integer and *unit* is
|
3318
3393
|
# `minute` \| `minutes` \| `hour` \| `hours` \| `day` \| `days`.
|
3319
3394
|
#
|
3320
|
-
# For more information
|
3321
|
-
#
|
3322
|
-
# User Guide*.
|
3395
|
+
# For more information, see [Schedule recurring scaling actions using
|
3396
|
+
# cron expressions][1] in the *Application Auto Scaling User Guide*.
|
3323
3397
|
#
|
3324
3398
|
#
|
3325
3399
|
#
|
3326
|
-
# [1]: https://docs.aws.amazon.com/autoscaling/application/userguide/
|
3400
|
+
# [1]: https://docs.aws.amazon.com/autoscaling/application/userguide/scheduled-scaling-using-cron-expressions.html
|
3327
3401
|
# @return [String]
|
3328
3402
|
#
|
3329
3403
|
# @!attribute [rw] timezone
|
@@ -3338,7 +3412,7 @@ module Aws::ApplicationAutoScaling
|
|
3338
3412
|
#
|
3339
3413
|
# * ECS service - The resource type is `service` and the unique
|
3340
3414
|
# identifier is the cluster name and service name. Example:
|
3341
|
-
# `service/
|
3415
|
+
# `service/my-cluster/my-service`.
|
3342
3416
|
#
|
3343
3417
|
# * Spot Fleet - The resource type is `spot-fleet-request` and the
|
3344
3418
|
# unique identifier is the Spot Fleet request ID. Example:
|
@@ -3401,7 +3475,7 @@ module Aws::ApplicationAutoScaling
|
|
3401
3475
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
3402
3476
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
3403
3477
|
#
|
3404
|
-
# * SageMaker
|
3478
|
+
# * SageMaker serverless endpoint - The resource type is `variant` and
|
3405
3479
|
# the unique identifier is the resource ID. Example:
|
3406
3480
|
# `endpoint/my-end-point/variant/KMeansClustering`.
|
3407
3481
|
#
|
@@ -3409,6 +3483,10 @@ module Aws::ApplicationAutoScaling
|
|
3409
3483
|
# `inference-component` and the unique identifier is the resource
|
3410
3484
|
# ID. Example: `inference-component/my-inference-component`.
|
3411
3485
|
#
|
3486
|
+
# * Amazon WorkSpaces - The resource type is `workspacespool` and the
|
3487
|
+
# unique identifier is the pool ID. Example:
|
3488
|
+
# `workspacespool/wspool-123456`.
|
3489
|
+
#
|
3412
3490
|
#
|
3413
3491
|
#
|
3414
3492
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -3418,8 +3496,7 @@ module Aws::ApplicationAutoScaling
|
|
3418
3496
|
# The scalable dimension. This string consists of the service
|
3419
3497
|
# namespace, resource type, and scaling property.
|
3420
3498
|
#
|
3421
|
-
# * `ecs:service:DesiredCount` - The
|
3422
|
-
# service.
|
3499
|
+
# * `ecs:service:DesiredCount` - The task count of an ECS service.
|
3423
3500
|
#
|
3424
3501
|
# * `elasticmapreduce:instancegroup:InstanceCount` - The instance
|
3425
3502
|
# count of an EMR Instance Group.
|
@@ -3427,8 +3504,8 @@ module Aws::ApplicationAutoScaling
|
|
3427
3504
|
# * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
|
3428
3505
|
# Spot Fleet.
|
3429
3506
|
#
|
3430
|
-
# * `appstream:fleet:DesiredCapacity` - The
|
3431
|
-
#
|
3507
|
+
# * `appstream:fleet:DesiredCapacity` - The capacity of an AppStream
|
3508
|
+
# 2.0 fleet.
|
3432
3509
|
#
|
3433
3510
|
# * `dynamodb:table:ReadCapacityUnits` - The provisioned read capacity
|
3434
3511
|
# for a DynamoDB table.
|
@@ -3482,10 +3559,13 @@ module Aws::ApplicationAutoScaling
|
|
3482
3559
|
# an Amazon Neptune DB cluster.
|
3483
3560
|
#
|
3484
3561
|
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The
|
3485
|
-
# provisioned concurrency for a SageMaker
|
3562
|
+
# provisioned concurrency for a SageMaker serverless endpoint.
|
3486
3563
|
#
|
3487
3564
|
# * `sagemaker:inference-component:DesiredCopyCount` - The number of
|
3488
3565
|
# copies across an endpoint for a SageMaker inference component.
|
3566
|
+
#
|
3567
|
+
# * `workspaces:workspacespool:DesiredUserSessions` - The capacity of
|
3568
|
+
# a WorkSpaces pool.
|
3489
3569
|
# @return [String]
|
3490
3570
|
#
|
3491
3571
|
# @!attribute [rw] start_time
|
@@ -3726,7 +3806,7 @@ module Aws::ApplicationAutoScaling
|
|
3726
3806
|
#
|
3727
3807
|
# For information about the rules that apply to tag keys and tag
|
3728
3808
|
# values, see [User-defined tag restrictions][1] in the *Amazon Web
|
3729
|
-
# Services Billing
|
3809
|
+
# Services Billing User Guide*.
|
3730
3810
|
#
|
3731
3811
|
#
|
3732
3812
|
#
|
@@ -3881,7 +3961,7 @@ module Aws::ApplicationAutoScaling
|
|
3881
3961
|
end
|
3882
3962
|
|
3883
3963
|
# This structure defines the CloudWatch metric to return, along with the
|
3884
|
-
# statistic
|
3964
|
+
# statistic and unit.
|
3885
3965
|
#
|
3886
3966
|
# For more information about the CloudWatch terminology below, see
|
3887
3967
|
# [Amazon CloudWatch concepts][1] in the *Amazon CloudWatch User Guide*.
|