aws-sdk-applicationautoscaling 1.78.0 → 1.79.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 373a26cbb3dcc9fbff32c0a5d2bda3b371bb650a12a6b3488e335d451f9cf5bd
4
- data.tar.gz: c1216d8816bf1b382d6f56163bb0572159810ad210945b98922915467267c243
3
+ metadata.gz: 159260810bb5800d8754b63cf7acdc1f5cd02ca9e0905e6296b12e5ad666b7c6
4
+ data.tar.gz: 0a9452718d5899bf86754907038b635e137d32a421988c91ba3264fbbf4ebb27
5
5
  SHA512:
6
- metadata.gz: 93dd33f6ce7b42e31b7696b1c1f2f27d6dae1a2807d78b0bb2c23d80c918d8f8e7ed3f5d0e1a0737ab5204cfe66a4f16307602d6fb64f52a7035eceb610aa771
7
- data.tar.gz: 4a46d6e14443d4a7edaff99ee9f1ade982f987d0c503424a759f3cadd96f1884fb8f807c2bf8b55a0501bf71f216b47283c58114171643deb3dc3409503e878f
6
+ metadata.gz: c58ad7090b56b14dd4c6591edd0f9b12fce8d5e6fea4cc0420d44d00a2875cb924b479968757dba327db12253e18781b615ed2a1a6f783cc22a641e95031becd
7
+ data.tar.gz: 1ea8fb186607dad87df21005434942263440562d6253b2e1c66596c1ea4e26994e9c20ac4d3f114dfe6f981a286e75ca474e9a6a2b310432eca3b59af8541757
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.79.0 (2023-11-29)
5
+ ------------------
6
+
7
+ * Feature - Amazon SageMaker customers can now use Application Auto Scaling to automatically scale the number of Inference Component copies across an endpoint to meet the varying demand of their workloads.
8
+
4
9
  1.78.0 (2023-11-28)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.78.0
1
+ 1.79.0
@@ -411,8 +411,8 @@ module Aws::ApplicationAutoScaling
411
411
  #
412
412
  #
413
413
  #
414
- # [1]: https://docs.aws.amazon.com/autoscaling/application/userguide/application-auto-scaling-step-scaling-policies.html#delete-step-scaling-policy
415
- # [2]: https://docs.aws.amazon.com/autoscaling/application/userguide/application-auto-scaling-target-tracking.html#delete-target-tracking-policy
414
+ # [1]: https://docs.aws.amazon.com/autoscaling/application/userguide/create-step-scaling-policy-cli.html#delete-step-scaling-policy
415
+ # [2]: https://docs.aws.amazon.com/autoscaling/application/userguide/create-target-tracking-policy-cli.html#delete-target-tracking-policy
416
416
  #
417
417
  # @option params [required, String] :policy_name
418
418
  # The name of the scaling policy.
@@ -494,6 +494,10 @@ module Aws::ApplicationAutoScaling
494
494
  # the unique identifier is the resource ID. Example:
495
495
  # `endpoint/my-end-point/variant/KMeansClustering`.
496
496
  #
497
+ # * SageMaker inference component - The resource type is
498
+ # `inference-component` and the unique identifier is the resource ID.
499
+ # Example: `inference-component/my-inference-component`.
500
+ #
497
501
  #
498
502
  #
499
503
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -568,6 +572,9 @@ module Aws::ApplicationAutoScaling
568
572
  # * `sagemaker:variant:DesiredProvisionedConcurrency` - The provisioned
569
573
  # concurrency for a SageMaker Serverless endpoint.
570
574
  #
575
+ # * `sagemaker:inference-component:DesiredCopyCount` - The number of
576
+ # copies across an endpoint for a SageMaker inference component.
577
+ #
571
578
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
572
579
  #
573
580
  #
@@ -593,7 +600,7 @@ module Aws::ApplicationAutoScaling
593
600
  # policy_name: "ResourceIdMaxLen1600", # required
594
601
  # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune
595
602
  # resource_id: "ResourceIdMaxLen1600", # required
596
- # 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
603
+ # 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
597
604
  # })
598
605
  #
599
606
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeleteScalingPolicy AWS API Documentation
@@ -695,6 +702,10 @@ module Aws::ApplicationAutoScaling
695
702
  # the unique identifier is the resource ID. Example:
696
703
  # `endpoint/my-end-point/variant/KMeansClustering`.
697
704
  #
705
+ # * SageMaker inference component - The resource type is
706
+ # `inference-component` and the unique identifier is the resource ID.
707
+ # Example: `inference-component/my-inference-component`.
708
+ #
698
709
  #
699
710
  #
700
711
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -769,6 +780,9 @@ module Aws::ApplicationAutoScaling
769
780
  # * `sagemaker:variant:DesiredProvisionedConcurrency` - The provisioned
770
781
  # concurrency for a SageMaker Serverless endpoint.
771
782
  #
783
+ # * `sagemaker:inference-component:DesiredCopyCount` - The number of
784
+ # copies across an endpoint for a SageMaker inference component.
785
+ #
772
786
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
773
787
  #
774
788
  #
@@ -793,7 +807,7 @@ module Aws::ApplicationAutoScaling
793
807
  # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune
794
808
  # scheduled_action_name: "ResourceIdMaxLen1600", # required
