aws-sdk-applicationautoscaling 1.101.0 → 1.103.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-applicationautoscaling/client.rb +126 -52
- data/lib/aws-sdk-applicationautoscaling/types.rb +106 -3
- data/lib/aws-sdk-applicationautoscaling.rb +1 -1
- data/sig/client.rbs +12 -12
- data/sig/types.rbs +16 -16
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1b109a48072d6bb0caf72960cc19ed2bbfaca11e68c6ba658568e3d0be3aa7f6
|
4
|
+
data.tar.gz: fa598ce382dcda59df2a4f8d41e75d15431f2ba797f92012b156759cec42a8c6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 07b75764beb1f747cbf44cdb69083beaec13cc468f9bfe46c1887aeeaccd7d97264893bbfc7217f3f44c61b1f6a0b81ad9dfc3540e13451f5b7f91ecbf67f34e
|
7
|
+
data.tar.gz: 3c0119cb1ee479d5adbb354928aa8173fd53564ee5be50fe4590557a32540cc4a87afbd9e55124db5de9ecbb1df9bfa0c55804b2d23b390c1ebc0065a70d6e77
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.103.0 (2025-04-10)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Application Auto Scaling now supports horizontal scaling for Elasticache Memcached self-designed clusters using target tracking scaling policies and scheduled scaling.
|
8
|
+
|
9
|
+
1.102.0 (2025-02-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.101.0 (2025-02-06)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.103.0
|
@@ -7,34 +7,34 @@
|
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
10
|
-
require 'seahorse/client/plugins/content_length
|
11
|
-
require 'aws-sdk-core/plugins/credentials_configuration
|
12
|
-
require 'aws-sdk-core/plugins/logging
|
13
|
-
require 'aws-sdk-core/plugins/param_converter
|
14
|
-
require 'aws-sdk-core/plugins/param_validator
|
15
|
-
require 'aws-sdk-core/plugins/user_agent
|
16
|
-
require 'aws-sdk-core/plugins/helpful_socket_errors
|
17
|
-
require 'aws-sdk-core/plugins/retry_errors
|
18
|
-
require 'aws-sdk-core/plugins/global_configuration
|
19
|
-
require 'aws-sdk-core/plugins/regional_endpoint
|
20
|
-
require 'aws-sdk-core/plugins/endpoint_discovery
|
21
|
-
require 'aws-sdk-core/plugins/endpoint_pattern
|
22
|
-
require 'aws-sdk-core/plugins/response_paging
|
23
|
-
require 'aws-sdk-core/plugins/stub_responses
|
24
|
-
require 'aws-sdk-core/plugins/idempotency_token
|
25
|
-
require 'aws-sdk-core/plugins/invocation_id
|
26
|
-
require 'aws-sdk-core/plugins/jsonvalue_converter
|
27
|
-
require 'aws-sdk-core/plugins/client_metrics_plugin
|
28
|
-
require 'aws-sdk-core/plugins/client_metrics_send_plugin
|
29
|
-
require 'aws-sdk-core/plugins/transfer_encoding
|
30
|
-
require 'aws-sdk-core/plugins/http_checksum
|
31
|
-
require 'aws-sdk-core/plugins/checksum_algorithm
|
32
|
-
require 'aws-sdk-core/plugins/request_compression
|
33
|
-
require 'aws-sdk-core/plugins/defaults_mode
|
34
|
-
require 'aws-sdk-core/plugins/recursion_detection
|
35
|
-
require 'aws-sdk-core/plugins/telemetry
|
36
|
-
require 'aws-sdk-core/plugins/sign
|
37
|
-
require 'aws-sdk-core/plugins/protocols/json_rpc
|
10
|
+
require 'seahorse/client/plugins/content_length'
|
11
|
+
require 'aws-sdk-core/plugins/credentials_configuration'
|
12
|
+
require 'aws-sdk-core/plugins/logging'
|
13
|
+
require 'aws-sdk-core/plugins/param_converter'
|
14
|
+
require 'aws-sdk-core/plugins/param_validator'
|
15
|
+
require 'aws-sdk-core/plugins/user_agent'
|
16
|
+
require 'aws-sdk-core/plugins/helpful_socket_errors'
|
17
|
+
require 'aws-sdk-core/plugins/retry_errors'
|
18
|
+
require 'aws-sdk-core/plugins/global_configuration'
|
19
|
+
require 'aws-sdk-core/plugins/regional_endpoint'
|
20
|
+
require 'aws-sdk-core/plugins/endpoint_discovery'
|
21
|
+
require 'aws-sdk-core/plugins/endpoint_pattern'
|
22
|
+
require 'aws-sdk-core/plugins/response_paging'
|
23
|
+
require 'aws-sdk-core/plugins/stub_responses'
|
24
|
+
require 'aws-sdk-core/plugins/idempotency_token'
|
25
|
+
require 'aws-sdk-core/plugins/invocation_id'
|
26
|
+
require 'aws-sdk-core/plugins/jsonvalue_converter'
|
27
|
+
require 'aws-sdk-core/plugins/client_metrics_plugin'
|
28
|
+
require 'aws-sdk-core/plugins/client_metrics_send_plugin'
|
29
|
+
require 'aws-sdk-core/plugins/transfer_encoding'
|
30
|
+
require 'aws-sdk-core/plugins/http_checksum'
|
31
|
+
require 'aws-sdk-core/plugins/checksum_algorithm'
|
32
|
+
require 'aws-sdk-core/plugins/request_compression'
|
33
|
+
require 'aws-sdk-core/plugins/defaults_mode'
|
34
|
+
require 'aws-sdk-core/plugins/recursion_detection'
|
35
|
+
require 'aws-sdk-core/plugins/telemetry'
|
36
|
+
require 'aws-sdk-core/plugins/sign'
|
37
|
+
require 'aws-sdk-core/plugins/protocols/json_rpc'
|
38
38
|
|
39
39
|
module Aws::ApplicationAutoScaling
|
40
40
|
# An API client for ApplicationAutoScaling. To construct a client, you need to configure a `:region` and `:credentials`.
|
@@ -566,6 +566,10 @@ module Aws::ApplicationAutoScaling
|
|
566
566
|
# `replication-group` and the unique identifier is the replication
|
567
567
|
# group name. Example: `replication-group/mycluster`.
|
568
568
|
#
|
569
|
+
# * Amazon ElastiCache cache cluster - The resource type is
|
570
|
+
# `cache-cluster` and the unique identifier is the cache cluster name.
|
571
|
+
# Example: `cache-cluster/mycluster`.
|
572
|
+
#
|
569
573
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
570
574
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
571
575
|
#
|
@@ -642,6 +646,9 @@ module Aws::ApplicationAutoScaling
|
|
642
646
|
# * `kafka:broker-storage:VolumeSize` - The provisioned volume size (in
|
643
647
|
# GiB) for brokers in an Amazon MSK cluster.
|
644
648
|
#
|
649
|
+
# * `elasticache:cache-cluster:Nodes` - The number of nodes for an
|
650
|
+
# Amazon ElastiCache cache cluster.
|
651
|
+
#
|
645
652
|
# * `elasticache:replication-group:NodeGroups` - The number of node
|
646
653
|
# groups for an Amazon ElastiCache replication group.
|
647
654
|
#
|
@@ -685,7 +692,7 @@ module Aws::ApplicationAutoScaling
|
|
685
692
|
# policy_name: "ResourceIdMaxLen1600", # required
|
686
693
|
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune, workspaces
|
687
694
|
# resource_id: "ResourceIdMaxLen1600", # required
|
688
|
-
# 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, sagemaker:variant:DesiredProvisionedConcurrency, sagemaker:inference-component:DesiredCopyCount, workspaces:workspacespool:DesiredUserSessions
|
695
|
+
# 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:cache-cluster:Nodes, elasticache:replication-group:NodeGroups, elasticache:replication-group:Replicas, neptune:cluster:ReadReplicaCount, sagemaker:variant:DesiredProvisionedConcurrency, sagemaker:inference-component:DesiredCopyCount, workspaces:workspacespool:DesiredUserSessions
|
689
696
|
# })
|
690
697
|
#
|
691
698
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeleteScalingPolicy AWS API Documentation
|
@@ -780,6 +787,10 @@ module Aws::ApplicationAutoScaling
|
|
780
787
|
# `replication-group` and the unique identifier is the replication
|
781
788
|
# group name. Example: `replication-group/mycluster`.
|
782
789
|
#
|
790
|
+
# * Amazon ElastiCache cache cluster - The resource type is
|
791
|
+
# `cache-cluster` and the unique identifier is the cache cluster name.
|
792
|
+
# Example: `cache-cluster/mycluster`.
|
793
|
+
#
|
783
794
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
784
795
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
785
796
|
#
|
@@ -856,6 +867,9 @@ module Aws::ApplicationAutoScaling
|
|
856
867
|
# * `kafka:broker-storage:VolumeSize` - The provisioned volume size (in
|
857
868
|
# GiB) for brokers in an Amazon MSK cluster.
|
858
869
|
#
|
870
|
+
# * `elasticache:cache-cluster:Nodes` - The number of nodes for an
|
871
|
+
# Amazon ElastiCache cache cluster.
|
872
|
+
#
|
859
873
|
# * `elasticache:replication-group:NodeGroups` - The number of node
|
860
874
|
# groups for an Amazon ElastiCache replication group.
|
861
875
|
#
|
@@ -898,7 +912,7 @@ module Aws::ApplicationAutoScaling
|
|
898
912
|
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune, workspaces
|
899
913
|
# scheduled_action_name: "ResourceIdMaxLen1600", # required
|
900
914
|
# resource_id: "ResourceIdMaxLen1600", # required
|
901
|
-
# 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, sagemaker:variant:DesiredProvisionedConcurrency, sagemaker:inference-component:DesiredCopyCount, workspaces:workspacespool:DesiredUserSessions
|
915
|
+
# 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:cache-cluster:Nodes, elasticache:replication-group:NodeGroups, elasticache:replication-group:Replicas, neptune:cluster:ReadReplicaCount, sagemaker:variant:DesiredProvisionedConcurrency, sagemaker:inference-component:DesiredCopyCount, workspaces:workspacespool:DesiredUserSessions
|
902
916
|
# })
|
903
917
|
#
|
904
918
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeleteScheduledAction AWS API Documentation
|
@@ -993,6 +1007,10 @@ module Aws::ApplicationAutoScaling
|
|
993
1007
|
# `replication-group` and the unique identifier is the replication
|
994
1008
|
# group name. Example: `replication-group/mycluster`.
|
995
1009
|
#
|
1010
|
+
# * Amazon ElastiCache cache cluster - The resource type is
|
1011
|
+
# `cache-cluster` and the unique identifier is the cache cluster name.
|
1012
|
+
# Example: `cache-cluster/mycluster`.
|
1013
|
+
#
|
996
1014
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
997
1015
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
998
1016
|
#
|
@@ -1070,6 +1088,9 @@ module Aws::ApplicationAutoScaling
|
|
1070
1088
|
# * `kafka:broker-storage:VolumeSize` - The provisioned volume size (in
|
1071
1089
|
# GiB) for brokers in an Amazon MSK cluster.
|
1072
1090
|
#
|
1091
|
+
# * `elasticache:cache-cluster:Nodes` - The number of nodes for an
|
1092
|
+
# Amazon ElastiCache cache cluster.
|
1093
|
+
#
|
1073
1094
|
# * `elasticache:replication-group:NodeGroups` - The number of node
|
1074
1095
|
# groups for an Amazon ElastiCache replication group.
|
1075
1096
|
#
|
@@ -1111,7 +1132,7 @@ module Aws::ApplicationAutoScaling
|
|
1111
1132
|
# resp = client.deregister_scalable_target({
|
1112
1133
|
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune, workspaces
|
1113
1134
|
# resource_id: "ResourceIdMaxLen1600", # required
|
1114
|
-
# 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, sagemaker:variant:DesiredProvisionedConcurrency, sagemaker:inference-component:DesiredCopyCount, workspaces:workspacespool:DesiredUserSessions
|
1135
|
+
# 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:cache-cluster:Nodes, elasticache:replication-group:NodeGroups, elasticache:replication-group:Replicas, neptune:cluster:ReadReplicaCount, sagemaker:variant:DesiredProvisionedConcurrency, sagemaker:inference-component:DesiredCopyCount, workspaces:workspacespool:DesiredUserSessions
|
1115
1136
|
# })
|
1116
1137
|
#
|
1117
1138
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeregisterScalableTarget AWS API Documentation
|
@@ -1199,6 +1220,10 @@ module Aws::ApplicationAutoScaling
|
|
1199
1220
|
# `replication-group` and the unique identifier is the replication
|
1200
1221
|
# group name. Example: `replication-group/mycluster`.
|
1201
1222
|
#
|
1223
|
+
# * Amazon ElastiCache cache cluster - The resource type is
|
1224
|
+
# `cache-cluster` and the unique identifier is the cache cluster name.
|
1225
|
+
# Example: `cache-cluster/mycluster`.
|
1226
|
+
#
|
1202
1227
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
1203
1228
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
1204
1229
|
#
|
@@ -1277,6 +1302,9 @@ module Aws::ApplicationAutoScaling
|
|
1277
1302
|
# * `kafka:broker-storage:VolumeSize` - The provisioned volume size (in
|
1278
1303
|
# GiB) for brokers in an Amazon MSK cluster.
|
1279
1304
|
#
|
1305
|
+
# * `elasticache:cache-cluster:Nodes` - The number of nodes for an
|
1306
|
+
# Amazon ElastiCache cache cluster.
|
1307
|
+
#
|
1280
1308
|
# * `elasticache:replication-group:NodeGroups` - The number of node
|
1281
1309
|
# groups for an Amazon ElastiCache replication group.
|
1282
1310
|
#
|
@@ -1349,7 +1377,7 @@ module Aws::ApplicationAutoScaling
|
|
1349
1377
|
# resp = client.describe_scalable_targets({
|
1350
1378
|
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune, workspaces
|
1351
1379
|
# resource_ids: ["ResourceIdMaxLen1600"],
|
1352
|
-
# 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, sagemaker:variant:DesiredProvisionedConcurrency, sagemaker:inference-component:DesiredCopyCount, workspaces:workspacespool:DesiredUserSessions
|
1380
|
+
# 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:cache-cluster:Nodes, elasticache:replication-group:NodeGroups, elasticache:replication-group:Replicas, neptune:cluster:ReadReplicaCount, sagemaker:variant:DesiredProvisionedConcurrency, sagemaker:inference-component:DesiredCopyCount, workspaces:workspacespool:DesiredUserSessions
|
1353
1381
|
# max_results: 1,
|
1354
1382
|
# next_token: "XmlString",
|
1355
1383
|
# })
|
@@ -1359,7 +1387,7 @@ module Aws::ApplicationAutoScaling
|
|
1359
1387
|
# resp.scalable_targets #=> Array
|
1360
1388
|
# resp.scalable_targets[0].service_namespace #=> String, one of "ecs", "elasticmapreduce", "ec2", "appstream", "dynamodb", "rds", "sagemaker", "custom-resource", "comprehend", "lambda", "cassandra", "kafka", "elasticache", "neptune", "workspaces"
|
1361
1389
|
# resp.scalable_targets[0].resource_id #=> String
|
1362
|
-
# resp.scalable_targets[0].scalable_dimension #=> String, one of "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", "sagemaker:variant:DesiredProvisionedConcurrency", "sagemaker:inference-component:DesiredCopyCount", "workspaces:workspacespool:DesiredUserSessions"
|
1390
|
+
# resp.scalable_targets[0].scalable_dimension #=> String, one of "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:cache-cluster:Nodes", "elasticache:replication-group:NodeGroups", "elasticache:replication-group:Replicas", "neptune:cluster:ReadReplicaCount", "sagemaker:variant:DesiredProvisionedConcurrency", "sagemaker:inference-component:DesiredCopyCount", "workspaces:workspacespool:DesiredUserSessions"
|
1363
1391
|
# resp.scalable_targets[0].min_capacity #=> Integer
|
1364
1392
|
# resp.scalable_targets[0].max_capacity #=> Integer
|
1365
1393
|
# resp.scalable_targets[0].predicted_capacity #=> Integer
|
@@ -1463,6 +1491,10 @@ module Aws::ApplicationAutoScaling
|
|
1463
1491
|
# `replication-group` and the unique identifier is the replication
|
1464
1492
|
# group name. Example: `replication-group/mycluster`.
|
1465
1493
|
#
|
1494
|
+
# * Amazon ElastiCache cache cluster - The resource type is
|
1495
|
+
# `cache-cluster` and the unique identifier is the cache cluster name.
|
1496
|
+
# Example: `cache-cluster/mycluster`.
|
1497
|
+
#
|
1466
1498
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
1467
1499
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
1468
1500
|
#
|
@@ -1540,6 +1572,9 @@ module Aws::ApplicationAutoScaling
|
|
1540
1572
|
# * `kafka:broker-storage:VolumeSize` - The provisioned volume size (in
|
1541
1573
|
# GiB) for brokers in an Amazon MSK cluster.
|
1542
1574
|
#
|
1575
|
+
# * `elasticache:cache-cluster:Nodes` - The number of nodes for an
|
1576
|
+
# Amazon ElastiCache cache cluster.
|
1577
|
+
#
|
1543
1578
|
# * `elasticache:replication-group:NodeGroups` - The number of node
|
1544
1579
|
# groups for an Amazon ElastiCache replication group.
|
1545
1580
|
#
|
@@ -1625,7 +1660,7 @@ module Aws::ApplicationAutoScaling
|
|
1625
1660
|
# resp = client.describe_scaling_activities({
|
1626
1661
|
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune, workspaces
|
1627
1662
|
# resource_id: "ResourceIdMaxLen1600",
|
1628
|
-
# 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, sagemaker:variant:DesiredProvisionedConcurrency, sagemaker:inference-component:DesiredCopyCount, workspaces:workspacespool:DesiredUserSessions
|
1663
|
+
# 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:cache-cluster:Nodes, elasticache:replication-group:NodeGroups, elasticache:replication-group:Replicas, neptune:cluster:ReadReplicaCount, sagemaker:variant:DesiredProvisionedConcurrency, sagemaker:inference-component:DesiredCopyCount, workspaces:workspacespool:DesiredUserSessions
|
1629
1664
|
# max_results: 1,
|
1630
1665
|
# next_token: "XmlString",
|
1631
1666
|
# include_not_scaled_activities: false,
|
@@ -1637,7 +1672,7 @@ module Aws::ApplicationAutoScaling
|
|
1637
1672
|
# resp.scaling_activities[0].activity_id #=> String
|
1638
1673
|
# resp.scaling_activities[0].service_namespace #=> String, one of "ecs", "elasticmapreduce", "ec2", "appstream", "dynamodb", "rds", "sagemaker", "custom-resource", "comprehend", "lambda", "cassandra", "kafka", "elasticache", "neptune", "workspaces"
|
1639
1674
|
# resp.scaling_activities[0].resource_id #=> String
|
1640
|
-
# resp.scaling_activities[0].scalable_dimension #=> String, one of "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", "sagemaker:variant:DesiredProvisionedConcurrency", "sagemaker:inference-component:DesiredCopyCount", "workspaces:workspacespool:DesiredUserSessions"
|
1675
|
+
# resp.scaling_activities[0].scalable_dimension #=> String, one of "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:cache-cluster:Nodes", "elasticache:replication-group:NodeGroups", "elasticache:replication-group:Replicas", "neptune:cluster:ReadReplicaCount", "sagemaker:variant:DesiredProvisionedConcurrency", "sagemaker:inference-component:DesiredCopyCount", "workspaces:workspacespool:DesiredUserSessions"
|
1641
1676
|
# resp.scaling_activities[0].description #=> String
|
1642
1677
|
# resp.scaling_activities[0].cause #=> String
|
1643
1678
|
# resp.scaling_activities[0].start_time #=> Time
|
@@ -1749,6 +1784,10 @@ module Aws::ApplicationAutoScaling
|
|
1749
1784
|
# `replication-group` and the unique identifier is the replication
|
1750
1785
|
# group name. Example: `replication-group/mycluster`.
|
1751
1786
|
#
|
1787
|
+
# * Amazon ElastiCache cache cluster - The resource type is
|
1788
|
+
# `cache-cluster` and the unique identifier is the cache cluster name.
|
1789
|
+
# Example: `cache-cluster/mycluster`.
|
1790
|
+
#
|
1752
1791
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
1753
1792
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
1754
1793
|
#
|
@@ -1826,6 +1865,9 @@ module Aws::ApplicationAutoScaling
|
|
1826
1865
|
# * `kafka:broker-storage:VolumeSize` - The provisioned volume size (in
|
1827
1866
|
# GiB) for brokers in an Amazon MSK cluster.
|
1828
1867
|
#
|
1868
|
+
# * `elasticache:cache-cluster:Nodes` - The number of nodes for an
|
1869
|
+
# Amazon ElastiCache cache cluster.
|
1870
|
+
#
|
1829
1871
|
# * `elasticache:replication-group:NodeGroups` - The number of node
|
1830
1872
|
# groups for an Amazon ElastiCache replication group.
|
1831
1873
|
#
|
@@ -1911,7 +1953,7 @@ module Aws::ApplicationAutoScaling
|
|
1911
1953
|
# policy_names: ["ResourceIdMaxLen1600"],
|
1912
1954
|
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune, workspaces
|
1913
1955
|
# resource_id: "ResourceIdMaxLen1600",
|
1914
|
-
# 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, sagemaker:variant:DesiredProvisionedConcurrency, sagemaker:inference-component:DesiredCopyCount, workspaces:workspacespool:DesiredUserSessions
|
1956
|
+
# 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:cache-cluster:Nodes, elasticache:replication-group:NodeGroups, elasticache:replication-group:Replicas, neptune:cluster:ReadReplicaCount, sagemaker:variant:DesiredProvisionedConcurrency, sagemaker:inference-component:DesiredCopyCount, workspaces:workspacespool:DesiredUserSessions
|
1915
1957
|
# max_results: 1,
|
1916
1958
|
# next_token: "XmlString",
|
1917
1959
|
# })
|
@@ -1923,7 +1965,7 @@ module Aws::ApplicationAutoScaling
|
|
1923
1965
|
# resp.scaling_policies[0].policy_name #=> String
|
1924
1966
|
# resp.scaling_policies[0].service_namespace #=> String, one of "ecs", "elasticmapreduce", "ec2", "appstream", "dynamodb", "rds", "sagemaker", "custom-resource", "comprehend", "lambda", "cassandra", "kafka", "elasticache", "neptune", "workspaces"
|
1925
1967
|
# resp.scaling_policies[0].resource_id #=> String
|
1926
|
-
# resp.scaling_policies[0].scalable_dimension #=> String, one of "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", "sagemaker:variant:DesiredProvisionedConcurrency", "sagemaker:inference-component:DesiredCopyCount", "workspaces:workspacespool:DesiredUserSessions"
|
1968
|
+
# resp.scaling_policies[0].scalable_dimension #=> String, one of "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:cache-cluster:Nodes", "elasticache:replication-group:NodeGroups", "elasticache:replication-group:Replicas", "neptune:cluster:ReadReplicaCount", "sagemaker:variant:DesiredProvisionedConcurrency", "sagemaker:inference-component:DesiredCopyCount", "workspaces:workspacespool:DesiredUserSessions"
|
1927
1969
|
# resp.scaling_policies[0].policy_type #=> String, one of "StepScaling", "TargetTrackingScaling", "PredictiveScaling"
|
1928
1970
|
# resp.scaling_policies[0].step_scaling_policy_configuration.adjustment_type #=> String, one of "ChangeInCapacity", "PercentChangeInCapacity", "ExactCapacity"
|
1929
1971
|
# resp.scaling_policies[0].step_scaling_policy_configuration.step_adjustments #=> Array
|
@@ -1934,7 +1976,7 @@ module Aws::ApplicationAutoScaling
|
|
1934
1976
|
# resp.scaling_policies[0].step_scaling_policy_configuration.cooldown #=> Integer
|
1935
1977
|
# resp.scaling_policies[0].step_scaling_policy_configuration.metric_aggregation_type #=> String, one of "Average", "Minimum", "Maximum"
|
1936
1978
|
# resp.scaling_policies[0].target_tracking_scaling_policy_configuration.target_value #=> Float
|
1937
|
-
# resp.scaling_policies[0].target_tracking_scaling_policy_configuration.predefined_metric_specification.predefined_metric_type #=> String, one of "DynamoDBReadCapacityUtilization", "DynamoDBWriteCapacityUtilization", "ALBRequestCountPerTarget", "RDSReaderAverageCPUUtilization", "RDSReaderAverageDatabaseConnections", "EC2SpotFleetRequestAverageCPUUtilization", "EC2SpotFleetRequestAverageNetworkIn", "EC2SpotFleetRequestAverageNetworkOut", "SageMakerVariantInvocationsPerInstance", "ECSServiceAverageCPUUtilization", "ECSServiceAverageMemoryUtilization", "AppStreamAverageCapacityUtilization", "ComprehendInferenceUtilization", "LambdaProvisionedConcurrencyUtilization", "CassandraReadCapacityUtilization", "CassandraWriteCapacityUtilization", "KafkaBrokerStorageUtilization", "ElastiCachePrimaryEngineCPUUtilization", "ElastiCacheReplicaEngineCPUUtilization", "ElastiCacheDatabaseMemoryUsageCountedForEvictPercentage", "NeptuneReaderAverageCPUUtilization", "SageMakerVariantProvisionedConcurrencyUtilization", "ElastiCacheDatabaseCapacityUsageCountedForEvictPercentage", "SageMakerInferenceComponentInvocationsPerCopy", "WorkSpacesAverageUserSessionsCapacityUtilization", "SageMakerInferenceComponentConcurrentRequestsPerCopyHighResolution", "SageMakerVariantConcurrentRequestsPerModelHighResolution"
|
1979
|
+
# resp.scaling_policies[0].target_tracking_scaling_policy_configuration.predefined_metric_specification.predefined_metric_type #=> String, one of "DynamoDBReadCapacityUtilization", "DynamoDBWriteCapacityUtilization", "ALBRequestCountPerTarget", "RDSReaderAverageCPUUtilization", "RDSReaderAverageDatabaseConnections", "EC2SpotFleetRequestAverageCPUUtilization", "EC2SpotFleetRequestAverageNetworkIn", "EC2SpotFleetRequestAverageNetworkOut", "SageMakerVariantInvocationsPerInstance", "ECSServiceAverageCPUUtilization", "ECSServiceAverageMemoryUtilization", "AppStreamAverageCapacityUtilization", "ComprehendInferenceUtilization", "LambdaProvisionedConcurrencyUtilization", "CassandraReadCapacityUtilization", "CassandraWriteCapacityUtilization", "KafkaBrokerStorageUtilization", "ElastiCacheEngineCPUUtilization", "ElastiCacheDatabaseMemoryUsagePercentage", "ElastiCachePrimaryEngineCPUUtilization", "ElastiCacheReplicaEngineCPUUtilization", "ElastiCacheDatabaseMemoryUsageCountedForEvictPercentage", "NeptuneReaderAverageCPUUtilization", "SageMakerVariantProvisionedConcurrencyUtilization", "ElastiCacheDatabaseCapacityUsageCountedForEvictPercentage", "SageMakerInferenceComponentInvocationsPerCopy", "WorkSpacesAverageUserSessionsCapacityUtilization", "SageMakerInferenceComponentConcurrentRequestsPerCopyHighResolution", "SageMakerVariantConcurrentRequestsPerModelHighResolution"
|
1938
1980
|
# resp.scaling_policies[0].target_tracking_scaling_policy_configuration.predefined_metric_specification.resource_label #=> String
|
1939
1981
|
# resp.scaling_policies[0].target_tracking_scaling_policy_configuration.customized_metric_specification.metric_name #=> String
|
1940
1982
|
# resp.scaling_policies[0].target_tracking_scaling_policy_configuration.customized_metric_specification.namespace #=> String
|
@@ -2107,6 +2149,10 @@ module Aws::ApplicationAutoScaling
|
|
2107
2149
|
# `replication-group` and the unique identifier is the replication
|
2108
2150
|
# group name. Example: `replication-group/mycluster`.
|
2109
2151
|
#
|
2152
|
+
# * Amazon ElastiCache cache cluster - The resource type is
|
2153
|
+
# `cache-cluster` and the unique identifier is the cache cluster name.
|
2154
|
+
# Example: `cache-cluster/mycluster`.
|
2155
|
+
#
|
2110
2156
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
2111
2157
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
2112
2158
|
#
|
@@ -2184,6 +2230,9 @@ module Aws::ApplicationAutoScaling
|
|
2184
2230
|
# * `kafka:broker-storage:VolumeSize` - The provisioned volume size (in
|
2185
2231
|
# GiB) for brokers in an Amazon MSK cluster.
|
2186
2232
|
#
|
2233
|
+
# * `elasticache:cache-cluster:Nodes` - The number of nodes for an
|
2234
|
+
# Amazon ElastiCache cache cluster.
|
2235
|
+
#
|
2187
2236
|
# * `elasticache:replication-group:NodeGroups` - The number of node
|
2188
2237
|
# groups for an Amazon ElastiCache replication group.
|
2189
2238
|
#
|
@@ -2269,7 +2318,7 @@ module Aws::ApplicationAutoScaling
|
|
2269
2318
|
# scheduled_action_names: ["ResourceIdMaxLen1600"],
|
2270
2319
|
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune, workspaces
|
2271
2320
|
# resource_id: "ResourceIdMaxLen1600",
|
2272
|
-
# 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, sagemaker:variant:DesiredProvisionedConcurrency, sagemaker:inference-component:DesiredCopyCount, workspaces:workspacespool:DesiredUserSessions
|
2321
|
+
# 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:cache-cluster:Nodes, elasticache:replication-group:NodeGroups, elasticache:replication-group:Replicas, neptune:cluster:ReadReplicaCount, sagemaker:variant:DesiredProvisionedConcurrency, sagemaker:inference-component:DesiredCopyCount, workspaces:workspacespool:DesiredUserSessions
|
2273
2322
|
# max_results: 1,
|
2274
2323
|
# next_token: "XmlString",
|
2275
2324
|
# })
|
@@ -2283,7 +2332,7 @@ module Aws::ApplicationAutoScaling
|
|
2283
2332
|
# resp.scheduled_actions[0].schedule #=> String
|
2284
2333
|
# resp.scheduled_actions[0].timezone #=> String
|
2285
2334
|
# resp.scheduled_actions[0].resource_id #=> String
|
2286
|
-
# resp.scheduled_actions[0].scalable_dimension #=> String, one of "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", "sagemaker:variant:DesiredProvisionedConcurrency", "sagemaker:inference-component:DesiredCopyCount", "workspaces:workspacespool:DesiredUserSessions"
|
2335
|
+
# resp.scheduled_actions[0].scalable_dimension #=> String, one of "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:cache-cluster:Nodes", "elasticache:replication-group:NodeGroups", "elasticache:replication-group:Replicas", "neptune:cluster:ReadReplicaCount", "sagemaker:variant:DesiredProvisionedConcurrency", "sagemaker:inference-component:DesiredCopyCount", "workspaces:workspacespool:DesiredUserSessions"
|
2287
2336
|
# resp.scheduled_actions[0].start_time #=> Time
|
2288
2337
|
# resp.scheduled_actions[0].end_time #=> Time
|
2289
2338
|
# resp.scheduled_actions[0].scalable_target_action.min_capacity #=> Integer
|
@@ -2346,7 +2395,7 @@ module Aws::ApplicationAutoScaling
|
|
2346
2395
|
# resp = client.get_predictive_scaling_forecast({
|
2347
2396
|
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune, workspaces
|
2348
2397
|
# resource_id: "ResourceIdMaxLen1600", # required
|
2349
|
-
# 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, sagemaker:variant:DesiredProvisionedConcurrency, sagemaker:inference-component:DesiredCopyCount, workspaces:workspacespool:DesiredUserSessions
|
2398
|
+
# 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:cache-cluster:Nodes, elasticache:replication-group:NodeGroups, elasticache:replication-group:Replicas, neptune:cluster:ReadReplicaCount, sagemaker:variant:DesiredProvisionedConcurrency, sagemaker:inference-component:DesiredCopyCount, workspaces:workspacespool:DesiredUserSessions
|
2350
2399
|
# policy_name: "PolicyName", # required
|
2351
2400
|
# start_time: Time.now, # required
|
2352
2401
|
# end_time: Time.now, # required
|
@@ -2505,9 +2554,9 @@ module Aws::ApplicationAutoScaling
|
|
2505
2554
|
# be blocked. After the scale-in activity completes, the target tracking
|
2506
2555
|
# policy could instruct the scalable target to scale out again.
|
2507
2556
|
#
|
2508
|
-
# For more information, see [Target tracking scaling policies][1]
|
2509
|
-
#
|
2510
|
-
# Guide*.
|
2557
|
+
# For more information, see [Target tracking scaling policies][1], [Step
|
2558
|
+
# scaling policies][2], and [Predictive scaling policies][3] in the
|
2559
|
+
# *Application Auto Scaling User Guide*.
|
2511
2560
|
#
|
2512
2561
|
# <note markdown="1"> If a scalable target is deregistered, the scalable target is no longer
|
2513
2562
|
# available to use scaling policies. Any scaling policies that were
|
@@ -2519,6 +2568,7 @@ module Aws::ApplicationAutoScaling
|
|
2519
2568
|
#
|
2520
2569
|
# [1]: https://docs.aws.amazon.com/autoscaling/application/userguide/application-auto-scaling-target-tracking.html
|
2521
2570
|
# [2]: https://docs.aws.amazon.com/autoscaling/application/userguide/application-auto-scaling-step-scaling-policies.html
|
2571
|
+
# [3]: https://docs.aws.amazon.com/autoscaling/application/userguide/aas-create-predictive-scaling-policy.html
|
2522
2572
|
#
|
2523
2573
|
# @option params [required, String] :policy_name
|
2524
2574
|
# The name of the scaling policy.
|
@@ -2597,6 +2647,10 @@ module Aws::ApplicationAutoScaling
|
|
2597
2647
|
# `replication-group` and the unique identifier is the replication
|
2598
2648
|
# group name. Example: `replication-group/mycluster`.
|
2599
2649
|
#
|
2650
|
+
# * Amazon ElastiCache cache cluster - The resource type is
|
2651
|
+
# `cache-cluster` and the unique identifier is the cache cluster name.
|
2652
|
+
# Example: `cache-cluster/mycluster`.
|
2653
|
+
#
|
2600
2654
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
2601
2655
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
2602
2656
|
#
|
@@ -2673,6 +2727,9 @@ module Aws::ApplicationAutoScaling
|
|
2673
2727
|
# * `kafka:broker-storage:VolumeSize` - The provisioned volume size (in
|
2674
2728
|
# GiB) for brokers in an Amazon MSK cluster.
|
2675
2729
|
#
|
2730
|
+
# * `elasticache:cache-cluster:Nodes` - The number of nodes for an
|
2731
|
+
# Amazon ElastiCache cache cluster.
|
2732
|
+
#
|
2676
2733
|
# * `elasticache:replication-group:NodeGroups` - The number of node
|
2677
2734
|
# groups for an Amazon ElastiCache replication group.
|
2678
2735
|
#
|
@@ -2702,14 +2759,17 @@ module Aws::ApplicationAutoScaling
|
|
2702
2759
|
# `StepScaling`—Not supported for DynamoDB, Amazon Comprehend, Lambda,
|
2703
2760
|
# Amazon Keyspaces, Amazon MSK, Amazon ElastiCache, or Neptune.
|
2704
2761
|
#
|
2705
|
-
#
|
2706
|
-
#
|
2707
|
-
#
|
2762
|
+
# `PredictiveScaling`—Only supported for Amazon ECS.
|
2763
|
+
#
|
2764
|
+
# For more information, see [Target tracking scaling policies][1], [Step
|
2765
|
+
# scaling policies][2], and [Predictive scaling policies][3] in the
|
2766
|
+
# *Application Auto Scaling User Guide*.
|
2708
2767
|
#
|
2709
2768
|
#
|
2710
2769
|
#
|
2711
2770
|
# [1]: https://docs.aws.amazon.com/autoscaling/application/userguide/application-auto-scaling-target-tracking.html
|
2712
2771
|
# [2]: https://docs.aws.amazon.com/autoscaling/application/userguide/application-auto-scaling-step-scaling-policies.html
|
2772
|
+
# [3]: https://docs.aws.amazon.com/autoscaling/application/userguide/aas-create-predictive-scaling-policy.html
|
2713
2773
|
#
|
2714
2774
|
# @option params [Types::StepScalingPolicyConfiguration] :step_scaling_policy_configuration
|
2715
2775
|
# A step scaling policy.
|
@@ -2776,7 +2836,7 @@ module Aws::ApplicationAutoScaling
|
|
2776
2836
|
# policy_name: "PolicyName", # required
|
2777
2837
|
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune, workspaces
|
2778
2838
|
# resource_id: "ResourceIdMaxLen1600", # required
|
2779
|
-
# 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, sagemaker:variant:DesiredProvisionedConcurrency, sagemaker:inference-component:DesiredCopyCount, workspaces:workspacespool:DesiredUserSessions
|
2839
|
+
# 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:cache-cluster:Nodes, elasticache:replication-group:NodeGroups, elasticache:replication-group:Replicas, neptune:cluster:ReadReplicaCount, sagemaker:variant:DesiredProvisionedConcurrency, sagemaker:inference-component:DesiredCopyCount, workspaces:workspacespool:DesiredUserSessions
|
2780
2840
|
# policy_type: "StepScaling", # accepts StepScaling, TargetTrackingScaling, PredictiveScaling
|
2781
2841
|
# step_scaling_policy_configuration: {
|
2782
2842
|
# adjustment_type: "ChangeInCapacity", # accepts ChangeInCapacity, PercentChangeInCapacity, ExactCapacity
|
@@ -2794,7 +2854,7 @@ module Aws::ApplicationAutoScaling
|
|
2794
2854
|
# target_tracking_scaling_policy_configuration: {
|
2795
2855
|
# target_value: 1.0, # required
|
2796
2856
|
# predefined_metric_specification: {
|
2797
|
-
# 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, SageMakerVariantProvisionedConcurrencyUtilization, ElastiCacheDatabaseCapacityUsageCountedForEvictPercentage, SageMakerInferenceComponentInvocationsPerCopy, WorkSpacesAverageUserSessionsCapacityUtilization, SageMakerInferenceComponentConcurrentRequestsPerCopyHighResolution, SageMakerVariantConcurrentRequestsPerModelHighResolution
|
2857
|
+
# predefined_metric_type: "DynamoDBReadCapacityUtilization", # required, accepts DynamoDBReadCapacityUtilization, DynamoDBWriteCapacityUtilization, ALBRequestCountPerTarget, RDSReaderAverageCPUUtilization, RDSReaderAverageDatabaseConnections, EC2SpotFleetRequestAverageCPUUtilization, EC2SpotFleetRequestAverageNetworkIn, EC2SpotFleetRequestAverageNetworkOut, SageMakerVariantInvocationsPerInstance, ECSServiceAverageCPUUtilization, ECSServiceAverageMemoryUtilization, AppStreamAverageCapacityUtilization, ComprehendInferenceUtilization, LambdaProvisionedConcurrencyUtilization, CassandraReadCapacityUtilization, CassandraWriteCapacityUtilization, KafkaBrokerStorageUtilization, ElastiCacheEngineCPUUtilization, ElastiCacheDatabaseMemoryUsagePercentage, ElastiCachePrimaryEngineCPUUtilization, ElastiCacheReplicaEngineCPUUtilization, ElastiCacheDatabaseMemoryUsageCountedForEvictPercentage, NeptuneReaderAverageCPUUtilization, SageMakerVariantProvisionedConcurrencyUtilization, ElastiCacheDatabaseCapacityUsageCountedForEvictPercentage, SageMakerInferenceComponentInvocationsPerCopy, WorkSpacesAverageUserSessionsCapacityUtilization, SageMakerInferenceComponentConcurrentRequestsPerCopyHighResolution, SageMakerVariantConcurrentRequestsPerModelHighResolution
|
2798
2858
|
# resource_label: "ResourceLabel",
|
2799
2859
|
# },
|
2800
2860
|
# customized_metric_specification: {
|
@@ -3096,6 +3156,10 @@ module Aws::ApplicationAutoScaling
|
|
3096
3156
|
# `replication-group` and the unique identifier is the replication
|
3097
3157
|
# group name. Example: `replication-group/mycluster`.
|
3098
3158
|
#
|
3159
|
+
# * Amazon ElastiCache cache cluster - The resource type is
|
3160
|
+
# `cache-cluster` and the unique identifier is the cache cluster name.
|
3161
|
+
# Example: `cache-cluster/mycluster`.
|
3162
|
+
#
|
3099
3163
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
3100
3164
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
3101
3165
|
#
|
@@ -3172,6 +3236,9 @@ module Aws::ApplicationAutoScaling
|
|
3172
3236
|
# * `kafka:broker-storage:VolumeSize` - The provisioned volume size (in
|
3173
3237
|
# GiB) for brokers in an Amazon MSK cluster.
|
3174
3238
|
#
|
3239
|
+
# * `elasticache:cache-cluster:Nodes` - The number of nodes for an
|
3240
|
+
# Amazon ElastiCache cache cluster.
|
3241
|
+
#
|
3175
3242
|
# * `elasticache:replication-group:NodeGroups` - The number of node
|
3176
3243
|
# groups for an Amazon ElastiCache replication group.
|
3177
3244
|
#
|
@@ -3235,7 +3302,7 @@ module Aws::ApplicationAutoScaling
|
|
3235
3302
|
# timezone: "ResourceIdMaxLen1600",
|
3236
3303
|
# scheduled_action_name: "ScheduledActionName", # required
|
3237
3304
|
# resource_id: "ResourceIdMaxLen1600", # required
|
3238
|
-
# 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, sagemaker:variant:DesiredProvisionedConcurrency, sagemaker:inference-component:DesiredCopyCount, workspaces:workspacespool:DesiredUserSessions
|
3305
|
+
# 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:cache-cluster:Nodes, elasticache:replication-group:NodeGroups, elasticache:replication-group:Replicas, neptune:cluster:ReadReplicaCount, sagemaker:variant:DesiredProvisionedConcurrency, sagemaker:inference-component:DesiredCopyCount, workspaces:workspacespool:DesiredUserSessions
|
3239
3306
|
# start_time: Time.now,
|
3240
3307
|
# end_time: Time.now,
|
3241
3308
|
# scalable_target_action: {
|
@@ -3377,6 +3444,10 @@ module Aws::ApplicationAutoScaling
|
|
3377
3444
|
# `replication-group` and the unique identifier is the replication
|
3378
3445
|
# group name. Example: `replication-group/mycluster`.
|
3379
3446
|
#
|
3447
|
+
# * Amazon ElastiCache cache cluster - The resource type is
|
3448
|
+
# `cache-cluster` and the unique identifier is the cache cluster name.
|
3449
|
+
# Example: `cache-cluster/mycluster`.
|
3450
|
+
#
|
3380
3451
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
3381
3452
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
3382
3453
|
#
|
@@ -3454,6 +3525,9 @@ module Aws::ApplicationAutoScaling
|
|
3454
3525
|
# * `kafka:broker-storage:VolumeSize` - The provisioned volume size (in
|
3455
3526
|
# GiB) for brokers in an Amazon MSK cluster.
|
3456
3527
|
#
|
3528
|
+
# * `elasticache:cache-cluster:Nodes` - The number of nodes for an
|
3529
|
+
# Amazon ElastiCache cache cluster.
|
3530
|
+
#
|
3457
3531
|
# * `elasticache:replication-group:NodeGroups` - The number of node
|
3458
3532
|
# groups for an Amazon ElastiCache replication group.
|
3459
3533
|
#
|
@@ -3617,7 +3691,7 @@ module Aws::ApplicationAutoScaling
|
|
3617
3691
|
# resp = client.register_scalable_target({
|
3618
3692
|
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune, workspaces
|
3619
3693
|
# resource_id: "ResourceIdMaxLen1600", # required
|
3620
|
-
# 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, sagemaker:variant:DesiredProvisionedConcurrency, sagemaker:inference-component:DesiredCopyCount, workspaces:workspacespool:DesiredUserSessions
|
3694
|
+
# 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:cache-cluster:Nodes, elasticache:replication-group:NodeGroups, elasticache:replication-group:Replicas, neptune:cluster:ReadReplicaCount, sagemaker:variant:DesiredProvisionedConcurrency, sagemaker:inference-component:DesiredCopyCount, workspaces:workspacespool:DesiredUserSessions
|
3621
3695
|
# min_capacity: 1,
|
3622
3696
|
# max_capacity: 1,
|
3623
3697
|
# role_arn: "ResourceIdMaxLen1600",
|
@@ -3802,7 +3876,7 @@ module Aws::ApplicationAutoScaling
|
|
3802
3876
|
tracer: tracer
|
3803
3877
|
)
|
3804
3878
|
context[:gem_name] = 'aws-sdk-applicationautoscaling'
|
3805
|
-
context[:gem_version] = '1.
|
3879
|
+
context[:gem_version] = '1.103.0'
|
3806
3880
|
Seahorse::Client::Request.new(handlers, context)
|
3807
3881
|
end
|
3808
3882
|
|