aws-sdk-applicationautoscaling 1.55.0 → 1.56.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-applicationautoscaling/client.rb +163 -95
- data/lib/aws-sdk-applicationautoscaling/types.rb +224 -141
- data/lib/aws-sdk-applicationautoscaling.rb +1 -1
- metadata +2 -2
@@ -130,9 +130,9 @@ module Aws::ApplicationAutoScaling
|
|
130
130
|
#
|
131
131
|
# {
|
132
132
|
# policy_name: "ResourceIdMaxLen1600", # required
|
133
|
-
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache
|
133
|
+
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune
|
134
134
|
# resource_id: "ResourceIdMaxLen1600", # required
|
135
|
-
# scalable_dimension: "ecs:service:DesiredCount", # required, accepts ecs:service:DesiredCount, ec2:spot-fleet-request:TargetCapacity, elasticmapreduce:instancegroup:InstanceCount, appstream:fleet:DesiredCapacity, dynamodb:table:ReadCapacityUnits, dynamodb:table:WriteCapacityUnits, dynamodb:index:ReadCapacityUnits, dynamodb:index:WriteCapacityUnits, rds:cluster:ReadReplicaCount, sagemaker:variant:DesiredInstanceCount, custom-resource:ResourceType:Property, comprehend:document-classifier-endpoint:DesiredInferenceUnits, comprehend:entity-recognizer-endpoint:DesiredInferenceUnits, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits, kafka:broker-storage:VolumeSize, elasticache:replication-group:NodeGroups, elasticache:replication-group:Replicas
|
135
|
+
# scalable_dimension: "ecs:service:DesiredCount", # required, accepts ecs:service:DesiredCount, ec2:spot-fleet-request:TargetCapacity, elasticmapreduce:instancegroup:InstanceCount, appstream:fleet:DesiredCapacity, dynamodb:table:ReadCapacityUnits, dynamodb:table:WriteCapacityUnits, dynamodb:index:ReadCapacityUnits, dynamodb:index:WriteCapacityUnits, rds:cluster:ReadReplicaCount, sagemaker:variant:DesiredInstanceCount, custom-resource:ResourceType:Property, comprehend:document-classifier-endpoint:DesiredInferenceUnits, comprehend:entity-recognizer-endpoint:DesiredInferenceUnits, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits, kafka:broker-storage:VolumeSize, elasticache:replication-group:NodeGroups, elasticache:replication-group:Replicas, neptune:cluster:ReadReplicaCount
|
136
136
|
# }
|
137
137
|
#
|
138
138
|
# @!attribute [rw] policy_name
|
@@ -153,8 +153,8 @@ module Aws::ApplicationAutoScaling
|
|
153
153
|
# identifier is the cluster name and service name. Example:
|
154
154
|
# `service/default/sample-webapp`.
|
155
155
|
#
|
156
|
-
# * Spot Fleet
|
157
|
-
#
|
156
|
+
# * Spot Fleet - The resource type is `spot-fleet-request` and the
|
157
|
+
# unique identifier is the Spot Fleet request ID. Example:
|
158
158
|
# `spot-fleet-request/sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE`.
|
159
159
|
#
|
160
160
|
# * EMR cluster - The resource type is `instancegroup` and the unique
|
@@ -174,8 +174,8 @@ module Aws::ApplicationAutoScaling
|
|
174
174
|
# * Aurora DB cluster - The resource type is `cluster` and the unique
|
175
175
|
# identifier is the cluster name. Example: `cluster:my-db-cluster`.
|
176
176
|
#
|
177
|
-
# *
|
178
|
-
#
|
177
|
+
# * SageMaker endpoint variant - The resource type is `variant` and
|
178
|
+
# the unique identifier is the resource ID. Example:
|
179
179
|
# `endpoint/my-end-point/variant/KMeansClustering`.
|
180
180
|
#
|
181
181
|
# * Custom resources are not supported with a resource type. This
|
@@ -211,6 +211,9 @@ module Aws::ApplicationAutoScaling
|
|
211
211
|
# `replication-group` and the unique identifier is the replication
|
212
212
|
# group name. Example: `replication-group/mycluster`.
|
213
213
|
#
|
214
|
+
# * Neptune cluster - The resource type is `cluster` and the unique
|
215
|
+
# identifier is the cluster name. Example: `cluster:mycluster`.
|
216
|
+
#
|
214
217
|
#
|
215
218
|
#
|
216
219
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -227,7 +230,7 @@ module Aws::ApplicationAutoScaling
|
|
227
230
|
# count of an EMR Instance Group.
|
228
231
|
#
|
229
232
|
# * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
|
230
|
-
# Spot Fleet
|
233
|
+
# Spot Fleet.
|
231
234
|
#
|
232
235
|
# * `appstream:fleet:DesiredCapacity` - The desired capacity of an
|
233
236
|
# AppStream 2.0 fleet.
|
@@ -249,7 +252,7 @@ module Aws::ApplicationAutoScaling
|
|
249
252
|
# edition and Aurora PostgreSQL-compatible edition.
|
250
253
|
#
|
251
254
|
# * `sagemaker:variant:DesiredInstanceCount` - The number of EC2
|
252
|
-
# instances for an
|
255
|
+
# instances for an SageMaker model endpoint variant.
|
253
256
|
#
|
254
257
|
# * `custom-resource:ResourceType:Property` - The scalable dimension
|
255
258
|
# for a custom resource provided by your own application or service.
|
@@ -279,6 +282,9 @@ module Aws::ApplicationAutoScaling
|
|
279
282
|
#
|
280
283
|
# * `elasticache:replication-group:Replicas` - The number of replicas
|
281
284
|
# per node group for an Amazon ElastiCache replication group.
|
285
|
+
#
|
286
|
+
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
287
|
+
# an Amazon Neptune DB cluster.
|
282
288
|
# @return [String]
|
283
289
|
#
|
284
290
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeleteScalingPolicyRequest AWS API Documentation
|
@@ -300,10 +306,10 @@ module Aws::ApplicationAutoScaling
|
|
300
306
|
# data as a hash:
|
301
307
|
#
|
302
308
|
# {
|
303
|
-
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache
|
309
|
+
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune
|
304
310
|
# scheduled_action_name: "ResourceIdMaxLen1600", # required
|
305
311
|
# resource_id: "ResourceIdMaxLen1600", # required
|
306
|
-
# scalable_dimension: "ecs:service:DesiredCount", # required, accepts ecs:service:DesiredCount, ec2:spot-fleet-request:TargetCapacity, elasticmapreduce:instancegroup:InstanceCount, appstream:fleet:DesiredCapacity, dynamodb:table:ReadCapacityUnits, dynamodb:table:WriteCapacityUnits, dynamodb:index:ReadCapacityUnits, dynamodb:index:WriteCapacityUnits, rds:cluster:ReadReplicaCount, sagemaker:variant:DesiredInstanceCount, custom-resource:ResourceType:Property, comprehend:document-classifier-endpoint:DesiredInferenceUnits, comprehend:entity-recognizer-endpoint:DesiredInferenceUnits, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits, kafka:broker-storage:VolumeSize, elasticache:replication-group:NodeGroups, elasticache:replication-group:Replicas
|
312
|
+
# scalable_dimension: "ecs:service:DesiredCount", # required, accepts ecs:service:DesiredCount, ec2:spot-fleet-request:TargetCapacity, elasticmapreduce:instancegroup:InstanceCount, appstream:fleet:DesiredCapacity, dynamodb:table:ReadCapacityUnits, dynamodb:table:WriteCapacityUnits, dynamodb:index:ReadCapacityUnits, dynamodb:index:WriteCapacityUnits, rds:cluster:ReadReplicaCount, sagemaker:variant:DesiredInstanceCount, custom-resource:ResourceType:Property, comprehend:document-classifier-endpoint:DesiredInferenceUnits, comprehend:entity-recognizer-endpoint:DesiredInferenceUnits, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits, kafka:broker-storage:VolumeSize, elasticache:replication-group:NodeGroups, elasticache:replication-group:Replicas, neptune:cluster:ReadReplicaCount
|
307
313
|
# }
|
308
314
|
#
|
309
315
|
# @!attribute [rw] service_namespace
|
@@ -324,8 +330,8 @@ module Aws::ApplicationAutoScaling
|
|
324
330
|
# identifier is the cluster name and service name. Example:
|
325
331
|
# `service/default/sample-webapp`.
|
326
332
|
#
|
327
|
-
# * Spot Fleet
|
328
|
-
#
|
333
|
+
# * Spot Fleet - The resource type is `spot-fleet-request` and the
|
334
|
+
# unique identifier is the Spot Fleet request ID. Example:
|
329
335
|
# `spot-fleet-request/sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE`.
|
330
336
|
#
|
331
337
|
# * EMR cluster - The resource type is `instancegroup` and the unique
|
@@ -345,8 +351,8 @@ module Aws::ApplicationAutoScaling
|
|
345
351
|
# * Aurora DB cluster - The resource type is `cluster` and the unique
|
346
352
|
# identifier is the cluster name. Example: `cluster:my-db-cluster`.
|
347
353
|
#
|
348
|
-
# *
|
349
|
-
#
|
354
|
+
# * SageMaker endpoint variant - The resource type is `variant` and
|
355
|
+
# the unique identifier is the resource ID. Example:
|
350
356
|
# `endpoint/my-end-point/variant/KMeansClustering`.
|
351
357
|
#
|
352
358
|
# * Custom resources are not supported with a resource type. This
|
@@ -382,6 +388,9 @@ module Aws::ApplicationAutoScaling
|
|
382
388
|
# `replication-group` and the unique identifier is the replication
|
383
389
|
# group name. Example: `replication-group/mycluster`.
|
384
390
|
#
|
391
|
+
# * Neptune cluster - The resource type is `cluster` and the unique
|
392
|
+
# identifier is the cluster name. Example: `cluster:mycluster`.
|
393
|
+
#
|
385
394
|
#
|
386
395
|
#
|
387
396
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -398,7 +407,7 @@ module Aws::ApplicationAutoScaling
|
|
398
407
|
# count of an EMR Instance Group.
|
399
408
|
#
|
400
409
|
# * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
|
401
|
-
# Spot Fleet
|
410
|
+
# Spot Fleet.
|
402
411
|
#
|
403
412
|
# * `appstream:fleet:DesiredCapacity` - The desired capacity of an
|
404
413
|
# AppStream 2.0 fleet.
|
@@ -420,7 +429,7 @@ module Aws::ApplicationAutoScaling
|
|
420
429
|
# edition and Aurora PostgreSQL-compatible edition.
|
421
430
|
#
|
422
431
|
# * `sagemaker:variant:DesiredInstanceCount` - The number of EC2
|
423
|
-
# instances for an
|
432
|
+
# instances for an SageMaker model endpoint variant.
|
424
433
|
#
|
425
434
|
# * `custom-resource:ResourceType:Property` - The scalable dimension
|
426
435
|
# for a custom resource provided by your own application or service.
|
@@ -450,6 +459,9 @@ module Aws::ApplicationAutoScaling
|
|
450
459
|
#
|
451
460
|
# * `elasticache:replication-group:Replicas` - The number of replicas
|
452
461
|
# per node group for an Amazon ElastiCache replication group.
|
462
|
+
#
|
463
|
+
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
464
|
+
# an Amazon Neptune DB cluster.
|
453
465
|
# @return [String]
|
454
466
|
#
|
455
467
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeleteScheduledActionRequest AWS API Documentation
|
@@ -471,9 +483,9 @@ module Aws::ApplicationAutoScaling
|
|
471
483
|
# data as a hash:
|
472
484
|
#
|
473
485
|
# {
|
474
|
-
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache
|
486
|
+
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune
|
475
487
|
# resource_id: "ResourceIdMaxLen1600", # required
|
476
|
-
# scalable_dimension: "ecs:service:DesiredCount", # required, accepts ecs:service:DesiredCount, ec2:spot-fleet-request:TargetCapacity, elasticmapreduce:instancegroup:InstanceCount, appstream:fleet:DesiredCapacity, dynamodb:table:ReadCapacityUnits, dynamodb:table:WriteCapacityUnits, dynamodb:index:ReadCapacityUnits, dynamodb:index:WriteCapacityUnits, rds:cluster:ReadReplicaCount, sagemaker:variant:DesiredInstanceCount, custom-resource:ResourceType:Property, comprehend:document-classifier-endpoint:DesiredInferenceUnits, comprehend:entity-recognizer-endpoint:DesiredInferenceUnits, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits, kafka:broker-storage:VolumeSize, elasticache:replication-group:NodeGroups, elasticache:replication-group:Replicas
|
488
|
+
# scalable_dimension: "ecs:service:DesiredCount", # required, accepts ecs:service:DesiredCount, ec2:spot-fleet-request:TargetCapacity, elasticmapreduce:instancegroup:InstanceCount, appstream:fleet:DesiredCapacity, dynamodb:table:ReadCapacityUnits, dynamodb:table:WriteCapacityUnits, dynamodb:index:ReadCapacityUnits, dynamodb:index:WriteCapacityUnits, rds:cluster:ReadReplicaCount, sagemaker:variant:DesiredInstanceCount, custom-resource:ResourceType:Property, comprehend:document-classifier-endpoint:DesiredInferenceUnits, comprehend:entity-recognizer-endpoint:DesiredInferenceUnits, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits, kafka:broker-storage:VolumeSize, elasticache:replication-group:NodeGroups, elasticache:replication-group:Replicas, neptune:cluster:ReadReplicaCount
|
477
489
|
# }
|
478
490
|
#
|
479
491
|
# @!attribute [rw] service_namespace
|
@@ -490,8 +502,8 @@ module Aws::ApplicationAutoScaling
|
|
490
502
|
# identifier is the cluster name and service name. Example:
|
491
503
|
# `service/default/sample-webapp`.
|
492
504
|
#
|
493
|
-
# * Spot Fleet
|
494
|
-
#
|
505
|
+
# * Spot Fleet - The resource type is `spot-fleet-request` and the
|
506
|
+
# unique identifier is the Spot Fleet request ID. Example:
|
495
507
|
# `spot-fleet-request/sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE`.
|
496
508
|
#
|
497
509
|
# * EMR cluster - The resource type is `instancegroup` and the unique
|
@@ -511,8 +523,8 @@ module Aws::ApplicationAutoScaling
|
|
511
523
|
# * Aurora DB cluster - The resource type is `cluster` and the unique
|
512
524
|
# identifier is the cluster name. Example: `cluster:my-db-cluster`.
|
513
525
|
#
|
514
|
-
# *
|
515
|
-
#
|
526
|
+
# * SageMaker endpoint variant - The resource type is `variant` and
|
527
|
+
# the unique identifier is the resource ID. Example:
|
516
528
|
# `endpoint/my-end-point/variant/KMeansClustering`.
|
517
529
|
#
|
518
530
|
# * Custom resources are not supported with a resource type. This
|
@@ -548,6 +560,9 @@ module Aws::ApplicationAutoScaling
|
|
548
560
|
# `replication-group` and the unique identifier is the replication
|
549
561
|
# group name. Example: `replication-group/mycluster`.
|
550
562
|
#
|
563
|
+
# * Neptune cluster - The resource type is `cluster` and the unique
|
564
|
+
# identifier is the cluster name. Example: `cluster:mycluster`.
|
565
|
+
#
|
551
566
|
#
|
552
567
|
#
|
553
568
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -565,7 +580,7 @@ module Aws::ApplicationAutoScaling
|
|
565
580
|
# count of an EMR Instance Group.
|
566
581
|
#
|
567
582
|
# * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
|
568
|
-
# Spot Fleet
|
583
|
+
# Spot Fleet.
|
569
584
|
#
|
570
585
|
# * `appstream:fleet:DesiredCapacity` - The desired capacity of an
|
571
586
|
# AppStream 2.0 fleet.
|
@@ -587,7 +602,7 @@ module Aws::ApplicationAutoScaling
|
|
587
602
|
# edition and Aurora PostgreSQL-compatible edition.
|
588
603
|
#
|
589
604
|
# * `sagemaker:variant:DesiredInstanceCount` - The number of EC2
|
590
|
-
# instances for an
|
605
|
+
# instances for an SageMaker model endpoint variant.
|
591
606
|
#
|
592
607
|
# * `custom-resource:ResourceType:Property` - The scalable dimension
|
593
608
|
# for a custom resource provided by your own application or service.
|
@@ -617,6 +632,9 @@ module Aws::ApplicationAutoScaling
|
|
617
632
|
#
|
618
633
|
# * `elasticache:replication-group:Replicas` - The number of replicas
|
619
634
|
# per node group for an Amazon ElastiCache replication group.
|
635
|
+
#
|
636
|
+
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
637
|
+
# an Amazon Neptune DB cluster.
|
620
638
|
# @return [String]
|
621
639
|
#
|
622
640
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeregisterScalableTargetRequest AWS API Documentation
|
@@ -637,9 +655,9 @@ module Aws::ApplicationAutoScaling
|
|
637
655
|
# data as a hash:
|
638
656
|
#
|
639
657
|
# {
|
640
|
-
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache
|
658
|
+
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune
|
641
659
|
# resource_ids: ["ResourceIdMaxLen1600"],
|
642
|
-
# scalable_dimension: "ecs:service:DesiredCount", # accepts ecs:service:DesiredCount, ec2:spot-fleet-request:TargetCapacity, elasticmapreduce:instancegroup:InstanceCount, appstream:fleet:DesiredCapacity, dynamodb:table:ReadCapacityUnits, dynamodb:table:WriteCapacityUnits, dynamodb:index:ReadCapacityUnits, dynamodb:index:WriteCapacityUnits, rds:cluster:ReadReplicaCount, sagemaker:variant:DesiredInstanceCount, custom-resource:ResourceType:Property, comprehend:document-classifier-endpoint:DesiredInferenceUnits, comprehend:entity-recognizer-endpoint:DesiredInferenceUnits, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits, kafka:broker-storage:VolumeSize, elasticache:replication-group:NodeGroups, elasticache:replication-group:Replicas
|
660
|
+
# scalable_dimension: "ecs:service:DesiredCount", # accepts ecs:service:DesiredCount, ec2:spot-fleet-request:TargetCapacity, elasticmapreduce:instancegroup:InstanceCount, appstream:fleet:DesiredCapacity, dynamodb:table:ReadCapacityUnits, dynamodb:table:WriteCapacityUnits, dynamodb:index:ReadCapacityUnits, dynamodb:index:WriteCapacityUnits, rds:cluster:ReadReplicaCount, sagemaker:variant:DesiredInstanceCount, custom-resource:ResourceType:Property, comprehend:document-classifier-endpoint:DesiredInferenceUnits, comprehend:entity-recognizer-endpoint:DesiredInferenceUnits, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits, kafka:broker-storage:VolumeSize, elasticache:replication-group:NodeGroups, elasticache:replication-group:Replicas, neptune:cluster:ReadReplicaCount
|
643
661
|
# max_results: 1,
|
644
662
|
# next_token: "XmlString",
|
645
663
|
# }
|
@@ -658,8 +676,8 @@ module Aws::ApplicationAutoScaling
|
|
658
676
|
# identifier is the cluster name and service name. Example:
|
659
677
|
# `service/default/sample-webapp`.
|
660
678
|
#
|
661
|
-
# * Spot Fleet
|
662
|
-
#
|
679
|
+
# * Spot Fleet - The resource type is `spot-fleet-request` and the
|
680
|
+
# unique identifier is the Spot Fleet request ID. Example:
|
663
681
|
# `spot-fleet-request/sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE`.
|
664
682
|
#
|
665
683
|
# * EMR cluster - The resource type is `instancegroup` and the unique
|
@@ -679,8 +697,8 @@ module Aws::ApplicationAutoScaling
|
|
679
697
|
# * Aurora DB cluster - The resource type is `cluster` and the unique
|
680
698
|
# identifier is the cluster name. Example: `cluster:my-db-cluster`.
|
681
699
|
#
|
682
|
-
# *
|
683
|
-
#
|
700
|
+
# * SageMaker endpoint variant - The resource type is `variant` and
|
701
|
+
# the unique identifier is the resource ID. Example:
|
684
702
|
# `endpoint/my-end-point/variant/KMeansClustering`.
|
685
703
|
#
|
686
704
|
# * Custom resources are not supported with a resource type. This
|
@@ -716,6 +734,9 @@ module Aws::ApplicationAutoScaling
|
|
716
734
|
# `replication-group` and the unique identifier is the replication
|
717
735
|
# group name. Example: `replication-group/mycluster`.
|
718
736
|
#
|
737
|
+
# * Neptune cluster - The resource type is `cluster` and the unique
|
738
|
+
# identifier is the cluster name. Example: `cluster:mycluster`.
|
739
|
+
#
|
719
740
|
#
|
720
741
|
#
|
721
742
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -734,7 +755,7 @@ module Aws::ApplicationAutoScaling
|
|
734
755
|
# count of an EMR Instance Group.
|
735
756
|
#
|
736
757
|
# * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
|
737
|
-
# Spot Fleet
|
758
|
+
# Spot Fleet.
|
738
759
|
#
|
739
760
|
# * `appstream:fleet:DesiredCapacity` - The desired capacity of an
|
740
761
|
# AppStream 2.0 fleet.
|
@@ -756,7 +777,7 @@ module Aws::ApplicationAutoScaling
|
|
756
777
|
# edition and Aurora PostgreSQL-compatible edition.
|
757
778
|
#
|
758
779
|
# * `sagemaker:variant:DesiredInstanceCount` - The number of EC2
|
759
|
-
# instances for an
|
780
|
+
# instances for an SageMaker model endpoint variant.
|
760
781
|
#
|
761
782
|
# * `custom-resource:ResourceType:Property` - The scalable dimension
|
762
783
|
# for a custom resource provided by your own application or service.
|
@@ -786,6 +807,9 @@ module Aws::ApplicationAutoScaling
|
|
786
807
|
#
|
787
808
|
# * `elasticache:replication-group:Replicas` - The number of replicas
|
788
809
|
# per node group for an Amazon ElastiCache replication group.
|
810
|
+
#
|
811
|
+
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
812
|
+
# an Amazon Neptune DB cluster.
|
789
813
|
# @return [String]
|
790
814
|
#
|
791
815
|
# @!attribute [rw] max_results
|
@@ -837,9 +861,9 @@ module Aws::ApplicationAutoScaling
|
|
837
861
|
# data as a hash:
|
838
862
|
#
|
839
863
|
# {
|
840
|
-
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache
|
864
|
+
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune
|
841
865
|
# resource_id: "ResourceIdMaxLen1600",
|
842
|
-
# scalable_dimension: "ecs:service:DesiredCount", # accepts ecs:service:DesiredCount, ec2:spot-fleet-request:TargetCapacity, elasticmapreduce:instancegroup:InstanceCount, appstream:fleet:DesiredCapacity, dynamodb:table:ReadCapacityUnits, dynamodb:table:WriteCapacityUnits, dynamodb:index:ReadCapacityUnits, dynamodb:index:WriteCapacityUnits, rds:cluster:ReadReplicaCount, sagemaker:variant:DesiredInstanceCount, custom-resource:ResourceType:Property, comprehend:document-classifier-endpoint:DesiredInferenceUnits, comprehend:entity-recognizer-endpoint:DesiredInferenceUnits, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits, kafka:broker-storage:VolumeSize, elasticache:replication-group:NodeGroups, elasticache:replication-group:Replicas
|
866
|
+
# scalable_dimension: "ecs:service:DesiredCount", # accepts ecs:service:DesiredCount, ec2:spot-fleet-request:TargetCapacity, elasticmapreduce:instancegroup:InstanceCount, appstream:fleet:DesiredCapacity, dynamodb:table:ReadCapacityUnits, dynamodb:table:WriteCapacityUnits, dynamodb:index:ReadCapacityUnits, dynamodb:index:WriteCapacityUnits, rds:cluster:ReadReplicaCount, sagemaker:variant:DesiredInstanceCount, custom-resource:ResourceType:Property, comprehend:document-classifier-endpoint:DesiredInferenceUnits, comprehend:entity-recognizer-endpoint:DesiredInferenceUnits, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits, kafka:broker-storage:VolumeSize, elasticache:replication-group:NodeGroups, elasticache:replication-group:Replicas, neptune:cluster:ReadReplicaCount
|
843
867
|
# max_results: 1,
|
844
868
|
# next_token: "XmlString",
|
845
869
|
# }
|
@@ -858,8 +882,8 @@ module Aws::ApplicationAutoScaling
|
|
858
882
|
# identifier is the cluster name and service name. Example:
|
859
883
|
# `service/default/sample-webapp`.
|
860
884
|
#
|
861
|
-
# * Spot Fleet
|
862
|
-
#
|
885
|
+
# * Spot Fleet - The resource type is `spot-fleet-request` and the
|
886
|
+
# unique identifier is the Spot Fleet request ID. Example:
|
863
887
|
# `spot-fleet-request/sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE`.
|
864
888
|
#
|
865
889
|
# * EMR cluster - The resource type is `instancegroup` and the unique
|
@@ -879,8 +903,8 @@ module Aws::ApplicationAutoScaling
|
|
879
903
|
# * Aurora DB cluster - The resource type is `cluster` and the unique
|
880
904
|
# identifier is the cluster name. Example: `cluster:my-db-cluster`.
|
881
905
|
#
|
882
|
-
# *
|
883
|
-
#
|
906
|
+
# * SageMaker endpoint variant - The resource type is `variant` and
|
907
|
+
# the unique identifier is the resource ID. Example:
|
884
908
|
# `endpoint/my-end-point/variant/KMeansClustering`.
|
885
909
|
#
|
886
910
|
# * Custom resources are not supported with a resource type. This
|
@@ -916,6 +940,9 @@ module Aws::ApplicationAutoScaling
|
|
916
940
|
# `replication-group` and the unique identifier is the replication
|
917
941
|
# group name. Example: `replication-group/mycluster`.
|
918
942
|
#
|
943
|
+
# * Neptune cluster - The resource type is `cluster` and the unique
|
944
|
+
# identifier is the cluster name. Example: `cluster:mycluster`.
|
945
|
+
#
|
919
946
|
#
|
920
947
|
#
|
921
948
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -933,7 +960,7 @@ module Aws::ApplicationAutoScaling
|
|
933
960
|
# count of an EMR Instance Group.
|
934
961
|
#
|
935
962
|
# * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
|
936
|
-
# Spot Fleet
|
963
|
+
# Spot Fleet.
|
937
964
|
#
|
938
965
|
# * `appstream:fleet:DesiredCapacity` - The desired capacity of an
|
939
966
|
# AppStream 2.0 fleet.
|
@@ -955,7 +982,7 @@ module Aws::ApplicationAutoScaling
|
|
955
982
|
# edition and Aurora PostgreSQL-compatible edition.
|
956
983
|
#
|
957
984
|
# * `sagemaker:variant:DesiredInstanceCount` - The number of EC2
|
958
|
-
# instances for an
|
985
|
+
# instances for an SageMaker model endpoint variant.
|
959
986
|
#
|
960
987
|
# * `custom-resource:ResourceType:Property` - The scalable dimension
|
961
988
|
# for a custom resource provided by your own application or service.
|
@@ -985,6 +1012,9 @@ module Aws::ApplicationAutoScaling
|
|
985
1012
|
#
|
986
1013
|
# * `elasticache:replication-group:Replicas` - The number of replicas
|
987
1014
|
# per node group for an Amazon ElastiCache replication group.
|
1015
|
+
#
|
1016
|
+
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
1017
|
+
# an Amazon Neptune DB cluster.
|
988
1018
|
# @return [String]
|
989
1019
|
#
|
990
1020
|
# @!attribute [rw] max_results
|
@@ -1037,9 +1067,9 @@ module Aws::ApplicationAutoScaling
|
|
1037
1067
|
#
|
1038
1068
|
# {
|
1039
1069
|
# policy_names: ["ResourceIdMaxLen1600"],
|
1040
|
-
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache
|
1070
|
+
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune
|
1041
1071
|
# resource_id: "ResourceIdMaxLen1600",
|
1042
|
-
# scalable_dimension: "ecs:service:DesiredCount", # accepts ecs:service:DesiredCount, ec2:spot-fleet-request:TargetCapacity, elasticmapreduce:instancegroup:InstanceCount, appstream:fleet:DesiredCapacity, dynamodb:table:ReadCapacityUnits, dynamodb:table:WriteCapacityUnits, dynamodb:index:ReadCapacityUnits, dynamodb:index:WriteCapacityUnits, rds:cluster:ReadReplicaCount, sagemaker:variant:DesiredInstanceCount, custom-resource:ResourceType:Property, comprehend:document-classifier-endpoint:DesiredInferenceUnits, comprehend:entity-recognizer-endpoint:DesiredInferenceUnits, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits, kafka:broker-storage:VolumeSize, elasticache:replication-group:NodeGroups, elasticache:replication-group:Replicas
|
1072
|
+
# scalable_dimension: "ecs:service:DesiredCount", # accepts ecs:service:DesiredCount, ec2:spot-fleet-request:TargetCapacity, elasticmapreduce:instancegroup:InstanceCount, appstream:fleet:DesiredCapacity, dynamodb:table:ReadCapacityUnits, dynamodb:table:WriteCapacityUnits, dynamodb:index:ReadCapacityUnits, dynamodb:index:WriteCapacityUnits, rds:cluster:ReadReplicaCount, sagemaker:variant:DesiredInstanceCount, custom-resource:ResourceType:Property, comprehend:document-classifier-endpoint:DesiredInferenceUnits, comprehend:entity-recognizer-endpoint:DesiredInferenceUnits, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits, kafka:broker-storage:VolumeSize, elasticache:replication-group:NodeGroups, elasticache:replication-group:Replicas, neptune:cluster:ReadReplicaCount
|
1043
1073
|
# max_results: 1,
|
1044
1074
|
# next_token: "XmlString",
|
1045
1075
|
# }
|
@@ -1062,8 +1092,8 @@ module Aws::ApplicationAutoScaling
|
|
1062
1092
|
# identifier is the cluster name and service name. Example:
|
1063
1093
|
# `service/default/sample-webapp`.
|
1064
1094
|
#
|
1065
|
-
# * Spot Fleet
|
1066
|
-
#
|
1095
|
+
# * Spot Fleet - The resource type is `spot-fleet-request` and the
|
1096
|
+
# unique identifier is the Spot Fleet request ID. Example:
|
1067
1097
|
# `spot-fleet-request/sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE`.
|
1068
1098
|
#
|
1069
1099
|
# * EMR cluster - The resource type is `instancegroup` and the unique
|
@@ -1083,8 +1113,8 @@ module Aws::ApplicationAutoScaling
|
|
1083
1113
|
# * Aurora DB cluster - The resource type is `cluster` and the unique
|
1084
1114
|
# identifier is the cluster name. Example: `cluster:my-db-cluster`.
|
1085
1115
|
#
|
1086
|
-
# *
|
1087
|
-
#
|
1116
|
+
# * SageMaker endpoint variant - The resource type is `variant` and
|
1117
|
+
# the unique identifier is the resource ID. Example:
|
1088
1118
|
# `endpoint/my-end-point/variant/KMeansClustering`.
|
1089
1119
|
#
|
1090
1120
|
# * Custom resources are not supported with a resource type. This
|
@@ -1120,6 +1150,9 @@ module Aws::ApplicationAutoScaling
|
|
1120
1150
|
# `replication-group` and the unique identifier is the replication
|
1121
1151
|
# group name. Example: `replication-group/mycluster`.
|
1122
1152
|
#
|
1153
|
+
# * Neptune cluster - The resource type is `cluster` and the unique
|
1154
|
+
# identifier is the cluster name. Example: `cluster:mycluster`.
|
1155
|
+
#
|
1123
1156
|
#
|
1124
1157
|
#
|
1125
1158
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -1137,7 +1170,7 @@ module Aws::ApplicationAutoScaling
|
|
1137
1170
|
# count of an EMR Instance Group.
|
1138
1171
|
#
|
1139
1172
|
# * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
|
1140
|
-
# Spot Fleet
|
1173
|
+
# Spot Fleet.
|
1141
1174
|
#
|
1142
1175
|
# * `appstream:fleet:DesiredCapacity` - The desired capacity of an
|
1143
1176
|
# AppStream 2.0 fleet.
|
@@ -1159,7 +1192,7 @@ module Aws::ApplicationAutoScaling
|
|
1159
1192
|
# edition and Aurora PostgreSQL-compatible edition.
|
1160
1193
|
#
|
1161
1194
|
# * `sagemaker:variant:DesiredInstanceCount` - The number of EC2
|
1162
|
-
# instances for an
|
1195
|
+
# instances for an SageMaker model endpoint variant.
|
1163
1196
|
#
|
1164
1197
|
# * `custom-resource:ResourceType:Property` - The scalable dimension
|
1165
1198
|
# for a custom resource provided by your own application or service.
|
@@ -1189,16 +1222,19 @@ module Aws::ApplicationAutoScaling
|
|
1189
1222
|
#
|
1190
1223
|
# * `elasticache:replication-group:Replicas` - The number of replicas
|
1191
1224
|
# per node group for an Amazon ElastiCache replication group.
|
1225
|
+
#
|
1226
|
+
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
1227
|
+
# an Amazon Neptune DB cluster.
|
1192
1228
|
# @return [String]
|
1193
1229
|
#
|
1194
1230
|
# @!attribute [rw] max_results
|
1195
1231
|
# The maximum number of scalable targets. This value can be between 1
|
1196
|
-
# and
|
1232
|
+
# and 10. The default value is 10.
|
1197
1233
|
#
|
1198
1234
|
# If this parameter is used, the operation returns up to `MaxResults`
|
1199
1235
|
# results at a time, along with a `NextToken` value. To get the next
|
1200
1236
|
# set of results, include the `NextToken` value in a subsequent call.
|
1201
|
-
# If this parameter is not used, the operation returns up to
|
1237
|
+
# If this parameter is not used, the operation returns up to 10
|
1202
1238
|
# results and a `NextToken` value, if applicable.
|
1203
1239
|
# @return [Integer]
|
1204
1240
|
#
|
@@ -1242,9 +1278,9 @@ module Aws::ApplicationAutoScaling
|
|
1242
1278
|
#
|
1243
1279
|
# {
|
1244
1280
|
# scheduled_action_names: ["ResourceIdMaxLen1600"],
|
1245
|
-
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache
|
1281
|
+
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune
|
1246
1282
|
# resource_id: "ResourceIdMaxLen1600",
|
1247
|
-
# scalable_dimension: "ecs:service:DesiredCount", # accepts ecs:service:DesiredCount, ec2:spot-fleet-request:TargetCapacity, elasticmapreduce:instancegroup:InstanceCount, appstream:fleet:DesiredCapacity, dynamodb:table:ReadCapacityUnits, dynamodb:table:WriteCapacityUnits, dynamodb:index:ReadCapacityUnits, dynamodb:index:WriteCapacityUnits, rds:cluster:ReadReplicaCount, sagemaker:variant:DesiredInstanceCount, custom-resource:ResourceType:Property, comprehend:document-classifier-endpoint:DesiredInferenceUnits, comprehend:entity-recognizer-endpoint:DesiredInferenceUnits, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits, kafka:broker-storage:VolumeSize, elasticache:replication-group:NodeGroups, elasticache:replication-group:Replicas
|
1283
|
+
# scalable_dimension: "ecs:service:DesiredCount", # accepts ecs:service:DesiredCount, ec2:spot-fleet-request:TargetCapacity, elasticmapreduce:instancegroup:InstanceCount, appstream:fleet:DesiredCapacity, dynamodb:table:ReadCapacityUnits, dynamodb:table:WriteCapacityUnits, dynamodb:index:ReadCapacityUnits, dynamodb:index:WriteCapacityUnits, rds:cluster:ReadReplicaCount, sagemaker:variant:DesiredInstanceCount, custom-resource:ResourceType:Property, comprehend:document-classifier-endpoint:DesiredInferenceUnits, comprehend:entity-recognizer-endpoint:DesiredInferenceUnits, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits, kafka:broker-storage:VolumeSize, elasticache:replication-group:NodeGroups, elasticache:replication-group:Replicas, neptune:cluster:ReadReplicaCount
|
1248
1284
|
# max_results: 1,
|
1249
1285
|
# next_token: "XmlString",
|
1250
1286
|
# }
|
@@ -1267,8 +1303,8 @@ module Aws::ApplicationAutoScaling
|
|
1267
1303
|
# identifier is the cluster name and service name. Example:
|
1268
1304
|
# `service/default/sample-webapp`.
|
1269
1305
|
#
|
1270
|
-
# * Spot Fleet
|
1271
|
-
#
|
1306
|
+
# * Spot Fleet - The resource type is `spot-fleet-request` and the
|
1307
|
+
# unique identifier is the Spot Fleet request ID. Example:
|
1272
1308
|
# `spot-fleet-request/sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE`.
|
1273
1309
|
#
|
1274
1310
|
# * EMR cluster - The resource type is `instancegroup` and the unique
|
@@ -1288,8 +1324,8 @@ module Aws::ApplicationAutoScaling
|
|
1288
1324
|
# * Aurora DB cluster - The resource type is `cluster` and the unique
|
1289
1325
|
# identifier is the cluster name. Example: `cluster:my-db-cluster`.
|
1290
1326
|
#
|
1291
|
-
# *
|
1292
|
-
#
|
1327
|
+
# * SageMaker endpoint variant - The resource type is `variant` and
|
1328
|
+
# the unique identifier is the resource ID. Example:
|
1293
1329
|
# `endpoint/my-end-point/variant/KMeansClustering`.
|
1294
1330
|
#
|
1295
1331
|
# * Custom resources are not supported with a resource type. This
|
@@ -1325,6 +1361,9 @@ module Aws::ApplicationAutoScaling
|
|
1325
1361
|
# `replication-group` and the unique identifier is the replication
|
1326
1362
|
# group name. Example: `replication-group/mycluster`.
|
1327
1363
|
#
|
1364
|
+
# * Neptune cluster - The resource type is `cluster` and the unique
|
1365
|
+
# identifier is the cluster name. Example: `cluster:mycluster`.
|
1366
|
+
#
|
1328
1367
|
#
|
1329
1368
|
#
|
1330
1369
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -1342,7 +1381,7 @@ module Aws::ApplicationAutoScaling
|
|
1342
1381
|
# count of an EMR Instance Group.
|
1343
1382
|
#
|
1344
1383
|
# * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
|
1345
|
-
# Spot Fleet
|
1384
|
+
# Spot Fleet.
|
1346
1385
|
#
|
1347
1386
|
# * `appstream:fleet:DesiredCapacity` - The desired capacity of an
|
1348
1387
|
# AppStream 2.0 fleet.
|
@@ -1364,7 +1403,7 @@ module Aws::ApplicationAutoScaling
|
|
1364
1403
|
# edition and Aurora PostgreSQL-compatible edition.
|
1365
1404
|
#
|
1366
1405
|
# * `sagemaker:variant:DesiredInstanceCount` - The number of EC2
|
1367
|
-
# instances for an
|
1406
|
+
# instances for an SageMaker model endpoint variant.
|
1368
1407
|
#
|
1369
1408
|
# * `custom-resource:ResourceType:Property` - The scalable dimension
|
1370
1409
|
# for a custom resource provided by your own application or service.
|
@@ -1394,6 +1433,9 @@ module Aws::ApplicationAutoScaling
|
|
1394
1433
|
#
|
1395
1434
|
# * `elasticache:replication-group:Replicas` - The number of replicas
|
1396
1435
|
# per node group for an Amazon ElastiCache replication group.
|
1436
|
+
#
|
1437
|
+
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
1438
|
+
# an Amazon Neptune DB cluster.
|
1397
1439
|
# @return [String]
|
1398
1440
|
#
|
1399
1441
|
# @!attribute [rw] max_results
|
@@ -1569,7 +1611,7 @@ module Aws::ApplicationAutoScaling
|
|
1569
1611
|
# data as a hash:
|
1570
1612
|
#
|
1571
1613
|
# {
|
1572
|
-
# predefined_metric_type: "DynamoDBReadCapacityUtilization", # required, accepts DynamoDBReadCapacityUtilization, DynamoDBWriteCapacityUtilization, ALBRequestCountPerTarget, RDSReaderAverageCPUUtilization, RDSReaderAverageDatabaseConnections, EC2SpotFleetRequestAverageCPUUtilization, EC2SpotFleetRequestAverageNetworkIn, EC2SpotFleetRequestAverageNetworkOut, SageMakerVariantInvocationsPerInstance, ECSServiceAverageCPUUtilization, ECSServiceAverageMemoryUtilization, AppStreamAverageCapacityUtilization, ComprehendInferenceUtilization, LambdaProvisionedConcurrencyUtilization, CassandraReadCapacityUtilization, CassandraWriteCapacityUtilization, KafkaBrokerStorageUtilization, ElastiCachePrimaryEngineCPUUtilization, ElastiCacheReplicaEngineCPUUtilization, ElastiCacheDatabaseMemoryUsageCountedForEvictPercentage
|
1614
|
+
# predefined_metric_type: "DynamoDBReadCapacityUtilization", # required, accepts DynamoDBReadCapacityUtilization, DynamoDBWriteCapacityUtilization, ALBRequestCountPerTarget, RDSReaderAverageCPUUtilization, RDSReaderAverageDatabaseConnections, EC2SpotFleetRequestAverageCPUUtilization, EC2SpotFleetRequestAverageNetworkIn, EC2SpotFleetRequestAverageNetworkOut, SageMakerVariantInvocationsPerInstance, ECSServiceAverageCPUUtilization, ECSServiceAverageMemoryUtilization, AppStreamAverageCapacityUtilization, ComprehendInferenceUtilization, LambdaProvisionedConcurrencyUtilization, CassandraReadCapacityUtilization, CassandraWriteCapacityUtilization, KafkaBrokerStorageUtilization, ElastiCachePrimaryEngineCPUUtilization, ElastiCacheReplicaEngineCPUUtilization, ElastiCacheDatabaseMemoryUsageCountedForEvictPercentage, NeptuneReaderAverageCPUUtilization
|
1573
1615
|
# resource_label: "ResourceLabel",
|
1574
1616
|
# }
|
1575
1617
|
#
|
@@ -1623,9 +1665,9 @@ module Aws::ApplicationAutoScaling
|
|
1623
1665
|
#
|
1624
1666
|
# {
|
1625
1667
|
# policy_name: "PolicyName", # required
|
1626
|
-
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache
|
1668
|
+
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune
|
1627
1669
|
# resource_id: "ResourceIdMaxLen1600", # required
|
1628
|
-
# scalable_dimension: "ecs:service:DesiredCount", # required, accepts ecs:service:DesiredCount, ec2:spot-fleet-request:TargetCapacity, elasticmapreduce:instancegroup:InstanceCount, appstream:fleet:DesiredCapacity, dynamodb:table:ReadCapacityUnits, dynamodb:table:WriteCapacityUnits, dynamodb:index:ReadCapacityUnits, dynamodb:index:WriteCapacityUnits, rds:cluster:ReadReplicaCount, sagemaker:variant:DesiredInstanceCount, custom-resource:ResourceType:Property, comprehend:document-classifier-endpoint:DesiredInferenceUnits, comprehend:entity-recognizer-endpoint:DesiredInferenceUnits, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits, kafka:broker-storage:VolumeSize, elasticache:replication-group:NodeGroups, elasticache:replication-group:Replicas
|
1670
|
+
# scalable_dimension: "ecs:service:DesiredCount", # required, accepts ecs:service:DesiredCount, ec2:spot-fleet-request:TargetCapacity, elasticmapreduce:instancegroup:InstanceCount, appstream:fleet:DesiredCapacity, dynamodb:table:ReadCapacityUnits, dynamodb:table:WriteCapacityUnits, dynamodb:index:ReadCapacityUnits, dynamodb:index:WriteCapacityUnits, rds:cluster:ReadReplicaCount, sagemaker:variant:DesiredInstanceCount, custom-resource:ResourceType:Property, comprehend:document-classifier-endpoint:DesiredInferenceUnits, comprehend:entity-recognizer-endpoint:DesiredInferenceUnits, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits, kafka:broker-storage:VolumeSize, elasticache:replication-group:NodeGroups, elasticache:replication-group:Replicas, neptune:cluster:ReadReplicaCount
|
1629
1671
|
# policy_type: "StepScaling", # accepts StepScaling, TargetTrackingScaling
|
1630
1672
|
# step_scaling_policy_configuration: {
|
1631
1673
|
# adjustment_type: "ChangeInCapacity", # accepts ChangeInCapacity, PercentChangeInCapacity, ExactCapacity
|
@@ -1643,7 +1685,7 @@ module Aws::ApplicationAutoScaling
|
|
1643
1685
|
# target_tracking_scaling_policy_configuration: {
|
1644
1686
|
# target_value: 1.0, # required
|
1645
1687
|
# predefined_metric_specification: {
|
1646
|
-
# predefined_metric_type: "DynamoDBReadCapacityUtilization", # required, accepts DynamoDBReadCapacityUtilization, DynamoDBWriteCapacityUtilization, ALBRequestCountPerTarget, RDSReaderAverageCPUUtilization, RDSReaderAverageDatabaseConnections, EC2SpotFleetRequestAverageCPUUtilization, EC2SpotFleetRequestAverageNetworkIn, EC2SpotFleetRequestAverageNetworkOut, SageMakerVariantInvocationsPerInstance, ECSServiceAverageCPUUtilization, ECSServiceAverageMemoryUtilization, AppStreamAverageCapacityUtilization, ComprehendInferenceUtilization, LambdaProvisionedConcurrencyUtilization, CassandraReadCapacityUtilization, CassandraWriteCapacityUtilization, KafkaBrokerStorageUtilization, ElastiCachePrimaryEngineCPUUtilization, ElastiCacheReplicaEngineCPUUtilization, ElastiCacheDatabaseMemoryUsageCountedForEvictPercentage
|
1688
|
+
# predefined_metric_type: "DynamoDBReadCapacityUtilization", # required, accepts DynamoDBReadCapacityUtilization, DynamoDBWriteCapacityUtilization, ALBRequestCountPerTarget, RDSReaderAverageCPUUtilization, RDSReaderAverageDatabaseConnections, EC2SpotFleetRequestAverageCPUUtilization, EC2SpotFleetRequestAverageNetworkIn, EC2SpotFleetRequestAverageNetworkOut, SageMakerVariantInvocationsPerInstance, ECSServiceAverageCPUUtilization, ECSServiceAverageMemoryUtilization, AppStreamAverageCapacityUtilization, ComprehendInferenceUtilization, LambdaProvisionedConcurrencyUtilization, CassandraReadCapacityUtilization, CassandraWriteCapacityUtilization, KafkaBrokerStorageUtilization, ElastiCachePrimaryEngineCPUUtilization, ElastiCacheReplicaEngineCPUUtilization, ElastiCacheDatabaseMemoryUsageCountedForEvictPercentage, NeptuneReaderAverageCPUUtilization
|
1647
1689
|
# resource_label: "ResourceLabel",
|
1648
1690
|
# },
|
1649
1691
|
# customized_metric_specification: {
|
@@ -1682,8 +1724,8 @@ module Aws::ApplicationAutoScaling
|
|
1682
1724
|
# identifier is the cluster name and service name. Example:
|
1683
1725
|
# `service/default/sample-webapp`.
|
1684
1726
|
#
|
1685
|
-
# * Spot Fleet
|
1686
|
-
#
|
1727
|
+
# * Spot Fleet - The resource type is `spot-fleet-request` and the
|
1728
|
+
# unique identifier is the Spot Fleet request ID. Example:
|
1687
1729
|
# `spot-fleet-request/sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE`.
|
1688
1730
|
#
|
1689
1731
|
# * EMR cluster - The resource type is `instancegroup` and the unique
|
@@ -1703,8 +1745,8 @@ module Aws::ApplicationAutoScaling
|
|
1703
1745
|
# * Aurora DB cluster - The resource type is `cluster` and the unique
|
1704
1746
|
# identifier is the cluster name. Example: `cluster:my-db-cluster`.
|
1705
1747
|
#
|
1706
|
-
# *
|
1707
|
-
#
|
1748
|
+
# * SageMaker endpoint variant - The resource type is `variant` and
|
1749
|
+
# the unique identifier is the resource ID. Example:
|
1708
1750
|
# `endpoint/my-end-point/variant/KMeansClustering`.
|
1709
1751
|
#
|
1710
1752
|
# * Custom resources are not supported with a resource type. This
|
@@ -1740,6 +1782,9 @@ module Aws::ApplicationAutoScaling
|
|
1740
1782
|
# `replication-group` and the unique identifier is the replication
|
1741
1783
|
# group name. Example: `replication-group/mycluster`.
|
1742
1784
|
#
|
1785
|
+
# * Neptune cluster - The resource type is `cluster` and the unique
|
1786
|
+
# identifier is the cluster name. Example: `cluster:mycluster`.
|
1787
|
+
#
|
1743
1788
|
#
|
1744
1789
|
#
|
1745
1790
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -1756,7 +1801,7 @@ module Aws::ApplicationAutoScaling
|
|
1756
1801
|
# count of an EMR Instance Group.
|
1757
1802
|
#
|
1758
1803
|
# * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
|
1759
|
-
# Spot Fleet
|
1804
|
+
# Spot Fleet.
|
1760
1805
|
#
|
1761
1806
|
# * `appstream:fleet:DesiredCapacity` - The desired capacity of an
|
1762
1807
|
# AppStream 2.0 fleet.
|
@@ -1778,7 +1823,7 @@ module Aws::ApplicationAutoScaling
|
|
1778
1823
|
# edition and Aurora PostgreSQL-compatible edition.
|
1779
1824
|
#
|
1780
1825
|
# * `sagemaker:variant:DesiredInstanceCount` - The number of EC2
|
1781
|
-
# instances for an
|
1826
|
+
# instances for an SageMaker model endpoint variant.
|
1782
1827
|
#
|
1783
1828
|
# * `custom-resource:ResourceType:Property` - The scalable dimension
|
1784
1829
|
# for a custom resource provided by your own application or service.
|
@@ -1808,6 +1853,9 @@ module Aws::ApplicationAutoScaling
|
|
1808
1853
|
#
|
1809
1854
|
# * `elasticache:replication-group:Replicas` - The number of replicas
|
1810
1855
|
# per node group for an Amazon ElastiCache replication group.
|
1856
|
+
#
|
1857
|
+
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
1858
|
+
# an Amazon Neptune DB cluster.
|
1811
1859
|
# @return [String]
|
1812
1860
|
#
|
1813
1861
|
# @!attribute [rw] policy_type
|
@@ -1819,8 +1867,7 @@ module Aws::ApplicationAutoScaling
|
|
1819
1867
|
# `TargetTrackingScaling`—Not supported for Amazon EMR
|
1820
1868
|
#
|
1821
1869
|
# `StepScaling`—Not supported for DynamoDB, Amazon Comprehend, Lambda,
|
1822
|
-
# Amazon Keyspaces
|
1823
|
-
# ElastiCache for Redis.
|
1870
|
+
# Amazon Keyspaces, Amazon MSK, Amazon ElastiCache, or Neptune.
|
1824
1871
|
#
|
1825
1872
|
# For more information, see [Target tracking scaling policies][1] and
|
1826
1873
|
# [Step scaling policies][2] in the *Application Auto Scaling User
|
@@ -1883,12 +1930,12 @@ module Aws::ApplicationAutoScaling
|
|
1883
1930
|
# data as a hash:
|
1884
1931
|
#
|
1885
1932
|
# {
|
1886
|
-
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache
|
1933
|
+
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune
|
1887
1934
|
# schedule: "ResourceIdMaxLen1600",
|
1888
1935
|
# timezone: "ResourceIdMaxLen1600",
|
1889
1936
|
# scheduled_action_name: "ScheduledActionName", # required
|
1890
1937
|
# resource_id: "ResourceIdMaxLen1600", # required
|
1891
|
-
# scalable_dimension: "ecs:service:DesiredCount", # required, accepts ecs:service:DesiredCount, ec2:spot-fleet-request:TargetCapacity, elasticmapreduce:instancegroup:InstanceCount, appstream:fleet:DesiredCapacity, dynamodb:table:ReadCapacityUnits, dynamodb:table:WriteCapacityUnits, dynamodb:index:ReadCapacityUnits, dynamodb:index:WriteCapacityUnits, rds:cluster:ReadReplicaCount, sagemaker:variant:DesiredInstanceCount, custom-resource:ResourceType:Property, comprehend:document-classifier-endpoint:DesiredInferenceUnits, comprehend:entity-recognizer-endpoint:DesiredInferenceUnits, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits, kafka:broker-storage:VolumeSize, elasticache:replication-group:NodeGroups, elasticache:replication-group:Replicas
|
1938
|
+
# scalable_dimension: "ecs:service:DesiredCount", # required, accepts ecs:service:DesiredCount, ec2:spot-fleet-request:TargetCapacity, elasticmapreduce:instancegroup:InstanceCount, appstream:fleet:DesiredCapacity, dynamodb:table:ReadCapacityUnits, dynamodb:table:WriteCapacityUnits, dynamodb:index:ReadCapacityUnits, dynamodb:index:WriteCapacityUnits, rds:cluster:ReadReplicaCount, sagemaker:variant:DesiredInstanceCount, custom-resource:ResourceType:Property, comprehend:document-classifier-endpoint:DesiredInferenceUnits, comprehend:entity-recognizer-endpoint:DesiredInferenceUnits, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits, kafka:broker-storage:VolumeSize, elasticache:replication-group:NodeGroups, elasticache:replication-group:Replicas, neptune:cluster:ReadReplicaCount
|
1892
1939
|
# start_time: Time.now,
|
1893
1940
|
# end_time: Time.now,
|
1894
1941
|
# scalable_target_action: {
|
@@ -1964,8 +2011,8 @@ module Aws::ApplicationAutoScaling
|
|
1964
2011
|
# identifier is the cluster name and service name. Example:
|
1965
2012
|
# `service/default/sample-webapp`.
|
1966
2013
|
#
|
1967
|
-
# * Spot Fleet
|
1968
|
-
#
|
2014
|
+
# * Spot Fleet - The resource type is `spot-fleet-request` and the
|
2015
|
+
# unique identifier is the Spot Fleet request ID. Example:
|
1969
2016
|
# `spot-fleet-request/sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE`.
|
1970
2017
|
#
|
1971
2018
|
# * EMR cluster - The resource type is `instancegroup` and the unique
|
@@ -1985,8 +2032,8 @@ module Aws::ApplicationAutoScaling
|
|
1985
2032
|
# * Aurora DB cluster - The resource type is `cluster` and the unique
|
1986
2033
|
# identifier is the cluster name. Example: `cluster:my-db-cluster`.
|
1987
2034
|
#
|
1988
|
-
# *
|
1989
|
-
#
|
2035
|
+
# * SageMaker endpoint variant - The resource type is `variant` and
|
2036
|
+
# the unique identifier is the resource ID. Example:
|
1990
2037
|
# `endpoint/my-end-point/variant/KMeansClustering`.
|
1991
2038
|
#
|
1992
2039
|
# * Custom resources are not supported with a resource type. This
|
@@ -2022,6 +2069,9 @@ module Aws::ApplicationAutoScaling
|
|
2022
2069
|
# `replication-group` and the unique identifier is the replication
|
2023
2070
|
# group name. Example: `replication-group/mycluster`.
|
2024
2071
|
#
|
2072
|
+
# * Neptune cluster - The resource type is `cluster` and the unique
|
2073
|
+
# identifier is the cluster name. Example: `cluster:mycluster`.
|
2074
|
+
#
|
2025
2075
|
#
|
2026
2076
|
#
|
2027
2077
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -2038,7 +2088,7 @@ module Aws::ApplicationAutoScaling
|
|
2038
2088
|
# count of an EMR Instance Group.
|
2039
2089
|
#
|
2040
2090
|
# * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
|
2041
|
-
# Spot Fleet
|
2091
|
+
# Spot Fleet.
|
2042
2092
|
#
|
2043
2093
|
# * `appstream:fleet:DesiredCapacity` - The desired capacity of an
|
2044
2094
|
# AppStream 2.0 fleet.
|
@@ -2060,7 +2110,7 @@ module Aws::ApplicationAutoScaling
|
|
2060
2110
|
# edition and Aurora PostgreSQL-compatible edition.
|
2061
2111
|
#
|
2062
2112
|
# * `sagemaker:variant:DesiredInstanceCount` - The number of EC2
|
2063
|
-
# instances for an
|
2113
|
+
# instances for an SageMaker model endpoint variant.
|
2064
2114
|
#
|
2065
2115
|
# * `custom-resource:ResourceType:Property` - The scalable dimension
|
2066
2116
|
# for a custom resource provided by your own application or service.
|
@@ -2090,6 +2140,9 @@ module Aws::ApplicationAutoScaling
|
|
2090
2140
|
#
|
2091
2141
|
# * `elasticache:replication-group:Replicas` - The number of replicas
|
2092
2142
|
# per node group for an Amazon ElastiCache replication group.
|
2143
|
+
#
|
2144
|
+
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
2145
|
+
# an Amazon Neptune DB cluster.
|
2093
2146
|
# @return [String]
|
2094
2147
|
#
|
2095
2148
|
# @!attribute [rw] start_time
|
@@ -2133,9 +2186,9 @@ module Aws::ApplicationAutoScaling
|
|
2133
2186
|
# data as a hash:
|
2134
2187
|
#
|
2135
2188
|
# {
|
2136
|
-
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache
|
2189
|
+
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune
|
2137
2190
|
# resource_id: "ResourceIdMaxLen1600", # required
|
2138
|
-
# scalable_dimension: "ecs:service:DesiredCount", # required, accepts ecs:service:DesiredCount, ec2:spot-fleet-request:TargetCapacity, elasticmapreduce:instancegroup:InstanceCount, appstream:fleet:DesiredCapacity, dynamodb:table:ReadCapacityUnits, dynamodb:table:WriteCapacityUnits, dynamodb:index:ReadCapacityUnits, dynamodb:index:WriteCapacityUnits, rds:cluster:ReadReplicaCount, sagemaker:variant:DesiredInstanceCount, custom-resource:ResourceType:Property, comprehend:document-classifier-endpoint:DesiredInferenceUnits, comprehend:entity-recognizer-endpoint:DesiredInferenceUnits, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits, kafka:broker-storage:VolumeSize, elasticache:replication-group:NodeGroups, elasticache:replication-group:Replicas
|
2191
|
+
# scalable_dimension: "ecs:service:DesiredCount", # required, accepts ecs:service:DesiredCount, ec2:spot-fleet-request:TargetCapacity, elasticmapreduce:instancegroup:InstanceCount, appstream:fleet:DesiredCapacity, dynamodb:table:ReadCapacityUnits, dynamodb:table:WriteCapacityUnits, dynamodb:index:ReadCapacityUnits, dynamodb:index:WriteCapacityUnits, rds:cluster:ReadReplicaCount, sagemaker:variant:DesiredInstanceCount, custom-resource:ResourceType:Property, comprehend:document-classifier-endpoint:DesiredInferenceUnits, comprehend:entity-recognizer-endpoint:DesiredInferenceUnits, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits, kafka:broker-storage:VolumeSize, elasticache:replication-group:NodeGroups, elasticache:replication-group:Replicas, neptune:cluster:ReadReplicaCount
|
2139
2192
|
# min_capacity: 1,
|
2140
2193
|
# max_capacity: 1,
|
2141
2194
|
# role_arn: "ResourceIdMaxLen1600",
|
@@ -2161,8 +2214,8 @@ module Aws::ApplicationAutoScaling
|
|
2161
2214
|
# identifier is the cluster name and service name. Example:
|
2162
2215
|
# `service/default/sample-webapp`.
|
2163
2216
|
#
|
2164
|
-
# * Spot Fleet
|
2165
|
-
#
|
2217
|
+
# * Spot Fleet - The resource type is `spot-fleet-request` and the
|
2218
|
+
# unique identifier is the Spot Fleet request ID. Example:
|
2166
2219
|
# `spot-fleet-request/sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE`.
|
2167
2220
|
#
|
2168
2221
|
# * EMR cluster - The resource type is `instancegroup` and the unique
|
@@ -2182,8 +2235,8 @@ module Aws::ApplicationAutoScaling
|
|
2182
2235
|
# * Aurora DB cluster - The resource type is `cluster` and the unique
|
2183
2236
|
# identifier is the cluster name. Example: `cluster:my-db-cluster`.
|
2184
2237
|
#
|
2185
|
-
# *
|
2186
|
-
#
|
2238
|
+
# * SageMaker endpoint variant - The resource type is `variant` and
|
2239
|
+
# the unique identifier is the resource ID. Example:
|
2187
2240
|
# `endpoint/my-end-point/variant/KMeansClustering`.
|
2188
2241
|
#
|
2189
2242
|
# * Custom resources are not supported with a resource type. This
|
@@ -2219,6 +2272,9 @@ module Aws::ApplicationAutoScaling
|
|
2219
2272
|
# `replication-group` and the unique identifier is the replication
|
2220
2273
|
# group name. Example: `replication-group/mycluster`.
|
2221
2274
|
#
|
2275
|
+
# * Neptune cluster - The resource type is `cluster` and the unique
|
2276
|
+
# identifier is the cluster name. Example: `cluster:mycluster`.
|
2277
|
+
#
|
2222
2278
|
#
|
2223
2279
|
#
|
2224
2280
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -2236,7 +2292,7 @@ module Aws::ApplicationAutoScaling
|
|
2236
2292
|
# count of an EMR Instance Group.
|
2237
2293
|
#
|
2238
2294
|
# * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
|
2239
|
-
# Spot Fleet
|
2295
|
+
# Spot Fleet.
|
2240
2296
|
#
|
2241
2297
|
# * `appstream:fleet:DesiredCapacity` - The desired capacity of an
|
2242
2298
|
# AppStream 2.0 fleet.
|
@@ -2258,7 +2314,7 @@ module Aws::ApplicationAutoScaling
|
|
2258
2314
|
# edition and Aurora PostgreSQL-compatible edition.
|
2259
2315
|
#
|
2260
2316
|
# * `sagemaker:variant:DesiredInstanceCount` - The number of EC2
|
2261
|
-
# instances for an
|
2317
|
+
# instances for an SageMaker model endpoint variant.
|
2262
2318
|
#
|
2263
2319
|
# * `custom-resource:ResourceType:Property` - The scalable dimension
|
2264
2320
|
# for a custom resource provided by your own application or service.
|
@@ -2288,6 +2344,9 @@ module Aws::ApplicationAutoScaling
|
|
2288
2344
|
#
|
2289
2345
|
# * `elasticache:replication-group:Replicas` - The number of replicas
|
2290
2346
|
# per node group for an Amazon ElastiCache replication group.
|
2347
|
+
#
|
2348
|
+
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
2349
|
+
# an Amazon Neptune DB cluster.
|
2291
2350
|
# @return [String]
|
2292
2351
|
#
|
2293
2352
|
# @!attribute [rw] min_capacity
|
@@ -2402,8 +2461,8 @@ module Aws::ApplicationAutoScaling
|
|
2402
2461
|
# identifier is the cluster name and service name. Example:
|
2403
2462
|
# `service/default/sample-webapp`.
|
2404
2463
|
#
|
2405
|
-
# * Spot Fleet
|
2406
|
-
#
|
2464
|
+
# * Spot Fleet - The resource type is `spot-fleet-request` and the
|
2465
|
+
# unique identifier is the Spot Fleet request ID. Example:
|
2407
2466
|
# `spot-fleet-request/sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE`.
|
2408
2467
|
#
|
2409
2468
|
# * EMR cluster - The resource type is `instancegroup` and the unique
|
@@ -2423,8 +2482,8 @@ module Aws::ApplicationAutoScaling
|
|
2423
2482
|
# * Aurora DB cluster - The resource type is `cluster` and the unique
|
2424
2483
|
# identifier is the cluster name. Example: `cluster:my-db-cluster`.
|
2425
2484
|
#
|
2426
|
-
# *
|
2427
|
-
#
|
2485
|
+
# * SageMaker endpoint variant - The resource type is `variant` and
|
2486
|
+
# the unique identifier is the resource ID. Example:
|
2428
2487
|
# `endpoint/my-end-point/variant/KMeansClustering`.
|
2429
2488
|
#
|
2430
2489
|
# * Custom resources are not supported with a resource type. This
|
@@ -2460,6 +2519,9 @@ module Aws::ApplicationAutoScaling
|
|
2460
2519
|
# `replication-group` and the unique identifier is the replication
|
2461
2520
|
# group name. Example: `replication-group/mycluster`.
|
2462
2521
|
#
|
2522
|
+
# * Neptune cluster - The resource type is `cluster` and the unique
|
2523
|
+
# identifier is the cluster name. Example: `cluster:mycluster`.
|
2524
|
+
#
|
2463
2525
|
#
|
2464
2526
|
#
|
2465
2527
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -2477,7 +2539,7 @@ module Aws::ApplicationAutoScaling
|
|
2477
2539
|
# count of an EMR Instance Group.
|
2478
2540
|
#
|
2479
2541
|
# * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
|
2480
|
-
# Spot Fleet
|
2542
|
+
# Spot Fleet.
|
2481
2543
|
#
|
2482
2544
|
# * `appstream:fleet:DesiredCapacity` - The desired capacity of an
|
2483
2545
|
# AppStream 2.0 fleet.
|
@@ -2499,7 +2561,7 @@ module Aws::ApplicationAutoScaling
|
|
2499
2561
|
# edition and Aurora PostgreSQL-compatible edition.
|
2500
2562
|
#
|
2501
2563
|
# * `sagemaker:variant:DesiredInstanceCount` - The number of EC2
|
2502
|
-
# instances for an
|
2564
|
+
# instances for an SageMaker model endpoint variant.
|
2503
2565
|
#
|
2504
2566
|
# * `custom-resource:ResourceType:Property` - The scalable dimension
|
2505
2567
|
# for a custom resource provided by your own application or service.
|
@@ -2529,6 +2591,9 @@ module Aws::ApplicationAutoScaling
|
|
2529
2591
|
#
|
2530
2592
|
# * `elasticache:replication-group:Replicas` - The number of replicas
|
2531
2593
|
# per node group for an Amazon ElastiCache replication group.
|
2594
|
+
#
|
2595
|
+
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
2596
|
+
# an Amazon Neptune DB cluster.
|
2532
2597
|
# @return [String]
|
2533
2598
|
#
|
2534
2599
|
# @!attribute [rw] min_capacity
|
@@ -2632,8 +2697,8 @@ module Aws::ApplicationAutoScaling
|
|
2632
2697
|
# identifier is the cluster name and service name. Example:
|
2633
2698
|
# `service/default/sample-webapp`.
|
2634
2699
|
#
|
2635
|
-
# * Spot Fleet
|
2636
|
-
#
|
2700
|
+
# * Spot Fleet - The resource type is `spot-fleet-request` and the
|
2701
|
+
# unique identifier is the Spot Fleet request ID. Example:
|
2637
2702
|
# `spot-fleet-request/sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE`.
|
2638
2703
|
#
|
2639
2704
|
# * EMR cluster - The resource type is `instancegroup` and the unique
|
@@ -2653,8 +2718,8 @@ module Aws::ApplicationAutoScaling
|
|
2653
2718
|
# * Aurora DB cluster - The resource type is `cluster` and the unique
|
2654
2719
|
# identifier is the cluster name. Example: `cluster:my-db-cluster`.
|
2655
2720
|
#
|
2656
|
-
# *
|
2657
|
-
#
|
2721
|
+
# * SageMaker endpoint variant - The resource type is `variant` and
|
2722
|
+
# the unique identifier is the resource ID. Example:
|
2658
2723
|
# `endpoint/my-end-point/variant/KMeansClustering`.
|
2659
2724
|
#
|
2660
2725
|
# * Custom resources are not supported with a resource type. This
|
@@ -2690,6 +2755,9 @@ module Aws::ApplicationAutoScaling
|
|
2690
2755
|
# `replication-group` and the unique identifier is the replication
|
2691
2756
|
# group name. Example: `replication-group/mycluster`.
|
2692
2757
|
#
|
2758
|
+
# * Neptune cluster - The resource type is `cluster` and the unique
|
2759
|
+
# identifier is the cluster name. Example: `cluster:mycluster`.
|
2760
|
+
#
|
2693
2761
|
#
|
2694
2762
|
#
|
2695
2763
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -2706,7 +2774,7 @@ module Aws::ApplicationAutoScaling
|
|
2706
2774
|
# count of an EMR Instance Group.
|
2707
2775
|
#
|
2708
2776
|
# * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
|
2709
|
-
# Spot Fleet
|
2777
|
+
# Spot Fleet.
|
2710
2778
|
#
|
2711
2779
|
# * `appstream:fleet:DesiredCapacity` - The desired capacity of an
|
2712
2780
|
# AppStream 2.0 fleet.
|
@@ -2728,7 +2796,7 @@ module Aws::ApplicationAutoScaling
|
|
2728
2796
|
# edition and Aurora PostgreSQL-compatible edition.
|
2729
2797
|
#
|
2730
2798
|
# * `sagemaker:variant:DesiredInstanceCount` - The number of EC2
|
2731
|
-
# instances for an
|
2799
|
+
# instances for an SageMaker model endpoint variant.
|
2732
2800
|
#
|
2733
2801
|
# * `custom-resource:ResourceType:Property` - The scalable dimension
|
2734
2802
|
# for a custom resource provided by your own application or service.
|
@@ -2758,6 +2826,9 @@ module Aws::ApplicationAutoScaling
|
|
2758
2826
|
#
|
2759
2827
|
# * `elasticache:replication-group:Replicas` - The number of replicas
|
2760
2828
|
# per node group for an Amazon ElastiCache replication group.
|
2829
|
+
#
|
2830
|
+
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
2831
|
+
# an Amazon Neptune DB cluster.
|
2761
2832
|
# @return [String]
|
2762
2833
|
#
|
2763
2834
|
# @!attribute [rw] description
|
@@ -2838,8 +2909,8 @@ module Aws::ApplicationAutoScaling
|
|
2838
2909
|
# identifier is the cluster name and service name. Example:
|
2839
2910
|
# `service/default/sample-webapp`.
|
2840
2911
|
#
|
2841
|
-
# * Spot Fleet
|
2842
|
-
#
|
2912
|
+
# * Spot Fleet - The resource type is `spot-fleet-request` and the
|
2913
|
+
# unique identifier is the Spot Fleet request ID. Example:
|
2843
2914
|
# `spot-fleet-request/sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE`.
|
2844
2915
|
#
|
2845
2916
|
# * EMR cluster - The resource type is `instancegroup` and the unique
|
@@ -2859,8 +2930,8 @@ module Aws::ApplicationAutoScaling
|
|
2859
2930
|
# * Aurora DB cluster - The resource type is `cluster` and the unique
|
2860
2931
|
# identifier is the cluster name. Example: `cluster:my-db-cluster`.
|
2861
2932
|
#
|
2862
|
-
# *
|
2863
|
-
#
|
2933
|
+
# * SageMaker endpoint variant - The resource type is `variant` and
|
2934
|
+
# the unique identifier is the resource ID. Example:
|
2864
2935
|
# `endpoint/my-end-point/variant/KMeansClustering`.
|
2865
2936
|
#
|
2866
2937
|
# * Custom resources are not supported with a resource type. This
|
@@ -2896,6 +2967,9 @@ module Aws::ApplicationAutoScaling
|
|
2896
2967
|
# `replication-group` and the unique identifier is the replication
|
2897
2968
|
# group name. Example: `replication-group/mycluster`.
|
2898
2969
|
#
|
2970
|
+
# * Neptune cluster - The resource type is `cluster` and the unique
|
2971
|
+
# identifier is the cluster name. Example: `cluster:mycluster`.
|
2972
|
+
#
|
2899
2973
|
#
|
2900
2974
|
#
|
2901
2975
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -2912,7 +2986,7 @@ module Aws::ApplicationAutoScaling
|
|
2912
2986
|
# count of an EMR Instance Group.
|
2913
2987
|
#
|
2914
2988
|
# * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
|
2915
|
-
# Spot Fleet
|
2989
|
+
# Spot Fleet.
|
2916
2990
|
#
|
2917
2991
|
# * `appstream:fleet:DesiredCapacity` - The desired capacity of an
|
2918
2992
|
# AppStream 2.0 fleet.
|
@@ -2934,7 +3008,7 @@ module Aws::ApplicationAutoScaling
|
|
2934
3008
|
# edition and Aurora PostgreSQL-compatible edition.
|
2935
3009
|
#
|
2936
3010
|
# * `sagemaker:variant:DesiredInstanceCount` - The number of EC2
|
2937
|
-
# instances for an
|
3011
|
+
# instances for an SageMaker model endpoint variant.
|
2938
3012
|
#
|
2939
3013
|
# * `custom-resource:ResourceType:Property` - The scalable dimension
|
2940
3014
|
# for a custom resource provided by your own application or service.
|
@@ -2964,6 +3038,9 @@ module Aws::ApplicationAutoScaling
|
|
2964
3038
|
#
|
2965
3039
|
# * `elasticache:replication-group:Replicas` - The number of replicas
|
2966
3040
|
# per node group for an Amazon ElastiCache replication group.
|
3041
|
+
#
|
3042
|
+
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
3043
|
+
# an Amazon Neptune DB cluster.
|
2967
3044
|
# @return [String]
|
2968
3045
|
#
|
2969
3046
|
# @!attribute [rw] policy_type
|
@@ -3065,8 +3142,8 @@ module Aws::ApplicationAutoScaling
|
|
3065
3142
|
# identifier is the cluster name and service name. Example:
|
3066
3143
|
# `service/default/sample-webapp`.
|
3067
3144
|
#
|
3068
|
-
# * Spot Fleet
|
3069
|
-
#
|
3145
|
+
# * Spot Fleet - The resource type is `spot-fleet-request` and the
|
3146
|
+
# unique identifier is the Spot Fleet request ID. Example:
|
3070
3147
|
# `spot-fleet-request/sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE`.
|
3071
3148
|
#
|
3072
3149
|
# * EMR cluster - The resource type is `instancegroup` and the unique
|
@@ -3086,8 +3163,8 @@ module Aws::ApplicationAutoScaling
|
|
3086
3163
|
# * Aurora DB cluster - The resource type is `cluster` and the unique
|
3087
3164
|
# identifier is the cluster name. Example: `cluster:my-db-cluster`.
|
3088
3165
|
#
|
3089
|
-
# *
|
3090
|
-
#
|
3166
|
+
# * SageMaker endpoint variant - The resource type is `variant` and
|
3167
|
+
# the unique identifier is the resource ID. Example:
|
3091
3168
|
# `endpoint/my-end-point/variant/KMeansClustering`.
|
3092
3169
|
#
|
3093
3170
|
# * Custom resources are not supported with a resource type. This
|
@@ -3123,6 +3200,9 @@ module Aws::ApplicationAutoScaling
|
|
3123
3200
|
# `replication-group` and the unique identifier is the replication
|
3124
3201
|
# group name. Example: `replication-group/mycluster`.
|
3125
3202
|
#
|
3203
|
+
# * Neptune cluster - The resource type is `cluster` and the unique
|
3204
|
+
# identifier is the cluster name. Example: `cluster:mycluster`.
|
3205
|
+
#
|
3126
3206
|
#
|
3127
3207
|
#
|
3128
3208
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -3139,7 +3219,7 @@ module Aws::ApplicationAutoScaling
|
|
3139
3219
|
# count of an EMR Instance Group.
|
3140
3220
|
#
|
3141
3221
|
# * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
|
3142
|
-
# Spot Fleet
|
3222
|
+
# Spot Fleet.
|
3143
3223
|
#
|
3144
3224
|
# * `appstream:fleet:DesiredCapacity` - The desired capacity of an
|
3145
3225
|
# AppStream 2.0 fleet.
|
@@ -3161,7 +3241,7 @@ module Aws::ApplicationAutoScaling
|
|
3161
3241
|
# edition and Aurora PostgreSQL-compatible edition.
|
3162
3242
|
#
|
3163
3243
|
# * `sagemaker:variant:DesiredInstanceCount` - The number of EC2
|
3164
|
-
# instances for an
|
3244
|
+
# instances for an SageMaker model endpoint variant.
|
3165
3245
|
#
|
3166
3246
|
# * `custom-resource:ResourceType:Property` - The scalable dimension
|
3167
3247
|
# for a custom resource provided by your own application or service.
|
@@ -3191,6 +3271,9 @@ module Aws::ApplicationAutoScaling
|
|
3191
3271
|
#
|
3192
3272
|
# * `elasticache:replication-group:Replicas` - The number of replicas
|
3193
3273
|
# per node group for an Amazon ElastiCache replication group.
|
3274
|
+
#
|
3275
|
+
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
3276
|
+
# an Amazon Neptune DB cluster.
|
3194
3277
|
# @return [String]
|
3195
3278
|
#
|
3196
3279
|
# @!attribute [rw] start_time
|
@@ -3396,33 +3479,33 @@ module Aws::ApplicationAutoScaling
|
|
3396
3479
|
# ElastiCache replication groups and a default value of 300 for the
|
3397
3480
|
# following scalable targets:
|
3398
3481
|
#
|
3399
|
-
# *
|
3482
|
+
# * AppStream 2.0 fleets
|
3483
|
+
#
|
3484
|
+
# * Aurora DB clusters
|
3400
3485
|
#
|
3401
|
-
# *
|
3486
|
+
# * ECS services
|
3402
3487
|
#
|
3403
3488
|
# * EMR clusters
|
3404
3489
|
#
|
3405
|
-
# *
|
3490
|
+
# * Neptune clusters
|
3406
3491
|
#
|
3407
|
-
# *
|
3492
|
+
# * SageMaker endpoint variants
|
3408
3493
|
#
|
3409
|
-
# *
|
3494
|
+
# * Spot Fleets
|
3410
3495
|
#
|
3411
3496
|
# * Custom resources
|
3412
3497
|
#
|
3413
3498
|
# For all other scalable targets, the default value is 0:
|
3414
3499
|
#
|
3415
|
-
# * DynamoDB tables
|
3416
|
-
#
|
3417
|
-
# * DynamoDB global secondary indexes
|
3418
|
-
#
|
3419
3500
|
# * Amazon Comprehend document classification and entity recognizer
|
3420
3501
|
# endpoints
|
3421
3502
|
#
|
3422
|
-
# *
|
3503
|
+
# * DynamoDB tables and global secondary indexes
|
3423
3504
|
#
|
3424
3505
|
# * Amazon Keyspaces tables
|
3425
3506
|
#
|
3507
|
+
# * Lambda provisioned concurrency
|
3508
|
+
#
|
3426
3509
|
# * Amazon MSK broker storage
|
3427
3510
|
# @return [Integer]
|
3428
3511
|
#
|
@@ -3495,7 +3578,7 @@ module Aws::ApplicationAutoScaling
|
|
3495
3578
|
# {
|
3496
3579
|
# target_value: 1.0, # required
|
3497
3580
|
# predefined_metric_specification: {
|
3498
|
-
# predefined_metric_type: "DynamoDBReadCapacityUtilization", # required, accepts DynamoDBReadCapacityUtilization, DynamoDBWriteCapacityUtilization, ALBRequestCountPerTarget, RDSReaderAverageCPUUtilization, RDSReaderAverageDatabaseConnections, EC2SpotFleetRequestAverageCPUUtilization, EC2SpotFleetRequestAverageNetworkIn, EC2SpotFleetRequestAverageNetworkOut, SageMakerVariantInvocationsPerInstance, ECSServiceAverageCPUUtilization, ECSServiceAverageMemoryUtilization, AppStreamAverageCapacityUtilization, ComprehendInferenceUtilization, LambdaProvisionedConcurrencyUtilization, CassandraReadCapacityUtilization, CassandraWriteCapacityUtilization, KafkaBrokerStorageUtilization, ElastiCachePrimaryEngineCPUUtilization, ElastiCacheReplicaEngineCPUUtilization, ElastiCacheDatabaseMemoryUsageCountedForEvictPercentage
|
3581
|
+
# predefined_metric_type: "DynamoDBReadCapacityUtilization", # required, accepts DynamoDBReadCapacityUtilization, DynamoDBWriteCapacityUtilization, ALBRequestCountPerTarget, RDSReaderAverageCPUUtilization, RDSReaderAverageDatabaseConnections, EC2SpotFleetRequestAverageCPUUtilization, EC2SpotFleetRequestAverageNetworkIn, EC2SpotFleetRequestAverageNetworkOut, SageMakerVariantInvocationsPerInstance, ECSServiceAverageCPUUtilization, ECSServiceAverageMemoryUtilization, AppStreamAverageCapacityUtilization, ComprehendInferenceUtilization, LambdaProvisionedConcurrencyUtilization, CassandraReadCapacityUtilization, CassandraWriteCapacityUtilization, KafkaBrokerStorageUtilization, ElastiCachePrimaryEngineCPUUtilization, ElastiCacheReplicaEngineCPUUtilization, ElastiCacheDatabaseMemoryUsageCountedForEvictPercentage, NeptuneReaderAverageCPUUtilization
|
3499
3582
|
# resource_label: "ResourceLabel",
|
3500
3583
|
# },
|
3501
3584
|
# customized_metric_specification: {
|
@@ -3553,33 +3636,33 @@ module Aws::ApplicationAutoScaling
|
|
3553
3636
|
# ElastiCache replication groups and a default value of 300 for the
|
3554
3637
|
# following scalable targets:
|
3555
3638
|
#
|
3556
|
-
# *
|
3639
|
+
# * AppStream 2.0 fleets
|
3640
|
+
#
|
3641
|
+
# * Aurora DB clusters
|
3557
3642
|
#
|
3558
|
-
# *
|
3643
|
+
# * ECS services
|
3559
3644
|
#
|
3560
3645
|
# * EMR clusters
|
3561
3646
|
#
|
3562
|
-
# *
|
3647
|
+
# * Neptune clusters
|
3563
3648
|
#
|
3564
|
-
# *
|
3649
|
+
# * SageMaker endpoint variants
|
3565
3650
|
#
|
3566
|
-
# *
|
3651
|
+
# * Spot Fleets
|
3567
3652
|
#
|
3568
3653
|
# * Custom resources
|
3569
3654
|
#
|
3570
3655
|
# For all other scalable targets, the default value is 0:
|
3571
3656
|
#
|
3572
|
-
# * DynamoDB tables
|
3573
|
-
#
|
3574
|
-
# * DynamoDB global secondary indexes
|
3575
|
-
#
|
3576
3657
|
# * Amazon Comprehend document classification and entity recognizer
|
3577
3658
|
# endpoints
|
3578
3659
|
#
|
3579
|
-
# *
|
3660
|
+
# * DynamoDB tables and global secondary indexes
|
3580
3661
|
#
|
3581
3662
|
# * Amazon Keyspaces tables
|
3582
3663
|
#
|
3664
|
+
# * Lambda provisioned concurrency
|
3665
|
+
#
|
3583
3666
|
# * Amazon MSK broker storage
|
3584
3667
|
# @return [Integer]
|
3585
3668
|
#
|
@@ -3599,33 +3682,33 @@ module Aws::ApplicationAutoScaling
|
|
3599
3682
|
# ElastiCache replication groups and a default value of 300 for the
|
3600
3683
|
# following scalable targets:
|
3601
3684
|
#
|
3602
|
-
# *
|
3685
|
+
# * AppStream 2.0 fleets
|
3686
|
+
#
|
3687
|
+
# * Aurora DB clusters
|
3603
3688
|
#
|
3604
|
-
# *
|
3689
|
+
# * ECS services
|
3605
3690
|
#
|
3606
3691
|
# * EMR clusters
|
3607
3692
|
#
|
3608
|
-
# *
|
3693
|
+
# * Neptune clusters
|
3609
3694
|
#
|
3610
|
-
# *
|
3695
|
+
# * SageMaker endpoint variants
|
3611
3696
|
#
|
3612
|
-
# *
|
3697
|
+
# * Spot Fleets
|
3613
3698
|
#
|
3614
3699
|
# * Custom resources
|
3615
3700
|
#
|
3616
3701
|
# For all other scalable targets, the default value is 0:
|
3617
3702
|
#
|
3618
|
-
# * DynamoDB tables
|
3619
|
-
#
|
3620
|
-
# * DynamoDB global secondary indexes
|
3621
|
-
#
|
3622
3703
|
# * Amazon Comprehend document classification and entity recognizer
|
3623
3704
|
# endpoints
|
3624
3705
|
#
|
3625
|
-
# *
|
3706
|
+
# * DynamoDB tables and global secondary indexes
|
3626
3707
|
#
|
3627
3708
|
# * Amazon Keyspaces tables
|
3628
3709
|
#
|
3710
|
+
# * Lambda provisioned concurrency
|
3711
|
+
#
|
3629
3712
|
# * Amazon MSK broker storage
|
3630
3713
|
# @return [Integer]
|
3631
3714
|
#
|