795
809
  # resource_id: "ResourceIdMaxLen1600", # required
796
- # 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
810
+ # 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
797
811
  # })
798
812
  #
799
813
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeleteScheduledAction AWS API Documentation
@@ -895,6 +909,10 @@ module Aws::ApplicationAutoScaling
895
909
  # the unique identifier is the resource ID. Example:
896
910
  # `endpoint/my-end-point/variant/KMeansClustering`.
897
911
  #
912
+ # * SageMaker inference component - The resource type is
913
+ # `inference-component` and the unique identifier is the resource ID.
914
+ # Example: `inference-component/my-inference-component`.
915
+ #
898
916
  #
899
917
  #
900
918
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -970,6 +988,9 @@ module Aws::ApplicationAutoScaling
970
988
  # * `sagemaker:variant:DesiredProvisionedConcurrency` - The provisioned
971
989
  # concurrency for a SageMaker Serverless endpoint.
972
990
  #
991
+ # * `sagemaker:inference-component:DesiredCopyCount` - The number of
992
+ # copies across an endpoint for a SageMaker inference component.
993
+ #
973
994
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
974
995
  #
975
996
  #
@@ -993,7 +1014,7 @@ module Aws::ApplicationAutoScaling
993
1014
  # resp = client.deregister_scalable_target({
994
1015
  # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune
995
1016
  # resource_id: "ResourceIdMaxLen1600", # required
996
- # 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
1017
+ # 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
997
1018
  # })
998
1019
  #
999
1020
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeregisterScalableTarget AWS API Documentation
@@ -1088,6 +1109,10 @@ module Aws::ApplicationAutoScaling
1088
1109
  # the unique identifier is the resource ID. Example:
1089
1110
  # `endpoint/my-end-point/variant/KMeansClustering`.
1090
1111
  #
1112
+ # * SageMaker inference component - The resource type is
1113
+ # `inference-component` and the unique identifier is the resource ID.
1114
+ # Example: `inference-component/my-inference-component`.
1115
+ #
1091
1116
  #
1092
1117
  #
1093
1118
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -1164,6 +1189,9 @@ module Aws::ApplicationAutoScaling
1164
1189
  # * `sagemaker:variant:DesiredProvisionedConcurrency` - The provisioned
1165
1190
  # concurrency for a SageMaker Serverless endpoint.
1166
1191
  #
1192
+ # * `sagemaker:inference-component:DesiredCopyCount` - The number of
1193
+ # copies across an endpoint for a SageMaker inference component.
1194
+ #
1167
1195
  # @option params [Integer] :max_results
1168
1196
  # The maximum number of scalable targets. This value can be between 1
1169
1197
  # and 50. The default value is 50.
@@ -1218,7 +1246,7 @@ module Aws::ApplicationAutoScaling
1218
1246
  # resp = client.describe_scalable_targets({
1219
1247
  # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune
1220
1248
  # resource_ids: ["ResourceIdMaxLen1600"],
1221
- # 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
1249
+ # 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
1222
1250
  # max_results: 1,
1223
1251
  # next_token: "XmlString",
1224
1252
  # })
@@ -1228,7 +1256,7 @@ module Aws::ApplicationAutoScaling
1228
1256
  # resp.scalable_targets #=> Array
1229
1257
  # resp.scalable_targets[0].service_namespace #=> String, one of "ecs", "elasticmapreduce", "ec2", "appstream", "dynamodb", "rds", "sagemaker", "custom-resource", "comprehend", "lambda", "cassandra", "kafka", "elasticache", "neptune"
1230
1258
  # resp.scalable_targets[0].resource_id #=> String
1231
- # 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"
1259
+ # 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"
1232
1260
  # resp.scalable_targets[0].min_capacity #=> Integer
1233
1261
  # resp.scalable_targets[0].max_capacity #=> Integer
1234
1262
  # resp.scalable_targets[0].role_arn #=> String
@@ -1338,6 +1366,10 @@ module Aws::ApplicationAutoScaling
1338
1366
  # the unique identifier is the resource ID. Example:
1339
1367
  # `endpoint/my-end-point/variant/KMeansClustering`.
1340
1368
  #
1369
+ # * SageMaker inference component - The resource type is
1370
+ # `inference-component` and the unique identifier is the resource ID.
1371
+ # Example: `inference-component/my-inference-component`.
1372
+ #
1341
1373
  #
1342
1374
  #
1343
1375
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -1413,6 +1445,9 @@ module Aws::ApplicationAutoScaling
1413
1445
  # * `sagemaker:variant:DesiredProvisionedConcurrency` - The provisioned
1414
1446
  # concurrency for a SageMaker Serverless endpoint.
1415
1447
  #
1448
+ # * `sagemaker:inference-component:DesiredCopyCount` - The number of
1449
+ # copies across an endpoint for a SageMaker inference component.
1450
+ #
1416
1451
  # @option params [Integer] :max_results
1417
1452
  # The maximum number of scalable targets. This value can be between 1
1418
1453
  # and 50. The default value is 50.
@@ -1480,7 +1515,7 @@ module Aws::ApplicationAutoScaling
1480
1515
  # resp = client.describe_scaling_activities({
1481
1516
  # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune
1482
1517
  # resource_id: "ResourceIdMaxLen1600",
