aws-sdk-applicationautoscaling 1.53.0 → 1.54.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -47,9 +47,9 @@ module Aws::ApplicationAutoScaling
47
47
  # Represents a CloudWatch metric of your choosing for a target tracking
48
48
  # scaling policy to use with Application Auto Scaling.
49
49
  #
50
- # For information about the available metrics for a service, see [AWS
51
- # Services That Publish CloudWatch Metrics][1] in the *Amazon CloudWatch
52
- # User Guide*.
50
+ # For information about the available metrics for a service, see [Amazon
51
+ # Web Services Services That Publish CloudWatch Metrics][1] in the
52
+ # *Amazon CloudWatch User Guide*.
53
53
  #
54
54
  # To create your customized metric specification:
55
55
  #
@@ -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
133
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache
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
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
136
136
  # }
137
137
  #
138
138
  # @!attribute [rw] policy_name
@@ -140,9 +140,9 @@ module Aws::ApplicationAutoScaling
140
140
  # @return [String]
141
141
  #
142
142
  # @!attribute [rw] service_namespace
143
- # The namespace of the AWS service that provides the resource. For a
144
- # resource provided by your own application or service, use
145
- # `custom-resource` instead.
143
+ # The namespace of the Amazon Web Services service that provides the
144
+ # resource. For a resource provided by your own application or
145
+ # service, use `custom-resource` instead.
146
146
  # @return [String]
147
147
  #
148
148
  # @!attribute [rw] resource_id
@@ -207,6 +207,10 @@ module Aws::ApplicationAutoScaling
207
207
  # specified using the cluster ARN. Example:
208
208
  # `arn:aws:kafka:us-east-1:123456789012:cluster/demo-cluster-1/6357e0b2-0e6a-4b86-a0b4-70df934c2e31-5`.
209
209
  #
210
+ # * Amazon ElastiCache replication group - The resource type is
211
+ # `replication-group` and the unique identifier is the replication
212
+ # group name. Example: `replication-group/mycluster`.
213
+ #
210
214
  #
211
215
  #
212
216
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -219,12 +223,12 @@ module Aws::ApplicationAutoScaling
219
223
  # * `ecs:service:DesiredCount` - The desired task count of an ECS
220
224
  # service.
221
225
  #
222
- # * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
223
- # Spot Fleet request.
224
- #
225
226
  # * `elasticmapreduce:instancegroup:InstanceCount` - The instance
226
227
  # count of an EMR Instance Group.
227
228
  #
229
+ # * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
230
+ # Spot Fleet request.
231
+ #
228
232
  # * `appstream:fleet:DesiredCapacity` - The desired capacity of an
229
233
  # AppStream 2.0 fleet.
230
234
  #
@@ -269,6 +273,12 @@ module Aws::ApplicationAutoScaling
269
273
  #
270
274
  # * `kafka:broker-storage:VolumeSize` - The provisioned volume size
271
275
  # (in GiB) for brokers in an Amazon MSK cluster.
276
+ #
277
+ # * `elasticache:replication-group:NodeGroups` - The number of node
278
+ # groups for an Amazon ElastiCache replication group.
279
+ #
280
+ # * `elasticache:replication-group:Replicas` - The number of replicas
281
+ # per node group for an Amazon ElastiCache replication group.
272
282
  # @return [String]
273
283
  #
274
284
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeleteScalingPolicyRequest AWS API Documentation
@@ -290,16 +300,16 @@ module Aws::ApplicationAutoScaling
290
300
  # data as a hash:
291
301
  #
292
302
  # {
293
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka
303
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache
294
304
  # scheduled_action_name: "ResourceIdMaxLen1600", # required
295
305
  # resource_id: "ResourceIdMaxLen1600", # required
296
- # 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
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
297
307
  # }
298
308
  #
299
309
  # @!attribute [rw] service_namespace
300
- # The namespace of the AWS service that provides the resource. For a
301
- # resource provided by your own application or service, use
302
- # `custom-resource` instead.
310
+ # The namespace of the Amazon Web Services service that provides the
311
+ # resource. For a resource provided by your own application or
312
+ # service, use `custom-resource` instead.
303
313
  # @return [String]
304
314
  #
305
315
  # @!attribute [rw] scheduled_action_name
@@ -368,6 +378,10 @@ module Aws::ApplicationAutoScaling
368
378
  # specified using the cluster ARN. Example:
369
379
  # `arn:aws:kafka:us-east-1:123456789012:cluster/demo-cluster-1/6357e0b2-0e6a-4b86-a0b4-70df934c2e31-5`.
370
380
  #
381
+ # * Amazon ElastiCache replication group - The resource type is
382
+ # `replication-group` and the unique identifier is the replication
383
+ # group name. Example: `replication-group/mycluster`.
384
+ #
371
385
  #
372
386
  #
373
387
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -380,12 +394,12 @@ module Aws::ApplicationAutoScaling
380
394
  # * `ecs:service:DesiredCount` - The desired task count of an ECS
381
395
  # service.
382
396
  #
383
- # * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
384
- # Spot Fleet request.
385
- #
386
397
  # * `elasticmapreduce:instancegroup:InstanceCount` - The instance
387
398
  # count of an EMR Instance Group.
388
399
  #
400
+ # * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
401
+ # Spot Fleet request.
402
+ #
389
403
  # * `appstream:fleet:DesiredCapacity` - The desired capacity of an
390
404
  # AppStream 2.0 fleet.
391
405
  #
@@ -430,6 +444,12 @@ module Aws::ApplicationAutoScaling
430
444
  #
431
445
  # * `kafka:broker-storage:VolumeSize` - The provisioned volume size
432
446
  # (in GiB) for brokers in an Amazon MSK cluster.
447
+ #
448
+ # * `elasticache:replication-group:NodeGroups` - The number of node
449
+ # groups for an Amazon ElastiCache replication group.
450
+ #
451
+ # * `elasticache:replication-group:Replicas` - The number of replicas
452
+ # per node group for an Amazon ElastiCache replication group.
433
453
  # @return [String]
434
454
  #
