aws-sdk-applicationautoscaling 1.68.0 → 1.69.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-applicationautoscaling/client.rb +95 -18
- data/lib/aws-sdk-applicationautoscaling/types.rb +107 -1
- data/lib/aws-sdk-applicationautoscaling.rb +1 -1
- 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: 23c02d2cd797562f9eaca2b2668b2744f90c243abaf36323649999f6e75fb7ad
|
4
|
+
data.tar.gz: 3b259e6e849514cde91327c2b63d880b116ab68b3abc311d83c9d04935db5488
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a4a9d2894d5fa3b0aa5862cdc2612682497f7687c97648e6f22ebfb404c034b9df0f83cf2a87aef46e0335e90ae2f5f44a2cca7d9d2e8c57b8da00f2f7879126
|
7
|
+
data.tar.gz: '067285657b0e10ab56fd1a33b9562dd494329f860d2b26f534745a6e38f8959cd43817ca7ef7e9659e4a3c04ae8e046608be0ead692ad5926764bf183be064b2'
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.69.0 (2023-05-09)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - With this release, Amazon SageMaker Serverless Inference customers can use Application Auto Scaling to auto scale the provisioned concurrency of their serverless endpoints.
|
8
|
+
|
4
9
|
1.68.0 (2023-03-20)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.69.0
|
@@ -470,6 +470,10 @@ module Aws::ApplicationAutoScaling
|
|
470
470
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
471
471
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
472
472
|
#
|
473
|
+
# * SageMaker Serverless endpoint - The resource type is `variant` and
|
474
|
+
# the unique identifier is the resource ID. Example:
|
475
|
+
# `endpoint/my-end-point/variant/KMeansClustering`.
|
476
|
+
#
|
473
477
|
#
|
474
478
|
#
|
475
479
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -541,6 +545,9 @@ module Aws::ApplicationAutoScaling
|
|
541
545
|
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
542
546
|
# an Amazon Neptune DB cluster.
|
543
547
|
#
|
548
|
+
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The provisioned
|
549
|
+
# concurrency for a SageMaker Serverless endpoint.
|
550
|
+
#
|
544
551
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
545
552
|
#
|
546
553
|
#
|
@@ -566,7 +573,7 @@ module Aws::ApplicationAutoScaling
|
|
566
573
|
# policy_name: "ResourceIdMaxLen1600", # required
|
567
574
|
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune
|
568
575
|
# resource_id: "ResourceIdMaxLen1600", # required
|
569
|
-
# 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
|
576
|
+
# 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
|
570
577
|
# })
|
571
578
|
#
|
572
579
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeleteScalingPolicy AWS API Documentation
|
@@ -664,6 +671,10 @@ module Aws::ApplicationAutoScaling
|
|
664
671
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
665
672
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
666
673
|
#
|
674
|
+
# * SageMaker Serverless endpoint - The resource type is `variant` and
|
675
|
+
# the unique identifier is the resource ID. Example:
|
676
|
+
# `endpoint/my-end-point/variant/KMeansClustering`.
|
677
|
+
#
|
667
678
|
#
|
668
679
|
#
|
669
680
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -735,6 +746,9 @@ module Aws::ApplicationAutoScaling
|
|
735
746
|
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
736
747
|
# an Amazon Neptune DB cluster.
|
737
748
|
#
|
749
|
+
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The provisioned
|
750
|
+
# concurrency for a SageMaker Serverless endpoint.
|
751
|
+
#
|
738
752
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
739
753
|
#
|
740
754
|
#
|
@@ -759,7 +773,7 @@ module Aws::ApplicationAutoScaling
|
|
759
773
|
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune
|
760
774
|
# scheduled_action_name: "ResourceIdMaxLen1600", # required
|
761
775
|
# resource_id: "ResourceIdMaxLen1600", # required
|
762
|
-
# 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
|
776
|
+
# 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
|
763
777
|
# })
|
764
778
|
#
|
765
779
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeleteScheduledAction AWS API Documentation
|
@@ -857,6 +871,10 @@ module Aws::ApplicationAutoScaling
|
|
857
871
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
858
872
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
859
873
|
#
|
874
|
+
# * SageMaker Serverless endpoint - The resource type is `variant` and
|
875
|
+
# the unique identifier is the resource ID. Example:
|
876
|
+
# `endpoint/my-end-point/variant/KMeansClustering`.
|
877
|
+
#
|
860
878
|
#
|
861
879
|
#
|
862
880
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -929,6 +947,9 @@ module Aws::ApplicationAutoScaling
|
|
929
947
|
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
930
948
|
# an Amazon Neptune DB cluster.
|
931
949
|
#
|
950
|
+
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The provisioned
|
951
|
+
# concurrency for a SageMaker Serverless endpoint.
|
952
|
+
#
|
932
953
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
933
954
|
#
|
934
955
|
#
|
@@ -952,7 +973,7 @@ module Aws::ApplicationAutoScaling
|
|
952
973
|
# resp = client.deregister_scalable_target({
|
953
974
|
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune
|
954
975
|
# resource_id: "ResourceIdMaxLen1600", # required
|
955
|
-
# 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
|
976
|
+
# 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
|
956
977
|
# })
|
957
978
|
#
|
958
979
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeregisterScalableTarget AWS API Documentation
|
@@ -1043,6 +1064,10 @@ module Aws::ApplicationAutoScaling
|
|
1043
1064
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
1044
1065
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
1045
1066
|
#
|
1067
|
+
# * SageMaker Serverless endpoint - The resource type is `variant` and
|
1068
|
+
# the unique identifier is the resource ID. Example:
|
1069
|
+
# `endpoint/my-end-point/variant/KMeansClustering`.
|
1070
|
+
#
|
1046
1071
|
#
|
1047
1072
|
#
|
1048
1073
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -1116,6 +1141,9 @@ module Aws::ApplicationAutoScaling
|
|
1116
1141
|
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
1117
1142
|
# an Amazon Neptune DB cluster.
|
1118
1143
|
#
|
1144
|
+
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The provisioned
|
1145
|
+
# concurrency for a SageMaker Serverless endpoint.
|
1146
|
+
#
|
1119
1147
|
# @option params [Integer] :max_results
|
1120
1148
|
# The maximum number of scalable targets. This value can be between 1
|
1121
1149
|
# and 50. The default value is 50.
|
@@ -1170,7 +1198,7 @@ module Aws::ApplicationAutoScaling
|
|
1170
1198
|
# resp = client.describe_scalable_targets({
|
1171
1199
|
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune
|
1172
1200
|
# resource_ids: ["ResourceIdMaxLen1600"],
|
1173
|
-
# 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
|
1201
|
+
# 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
|
1174
1202
|
# max_results: 1,
|
1175
1203
|
# next_token: "XmlString",
|
1176
1204
|
# })
|
@@ -1180,7 +1208,7 @@ module Aws::ApplicationAutoScaling
|
|
1180
1208
|
# resp.scalable_targets #=> Array
|
1181
1209
|
# resp.scalable_targets[0].service_namespace #=> String, one of "ecs", "elasticmapreduce", "ec2", "appstream", "dynamodb", "rds", "sagemaker", "custom-resource", "comprehend", "lambda", "cassandra", "kafka", "elasticache", "neptune"
|
1182
1210
|
# resp.scalable_targets[0].resource_id #=> String
|
1183
|
-
# 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"
|
1211
|
+
# 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"
|
1184
1212
|
# resp.scalable_targets[0].min_capacity #=> Integer
|
1185
1213
|
# resp.scalable_targets[0].max_capacity #=> Integer
|
1186
1214
|
# resp.scalable_targets[0].role_arn #=> String
|
@@ -1286,6 +1314,10 @@ module Aws::ApplicationAutoScaling
|
|
1286
1314
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
1287
1315
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
1288
1316
|
#
|
1317
|
+
# * SageMaker Serverless endpoint - The resource type is `variant` and
|
1318
|
+
# the unique identifier is the resource ID. Example:
|
1319
|
+
# `endpoint/my-end-point/variant/KMeansClustering`.
|
1320
|
+
#
|
1289
1321
|
#
|
1290
1322
|
#
|
1291
1323
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -1358,6 +1390,9 @@ module Aws::ApplicationAutoScaling
|
|
1358
1390
|
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
1359
1391
|
# an Amazon Neptune DB cluster.
|
1360
1392
|
#
|
1393
|
+
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The provisioned
|
1394
|
+
# concurrency for a SageMaker Serverless endpoint.
|
1395
|
+
#
|
1361
1396
|
# @option params [Integer] :max_results
|
1362
1397
|
# The maximum number of scalable targets. This value can be between 1
|
1363
1398
|
# and 50. The default value is 50.
|
@@ -1425,7 +1460,7 @@ module Aws::ApplicationAutoScaling
|
|
1425
1460
|
# resp = client.describe_scaling_activities({
|
1426
1461
|
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune
|
1427
1462
|
# resource_id: "ResourceIdMaxLen1600",
|
1428
|
-
# 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
|
1463
|
+
# 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
|
1429
1464
|
# max_results: 1,
|
1430
1465
|
# next_token: "XmlString",
|
1431
1466
|
# include_not_scaled_activities: false,
|
@@ -1437,7 +1472,7 @@ module Aws::ApplicationAutoScaling
|
|
1437
1472
|
# resp.scaling_activities[0].activity_id #=> String
|
1438
1473
|
# resp.scaling_activities[0].service_namespace #=> String, one of "ecs", "elasticmapreduce", "ec2", "appstream", "dynamodb", "rds", "sagemaker", "custom-resource", "comprehend", "lambda", "cassandra", "kafka", "elasticache", "neptune"
|
1439
1474
|
# resp.scaling_activities[0].resource_id #=> String
|
1440
|
-
# 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"
|
1475
|
+
# 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"
|
1441
1476
|
# resp.scaling_activities[0].description #=> String
|
1442
1477
|
# resp.scaling_activities[0].cause #=> String
|
1443
1478
|
# resp.scaling_activities[0].start_time #=> Time
|
@@ -1552,6 +1587,10 @@ module Aws::ApplicationAutoScaling
|
|
1552
1587
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
1553
1588
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
1554
1589
|
#
|
1590
|
+
# * SageMaker Serverless endpoint - The resource type is `variant` and
|
1591
|
+
# the unique identifier is the resource ID. Example:
|
1592
|
+
# `endpoint/my-end-point/variant/KMeansClustering`.
|
1593
|
+
#
|
1555
1594
|
#
|
1556
1595
|
#
|
1557
1596
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -1624,6 +1663,9 @@ module Aws::ApplicationAutoScaling
|
|
1624
1663
|
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
1625
1664
|
# an Amazon Neptune DB cluster.
|
1626
1665
|
#
|
1666
|
+
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The provisioned
|
1667
|
+
# concurrency for a SageMaker Serverless endpoint.
|
1668
|
+
#
|
1627
1669
|
# @option params [Integer] :max_results
|
1628
1670
|
# The maximum number of scalable targets. This value can be between 1
|
1629
1671
|
# and 10. The default value is 10.
|
@@ -1691,7 +1733,7 @@ module Aws::ApplicationAutoScaling
|
|
1691
1733
|
# policy_names: ["ResourceIdMaxLen1600"],
|
1692
1734
|
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune
|
1693
1735
|
# resource_id: "ResourceIdMaxLen1600",
|
1694
|
-
# 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
|
1736
|
+
# 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
|
1695
1737
|
# max_results: 1,
|
1696
1738
|
# next_token: "XmlString",
|
1697
1739
|
# })
|
@@ -1703,7 +1745,7 @@ module Aws::ApplicationAutoScaling
|
|
1703
1745
|
# resp.scaling_policies[0].policy_name #=> String
|
1704
1746
|
# resp.scaling_policies[0].service_namespace #=> String, one of "ecs", "elasticmapreduce", "ec2", "appstream", "dynamodb", "rds", "sagemaker", "custom-resource", "comprehend", "lambda", "cassandra", "kafka", "elasticache", "neptune"
|
1705
1747
|
# resp.scaling_policies[0].resource_id #=> String
|
1706
|
-
# 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"
|
1748
|
+
# 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"
|
1707
1749
|
# resp.scaling_policies[0].policy_type #=> String, one of "StepScaling", "TargetTrackingScaling"
|
1708
1750
|
# resp.scaling_policies[0].step_scaling_policy_configuration.adjustment_type #=> String, one of "ChangeInCapacity", "PercentChangeInCapacity", "ExactCapacity"
|
1709
1751
|
# resp.scaling_policies[0].step_scaling_policy_configuration.step_adjustments #=> Array
|
@@ -1714,7 +1756,7 @@ module Aws::ApplicationAutoScaling
|
|
1714
1756
|
# resp.scaling_policies[0].step_scaling_policy_configuration.cooldown #=> Integer
|
1715
1757
|
# resp.scaling_policies[0].step_scaling_policy_configuration.metric_aggregation_type #=> String, one of "Average", "Minimum", "Maximum"
|
1716
1758
|
# resp.scaling_policies[0].target_tracking_scaling_policy_configuration.target_value #=> Float
|
1717
|
-
# 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"
|
1759
|
+
# 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"
|
1718
1760
|
# resp.scaling_policies[0].target_tracking_scaling_policy_configuration.predefined_metric_specification.resource_label #=> String
|
1719
1761
|
# resp.scaling_policies[0].target_tracking_scaling_policy_configuration.customized_metric_specification.metric_name #=> String
|
1720
1762
|
# resp.scaling_policies[0].target_tracking_scaling_policy_configuration.customized_metric_specification.namespace #=> String
|
@@ -1843,6 +1885,10 @@ module Aws::ApplicationAutoScaling
|
|
1843
1885
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
1844
1886
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
1845
1887
|
#
|
1888
|
+
# * SageMaker Serverless endpoint - The resource type is `variant` and
|
1889
|
+
# the unique identifier is the resource ID. Example:
|
1890
|
+
# `endpoint/my-end-point/variant/KMeansClustering`.
|
1891
|
+
#
|
1846
1892
|
#
|
1847
1893
|
#
|
1848
1894
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -1915,6 +1961,9 @@ module Aws::ApplicationAutoScaling
|
|
1915
1961
|
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
1916
1962
|
# an Amazon Neptune DB cluster.
|
1917
1963
|
#
|
1964
|
+
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The provisioned
|
1965
|
+
# concurrency for a SageMaker Serverless endpoint.
|
1966
|
+
#
|
1918
1967
|
# @option params [Integer] :max_results
|
1919
1968
|
# The maximum number of scheduled action results. This value can be
|
1920
1969
|
# between 1 and 50. The default value is 50.
|
@@ -1982,7 +2031,7 @@ module Aws::ApplicationAutoScaling
|
|
1982
2031
|
# scheduled_action_names: ["ResourceIdMaxLen1600"],
|
1983
2032
|
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune
|
1984
2033
|
# resource_id: "ResourceIdMaxLen1600",
|
1985
|
-
# 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
|
2034
|
+
# 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
|
1986
2035
|
# max_results: 1,
|
1987
2036
|
# next_token: "XmlString",
|
1988
2037
|
# })
|
@@ -1996,7 +2045,7 @@ module Aws::ApplicationAutoScaling
|
|
1996
2045
|
# resp.scheduled_actions[0].schedule #=> String
|
1997
2046
|
# resp.scheduled_actions[0].timezone #=> String
|
1998
2047
|
# resp.scheduled_actions[0].resource_id #=> String
|
1999
|
-
# 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"
|
2048
|
+
# 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"
|
2000
2049
|
# resp.scheduled_actions[0].start_time #=> Time
|
2001
2050
|
# resp.scheduled_actions[0].end_time #=> Time
|
2002
2051
|
# resp.scheduled_actions[0].scalable_target_action.min_capacity #=> Integer
|
@@ -2196,6 +2245,10 @@ module Aws::ApplicationAutoScaling
|
|
2196
2245
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
2197
2246
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
2198
2247
|
#
|
2248
|
+
# * SageMaker Serverless endpoint - The resource type is `variant` and
|
2249
|
+
# the unique identifier is the resource ID. Example:
|
2250
|
+
# `endpoint/my-end-point/variant/KMeansClustering`.
|
2251
|
+
#
|
2199
2252
|
#
|
2200
2253
|
#
|
2201
2254
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -2267,6 +2320,9 @@ module Aws::ApplicationAutoScaling
|
|
2267
2320
|
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
2268
2321
|
# an Amazon Neptune DB cluster.
|
2269
2322
|
#
|
2323
|
+
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The provisioned
|
2324
|
+
# concurrency for a SageMaker Serverless endpoint.
|
2325
|
+
#
|
2270
2326
|
# @option params [String] :policy_type
|
2271
2327
|
# The scaling policy type. This parameter is required if you are
|
2272
2328
|
# creating a scaling policy.
|
@@ -2349,7 +2405,7 @@ module Aws::ApplicationAutoScaling
|
|
2349
2405
|
# policy_name: "PolicyName", # required
|
2350
2406
|
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune
|
2351
2407
|
# resource_id: "ResourceIdMaxLen1600", # required
|
2352
|
-
# 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
|
2408
|
+
# 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
|
2353
2409
|
# policy_type: "StepScaling", # accepts StepScaling, TargetTrackingScaling
|
2354
2410
|
# step_scaling_policy_configuration: {
|
2355
2411
|
# adjustment_type: "ChangeInCapacity", # accepts ChangeInCapacity, PercentChangeInCapacity, ExactCapacity
|
@@ -2367,7 +2423,7 @@ module Aws::ApplicationAutoScaling
|
|
2367
2423
|
# target_tracking_scaling_policy_configuration: {
|
2368
2424
|
# target_value: 1.0, # required
|
2369
2425
|
# predefined_metric_specification: {
|
2370
|
-
# 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
|
2426
|
+
# 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
|
2371
2427
|
# resource_label: "ResourceLabel",
|
2372
2428
|
# },
|
2373
2429
|
# customized_metric_specification: {
|
@@ -2578,6 +2634,10 @@ module Aws::ApplicationAutoScaling
|
|
2578
2634
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
2579
2635
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
2580
2636
|
#
|
2637
|
+
# * SageMaker Serverless endpoint - The resource type is `variant` and
|
2638
|
+
# the unique identifier is the resource ID. Example:
|
2639
|
+
# `endpoint/my-end-point/variant/KMeansClustering`.
|
2640
|
+
#
|
2581
2641
|
#
|
2582
2642
|
#
|
2583
2643
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -2649,6 +2709,9 @@ module Aws::ApplicationAutoScaling
|
|
2649
2709
|
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
2650
2710
|
# an Amazon Neptune DB cluster.
|
2651
2711
|
#
|
2712
|
+
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The provisioned
|
2713
|
+
# concurrency for a SageMaker Serverless endpoint.
|
2714
|
+
#
|
2652
2715
|
# @option params [Time,DateTime,Date,Integer,String] :start_time
|
2653
2716
|
# The date and time for this scheduled action to start, in UTC.
|
2654
2717
|
#
|
@@ -2694,7 +2757,7 @@ module Aws::ApplicationAutoScaling
|
|
2694
2757
|
# timezone: "ResourceIdMaxLen1600",
|
2695
2758
|
# scheduled_action_name: "ScheduledActionName", # required
|
2696
2759
|
# resource_id: "ResourceIdMaxLen1600", # required
|
2697
|
-
# 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
|
2760
|
+
# 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
|
2698
2761
|
# start_time: Time.now,
|
2699
2762
|
# end_time: Time.now,
|
2700
2763
|
# scalable_target_action: {
|
@@ -2839,6 +2902,10 @@ module Aws::ApplicationAutoScaling
|
|
2839
2902
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
2840
2903
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
2841
2904
|
#
|
2905
|
+
# * SageMaker Serverless endpoint - The resource type is `variant` and
|
2906
|
+
# the unique identifier is the resource ID. Example:
|
2907
|
+
# `endpoint/my-end-point/variant/KMeansClustering`.
|
2908
|
+
#
|
2842
2909
|
#
|
2843
2910
|
#
|
2844
2911
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -2911,6 +2978,9 @@ module Aws::ApplicationAutoScaling
|
|
2911
2978
|
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
2912
2979
|
# an Amazon Neptune DB cluster.
|
2913
2980
|
#
|
2981
|
+
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The provisioned
|
2982
|
+
# concurrency for a SageMaker Serverless endpoint.
|
2983
|
+
#
|
2914
2984
|
# @option params [Integer] :min_capacity
|
2915
2985
|
# The minimum value that you plan to scale in to. When a scaling policy
|
2916
2986
|
# is in effect, Application Auto Scaling can scale in (contract) as
|
@@ -2929,6 +2999,8 @@ module Aws::ApplicationAutoScaling
|
|
2929
2999
|
#
|
2930
3000
|
# * Lambda provisioned concurrency
|
2931
3001
|
#
|
3002
|
+
# * SageMaker Serverless endpoint provisioned concurrency
|
3003
|
+
#
|
2932
3004
|
# * SageMaker endpoint variants
|
2933
3005
|
#
|
2934
3006
|
# * Spot Fleets
|
@@ -3041,12 +3113,17 @@ module Aws::ApplicationAutoScaling
|
|
3041
3113
|
# service_namespace: "ecs",
|
3042
3114
|
# })
|
3043
3115
|
#
|
3116
|
+
# resp.to_h outputs the following:
|
3117
|
+
# {
|
3118
|
+
# scalable_target_arn: "arn:aws:application-autoscaling:us-east-1:123456789012:scalable-target/1234abcd56ab78cd901ef1234567890ab123",
|
3119
|
+
# }
|
3120
|
+
#
|
3044
3121
|
# @example Request syntax with placeholder values
|
3045
3122
|
#
|
3046
3123
|
# resp = client.register_scalable_target({
|
3047
3124
|
# service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune
|
3048
3125
|
# resource_id: "ResourceIdMaxLen1600", # required
|
3049
|
-
# 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
|
3126
|
+
# 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
|
3050
3127
|
# min_capacity: 1,
|
3051
3128
|
# max_capacity: 1,
|
3052
3129
|
# role_arn: "ResourceIdMaxLen1600",
|
@@ -3109,7 +3186,7 @@ module Aws::ApplicationAutoScaling
|
|
3109
3186
|
#
|
3110
3187
|
# @option params [required, Hash<String,String>] :tags
|
3111
3188
|
# The tags assigned to the resource. A tag is a label that you assign to
|
3112
|
-
# an
|
3189
|
+
# an Amazon Web Services resource.
|
3113
3190
|
#
|
3114
3191
|
# Each tag consists of a tag key and a tag value.
|
3115
3192
|
#
|
@@ -3226,7 +3303,7 @@ module Aws::ApplicationAutoScaling
|
|
3226
3303
|
params: params,
|
3227
3304
|
config: config)
|
3228
3305
|
context[:gem_name] = 'aws-sdk-applicationautoscaling'
|
3229
|
-
context[:gem_version] = '1.
|
3306
|
+
context[:gem_version] = '1.69.0'
|
3230
3307
|
Seahorse::Client::Request.new(handlers, context)
|
3231
3308
|
end
|
3232
3309
|
|
@@ -208,6 +208,10 @@ module Aws::ApplicationAutoScaling
|
|
208
208
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
209
209
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
210
210
|
#
|
211
|
+
# * SageMaker Serverless endpoint - The resource type is `variant` and
|
212
|
+
# the unique identifier is the resource ID. Example:
|
213
|
+
# `endpoint/my-end-point/variant/KMeansClustering`.
|
214
|
+
#
|
211
215
|
#
|
212
216
|
#
|
213
217
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -279,6 +283,9 @@ module Aws::ApplicationAutoScaling
|
|
279
283
|
#
|
280
284
|
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
281
285
|
# an Amazon Neptune DB cluster.
|
286
|
+
#
|
287
|
+
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The
|
288
|
+
# provisioned concurrency for a SageMaker Serverless endpoint.
|
282
289
|
# @return [String]
|
283
290
|
#
|
284
291
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeleteScalingPolicyRequest AWS API Documentation
|
@@ -375,6 +382,10 @@ module Aws::ApplicationAutoScaling
|
|
375
382
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
376
383
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
377
384
|
#
|
385
|
+
# * SageMaker Serverless endpoint - The resource type is `variant` and
|
386
|
+
# the unique identifier is the resource ID. Example:
|
387
|
+
# `endpoint/my-end-point/variant/KMeansClustering`.
|
388
|
+
#
|
378
389
|
#
|
379
390
|
#
|
380
391
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -446,6 +457,9 @@ module Aws::ApplicationAutoScaling
|
|
446
457
|
#
|
447
458
|
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
448
459
|
# an Amazon Neptune DB cluster.
|
460
|
+
#
|
461
|
+
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The
|
462
|
+
# provisioned concurrency for a SageMaker Serverless endpoint.
|
449
463
|
# @return [String]
|
450
464
|
#
|
451
465
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeleteScheduledActionRequest AWS API Documentation
|
@@ -538,6 +552,10 @@ module Aws::ApplicationAutoScaling
|
|
538
552
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
539
553
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
540
554
|
#
|
555
|
+
# * SageMaker Serverless endpoint - The resource type is `variant` and
|
556
|
+
# the unique identifier is the resource ID. Example:
|
557
|
+
# `endpoint/my-end-point/variant/KMeansClustering`.
|
558
|
+
#
|
541
559
|
#
|
542
560
|
#
|
543
561
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -610,6 +628,9 @@ module Aws::ApplicationAutoScaling
|
|
610
628
|
#
|
611
629
|
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
612
630
|
# an Amazon Neptune DB cluster.
|
631
|
+
#
|
632
|
+
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The
|
633
|
+
# provisioned concurrency for a SageMaker Serverless endpoint.
|
613
634
|
# @return [String]
|
614
635
|
#
|
615
636
|
# @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeregisterScalableTargetRequest AWS API Documentation
|
@@ -701,6 +722,10 @@ module Aws::ApplicationAutoScaling
|
|
701
722
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
702
723
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
703
724
|
#
|
725
|
+
# * SageMaker Serverless endpoint - The resource type is `variant` and
|
726
|
+
# the unique identifier is the resource ID. Example:
|
727
|
+
# `endpoint/my-end-point/variant/KMeansClustering`.
|
728
|
+
#
|
704
729
|
#
|
705
730
|
#
|
706
731
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -774,6 +799,9 @@ module Aws::ApplicationAutoScaling
|
|
774
799
|
#
|
775
800
|
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
776
801
|
# an Amazon Neptune DB cluster.
|
802
|
+
#
|
803
|
+
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The
|
804
|
+
# provisioned concurrency for a SageMaker Serverless endpoint.
|
777
805
|
# @return [String]
|
778
806
|
#
|
779
807
|
# @!attribute [rw] max_results
|
@@ -896,6 +924,10 @@ module Aws::ApplicationAutoScaling
|
|
896
924
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
897
925
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
898
926
|
#
|
927
|
+
# * SageMaker Serverless endpoint - The resource type is `variant` and
|
928
|
+
# the unique identifier is the resource ID. Example:
|
929
|
+
# `endpoint/my-end-point/variant/KMeansClustering`.
|
930
|
+
#
|
899
931
|
#
|
900
932
|
#
|
901
933
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -968,6 +1000,9 @@ module Aws::ApplicationAutoScaling
|
|
968
1000
|
#
|
969
1001
|
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
970
1002
|
# an Amazon Neptune DB cluster.
|
1003
|
+
#
|
1004
|
+
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The
|
1005
|
+
# provisioned concurrency for a SageMaker Serverless endpoint.
|
971
1006
|
# @return [String]
|
972
1007
|
#
|
973
1008
|
# @!attribute [rw] max_results
|
@@ -1108,6 +1143,10 @@ module Aws::ApplicationAutoScaling
|
|
1108
1143
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
1109
1144
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
1110
1145
|
#
|
1146
|
+
# * SageMaker Serverless endpoint - The resource type is `variant` and
|
1147
|
+
# the unique identifier is the resource ID. Example:
|
1148
|
+
# `endpoint/my-end-point/variant/KMeansClustering`.
|
1149
|
+
#
|
1111
1150
|
#
|
1112
1151
|
#
|
1113
1152
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -1180,6 +1219,9 @@ module Aws::ApplicationAutoScaling
|
|
1180
1219
|
#
|
1181
1220
|
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
1182
1221
|
# an Amazon Neptune DB cluster.
|
1222
|
+
#
|
1223
|
+
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The
|
1224
|
+
# provisioned concurrency for a SageMaker Serverless endpoint.
|
1183
1225
|
# @return [String]
|
1184
1226
|
#
|
1185
1227
|
# @!attribute [rw] max_results
|
@@ -1307,6 +1349,10 @@ module Aws::ApplicationAutoScaling
|
|
1307
1349
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
1308
1350
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
1309
1351
|
#
|
1352
|
+
# * SageMaker Serverless endpoint - The resource type is `variant` and
|
1353
|
+
# the unique identifier is the resource ID. Example:
|
1354
|
+
# `endpoint/my-end-point/variant/KMeansClustering`.
|
1355
|
+
#
|
1310
1356
|
#
|
1311
1357
|
#
|
1312
1358
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -1379,6 +1425,9 @@ module Aws::ApplicationAutoScaling
|
|
1379
1425
|
#
|
1380
1426
|
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
1381
1427
|
# an Amazon Neptune DB cluster.
|
1428
|
+
#
|
1429
|
+
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The
|
1430
|
+
# provisioned concurrency for a SageMaker Serverless endpoint.
|
1382
1431
|
# @return [String]
|
1383
1432
|
#
|
1384
1433
|
# @!attribute [rw] max_results
|
@@ -1747,6 +1796,10 @@ module Aws::ApplicationAutoScaling
|
|
1747
1796
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
1748
1797
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
1749
1798
|
#
|
1799
|
+
# * SageMaker Serverless endpoint - The resource type is `variant` and
|
1800
|
+
# the unique identifier is the resource ID. Example:
|
1801
|
+
# `endpoint/my-end-point/variant/KMeansClustering`.
|
1802
|
+
#
|
1750
1803
|
#
|
1751
1804
|
#
|
1752
1805
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -1818,6 +1871,9 @@ module Aws::ApplicationAutoScaling
|
|
1818
1871
|
#
|
1819
1872
|
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
1820
1873
|
# an Amazon Neptune DB cluster.
|
1874
|
+
#
|
1875
|
+
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The
|
1876
|
+
# provisioned concurrency for a SageMaker Serverless endpoint.
|
1821
1877
|
# @return [String]
|
1822
1878
|
#
|
1823
1879
|
# @!attribute [rw] policy_type
|
@@ -2016,6 +2072,10 @@ module Aws::ApplicationAutoScaling
|
|
2016
2072
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
2017
2073
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
2018
2074
|
#
|
2075
|
+
# * SageMaker Serverless endpoint - The resource type is `variant` and
|
2076
|
+
# the unique identifier is the resource ID. Example:
|
2077
|
+
# `endpoint/my-end-point/variant/KMeansClustering`.
|
2078
|
+
#
|
2019
2079
|
#
|
2020
2080
|
#
|
2021
2081
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -2087,6 +2147,9 @@ module Aws::ApplicationAutoScaling
|
|
2087
2147
|
#
|
2088
2148
|
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
2089
2149
|
# an Amazon Neptune DB cluster.
|
2150
|
+
#
|
2151
|
+
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The
|
2152
|
+
# provisioned concurrency for a SageMaker Serverless endpoint.
|
2090
2153
|
# @return [String]
|
2091
2154
|
#
|
2092
2155
|
# @!attribute [rw] start_time
|
@@ -2202,6 +2265,10 @@ module Aws::ApplicationAutoScaling
|
|
2202
2265
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
2203
2266
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
2204
2267
|
#
|
2268
|
+
# * SageMaker Serverless endpoint - The resource type is `variant` and
|
2269
|
+
# the unique identifier is the resource ID. Example:
|
2270
|
+
# `endpoint/my-end-point/variant/KMeansClustering`.
|
2271
|
+
#
|
2205
2272
|
#
|
2206
2273
|
#
|
2207
2274
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -2274,6 +2341,9 @@ module Aws::ApplicationAutoScaling
|
|
2274
2341
|
#
|
2275
2342
|
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
2276
2343
|
# an Amazon Neptune DB cluster.
|
2344
|
+
#
|
2345
|
+
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The
|
2346
|
+
# provisioned concurrency for a SageMaker Serverless endpoint.
|
2277
2347
|
# @return [String]
|
2278
2348
|
#
|
2279
2349
|
# @!attribute [rw] min_capacity
|
@@ -2295,6 +2365,8 @@ module Aws::ApplicationAutoScaling
|
|
2295
2365
|
#
|
2296
2366
|
# * Lambda provisioned concurrency
|
2297
2367
|
#
|
2368
|
+
# * SageMaker Serverless endpoint provisioned concurrency
|
2369
|
+
#
|
2298
2370
|
# * SageMaker endpoint variants
|
2299
2371
|
#
|
2300
2372
|
# * Spot Fleets
|
@@ -2519,6 +2591,10 @@ module Aws::ApplicationAutoScaling
|
|
2519
2591
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
2520
2592
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
2521
2593
|
#
|
2594
|
+
# * SageMaker Serverless endpoint - The resource type is `variant` and
|
2595
|
+
# the unique identifier is the resource ID. Example:
|
2596
|
+
# `endpoint/my-end-point/variant/KMeansClustering`.
|
2597
|
+
#
|
2522
2598
|
#
|
2523
2599
|
#
|
2524
2600
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -2591,6 +2667,9 @@ module Aws::ApplicationAutoScaling
|
|
2591
2667
|
#
|
2592
2668
|
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
2593
2669
|
# an Amazon Neptune DB cluster.
|
2670
|
+
#
|
2671
|
+
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The
|
2672
|
+
# provisioned concurrency for a SageMaker Serverless endpoint.
|
2594
2673
|
# @return [String]
|
2595
2674
|
#
|
2596
2675
|
# @!attribute [rw] min_capacity
|
@@ -2752,6 +2831,10 @@ module Aws::ApplicationAutoScaling
|
|
2752
2831
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
2753
2832
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
2754
2833
|
#
|
2834
|
+
# * SageMaker Serverless endpoint - The resource type is `variant` and
|
2835
|
+
# the unique identifier is the resource ID. Example:
|
2836
|
+
# `endpoint/my-end-point/variant/KMeansClustering`.
|
2837
|
+
#
|
2755
2838
|
#
|
2756
2839
|
#
|
2757
2840
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -2823,6 +2906,9 @@ module Aws::ApplicationAutoScaling
|
|
2823
2906
|
#
|
2824
2907
|
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
2825
2908
|
# an Amazon Neptune DB cluster.
|
2909
|
+
#
|
2910
|
+
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The
|
2911
|
+
# provisioned concurrency for a SageMaker Serverless endpoint.
|
2826
2912
|
# @return [String]
|
2827
2913
|
#
|
2828
2914
|
# @!attribute [rw] description
|
@@ -2976,6 +3062,10 @@ module Aws::ApplicationAutoScaling
|
|
2976
3062
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
2977
3063
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
2978
3064
|
#
|
3065
|
+
# * SageMaker Serverless endpoint - The resource type is `variant` and
|
3066
|
+
# the unique identifier is the resource ID. Example:
|
3067
|
+
# `endpoint/my-end-point/variant/KMeansClustering`.
|
3068
|
+
#
|
2979
3069
|
#
|
2980
3070
|
#
|
2981
3071
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -3047,6 +3137,9 @@ module Aws::ApplicationAutoScaling
|
|
3047
3137
|
#
|
3048
3138
|
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
3049
3139
|
# an Amazon Neptune DB cluster.
|
3140
|
+
#
|
3141
|
+
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The
|
3142
|
+
# provisioned concurrency for a SageMaker Serverless endpoint.
|
3050
3143
|
# @return [String]
|
3051
3144
|
#
|
3052
3145
|
# @!attribute [rw] policy_type
|
@@ -3216,6 +3309,10 @@ module Aws::ApplicationAutoScaling
|
|
3216
3309
|
# * Neptune cluster - The resource type is `cluster` and the unique
|
3217
3310
|
# identifier is the cluster name. Example: `cluster:mycluster`.
|
3218
3311
|
#
|
3312
|
+
# * SageMaker Serverless endpoint - The resource type is `variant` and
|
3313
|
+
# the unique identifier is the resource ID. Example:
|
3314
|
+
# `endpoint/my-end-point/variant/KMeansClustering`.
|
3315
|
+
#
|
3219
3316
|
#
|
3220
3317
|
#
|
3221
3318
|
# [1]: https://github.com/aws/aws-auto-scaling-custom-resource
|
@@ -3287,6 +3384,9 @@ module Aws::ApplicationAutoScaling
|
|
3287
3384
|
#
|
3288
3385
|
# * `neptune:cluster:ReadReplicaCount` - The count of read replicas in
|
3289
3386
|
# an Amazon Neptune DB cluster.
|
3387
|
+
#
|
3388
|
+
# * `sagemaker:variant:DesiredProvisionedConcurrency` - The
|
3389
|
+
# provisioned concurrency for a SageMaker Serverless endpoint.
|
3290
3390
|
# @return [String]
|
3291
3391
|
#
|
3292
3392
|
# @!attribute [rw] start_time
|
@@ -3476,6 +3576,8 @@ module Aws::ApplicationAutoScaling
|
|
3476
3576
|
#
|
3477
3577
|
# * Neptune clusters
|
3478
3578
|
#
|
3579
|
+
# * SageMaker Serverless endpoint provisioned concurrency
|
3580
|
+
#
|
3479
3581
|
# * SageMaker endpoint variants
|
3480
3582
|
#
|
3481
3583
|
# * Spot Fleets
|
@@ -3559,7 +3661,7 @@ module Aws::ApplicationAutoScaling
|
|
3559
3661
|
#
|
3560
3662
|
# @!attribute [rw] tags
|
3561
3663
|
# The tags assigned to the resource. A tag is a label that you assign
|
3562
|
-
# to an
|
3664
|
+
# to an Amazon Web Services resource.
|
3563
3665
|
#
|
3564
3666
|
# Each tag consists of a tag key and a tag value.
|
3565
3667
|
#
|
@@ -3835,6 +3937,8 @@ module Aws::ApplicationAutoScaling
|
|
3835
3937
|
#
|
3836
3938
|
# * Neptune clusters
|
3837
3939
|
#
|
3940
|
+
# * SageMaker Serverless endpoint provisioned concurrency
|
3941
|
+
#
|
3838
3942
|
# * SageMaker endpoint variants
|
3839
3943
|
#
|
3840
3944
|
# * Spot Fleets
|
@@ -3881,6 +3985,8 @@ module Aws::ApplicationAutoScaling
|
|
3881
3985
|
#
|
3882
3986
|
# * Neptune clusters
|
3883
3987
|
#
|
3988
|
+
# * SageMaker Serverless endpoint provisioned concurrency
|
3989
|
+
#
|
3884
3990
|
# * SageMaker endpoint variants
|
3885
3991
|
#
|
3886
3992
|
# * Spot Fleets
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-applicationautoscaling
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.69.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-05-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|