1483
- # 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
1518
+ # 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
1484
1519
  # max_results: 1,
1485
1520
  # next_token: "XmlString",
1486
1521
  # include_not_scaled_activities: false,
@@ -1492,7 +1527,7 @@ module Aws::ApplicationAutoScaling
1492
1527
  # resp.scaling_activities[0].activity_id #=> String
1493
1528
  # resp.scaling_activities[0].service_namespace #=> String, one of "ecs", "elasticmapreduce", "ec2", "appstream", "dynamodb", "rds", "sagemaker", "custom-resource", "comprehend", "lambda", "cassandra", "kafka", "elasticache", "neptune"
1494
1529
  # resp.scaling_activities[0].resource_id #=> String
1495
- # 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"
1530
+ # 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"
1496
1531
  # resp.scaling_activities[0].description #=> String
1497
1532
  # resp.scaling_activities[0].cause #=> String
1498
1533
  # resp.scaling_activities[0].start_time #=> Time
@@ -1611,6 +1646,10 @@ module Aws::ApplicationAutoScaling
1611
1646
  # the unique identifier is the resource ID. Example:
1612
1647
  # `endpoint/my-end-point/variant/KMeansClustering`.
1613
1648
  #
1649
+ # * SageMaker inference component - The resource type is
1650
+ # `inference-component` and the unique identifier is the resource ID.
1651
+ # Example: `inference-component/my-inference-component`.
1652
+ #
1614
1653
  #
1615
1654
  #
1616
1655
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -1686,6 +1725,9 @@ module Aws::ApplicationAutoScaling
1686
1725
  # * `sagemaker:variant:DesiredProvisionedConcurrency` - The provisioned
1687
1726
  # concurrency for a SageMaker Serverless endpoint.
1688
1727
  #
1728
+ # * `sagemaker:inference-component:DesiredCopyCount` - The number of
1729
+ # copies across an endpoint for a SageMaker inference component.
1730
+ #
1689
1731
  # @option params [Integer] :max_results
1690
1732
  # The maximum number of scalable targets. This value can be between 1
1691
1733
  # and 10. The default value is 10.
@@ -1753,7 +1795,7 @@ module Aws::ApplicationAutoScaling
1753
1795
  # policy_names: ["ResourceIdMaxLen1600"],
1754
1796
  # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune
1755
1797
  # resource_id: "ResourceIdMaxLen1600",
1756
- # 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
1798
+ # 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
1757
1799
  # max_results: 1,
1758
1800
  # next_token: "XmlString",
1759
1801
  # })
@@ -1765,7 +1807,7 @@ module Aws::ApplicationAutoScaling
1765
1807
  # resp.scaling_policies[0].policy_name #=> String
1766
1808
  # resp.scaling_policies[0].service_namespace #=> String, one of "ecs", "elasticmapreduce", "ec2", "appstream", "dynamodb", "rds", "sagemaker", "custom-resource", "comprehend", "lambda", "cassandra", "kafka", "elasticache", "neptune"
1767
1809
  # resp.scaling_policies[0].resource_id #=> String
1768
- # 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"
1810
+ # 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"
1769
1811
  # resp.scaling_policies[0].policy_type #=> String, one of "StepScaling", "TargetTrackingScaling"
1770
1812
  # resp.scaling_policies[0].step_scaling_policy_configuration.adjustment_type #=> String, one of "ChangeInCapacity", "PercentChangeInCapacity", "ExactCapacity"
1771
1813
  # resp.scaling_policies[0].step_scaling_policy_configuration.step_adjustments #=> Array
@@ -1776,7 +1818,7 @@ module Aws::ApplicationAutoScaling
1776
1818
  # resp.scaling_policies[0].step_scaling_policy_configuration.cooldown #=> Integer
1777
1819
  # resp.scaling_policies[0].step_scaling_policy_configuration.metric_aggregation_type #=> String, one of "Average", "Minimum", "Maximum"
1778
1820
  # resp.scaling_policies[0].target_tracking_scaling_policy_configuration.target_value #=> Float
1779
- # 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"
1821
+ # 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"
1780
1822
  # resp.scaling_policies[0].target_tracking_scaling_policy_configuration.predefined_metric_specification.resource_label #=> String
1781
1823
  # resp.scaling_policies[0].target_tracking_scaling_policy_configuration.customized_metric_specification.metric_name #=> String
1782
1824
  # resp.scaling_policies[0].target_tracking_scaling_policy_configuration.customized_metric_specification.namespace #=> String
@@ -1909,6 +1951,10 @@ module Aws::ApplicationAutoScaling
1909
1951
  # the unique identifier is the resource ID. Example:
1910
1952
  # `endpoint/my-end-point/variant/KMeansClustering`.
1911
1953
  #
1954
+ # * SageMaker inference component - The resource type is
1955
+ # `inference-component` and the unique identifier is the resource ID.
1956
+ # Example: `inference-component/my-inference-component`.
1957
+ #
1912
1958
  #
1913
1959
  #
1914
1960
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -1984,6 +2030,9 @@ module Aws::ApplicationAutoScaling
1984
2030
  # * `sagemaker:variant:DesiredProvisionedConcurrency` - The provisioned
1985
2031
  # concurrency for a SageMaker Serverless endpoint.
1986
2032
  #