435
455
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeleteScheduledActionRequest AWS API Documentation
@@ -451,15 +471,15 @@ module Aws::ApplicationAutoScaling
451
471
  # data as a hash:
452
472
  #
453
473
  # {
454
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka
474
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache
455
475
  # resource_id: "ResourceIdMaxLen1600", # required
456
- # 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
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
457
477
  # }
458
478
  #
459
479
  # @!attribute [rw] service_namespace
460
- # The namespace of the AWS service that provides the resource. For a
461
- # resource provided by your own application or service, use
462
- # `custom-resource` instead.
480
+ # The namespace of the Amazon Web Services service that provides the
481
+ # resource. For a resource provided by your own application or
482
+ # service, use `custom-resource` instead.
463
483
  # @return [String]
464
484
  #
465
485
  # @!attribute [rw] resource_id
@@ -524,6 +544,10 @@ module Aws::ApplicationAutoScaling
524
544
  # specified using the cluster ARN. Example:
525
545
  # `arn:aws:kafka:us-east-1:123456789012:cluster/demo-cluster-1/6357e0b2-0e6a-4b86-a0b4-70df934c2e31-5`.
526
546
  #
547
+ # * Amazon ElastiCache replication group - The resource type is
548
+ # `replication-group` and the unique identifier is the replication
549
+ # group name. Example: `replication-group/mycluster`.
550
+ #
527
551
  #
528
552
  #
529
553
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -537,12 +561,12 @@ module Aws::ApplicationAutoScaling
537
561
  # * `ecs:service:DesiredCount` - The desired task count of an ECS
538
562
  # service.
539
563
  #
540
- # * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
541
- # Spot Fleet request.
542
- #
543
564
  # * `elasticmapreduce:instancegroup:InstanceCount` - The instance
544
565
  # count of an EMR Instance Group.
545
566
  #
567
+ # * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
568
+ # Spot Fleet request.
569
+ #
546
570
  # * `appstream:fleet:DesiredCapacity` - The desired capacity of an
547
571
  # AppStream 2.0 fleet.
548
572
  #
@@ -587,6 +611,12 @@ module Aws::ApplicationAutoScaling
587
611
  #
588
612
  # * `kafka:broker-storage:VolumeSize` - The provisioned volume size
589
613
  # (in GiB) for brokers in an Amazon MSK cluster.
614
+ #
615
+ # * `elasticache:replication-group:NodeGroups` - The number of node
616
+ # groups for an Amazon ElastiCache replication group.
617
+ #
618
+ # * `elasticache:replication-group:Replicas` - The number of replicas
619
+ # per node group for an Amazon ElastiCache replication group.
590
620
  # @return [String]
591
621
  #
592
622
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeregisterScalableTargetRequest AWS API Documentation
@@ -607,17 +637,17 @@ module Aws::ApplicationAutoScaling
607
637
  # data as a hash:
608
638
  #
609
639
  # {
610
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka
640
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache
611
641
  # resource_ids: ["ResourceIdMaxLen1600"],
612
- # 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
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
613
643
  # max_results: 1,
614
644
  # next_token: "XmlString",
615
645
  # }
616
646
  #
617
647
  # @!attribute [rw] service_namespace
618
- # The namespace of the AWS service that provides the resource. For a
619
- # resource provided by your own application or service, use
620
- # `custom-resource` instead.
648
+ # The namespace of the Amazon Web Services service that provides the
649
+ # resource. For a resource provided by your own application or
650
+ # service, use `custom-resource` instead.
621
651
  # @return [String]
622
652
  #
623
653
  # @!attribute [rw] resource_ids
@@ -682,6 +712,10 @@ module Aws::ApplicationAutoScaling
682
712
  # specified using the cluster ARN. Example:
683
713
  # `arn:aws:kafka:us-east-1:123456789012:cluster/demo-cluster-1/6357e0b2-0e6a-4b86-a0b4-70df934c2e31-5`.
684
714
  #
715
+ # * Amazon ElastiCache replication group - The resource type is
716
+ # `replication-group` and the unique identifier is the replication
717
+ # group name. Example: `replication-group/mycluster`.
718
+ #
685
719
  #
686
720
  #
687
721
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -696,12 +730,12 @@ module Aws::ApplicationAutoScaling
696
730
  # * `ecs:service:DesiredCount` - The desired task count of an ECS
697
731
  # service.
698
732
  #
699
- # * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
700
- # Spot Fleet request.
701
- #
702
733
  # * `elasticmapreduce:instancegroup:InstanceCount` - The instance
703
734
  # count of an EMR Instance Group.
704
735
  #
736
+ # * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
737
+ # Spot Fleet request.
738
+ #
705
739
  # * `appstream:fleet:DesiredCapacity` - The desired capacity of an
706
740
  # AppStream 2.0 fleet.
707
741
  #
@@ -746,6 +780,12 @@ module Aws::ApplicationAutoScaling
746
780
  #
747
781
  # * `kafka:broker-storage:VolumeSize` - The provisioned volume size
748
782
  # (in GiB) for brokers in an Amazon MSK cluster.
783
+ #
784
+ # * `elasticache:replication-group:NodeGroups` - The number of node
785
+ # groups for an Amazon ElastiCache replication group.
786
+ #
787
+ # * `elasticache:replication-group:Replicas` - The number of replicas
788
+ # per node group for an Amazon ElastiCache replication group.
749
789
  # @return [String]
750
790
  #
751
791
  # @!attribute [rw] max_results
@@ -797,17 +837,17 @@ module Aws::ApplicationAutoScaling
797
837
  # data as a hash:
798
838
  #
799
839
  # {
800
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka
840
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache
801
841
  # resource_id: "ResourceIdMaxLen1600",
802
- # 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
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
803
843
  # max_results: 1,
804
844
  # next_token: "XmlString",
805
845
  # }
806
846
  #
807
847
  # @!attribute [rw] service_namespace
808
- # The namespace of the AWS service that provides the resource. For a
809
- # resource provided by your own application or service, use
810
- # `custom-resource` instead.
848
+ # The namespace of the Amazon Web Services service that provides the
849
+ # resource. For a resource provided by your own application or
850
+ # service, use `custom-resource` instead.
811
851
  # @return [String]
812
852
  #
813
853
  # @!attribute [rw] resource_id
@@ -872,6 +912,10 @@ module Aws::ApplicationAutoScaling
872
912
  # specified using the cluster ARN. Example:
873
913
  # `arn:aws:kafka:us-east-1:123456789012:cluster/demo-cluster-1/6357e0b2-0e6a-4b86-a0b4-70df934c2e31-5`.
874
914
  #
915
+ # * Amazon ElastiCache replication group - The resource type is
916
+ # `replication-group` and the unique identifier is the replication
917
+ # group name. Example: `replication-group/mycluster`.
918
+ #
875
919
  #
876
920
  #
877
921
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -885,12 +929,12 @@ module Aws::ApplicationAutoScaling
885
929
  # * `ecs:service:DesiredCount` - The desired task count of an ECS
886
930
  # service.
887
931
  #
888
- # * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
889
- # Spot Fleet request.
890
- #
891
932
  # * `elasticmapreduce:instancegroup:InstanceCount` - The instance
892
933
  # count of an EMR Instance Group.
893
934
  #
935
+ # * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
936
+ # Spot Fleet request.
937
+ #
894
938
  # * `appstream:fleet:DesiredCapacity` - The desired capacity of an
895
939
  # AppStream 2.0 fleet.
896
940
  #
@@ -935,6 +979,12 @@ module Aws::ApplicationAutoScaling
935
979
  #
936
980
  # * `kafka:broker-storage:VolumeSize` - The provisioned volume size
937
981
  # (in GiB) for brokers in an Amazon MSK cluster.
982
+ #
983
+ # * `elasticache:replication-group:NodeGroups` - The number of node
984
+ # groups for an Amazon ElastiCache replication group.
985
+ #
986
+ # * `elasticache:replication-group:Replicas` - The number of replicas
987
+ # per node group for an Amazon ElastiCache replication group.
938
988
  # @return [String]
939
989
  #
940
990
  # @!attribute [rw] max_results
@@ -987,9 +1037,9 @@ module Aws::ApplicationAutoScaling
987
1037
  #
988
1038
  # {
989
1039
  # policy_names: ["ResourceIdMaxLen1600"],
990
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka
1040
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache
991
1041
  # resource_id: "ResourceIdMaxLen1600",
992
- # 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
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
993
1043
  # max_results: 1,
994
1044
  # next_token: "XmlString",
995
1045
  # }
@@ -999,9 +1049,9 @@ module Aws::ApplicationAutoScaling
999
1049
  # @return [Array<String>]
1000
1050
  #
1001
1051
  # @!attribute [rw] service_namespace
1002
- # The namespace of the AWS service that provides the resource. For a
1003
- # resource provided by your own application or service, use
1004
- # `custom-resource` instead.
1052
+ # The namespace of the Amazon Web Services service that provides the
1053
+ # resource. For a resource provided by your own application or
1054
+ # service, use `custom-resource` instead.
1005
1055
  # @return [String]
1006
1056
  #
1007
1057
  # @!attribute [rw] resource_id
@@ -1066,6 +1116,10 @@ module Aws::ApplicationAutoScaling
1066
1116
  # specified using the cluster ARN. Example:
1067
1117
  # `arn:aws:kafka:us-east-1:123456789012:cluster/demo-cluster-1/6357e0b2-0e6a-4b86-a0b4-70df934c2e31-5`.
1068
1118
  #
1119
+ # * Amazon ElastiCache replication group - The resource type is
1120
+ # `replication-group` and the unique identifier is the replication
1121
+ # group name. Example: `replication-group/mycluster`.
1122
+ #
1069
1123
  #
1070
1124
  #
1071
1125
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -1079,12 +1133,12 @@ module Aws::ApplicationAutoScaling
1079
1133
  # * `ecs:service:DesiredCount` - The desired task count of an ECS
1080
1134
  # service.
1081
1135
  #
1082
- # * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
1083
- # Spot Fleet request.
1084
- #
1085
1136
  # * `elasticmapreduce:instancegroup:InstanceCount` - The instance
1086
1137
  # count of an EMR Instance Group.
1087
1138
  #
1139
+ # * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
1140
+ # Spot Fleet request.
1141
+ #
1088
1142
  # * `appstream:fleet:DesiredCapacity` - The desired capacity of an
1089
1143
  # AppStream 2.0 fleet.
1090
1144
  #
@@ -1129,6 +1183,12 @@ module Aws::ApplicationAutoScaling
1129
1183
  #
1130
1184
  # * `kafka:broker-storage:VolumeSize` - The provisioned volume size
1131
1185
  # (in GiB) for brokers in an Amazon MSK cluster.
1186
+ #
1187
+ # * `elasticache:replication-group:NodeGroups` - The number of node
1188
+ # groups for an Amazon ElastiCache replication group.
1189
+ #
1190
+ # * `elasticache:replication-group:Replicas` - The number of replicas
1191
+ # per node group for an Amazon ElastiCache replication group.
1132
1192
  # @return [String]
1133
1193
  #
1134
1194
  # @!attribute [rw] max_results
@@ -1182,9 +1242,9 @@ module Aws::ApplicationAutoScaling
1182
1242
  #
1183
1243
  # {
1184
1244
  # scheduled_action_names: ["ResourceIdMaxLen1600"],
1185
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka
1245
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache
1186
1246
  # resource_id: "ResourceIdMaxLen1600",
1187
- # 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
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
1188
1248
  # max_results: 1,
1189
1249
  # next_token: "XmlString",
1190
1250
  # }
@@ -1194,9 +1254,9 @@ module Aws::ApplicationAutoScaling
1194
1254
  # @return [Array<String>]
1195
1255
  #
1196
1256
  # @!attribute [rw] service_namespace
1197
- # The namespace of the AWS service that provides the resource. For a
1198
- # resource provided by your own application or service, use
1199
- # `custom-resource` instead.
1257
+ # The namespace of the Amazon Web Services service that provides the
1258
+ # resource. For a resource provided by your own application or
1259
+ # service, use `custom-resource` instead.
1200
1260
  # @return [String]