2033
+ # * `sagemaker:inference-component:DesiredCopyCount` - The number of
2034
+ # copies across an endpoint for a SageMaker inference component.
2035
+ #
1987
2036
  # @option params [Integer] :max_results
1988
2037
  # The maximum number of scheduled action results. This value can be
1989
2038
  # between 1 and 50. The default value is 50.
@@ -2051,7 +2100,7 @@ module Aws::ApplicationAutoScaling
2051
2100
  # scheduled_action_names: ["ResourceIdMaxLen1600"],
2052
2101
  # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune
2053
2102
  # resource_id: "ResourceIdMaxLen1600",
2054
- # 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
2103
+ # 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
2055
2104
  # max_results: 1,
2056
2105
  # next_token: "XmlString",
2057
2106
  # })
@@ -2065,7 +2114,7 @@ module Aws::ApplicationAutoScaling
2065
2114
  # resp.scheduled_actions[0].schedule #=> String
2066
2115
  # resp.scheduled_actions[0].timezone #=> String
2067
2116
  # resp.scheduled_actions[0].resource_id #=> String
2068
- # 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"
2117
+ # 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"
2069
2118
  # resp.scheduled_actions[0].start_time #=> Time
2070
2119
  # resp.scheduled_actions[0].end_time #=> Time
2071
2120
  # resp.scheduled_actions[0].scalable_target_action.min_capacity #=> Integer
@@ -2269,6 +2318,10 @@ module Aws::ApplicationAutoScaling
2269
2318
  # the unique identifier is the resource ID. Example:
2270
2319
  # `endpoint/my-end-point/variant/KMeansClustering`.
2271
2320
  #
2321
+ # * SageMaker inference component - The resource type is
2322
+ # `inference-component` and the unique identifier is the resource ID.
2323
+ # Example: `inference-component/my-inference-component`.
2324
+ #
2272
2325
  #
2273
2326
  #
2274
2327
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -2343,13 +2396,16 @@ module Aws::ApplicationAutoScaling
2343
2396
  # * `sagemaker:variant:DesiredProvisionedConcurrency` - The provisioned
2344
2397
  # concurrency for a SageMaker Serverless endpoint.
2345
2398
  #
2399
+ # * `sagemaker:inference-component:DesiredCopyCount` - The number of
2400
+ # copies across an endpoint for a SageMaker inference component.
2401
+ #
2346
2402
  # @option params [String] :policy_type
2347
2403
  # The scaling policy type. This parameter is required if you are
2348
2404
  # creating a scaling policy.
2349
2405
  #
2350
2406
  # The following policy types are supported:
2351
2407
  #
2352
- # `TargetTrackingScaling`—Not supported for Amazon EMR
2408
+ # `TargetTrackingScaling`—Not supported for Amazon EMR.
2353
2409
  #
2354
2410
  # `StepScaling`—Not supported for DynamoDB, Amazon Comprehend, Lambda,
2355
2411
  # Amazon Keyspaces, Amazon MSK, Amazon ElastiCache, or Neptune.
@@ -2425,7 +2481,7 @@ module Aws::ApplicationAutoScaling
2425
2481
  # policy_name: "PolicyName", # required
2426
2482
  # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune
2427
2483
  # resource_id: "ResourceIdMaxLen1600", # required
2428
- # 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
2484
+ # 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
2429
2485
  # policy_type: "StepScaling", # accepts StepScaling, TargetTrackingScaling
2430
2486
  # step_scaling_policy_configuration: {
2431
2487
  # adjustment_type: "ChangeInCapacity", # accepts ChangeInCapacity, PercentChangeInCapacity, ExactCapacity
@@ -2443,7 +2499,7 @@ module Aws::ApplicationAutoScaling
2443
2499
  # target_tracking_scaling_policy_configuration: {
2444
2500
  # target_value: 1.0, # required
2445
2501
  # predefined_metric_specification: {
2446
- # 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
2502
+ # 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
2447
2503
  # resource_label: "ResourceLabel",
2448
2504
  # },
2449
2505
  # customized_metric_specification: {
@@ -2658,6 +2714,10 @@ module Aws::ApplicationAutoScaling
2658
2714
  # the unique identifier is the resource ID. Example:
2659
2715
  # `endpoint/my-end-point/variant/KMeansClustering`.
2660
2716
  #
2717
+ # * SageMaker inference component - The resource type is
2718
+ # `inference-component` and the unique identifier is the resource ID.
2719
+ # Example: `inference-component/my-inference-component`.
2720
+ #
2661
2721
  #
2662
2722
  #
2663
2723
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -2732,6 +2792,9 @@ module Aws::ApplicationAutoScaling
2732
2792
  # * `sagemaker:variant:DesiredProvisionedConcurrency` - The provisioned
2733
2793
  # concurrency for a SageMaker Serverless endpoint.
2734
2794
  #
2795
+ # * `sagemaker:inference-component:DesiredCopyCount` - The number of
2796
+ # copies across an endpoint for a SageMaker inference component.
2797
+ #
2735
2798
  # @option params [Time,DateTime,Date,Integer,String] :start_time
2736
2799
  # The date and time for this scheduled action to start, in UTC.
2737
2800
  #
@@ -2777,7 +2840,7 @@ module Aws::ApplicationAutoScaling
2777
2840
  # timezone: "ResourceIdMaxLen1600",