1201
1261
  #
1202
1262
  # @!attribute [rw] resource_id
@@ -1261,6 +1321,10 @@ module Aws::ApplicationAutoScaling
1261
1321
  # specified using the cluster ARN. Example:
1262
1322
  # `arn:aws:kafka:us-east-1:123456789012:cluster/demo-cluster-1/6357e0b2-0e6a-4b86-a0b4-70df934c2e31-5`.
1263
1323
  #
1324
+ # * Amazon ElastiCache replication group - The resource type is
1325
+ # `replication-group` and the unique identifier is the replication
1326
+ # group name. Example: `replication-group/mycluster`.
1327
+ #
1264
1328
  #
1265
1329
  #
1266
1330
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -1274,12 +1338,12 @@ module Aws::ApplicationAutoScaling
1274
1338
  # * `ecs:service:DesiredCount` - The desired task count of an ECS
1275
1339
  # service.
1276
1340
  #
1277
- # * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
1278
- # Spot Fleet request.
1279
- #
1280
1341
  # * `elasticmapreduce:instancegroup:InstanceCount` - The instance
1281
1342
  # count of an EMR Instance Group.
1282
1343
  #
1344
+ # * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
1345
+ # Spot Fleet request.
1346
+ #
1283
1347
  # * `appstream:fleet:DesiredCapacity` - The desired capacity of an
1284
1348
  # AppStream 2.0 fleet.
1285
1349
  #
@@ -1324,6 +1388,12 @@ module Aws::ApplicationAutoScaling
1324
1388
  #
1325
1389
  # * `kafka:broker-storage:VolumeSize` - The provisioned volume size
1326
1390
  # (in GiB) for brokers in an Amazon MSK cluster.
1391
+ #
1392
+ # * `elasticache:replication-group:NodeGroups` - The number of node
1393
+ # groups for an Amazon ElastiCache replication group.
1394
+ #
1395
+ # * `elasticache:replication-group:Replicas` - The number of replicas
1396
+ # per node group for an Amazon ElastiCache replication group.
1327
1397
  # @return [String]
1328
1398
  #
1329
1399
  # @!attribute [rw] max_results
@@ -1485,7 +1555,7 @@ module Aws::ApplicationAutoScaling
1485
1555
  # Represents a predefined metric for a target tracking scaling policy to
1486
1556
  # use with Application Auto Scaling.
1487
1557
  #
1488
- # Only the AWS services that you're using send metrics to Amazon
1558
+ # Only the Amazon Web Services that you're using send metrics to Amazon
1489
1559
  # CloudWatch. To determine whether a desired metric already exists by
1490
1560
  # looking up its namespace and dimension using the CloudWatch metrics
1491
1561
  # dashboard in the console, follow the procedure in [Building dashboards
@@ -1499,7 +1569,7 @@ module Aws::ApplicationAutoScaling
1499
1569
  # data as a hash:
1500
1570
  #
1501
1571
  # {
1502
- # predefined_metric_type: "DynamoDBReadCapacityUtilization", # required, accepts DynamoDBReadCapacityUtilization, DynamoDBWriteCapacityUtilization, ALBRequestCountPerTarget, RDSReaderAverageCPUUtilization, RDSReaderAverageDatabaseConnections, EC2SpotFleetRequestAverageCPUUtilization, EC2SpotFleetRequestAverageNetworkIn, EC2SpotFleetRequestAverageNetworkOut, SageMakerVariantInvocationsPerInstance, ECSServiceAverageCPUUtilization, ECSServiceAverageMemoryUtilization, AppStreamAverageCapacityUtilization, ComprehendInferenceUtilization, LambdaProvisionedConcurrencyUtilization, CassandraReadCapacityUtilization, CassandraWriteCapacityUtilization, KafkaBrokerStorageUtilization
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
1503
1573
  # resource_label: "ResourceLabel",
1504
1574
  # }
1505
1575
  #
@@ -1516,9 +1586,12 @@ module Aws::ApplicationAutoScaling
1516
1586
  #
1517
1587
  # You create the resource label by appending the final portion of the
1518
1588
  # load balancer ARN and the final portion of the target group ARN into
1519
- # a single value, separated by a forward slash (/). The format is
1520
- # app/&lt;load-balancer-name&gt;/&lt;load-balancer-id&gt;/targetgroup/&lt;target-group-name&gt;/&lt;target-group-id&gt;,
1521
- # where:
1589
+ # a single value, separated by a forward slash (/). The format of the
1590
+ # resource label is:
1591
+ #
1592
+ # `app/my-alb/778d41231b141a0f/targetgroup/my-alb-target-group/943f017f100becff`.
1593
+ #
1594
+ # Where:
1522
1595
  #
1523
1596
  # * app/&lt;load-balancer-name&gt;/&lt;load-balancer-id&gt; is the
1524
1597
  # final portion of the load balancer ARN
@@ -1526,9 +1599,6 @@ module Aws::ApplicationAutoScaling
1526
1599
  # * targetgroup/&lt;target-group-name&gt;/&lt;target-group-id&gt; is
1527
1600
  # the final portion of the target group ARN.
1528
1601
  #
1529
- # This is an example:
1530
- # app/EC2Co-EcsEl-1TKLTMITMM0EO/f37c06a68c1748aa/targetgroup/EC2Co-Defau-LDNM7Q3ZH1ZN/6d4ea56ca2d6a18d.
1531
- #
1532
1602
  # To find the ARN for an Application Load Balancer, use the
1533
1603
  # [DescribeLoadBalancers][1] API operation. To find the ARN for the
1534
1604
  # target group, use the [DescribeTargetGroups][2] API operation.
@@ -1553,9 +1623,9 @@ module Aws::ApplicationAutoScaling
1553
1623
  #
1554
1624
  # {
1555
1625
  # policy_name: "PolicyName", # required
1556
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka
1626
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache
1557
1627
  # resource_id: "ResourceIdMaxLen1600", # required
1558
- # 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
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
1559
1629
  # policy_type: "StepScaling", # accepts StepScaling, TargetTrackingScaling
1560
1630
  # step_scaling_policy_configuration: {
1561
1631
  # adjustment_type: "ChangeInCapacity", # accepts ChangeInCapacity, PercentChangeInCapacity, ExactCapacity
@@ -1573,7 +1643,7 @@ module Aws::ApplicationAutoScaling
1573
1643
  # target_tracking_scaling_policy_configuration: {
1574
1644
  # target_value: 1.0, # required
1575
1645
  # predefined_metric_specification: {
1576
- # predefined_metric_type: "DynamoDBReadCapacityUtilization", # required, accepts DynamoDBReadCapacityUtilization, DynamoDBWriteCapacityUtilization, ALBRequestCountPerTarget, RDSReaderAverageCPUUtilization, RDSReaderAverageDatabaseConnections, EC2SpotFleetRequestAverageCPUUtilization, EC2SpotFleetRequestAverageNetworkIn, EC2SpotFleetRequestAverageNetworkOut, SageMakerVariantInvocationsPerInstance, ECSServiceAverageCPUUtilization, ECSServiceAverageMemoryUtilization, AppStreamAverageCapacityUtilization, ComprehendInferenceUtilization, LambdaProvisionedConcurrencyUtilization, CassandraReadCapacityUtilization, CassandraWriteCapacityUtilization, KafkaBrokerStorageUtilization
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
1577
1647
  # resource_label: "ResourceLabel",
1578
1648
  # },
1579
1649
  # customized_metric_specification: {
@@ -1599,9 +1669,9 @@ module Aws::ApplicationAutoScaling
1599
1669
  # @return [String]
1600
1670
  #
1601
1671
  # @!attribute [rw] service_namespace
1602
- # The namespace of the AWS service that provides the resource. For a
1603
- # resource provided by your own application or service, use
1604
- # `custom-resource` instead.
1672
+ # The namespace of the Amazon Web Services service that provides the
1673
+ # resource. For a resource provided by your own application or
1674
+ # service, use `custom-resource` instead.
1605
1675
  # @return [String]
1606
1676
  #
1607
1677
  # @!attribute [rw] resource_id
@@ -1666,6 +1736,10 @@ module Aws::ApplicationAutoScaling
1666
1736
  # specified using the cluster ARN. Example:
1667
1737
  # `arn:aws:kafka:us-east-1:123456789012:cluster/demo-cluster-1/6357e0b2-0e6a-4b86-a0b4-70df934c2e31-5`.
1668
1738
  #
1739
+ # * Amazon ElastiCache replication group - The resource type is
1740
+ # `replication-group` and the unique identifier is the replication
1741
+ # group name. Example: `replication-group/mycluster`.
1742
+ #
1669
1743
  #
1670
1744
  #
1671
1745
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -1678,12 +1752,12 @@ module Aws::ApplicationAutoScaling
1678
1752
  # * `ecs:service:DesiredCount` - The desired task count of an ECS
1679
1753
  # service.
1680
1754
  #
1681
- # * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
1682
- # Spot Fleet request.
1683
- #
1684
1755
  # * `elasticmapreduce:instancegroup:InstanceCount` - The instance
1685
1756
  # count of an EMR Instance Group.
1686
1757
  #
1758
+ # * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
1759
+ # Spot Fleet request.
1760
+ #
1687
1761
  # * `appstream:fleet:DesiredCapacity` - The desired capacity of an
1688
1762
  # AppStream 2.0 fleet.
1689
1763
  #
@@ -1728,6 +1802,12 @@ module Aws::ApplicationAutoScaling
1728
1802
  #
1729
1803
  # * `kafka:broker-storage:VolumeSize` - The provisioned volume size
1730
1804
  # (in GiB) for brokers in an Amazon MSK cluster.
1805
+ #
1806
+ # * `elasticache:replication-group:NodeGroups` - The number of node
1807
+ # groups for an Amazon ElastiCache replication group.
1808
+ #
1809
+ # * `elasticache:replication-group:Replicas` - The number of replicas
1810
+ # per node group for an Amazon ElastiCache replication group.
1731
1811
  # @return [String]
1732
1812
  #
1733
1813
  # @!attribute [rw] policy_type
@@ -1739,7 +1819,8 @@ module Aws::ApplicationAutoScaling
1739
1819
  # `TargetTrackingScaling`—Not supported for Amazon EMR
1740
1820
  #
1741
1821
  # `StepScaling`—Not supported for DynamoDB, Amazon Comprehend, Lambda,
1742
- # Amazon Keyspaces (for Apache Cassandra), or Amazon MSK.
1822
+ # Amazon Keyspaces (for Apache Cassandra), Amazon MSK, or Amazon
1823
+ # ElastiCache for Redis.
1743
1824
  #
1744
1825
  # For more information, see [Target tracking scaling policies][1] and
1745
1826
  # [Step scaling policies][2] in the *Application Auto Scaling User
@@ -1802,12 +1883,12 @@ module Aws::ApplicationAutoScaling
1802
1883
  # data as a hash:
1803
1884
  #
1804
1885
  # {
1805
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka
1886
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache
1806
1887
  # schedule: "ResourceIdMaxLen1600",
1807
1888
  # timezone: "ResourceIdMaxLen1600",
1808
1889
  # scheduled_action_name: "ScheduledActionName", # required
1809
1890
  # resource_id: "ResourceIdMaxLen1600", # required
1810
- # 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
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
1811
1892
  # start_time: Time.now,
1812
1893
  # end_time: Time.now,
1813
1894
  # scalable_target_action: {
@@ -1817,9 +1898,9 @@ module Aws::ApplicationAutoScaling
1817
1898
  # }
1818
1899
  #
1819
1900
  # @!attribute [rw] service_namespace
1820
- # The namespace of the AWS service that provides the resource. For a
1821
- # resource provided by your own application or service, use
1822
- # `custom-resource` instead.
1901
+ # The namespace of the Amazon Web Services service that provides the
1902
+ # resource. For a resource provided by your own application or
1903
+ # service, use `custom-resource` instead.
1823
1904
  # @return [String]
1824
1905
  #
1825
1906
  # @!attribute [rw] schedule