2778
2841
  # scheduled_action_name: "ScheduledActionName", # required
2779
2842
  # resource_id: "ResourceIdMaxLen1600", # required
2780
- # 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
2843
+ # 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
2781
2844
  # start_time: Time.now,
2782
2845
  # end_time: Time.now,
2783
2846
  # scalable_target_action: {
@@ -2926,6 +2989,10 @@ module Aws::ApplicationAutoScaling
2926
2989
  # the unique identifier is the resource ID. Example:
2927
2990
  # `endpoint/my-end-point/variant/KMeansClustering`.
2928
2991
  #
2992
+ # * SageMaker inference component - The resource type is
2993
+ # `inference-component` and the unique identifier is the resource ID.
2994
+ # Example: `inference-component/my-inference-component`.
2995
+ #
2929
2996
  #
2930
2997
  #
2931
2998
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -3001,6 +3068,9 @@ module Aws::ApplicationAutoScaling
3001
3068
  # * `sagemaker:variant:DesiredProvisionedConcurrency` - The provisioned
3002
3069
  # concurrency for a SageMaker Serverless endpoint.
3003
3070
  #
3071
+ # * `sagemaker:inference-component:DesiredCopyCount` - The number of
3072
+ # copies across an endpoint for a SageMaker inference component.
3073
+ #
3004
3074
  # @option params [Integer] :min_capacity
3005
3075
  # The minimum value that you plan to scale in to. When a scaling policy
3006
3076
  # is in effect, Application Auto Scaling can scale in (contract) as
@@ -3143,7 +3213,7 @@ module Aws::ApplicationAutoScaling
3143
3213
  # resp = client.register_scalable_target({
3144
3214
  # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka, elasticache, neptune
3145
3215
  # resource_id: "ResourceIdMaxLen1600", # required
3146
- # 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
3216
+ # 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
3147
3217
  # min_capacity: 1,
3148
3218
  # max_capacity: 1,
3149
3219
  # role_arn: "ResourceIdMaxLen1600",
@@ -3323,7 +3393,7 @@ module Aws::ApplicationAutoScaling
3323
3393
  params: params,
3324
3394
  config: config)
3325
3395
  context[:gem_name] = 'aws-sdk-applicationautoscaling'
3326
- context[:gem_version] = '1.78.0'
3396
+ context[:gem_version] = '1.79.0'
3327
3397
  Seahorse::Client::Request.new(handlers, context)
3328
3398
  end
3329
3399
 
@@ -32,8 +32,8 @@ module Aws::ApplicationAutoScaling
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
36
- if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
+ if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov")
37
37
  return Aws::Endpoints::Endpoint.new(url: "https://application-autoscaling.#{region}.amazonaws.com", headers: {}, properties: {})
38
38
  end