@@ -1937,6 +2018,10 @@ module Aws::ApplicationAutoScaling
1937
2018
  # specified using the cluster ARN. Example:
1938
2019
  # `arn:aws:kafka:us-east-1:123456789012:cluster/demo-cluster-1/6357e0b2-0e6a-4b86-a0b4-70df934c2e31-5`.
1939
2020
  #
2021
+ # * Amazon ElastiCache replication group - The resource type is
2022
+ # `replication-group` and the unique identifier is the replication
2023
+ # group name. Example: `replication-group/mycluster`.
2024
+ #
1940
2025
  #
1941
2026
  #
1942
2027
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -1949,12 +2034,12 @@ module Aws::ApplicationAutoScaling
1949
2034
  # * `ecs:service:DesiredCount` - The desired task count of an ECS
1950
2035
  # service.
1951
2036
  #
1952
- # * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
1953
- # Spot Fleet request.
1954
- #
1955
2037
  # * `elasticmapreduce:instancegroup:InstanceCount` - The instance
1956
2038
  # count of an EMR Instance Group.
1957
2039
  #
2040
+ # * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
2041
+ # Spot Fleet request.
2042
+ #
1958
2043
  # * `appstream:fleet:DesiredCapacity` - The desired capacity of an
1959
2044
  # AppStream 2.0 fleet.
1960
2045
  #
@@ -1999,6 +2084,12 @@ module Aws::ApplicationAutoScaling
1999
2084
  #
2000
2085
  # * `kafka:broker-storage:VolumeSize` - The provisioned volume size
2001
2086
  # (in GiB) for brokers in an Amazon MSK cluster.
2087
+ #
2088
+ # * `elasticache:replication-group:NodeGroups` - The number of node
2089
+ # groups for an Amazon ElastiCache replication group.
2090
+ #
2091
+ # * `elasticache:replication-group:Replicas` - The number of replicas
2092
+ # per node group for an Amazon ElastiCache replication group.
2002
2093
  # @return [String]
2003
2094
  #
2004
2095
  # @!attribute [rw] start_time
@@ -2042,9 +2133,9 @@ module Aws::ApplicationAutoScaling
2042
2133
  # data as a hash:
2043
2134
  #
2044
2135
  # {
2045
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka
2136
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache
2046
2137
  # resource_id: "ResourceIdMaxLen1600", # required
2047
- # 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
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
2048
2139
  # min_capacity: 1,
2049
2140
  # max_capacity: 1,
2050
2141
  # role_arn: "ResourceIdMaxLen1600",
@@ -2056,9 +2147,9 @@ module Aws::ApplicationAutoScaling
2056
2147
  # }
2057
2148
  #
2058
2149
  # @!attribute [rw] service_namespace
2059
- # The namespace of the AWS service that provides the resource. For a
2060
- # resource provided by your own application or service, use
2061
- # `custom-resource` instead.
2150
+ # The namespace of the Amazon Web Services service that provides the
2151
+ # resource. For a resource provided by your own application or
2152
+ # service, use `custom-resource` instead.
2062
2153
  # @return [String]
2063
2154
  #
2064
2155
  # @!attribute [rw] resource_id
@@ -2124,6 +2215,10 @@ module Aws::ApplicationAutoScaling
2124
2215
  # specified using the cluster ARN. Example:
2125
2216
  # `arn:aws:kafka:us-east-1:123456789012:cluster/demo-cluster-1/6357e0b2-0e6a-4b86-a0b4-70df934c2e31-5`.
2126
2217
  #
2218
+ # * Amazon ElastiCache replication group - The resource type is
2219
+ # `replication-group` and the unique identifier is the replication
2220
+ # group name. Example: `replication-group/mycluster`.
2221
+ #
2127
2222
  #
2128
2223
  #
2129
2224
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -2137,12 +2232,12 @@ module Aws::ApplicationAutoScaling
2137
2232
  # * `ecs:service:DesiredCount` - The desired task count of an ECS
2138
2233
  # service.
2139
2234
  #
2140
- # * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
2141
- # Spot Fleet request.
2142
- #
2143
2235
  # * `elasticmapreduce:instancegroup:InstanceCount` - The instance
2144
2236
  # count of an EMR Instance Group.
2145
2237
  #
2238
+ # * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
2239
+ # Spot Fleet request.
2240
+ #
2146
2241
  # * `appstream:fleet:DesiredCapacity` - The desired capacity of an
2147
2242
  # AppStream 2.0 fleet.
2148
2243
  #
@@ -2187,6 +2282,12 @@ module Aws::ApplicationAutoScaling
2187
2282
  #
2188
2283
  # * `kafka:broker-storage:VolumeSize` - The provisioned volume size
2189
2284
  # (in GiB) for brokers in an Amazon MSK cluster.
2285
+ #
2286
+ # * `elasticache:replication-group:NodeGroups` - The number of node
2287
+ # groups for an Amazon ElastiCache replication group.
2288
+ #
2289
+ # * `elasticache:replication-group:Replicas` - The number of replicas
2290
+ # per node group for an Amazon ElastiCache replication group.
2190
2291
  # @return [String]
2191
2292
  #
2192
2293
  # @!attribute [rw] min_capacity
@@ -2289,8 +2390,8 @@ module Aws::ApplicationAutoScaling
2289
2390
  # Represents a scalable target.
2290
2391
  #
2291
2392
  # @!attribute [rw] service_namespace
2292
- # The namespace of the AWS service that provides the resource, or a
2293
- # `custom-resource`.
2393
+ # The namespace of the Amazon Web Services service that provides the
2394
+ # resource, or a `custom-resource`.
2294
2395
  # @return [String]
2295
2396
  #
2296
2397
  # @!attribute [rw] resource_id
@@ -2355,6 +2456,10 @@ module Aws::ApplicationAutoScaling
2355
2456
  # specified using the cluster ARN. Example:
2356
2457
  # `arn:aws:kafka:us-east-1:123456789012:cluster/demo-cluster-1/6357e0b2-0e6a-4b86-a0b4-70df934c2e31-5`.
2357
2458
  #
2459
+ # * Amazon ElastiCache replication group - The resource type is
2460
+ # `replication-group` and the unique identifier is the replication
2461
+ # group name. Example: `replication-group/mycluster`.
2462
+ #
2358
2463
  #
2359
2464
  #
2360
2465
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -2368,12 +2473,12 @@ module Aws::ApplicationAutoScaling
2368
2473
  # * `ecs:service:DesiredCount` - The desired task count of an ECS
2369
2474
  # service.
2370
2475
  #
2371
- # * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
2372
- # Spot Fleet request.
2373
- #
2374
2476
  # * `elasticmapreduce:instancegroup:InstanceCount` - The instance
2375
2477
  # count of an EMR Instance Group.
2376
2478
  #
2479
+ # * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
2480
+ # Spot Fleet request.
2481
+ #
2377
2482
  # * `appstream:fleet:DesiredCapacity` - The desired capacity of an
2378
2483
  # AppStream 2.0 fleet.
2379
2484
  #
@@ -2418,6 +2523,12 @@ module Aws::ApplicationAutoScaling
2418
2523
  #
2419
2524
  # * `kafka:broker-storage:VolumeSize` - The provisioned volume size
2420
2525
  # (in GiB) for brokers in an Amazon MSK cluster.
2526
+ #
2527
+ # * `elasticache:replication-group:NodeGroups` - The number of node
2528
+ # groups for an Amazon ElastiCache replication group.
2529
+ #
2530
+ # * `elasticache:replication-group:Replicas` - The number of replicas
2531
+ # per node group for an Amazon ElastiCache replication group.
2421
2532
  # @return [String]
2422
2533
  #
2423
2534
  # @!attribute [rw] min_capacity
@@ -2509,8 +2620,8 @@ module Aws::ApplicationAutoScaling
2509
2620
  # @return [String]
2510
2621
  #
2511
2622
  # @!attribute [rw] service_namespace
2512
- # The namespace of the AWS service that provides the resource, or a
2513
- # `custom-resource`.
2623
+ # The namespace of the Amazon Web Services service that provides the
2624
+ # resource, or a `custom-resource`.
2514
2625
  # @return [String]
2515
2626
  #
2516
2627
  # @!attribute [rw] resource_id
@@ -2575,6 +2686,10 @@ module Aws::ApplicationAutoScaling
2575
2686
  # specified using the cluster ARN. Example:
2576
2687
  # `arn:aws:kafka:us-east-1:123456789012:cluster/demo-cluster-1/6357e0b2-0e6a-4b86-a0b4-70df934c2e31-5`.
2577
2688
  #
2689
+ # * Amazon ElastiCache replication group - The resource type is
2690
+ # `replication-group` and the unique identifier is the replication
2691
+ # group name. Example: `replication-group/mycluster`.
2692
+ #
2578
2693
  #
2579
2694
  #
2580
2695
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -2587,12 +2702,12 @@ module Aws::ApplicationAutoScaling
2587
2702
  # * `ecs:service:DesiredCount` - The desired task count of an ECS
2588
2703
  # service.
2589
2704
  #
2590
- # * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
2591
- # Spot Fleet request.
2592
- #
2593
2705
  # * `elasticmapreduce:instancegroup:InstanceCount` - The instance
2594
2706
  # count of an EMR Instance Group.
2595
2707
  #
2708
+ # * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
2709
+ # Spot Fleet request.
2710
+ #
2596
2711
  # * `appstream:fleet:DesiredCapacity` - The desired capacity of an
2597
2712
  # AppStream 2.0 fleet.
2598
2713
  #
@@ -2637,6 +2752,12 @@ module Aws::ApplicationAutoScaling
2637
2752
  #
2638
2753
  # * `kafka:broker-storage:VolumeSize` - The provisioned volume size
2639
2754
  # (in GiB) for brokers in an Amazon MSK cluster.
2755
+ #
2756
+ # * `elasticache:replication-group:NodeGroups` - The number of node
2757
+ # groups for an Amazon ElastiCache replication group.
2758
+ #
2759
+ # * `elasticache:replication-group:Replicas` - The number of replicas
2760
+ # per node group for an Amazon ElastiCache replication group.
2640
2761
  # @return [String]
2641
2762
  #
2642
2763
  # @!attribute [rw] description
@@ -2705,8 +2826,8 @@ module Aws::ApplicationAutoScaling
2705
2826
  # @return [String]
2706
2827
  #
2707
2828
  # @!attribute [rw] service_namespace
2708
- # The namespace of the AWS service that provides the resource, or a
2709
- # `custom-resource`.
2829
+ # The namespace of the Amazon Web Services service that provides the
2830
+ # resource, or a `custom-resource`.
2710
2831
  # @return [String]
2711
2832
  #
2712
2833
  # @!attribute [rw] resource_id
@@ -2771,6 +2892,10 @@ module Aws::ApplicationAutoScaling
2771
2892
  # specified using the cluster ARN. Example:
2772
2893
  # `arn:aws:kafka:us-east-1:123456789012:cluster/demo-cluster-1/6357e0b2-0e6a-4b86-a0b4-70df934c2e31-5`.
2773
2894
  #
2895
+ # * Amazon ElastiCache replication group - The resource type is
2896
+ # `replication-group` and the unique identifier is the replication
2897
+ # group name. Example: `replication-group/mycluster`.
2898
+ #
2774
2899
  #
2775
2900
  #
2776
2901
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -2783,12 +2908,12 @@ module Aws::ApplicationAutoScaling
2783
2908
  # * `ecs:service:DesiredCount` - The desired task count of an ECS
2784
2909
  # service.
2785
2910
  #
2786
- # * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
2787
- # Spot Fleet request.
2788
- #
2789
2911
  # * `elasticmapreduce:instancegroup:InstanceCount` - The instance
2790
2912
  # count of an EMR Instance Group.
2791
2913
  #
2914
+ # * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
2915
+ # Spot Fleet request.
2916
+ #
2792
2917
  # * `appstream:fleet:DesiredCapacity` - The desired capacity of an
2793
2918
  # AppStream 2.0 fleet.
2794
2919
  #