39
39
  return Aws::Endpoints::Endpoint.new(url: "https://application-autoscaling-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
@@ -212,6 +212,10 @@ module Aws::ApplicationAutoScaling
212
212
  # the unique identifier is the resource ID. Example:
213
213
  # `endpoint/my-end-point/variant/KMeansClustering`.
214
214
  #
215
+ # * SageMaker inference component - The resource type is
216
+ # `inference-component` and the unique identifier is the resource
217
+ # ID. Example: `inference-component/my-inference-component`.
218
+ #
215
219
  #
216
220
  #
217
221
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -286,6 +290,9 @@ module Aws::ApplicationAutoScaling
286
290
  #
287
291
  # * `sagemaker:variant:DesiredProvisionedConcurrency` - The
288
292
  # provisioned concurrency for a SageMaker Serverless endpoint.
293
+ #
294
+ # * `sagemaker:inference-component:DesiredCopyCount` - The number of
295
+ # copies across an endpoint for a SageMaker inference component.
289
296
  # @return [String]
290
297
  #
291
298
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeleteScalingPolicyRequest AWS API Documentation
@@ -386,6 +393,10 @@ module Aws::ApplicationAutoScaling
386
393
  # the unique identifier is the resource ID. Example:
387
394
  # `endpoint/my-end-point/variant/KMeansClustering`.
388
395
  #
396
+ # * SageMaker inference component - The resource type is
397
+ # `inference-component` and the unique identifier is the resource
398
+ # ID. Example: `inference-component/my-inference-component`.
399
+ #
389
400
  #
390
401
  #
391
402
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -460,6 +471,9 @@ module Aws::ApplicationAutoScaling
460
471
  #
461
472
  # * `sagemaker:variant:DesiredProvisionedConcurrency` - The
462
473
  # provisioned concurrency for a SageMaker Serverless endpoint.
474
+ #
475
+ # * `sagemaker:inference-component:DesiredCopyCount` - The number of
476
+ # copies across an endpoint for a SageMaker inference component.
463
477
  # @return [String]
464
478
  #
465
479
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeleteScheduledActionRequest AWS API Documentation
@@ -556,6 +570,10 @@ module Aws::ApplicationAutoScaling
556
570
  # the unique identifier is the resource ID. Example:
557
571
  # `endpoint/my-end-point/variant/KMeansClustering`.
558
572
  #
573
+ # * SageMaker inference component - The resource type is
574
+ # `inference-component` and the unique identifier is the resource
575
+ # ID. Example: `inference-component/my-inference-component`.
576
+ #
559
577
  #
560
578
  #
561
579
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -631,6 +649,9 @@ module Aws::ApplicationAutoScaling
631
649
  #
632
650
  # * `sagemaker:variant:DesiredProvisionedConcurrency` - The
633
651
  # provisioned concurrency for a SageMaker Serverless endpoint.
652
+ #
653
+ # * `sagemaker:inference-component:DesiredCopyCount` - The number of
654
+ # copies across an endpoint for a SageMaker inference component.
634
655
  # @return [String]
635
656
  #
636
657
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeregisterScalableTargetRequest AWS API Documentation
@@ -726,6 +747,10 @@ module Aws::ApplicationAutoScaling
726
747
  # the unique identifier is the resource ID. Example:
727
748
  # `endpoint/my-end-point/variant/KMeansClustering`.
728
749
  #
750
+ # * SageMaker inference component - The resource type is
751
+ # `inference-component` and the unique identifier is the resource
752
+ # ID. Example: `inference-component/my-inference-component`.
753
+ #
729
754
  #
730
755
  #
731
756
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -802,6 +827,9 @@ module Aws::ApplicationAutoScaling
802
827
  #
803
828
  # * `sagemaker:variant:DesiredProvisionedConcurrency` - The
804
829
  # provisioned concurrency for a SageMaker Serverless endpoint.
830
+ #
831
+ # * `sagemaker:inference-component:DesiredCopyCount` - The number of
832
+ # copies across an endpoint for a SageMaker inference component.
805
833
  # @return [String]
806
834
  #
807
835
  # @!attribute [rw] max_results
@@ -928,6 +956,10 @@ module Aws::ApplicationAutoScaling
928
956
  # the unique identifier is the resource ID. Example:
929
957
  # `endpoint/my-end-point/variant/KMeansClustering`.
930
958
  #
959
+ # * SageMaker inference component - The resource type is
960
+ # `inference-component` and the unique identifier is the resource
961
+ # ID. Example: `inference-component/my-inference-component`.
962
+ #
931
963
  #
932
964
  #
933
965
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -1003,6 +1035,9 @@ module Aws::ApplicationAutoScaling
1003
1035
  #
1004
1036
  # * `sagemaker:variant:DesiredProvisionedConcurrency` - The
1005
1037
  # provisioned concurrency for a SageMaker Serverless endpoint.
1038
+ #
1039
+ # * `sagemaker:inference-component:DesiredCopyCount` - The number of
1040
+ # copies across an endpoint for a SageMaker inference component.
1006
1041
  # @return [String]
1007
1042
  #
1008
1043
  # @!attribute [rw] max_results
@@ -1147,6 +1182,10 @@ module Aws::ApplicationAutoScaling
1147
1182
  # the unique identifier is the resource ID. Example:
1148
1183
  # `endpoint/my-end-point/variant/KMeansClustering`.
1149
1184
  #
1185
+ # * SageMaker inference component - The resource type is
1186
+ # `inference-component` and the unique identifier is the resource
1187
+ # ID. Example: `inference-component/my-inference-component`.
1188
+ #
1150
1189
  #
1151
1190
  #
1152
1191
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -1222,6 +1261,9 @@ module Aws::ApplicationAutoScaling
1222
1261
  #
1223
1262
  # * `sagemaker:variant:DesiredProvisionedConcurrency` - The
1224
1263
  # provisioned concurrency for a SageMaker Serverless endpoint.
1264
+ #
1265
+ # * `sagemaker:inference-component:DesiredCopyCount` - The number of
1266
+ # copies across an endpoint for a SageMaker inference component.
1225
1267
  # @return [String]
1226
1268
  #
1227
1269
  # @!attribute [rw] max_results
@@ -1353,6 +1395,10 @@ module Aws::ApplicationAutoScaling
1353
1395
  # the unique identifier is the resource ID. Example:
1354
1396
  # `endpoint/my-end-point/variant/KMeansClustering`.
1355
1397
  #
1398
+ # * SageMaker inference component - The resource type is
1399
+ # `inference-component` and the unique identifier is the resource
1400
+ # ID. Example: `inference-component/my-inference-component`.
1401
+ #
1356
1402
  #
1357
1403
  #
1358
1404
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -1428,6 +1474,9 @@ module Aws::ApplicationAutoScaling
1428
1474
  #
1429
1475
  # * `sagemaker:variant:DesiredProvisionedConcurrency` - The
1430
1476
  # provisioned concurrency for a SageMaker Serverless endpoint.
1477
+ #
1478
+ # * `sagemaker:inference-component:DesiredCopyCount` - The number of
1479
+ # copies across an endpoint for a SageMaker inference component.
1431
1480
  # @return [String]
1432
1481
  #
1433
1482
  # @!attribute [rw] max_results
@@ -1661,8 +1710,9 @@ module Aws::ApplicationAutoScaling
1661
1710
  # Only the Amazon Web Services that you're using send metrics to Amazon
1662
1711
  # CloudWatch. To determine whether a desired metric already exists by
1663
1712
  # looking up its namespace and dimension using the CloudWatch metrics
1664
- # dashboard in the console, follow the procedure in [Building dashboards
1665
- # with CloudWatch][1] in the *Application Auto Scaling User Guide*.
1713
+ # dashboard in the console, follow the procedure in [Monitor your
1714
+ # resources using CloudWatch][1] in the *Application Auto Scaling User
1715
+ # Guide*.
1666
1716
  #
1667
1717
  #
1668
1718
  #
@@ -1800,6 +1850,10 @@ module Aws::ApplicationAutoScaling
1800
1850
  # the unique identifier is the resource ID. Example:
1801
1851
  # `endpoint/my-end-point/variant/KMeansClustering`.
1802
1852
  #
1853
+ # * SageMaker inference component - The resource type is
1854
+ # `inference-component` and the unique identifier is the resource
1855
+ # ID. Example: `inference-component/my-inference-component`.
1856
+ #
1803
1857
  #
1804
1858
  #
1805
1859
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -1874,6 +1928,9 @@ module Aws::ApplicationAutoScaling
1874
1928
  #
1875
1929
  # * `sagemaker:variant:DesiredProvisionedConcurrency` - The
1876
1930
  # provisioned concurrency for a SageMaker Serverless endpoint.
1931
+ #
1932
+ # * `sagemaker:inference-component:DesiredCopyCount` - The number of
1933
+ # copies across an endpoint for a SageMaker inference component.
1877
1934
  # @return [String]
1878
1935
  #
1879
1936
  # @!attribute [rw] policy_type
@@ -1882,7 +1939,7 @@ module Aws::ApplicationAutoScaling
1882
1939
  #
1883
1940
  # The following policy types are supported:
1884
1941
  #
1885
- # `TargetTrackingScaling`—Not supported for Amazon EMR
1942
+ # `TargetTrackingScaling`—Not supported for Amazon EMR.
1886
1943
  #
1887
1944
  # `StepScaling`—Not supported for DynamoDB, Amazon Comprehend, Lambda,
1888
1945
  # Amazon Keyspaces, Amazon MSK, Amazon ElastiCache, or Neptune.
@@ -2076,6 +2133,10 @@ module Aws::ApplicationAutoScaling
2076
2133
  # the unique identifier is the resource ID. Example:
2077
2134
  # `endpoint/my-end-point/variant/KMeansClustering`.
2078
2135
  #
2136
+ # * SageMaker inference component - The resource type is
2137
+ # `inference-component` and the unique identifier is the resource
2138
+ # ID. Example: `inference-component/my-inference-component`.
2139
+ #
2079
2140
  #
2080
2141
  #
2081
2142
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -2150,6 +2211,9 @@ module Aws::ApplicationAutoScaling
2150
2211
  #
2151
2212
  # * `sagemaker:variant:DesiredProvisionedConcurrency` - The
2152
2213
  # provisioned concurrency for a SageMaker Serverless endpoint.
2214
+ #
2215
+ # * `sagemaker:inference-component:DesiredCopyCount` - The number of
2216
+ # copies across an endpoint for a SageMaker inference component.
2153
2217
  # @return [String]
2154
2218
  #
2155
2219
  # @!attribute [rw] start_time
@@ -2269,6 +2333,10 @@ module Aws::ApplicationAutoScaling
2269
2333
  # the unique identifier is the resource ID. Example:
2270
2334
  # `endpoint/my-end-point/variant/KMeansClustering`.
2271
2335
  #
2336
+ # * SageMaker inference component - The resource type is
2337
+ # `inference-component` and the unique identifier is the resource
2338
+ # ID. Example: `inference-component/my-inference-component`.
2339
+ #
2272
2340
  #
2273
2341
  #
2274
2342
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -2344,6 +2412,9 @@ module Aws::ApplicationAutoScaling
2344
2412
  #
2345
2413
  # * `sagemaker:variant:DesiredProvisionedConcurrency` - The
2346
2414
  # provisioned concurrency for a SageMaker Serverless endpoint.
2415
+ #
2416
+ # * `sagemaker:inference-component:DesiredCopyCount` - The number of
2417
+ # copies across an endpoint for a SageMaker inference component.
2347
2418
  # @return [String]
2348
2419
  #
2349
2420
  # @!attribute [rw] min_capacity
@@ -2595,6 +2666,10 @@ module Aws::ApplicationAutoScaling
2595
2666
  # the unique identifier is the resource ID. Example:
2596
2667
  # `endpoint/my-end-point/variant/KMeansClustering`.
2597
2668
  #
2669
+ # * SageMaker inference component - The resource type is
2670
+ # `inference-component` and the unique identifier is the resource
2671
+ # ID. Example: `inference-component/my-inference-component`.
2672
+ #
2598
2673
  #
2599
2674
  #
2600
2675
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -2670,6 +2745,9 @@ module Aws::ApplicationAutoScaling
2670
2745
  #
2671
2746
  # * `sagemaker:variant:DesiredProvisionedConcurrency` - The
2672
2747
  # provisioned concurrency for a SageMaker Serverless endpoint.
2748
+ #
2749
+ # * `sagemaker:inference-component:DesiredCopyCount` - The number of
2750
+ # copies across an endpoint for a SageMaker inference component.
2673
2751
  # @return [String]
2674
2752
  #
2675
2753
  # @!attribute [rw] min_capacity
@@ -2835,6 +2913,10 @@ module Aws::ApplicationAutoScaling
2835
2913
  # the unique identifier is the resource ID. Example:
2836
2914
  # `endpoint/my-end-point/variant/KMeansClustering`.
2837
2915
  #
2916
+ # * SageMaker inference component - The resource type is
2917
+ # `inference-component` and the unique identifier is the resource
2918
+ # ID. Example: `inference-component/my-inference-component`.
2919
+ #
2838
2920
  #
2839
2921
  #
2840
2922
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -2909,6 +2991,9 @@ module Aws::ApplicationAutoScaling
2909
2991
  #
2910
2992
  # * `sagemaker:variant:DesiredProvisionedConcurrency` - The
2911
2993
  # provisioned concurrency for a SageMaker Serverless endpoint.
2994
+ #
2995
+ # * `sagemaker:inference-component:DesiredCopyCount` - The number of
2996
+ # copies across an endpoint for a SageMaker inference component.
2912
2997
  # @return [String]
2913
2998
  #
2914
2999
  # @!attribute [rw] description
@@ -3066,6 +3151,10 @@ module Aws::ApplicationAutoScaling
3066
3151
  # the unique identifier is the resource ID. Example:
3067
3152
  # `endpoint/my-end-point/variant/KMeansClustering`.
3068
3153
  #
3154
+ # * SageMaker inference component - The resource type is
3155
+ # `inference-component` and the unique identifier is the resource
3156
+ # ID. Example: `inference-component/my-inference-component`.
3157
+ #
3069
3158
  #
3070
3159
  #
3071
3160
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -3140,6 +3229,9 @@ module Aws::ApplicationAutoScaling
3140
3229
  #
3141
3230
  # * `sagemaker:variant:DesiredProvisionedConcurrency` - The
3142
3231
  # provisioned concurrency for a SageMaker Serverless endpoint.
3232
+ #
3233
+ # * `sagemaker:inference-component:DesiredCopyCount` - The number of
3234
+ # copies across an endpoint for a SageMaker inference component.
3143
3235
  # @return [String]
3144
3236
  #
3145
3237
  # @!attribute [rw] policy_type
@@ -3313,6 +3405,10 @@ module Aws::ApplicationAutoScaling
3313
3405
  # the unique identifier is the resource ID. Example:
3314
3406
  # `endpoint/my-end-point/variant/KMeansClustering`.
3315
3407
  #
3408
+ # * SageMaker inference component - The resource type is
3409
+ # `inference-component` and the unique identifier is the resource
3410
+ # ID. Example: `inference-component/my-inference-component`.
3411
+ #
3316
3412
  #
3317
3413
  #
3318
3414
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -3387,6 +3483,9 @@ module Aws::ApplicationAutoScaling
3387
3483
  #
3388
3484
  # * `sagemaker:variant:DesiredProvisionedConcurrency` - The
3389
3485
  # provisioned concurrency for a SageMaker Serverless endpoint.
3486
+ #
3487
+ # * `sagemaker:inference-component:DesiredCopyCount` - The number of
3488
+ # copies across an endpoint for a SageMaker inference component.
3390
3489
  # @return [String]
3391
3490
  #
3392
3491
  # @!attribute [rw] start_time
@@ -3550,7 +3649,7 @@ module Aws::ApplicationAutoScaling
3550
3649
  #
3551
3650
  #
3552
3651
  #
3553
- # [1]: https://docs.aws.amazon.com/autoscaling/application/userguide/application-auto-scaling-step-scaling-policies.html#step-scaling-cooldown
3652
+ # [1]: https://docs.aws.amazon.com/autoscaling/application/userguide/step-scaling-policy-overview.html#step-scaling-cooldown
3554
3653
  # @return [Integer]
3555
3654
  #
3556
3655
  # @!attribute [rw] metric_aggregation_type
@@ -3879,7 +3978,7 @@ module Aws::ApplicationAutoScaling
3879
3978
  #
3880
3979
  #
3881
3980
  #
3882
- # [1]: https://docs.aws.amazon.com/autoscaling/application/userguide/application-auto-scaling-target-tracking.html#target-tracking-cooldown
3981
+ # [1]: https://docs.aws.amazon.com/autoscaling/application/userguide/target-tracking-scaling-policy-overview.html#target-tracking-cooldown
3883
3982
  # @return [Integer]
3884
3983
  #
3885
3984
  # @!attribute [rw] scale_in_cooldown
@@ -3890,7 +3989,7 @@ module Aws::ApplicationAutoScaling
3890
3989
  #
3891
3990
  #
3892
3991
  #
3893
- # [1]: https://docs.aws.amazon.com/autoscaling/application/userguide/application-auto-scaling-target-tracking.html#target-tracking-cooldown
3992
+ # [1]: https://docs.aws.amazon.com/autoscaling/application/userguide/target-tracking-scaling-policy-overview.html#target-tracking-cooldown
3894
3993
  # @return [Integer]
3895
3994
  #
3896
3995
  # @!attribute [rw] disable_scale_in
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-applicationautoscaling/customizations'
52
52
  # @!group service
53
53
  module Aws::ApplicationAutoScaling
54
54
 
55
- GEM_VERSION = '1.78.0'
55
+ GEM_VERSION = '1.79.0'
56
56
 
57
57
  end
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.78.0
4
+ version: 1.79.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-28 00:00:00.000000000 Z
11
+ date: 2023-11-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core