@@ -2833,6 +2958,12 @@ module Aws::ApplicationAutoScaling
2833
2958
  #
2834
2959
  # * `kafka:broker-storage:VolumeSize` - The provisioned volume size
2835
2960
  # (in GiB) for brokers in an Amazon MSK cluster.
2961
+ #
2962
+ # * `elasticache:replication-group:NodeGroups` - The number of node
2963
+ # groups for an Amazon ElastiCache replication group.
2964
+ #
2965
+ # * `elasticache:replication-group:Replicas` - The number of replicas
2966
+ # per node group for an Amazon ElastiCache replication group.
2836
2967
  # @return [String]
2837
2968
  #
2838
2969
  # @!attribute [rw] policy_type
@@ -2883,8 +3014,8 @@ module Aws::ApplicationAutoScaling
2883
3014
  # @return [String]
2884
3015
  #
2885
3016
  # @!attribute [rw] service_namespace
2886
- # The namespace of the AWS service that provides the resource, or a
2887
- # `custom-resource`.
3017
+ # The namespace of the Amazon Web Services service that provides the
3018
+ # resource, or a `custom-resource`.
2888
3019
  # @return [String]
2889
3020
  #
2890
3021
  # @!attribute [rw] schedule
@@ -2988,6 +3119,10 @@ module Aws::ApplicationAutoScaling
2988
3119
  # specified using the cluster ARN. Example:
2989
3120
  # `arn:aws:kafka:us-east-1:123456789012:cluster/demo-cluster-1/6357e0b2-0e6a-4b86-a0b4-70df934c2e31-5`.
2990
3121
  #
3122
+ # * Amazon ElastiCache replication group - The resource type is
3123
+ # `replication-group` and the unique identifier is the replication
3124
+ # group name. Example: `replication-group/mycluster`.
3125
+ #
2991
3126
  #
2992
3127
  #
2993
3128
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -3000,12 +3135,12 @@ module Aws::ApplicationAutoScaling
3000
3135
  # * `ecs:service:DesiredCount` - The desired task count of an ECS
3001
3136
  # service.
3002
3137
  #
3003
- # * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
3004
- # Spot Fleet request.
3005
- #
3006
3138
  # * `elasticmapreduce:instancegroup:InstanceCount` - The instance
3007
3139
  # count of an EMR Instance Group.
3008
3140
  #
3141
+ # * `ec2:spot-fleet-request:TargetCapacity` - The target capacity of a
3142
+ # Spot Fleet request.
3143
+ #
3009
3144
  # * `appstream:fleet:DesiredCapacity` - The desired capacity of an
3010
3145
  # AppStream 2.0 fleet.
3011
3146
  #
@@ -3050,6 +3185,12 @@ module Aws::ApplicationAutoScaling
3050
3185
  #
3051
3186
  # * `kafka:broker-storage:VolumeSize` - The provisioned volume size
3052
3187
  # (in GiB) for brokers in an Amazon MSK cluster.
3188
+ #
3189
+ # * `elasticache:replication-group:NodeGroups` - The number of node
3190
+ # groups for an Amazon ElastiCache replication group.
3191
+ #
3192
+ # * `elasticache:replication-group:Replicas` - The number of replicas
3193
+ # per node group for an Amazon ElastiCache replication group.
3053
3194
  # @return [String]
3054
3195
  #
3055
3196
  # @!attribute [rw] start_time
@@ -3251,7 +3392,8 @@ module Aws::ApplicationAutoScaling
3251
3392
  # out the target immediately. In this case, the cooldown period for
3252
3393
  # the scale-in activity stops and doesn't complete.
3253
3394
  #
3254
- # Application Auto Scaling provides a default value of 300 for the
3395
+ # Application Auto Scaling provides a default value of 600 for Amazon
3396
+ # ElastiCache replication groups and a default value of 300 for the
3255
3397
  # following scalable targets:
3256
3398
  #
3257
3399
  # * ECS services
@@ -3353,7 +3495,7 @@ module Aws::ApplicationAutoScaling
3353
3495
  # {
3354
3496
  # target_value: 1.0, # required
3355
3497
  # predefined_metric_specification: {
3356
- # predefined_metric_type: "DynamoDBReadCapacityUtilization", # required, accepts DynamoDBReadCapacityUtilization, DynamoDBWriteCapacityUtilization, ALBRequestCountPerTarget, RDSReaderAverageCPUUtilization, RDSReaderAverageDatabaseConnections, EC2SpotFleetRequestAverageCPUUtilization, EC2SpotFleetRequestAverageNetworkIn, EC2SpotFleetRequestAverageNetworkOut, SageMakerVariantInvocationsPerInstance, ECSServiceAverageCPUUtilization, ECSServiceAverageMemoryUtilization, AppStreamAverageCapacityUtilization, ComprehendInferenceUtilization, LambdaProvisionedConcurrencyUtilization, CassandraReadCapacityUtilization, CassandraWriteCapacityUtilization, KafkaBrokerStorageUtilization
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
3357
3499
  # resource_label: "ResourceLabel",
3358
3500
  # },
3359
3501
  # customized_metric_specification: {
@@ -3407,7 +3549,8 @@ module Aws::ApplicationAutoScaling
3407
3549
  # scale-out activity is calculated as part of the desired capacity for
3408
3550
  # the next scale-out activity.
3409
3551
  #
3410
- # Application Auto Scaling provides a default value of 300 for the
3552
+ # Application Auto Scaling provides a default value of 600 for Amazon
3553
+ # ElastiCache replication groups and a default value of 300 for the
3411
3554
  # following scalable targets:
3412
3555
  #
3413
3556
  # * ECS services
@@ -3452,7 +3595,8 @@ module Aws::ApplicationAutoScaling
3452
3595
  # out the target immediately. In this case, the scale-in cooldown
3453
3596
  # period stops and doesn't complete.
3454
3597
  #
3455
- # Application Auto Scaling provides a default value of 300 for the
3598
+ # Application Auto Scaling provides a default value of 600 for Amazon
3599
+ # ElastiCache replication groups and a default value of 300 for the
3456
3600
  # following scalable targets:
3457
3601
  #
3458
3602
  # * ECS services