aws-sdk-applicationautoscaling 1.33.0 → 1.34.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.
@@ -119,9 +119,9 @@ module Aws::ApplicationAutoScaling
119
119
  #
120
120
  # {
121
121
  # policy_name: "ResourceIdMaxLen1600", # required
122
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource
122
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend
123
123
  # resource_id: "ResourceIdMaxLen1600", # required
124
- # 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
124
+ # 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
125
125
  # }
126
126
  #
127
127
  # @!attribute [rw] policy_name
@@ -159,17 +159,17 @@ module Aws::ApplicationAutoScaling
159
159
  # identifier is the fleet name. Example: `fleet/sample-fleet`.
160
160
  #
161
161
  # * DynamoDB table - The resource type is `table` and the unique
162
- # identifier is the resource ID. Example: `table/my-table`.
162
+ # identifier is the table name. Example: `table/my-table`.
163
163
  #
164
164
  # * DynamoDB global secondary index - The resource type is `index` and
165
- # the unique identifier is the resource ID. Example:
165
+ # the unique identifier is the index name. Example:
166
166
  # `table/my-table/index/my-table-index`.
167
167
  #
168
168
  # * Aurora DB cluster - The resource type is `cluster` and the unique
169
169
  # identifier is the cluster name. Example: `cluster:my-db-cluster`.
170
170
  #
171
- # * Amazon SageMaker endpoint variants - The resource type is
172
- # `variant` and the unique identifier is the resource ID. Example:
171
+ # * Amazon SageMaker endpoint variant - The resource type is `variant`
172
+ # and the unique identifier is the resource ID. Example:
173
173
  # `endpoint/my-end-point/variant/KMeansClustering`.
174
174
  #
175
175
  # * Custom resources are not supported with a resource type. This
@@ -178,6 +178,11 @@ module Aws::ApplicationAutoScaling
178
178
  # is defined by the service provider. More information is available
179
179
  # in our [GitHub repository][1].
180
180
  #
181
+ # * Amazon Comprehend document classification endpoint - The resource
182
+ # type and unique identifier are specified using the endpoint ARN.
183
+ # Example:
184
+ # `arn:aws:comprehend:us-west-2:123456789012:document-classifier-endpoint/EXAMPLE`.
185
+ #
181
186
  #
182
187
  #
183
188
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -220,6 +225,10 @@ module Aws::ApplicationAutoScaling
220
225
  #
221
226
  # * `custom-resource:ResourceType:Property` - The scalable dimension
222
227
  # for a custom resource provided by your own application or service.
228
+ #
229
+ # * `comprehend:document-classifier-endpoint:DesiredInferenceUnits` -
230
+ # The number of inference units for an Amazon Comprehend document
231
+ # classification endpoint.
223
232
  # @return [String]
224
233
  #
225
234
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeleteScalingPolicyRequest AWS API Documentation
@@ -240,10 +249,10 @@ module Aws::ApplicationAutoScaling
240
249
  # data as a hash:
241
250
  #
242
251
  # {
243
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource
252
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend
244
253
  # scheduled_action_name: "ResourceIdMaxLen1600", # required
245
254
  # resource_id: "ResourceIdMaxLen1600", # required
246
- # 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
255
+ # 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
247
256
  # }
248
257
  #
249
258
  # @!attribute [rw] service_namespace
@@ -281,17 +290,17 @@ module Aws::ApplicationAutoScaling
281
290
  # identifier is the fleet name. Example: `fleet/sample-fleet`.
282
291
  #
283
292
  # * DynamoDB table - The resource type is `table` and the unique
284
- # identifier is the resource ID. Example: `table/my-table`.
293
+ # identifier is the table name. Example: `table/my-table`.
285
294
  #
286
295
  # * DynamoDB global secondary index - The resource type is `index` and
287
- # the unique identifier is the resource ID. Example:
296
+ # the unique identifier is the index name. Example:
288
297
  # `table/my-table/index/my-table-index`.
289
298
  #
290
299
  # * Aurora DB cluster - The resource type is `cluster` and the unique
291
300
  # identifier is the cluster name. Example: `cluster:my-db-cluster`.
292
301
  #
293
- # * Amazon SageMaker endpoint variants - The resource type is
294
- # `variant` and the unique identifier is the resource ID. Example:
302
+ # * Amazon SageMaker endpoint variant - The resource type is `variant`
303
+ # and the unique identifier is the resource ID. Example:
295
304
  # `endpoint/my-end-point/variant/KMeansClustering`.
296
305
  #
297
306
  # * Custom resources are not supported with a resource type. This
@@ -300,6 +309,11 @@ module Aws::ApplicationAutoScaling
300
309
  # is defined by the service provider. More information is available
301
310
  # in our [GitHub repository][1].
302
311
  #
312
+ # * Amazon Comprehend document classification endpoint - The resource
313
+ # type and unique identifier are specified using the endpoint ARN.
314
+ # Example:
315
+ # `arn:aws:comprehend:us-west-2:123456789012:document-classifier-endpoint/EXAMPLE`.
316
+ #
303
317
  #
304
318
  #
305
319
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -342,6 +356,10 @@ module Aws::ApplicationAutoScaling
342
356
  #
343
357
  # * `custom-resource:ResourceType:Property` - The scalable dimension
344
358
  # for a custom resource provided by your own application or service.
359
+ #
360
+ # * `comprehend:document-classifier-endpoint:DesiredInferenceUnits` -
361
+ # The number of inference units for an Amazon Comprehend document
362
+ # classification endpoint.
345
363
  # @return [String]
346
364
  #
347
365
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeleteScheduledActionRequest AWS API Documentation
@@ -362,9 +380,9 @@ module Aws::ApplicationAutoScaling
362
380
  # data as a hash:
363
381
  #
364
382
  # {
365
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource
383
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend
366
384
  # resource_id: "ResourceIdMaxLen1600", # required
367
- # 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
385
+ # 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
368
386
  # }
369
387
  #
370
388
  # @!attribute [rw] service_namespace
@@ -398,17 +416,17 @@ module Aws::ApplicationAutoScaling
398
416
  # identifier is the fleet name. Example: `fleet/sample-fleet`.
399
417
  #
400
418
  # * DynamoDB table - The resource type is `table` and the unique
401
- # identifier is the resource ID. Example: `table/my-table`.
419
+ # identifier is the table name. Example: `table/my-table`.
402
420
  #
403
421
  # * DynamoDB global secondary index - The resource type is `index` and
404
- # the unique identifier is the resource ID. Example:
422
+ # the unique identifier is the index name. Example:
405
423
  # `table/my-table/index/my-table-index`.
406
424
  #
407
425
  # * Aurora DB cluster - The resource type is `cluster` and the unique
408
426
  # identifier is the cluster name. Example: `cluster:my-db-cluster`.
409
427
  #
410
- # * Amazon SageMaker endpoint variants - The resource type is
411
- # `variant` and the unique identifier is the resource ID. Example:
428
+ # * Amazon SageMaker endpoint variant - The resource type is `variant`
429
+ # and the unique identifier is the resource ID. Example:
412
430
  # `endpoint/my-end-point/variant/KMeansClustering`.
413
431
  #
414
432
  # * Custom resources are not supported with a resource type. This
@@ -417,6 +435,11 @@ module Aws::ApplicationAutoScaling
417
435
  # is defined by the service provider. More information is available
418
436
  # in our [GitHub repository][1].
419
437
  #
438
+ # * Amazon Comprehend document classification endpoint - The resource
439
+ # type and unique identifier are specified using the endpoint ARN.
440
+ # Example:
441
+ # `arn:aws:comprehend:us-west-2:123456789012:document-classifier-endpoint/EXAMPLE`.
442
+ #
420
443
  #
421
444
  #
422
445
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -460,6 +483,10 @@ module Aws::ApplicationAutoScaling
460
483
  #
461
484
  # * `custom-resource:ResourceType:Property` - The scalable dimension
462
485
  # for a custom resource provided by your own application or service.
486
+ #
487
+ # * `comprehend:document-classifier-endpoint:DesiredInferenceUnits` -
488
+ # The number of inference units for an Amazon Comprehend document
489
+ # classification endpoint.
463
490
  # @return [String]
464
491
  #
465
492
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeregisterScalableTargetRequest AWS API Documentation
@@ -479,9 +506,9 @@ module Aws::ApplicationAutoScaling
479
506
  # data as a hash:
480
507
  #
481
508
  # {
482
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource
509
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend
483
510
  # resource_ids: ["ResourceIdMaxLen1600"],
484
- # 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
511
+ # 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
485
512
  # max_results: 1,
486
513
  # next_token: "XmlString",
487
514
  # }
@@ -519,17 +546,17 @@ module Aws::ApplicationAutoScaling
519
546
  # identifier is the fleet name. Example: `fleet/sample-fleet`.
520
547
  #
521
548
  # * DynamoDB table - The resource type is `table` and the unique
522
- # identifier is the resource ID. Example: `table/my-table`.
549
+ # identifier is the table name. Example: `table/my-table`.
523
550
  #
524
551
  # * DynamoDB global secondary index - The resource type is `index` and
525
- # the unique identifier is the resource ID. Example:
552
+ # the unique identifier is the index name. Example:
526
553
  # `table/my-table/index/my-table-index`.
527
554
  #
528
555
  # * Aurora DB cluster - The resource type is `cluster` and the unique
529
556
  # identifier is the cluster name. Example: `cluster:my-db-cluster`.
530
557
  #
531
- # * Amazon SageMaker endpoint variants - The resource type is
532
- # `variant` and the unique identifier is the resource ID. Example:
558
+ # * Amazon SageMaker endpoint variant - The resource type is `variant`
559
+ # and the unique identifier is the resource ID. Example:
533
560
  # `endpoint/my-end-point/variant/KMeansClustering`.
534
561
  #
535
562
  # * Custom resources are not supported with a resource type. This
@@ -538,6 +565,11 @@ module Aws::ApplicationAutoScaling
538
565
  # is defined by the service provider. More information is available
539
566
  # in our [GitHub repository][1].
540
567
  #
568
+ # * Amazon Comprehend document classification endpoint - The resource
569
+ # type and unique identifier are specified using the endpoint ARN.
570
+ # Example:
571
+ # `arn:aws:comprehend:us-west-2:123456789012:document-classifier-endpoint/EXAMPLE`.
572
+ #
541
573
  #
542
574
  #
543
575
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -582,6 +614,10 @@ module Aws::ApplicationAutoScaling
582
614
  #
583
615
  # * `custom-resource:ResourceType:Property` - The scalable dimension
584
616
  # for a custom resource provided by your own application or service.
617
+ #
618
+ # * `comprehend:document-classifier-endpoint:DesiredInferenceUnits` -
619
+ # The number of inference units for an Amazon Comprehend document
620
+ # classification endpoint.
585
621
  # @return [String]
586
622
  #
587
623
  # @!attribute [rw] max_results
@@ -631,9 +667,9 @@ module Aws::ApplicationAutoScaling
631
667
  # data as a hash:
632
668
  #
633
669
  # {
634
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource
670
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend
635
671
  # resource_id: "ResourceIdMaxLen1600",
636
- # 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
672
+ # 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
637
673
  # max_results: 1,
638
674
  # next_token: "XmlString",
639
675
  # }
@@ -671,17 +707,17 @@ module Aws::ApplicationAutoScaling
671
707
  # identifier is the fleet name. Example: `fleet/sample-fleet`.
672
708
  #
673
709
  # * DynamoDB table - The resource type is `table` and the unique
674
- # identifier is the resource ID. Example: `table/my-table`.
710
+ # identifier is the table name. Example: `table/my-table`.
675
711
  #
676
712
  # * DynamoDB global secondary index - The resource type is `index` and
677
- # the unique identifier is the resource ID. Example:
713
+ # the unique identifier is the index name. Example:
678
714
  # `table/my-table/index/my-table-index`.
679
715
  #
680
716
  # * Aurora DB cluster - The resource type is `cluster` and the unique
681
717
  # identifier is the cluster name. Example: `cluster:my-db-cluster`.
682
718
  #
683
- # * Amazon SageMaker endpoint variants - The resource type is
684
- # `variant` and the unique identifier is the resource ID. Example:
719
+ # * Amazon SageMaker endpoint variant - The resource type is `variant`
720
+ # and the unique identifier is the resource ID. Example:
685
721
  # `endpoint/my-end-point/variant/KMeansClustering`.
686
722
  #
687
723
  # * Custom resources are not supported with a resource type. This
@@ -690,6 +726,11 @@ module Aws::ApplicationAutoScaling
690
726
  # is defined by the service provider. More information is available
691
727
  # in our [GitHub repository][1].
692
728
  #
729
+ # * Amazon Comprehend document classification endpoint - The resource
730
+ # type and unique identifier are specified using the endpoint ARN.
731
+ # Example:
732
+ # `arn:aws:comprehend:us-west-2:123456789012:document-classifier-endpoint/EXAMPLE`.
733
+ #
693
734
  #
694
735
  #
695
736
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -733,6 +774,10 @@ module Aws::ApplicationAutoScaling
733
774
  #
734
775
  # * `custom-resource:ResourceType:Property` - The scalable dimension
735
776
  # for a custom resource provided by your own application or service.
777
+ #
778
+ # * `comprehend:document-classifier-endpoint:DesiredInferenceUnits` -
779
+ # The number of inference units for an Amazon Comprehend document
780
+ # classification endpoint.
736
781
  # @return [String]
737
782
  #
738
783
  # @!attribute [rw] max_results
@@ -783,9 +828,9 @@ module Aws::ApplicationAutoScaling
783
828
  #
784
829
  # {
785
830
  # policy_names: ["ResourceIdMaxLen1600"],
786
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource
831
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend
787
832
  # resource_id: "ResourceIdMaxLen1600",
788
- # 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
833
+ # 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
789
834
  # max_results: 1,
790
835
  # next_token: "XmlString",
791
836
  # }
@@ -827,17 +872,17 @@ module Aws::ApplicationAutoScaling
827
872
  # identifier is the fleet name. Example: `fleet/sample-fleet`.
828
873
  #
829
874
  # * DynamoDB table - The resource type is `table` and the unique
830
- # identifier is the resource ID. Example: `table/my-table`.
875
+ # identifier is the table name. Example: `table/my-table`.
831
876
  #
832
877
  # * DynamoDB global secondary index - The resource type is `index` and
833
- # the unique identifier is the resource ID. Example:
878
+ # the unique identifier is the index name. Example:
834
879
  # `table/my-table/index/my-table-index`.
835
880
  #
836
881
  # * Aurora DB cluster - The resource type is `cluster` and the unique
837
882
  # identifier is the cluster name. Example: `cluster:my-db-cluster`.
838
883
  #
839
- # * Amazon SageMaker endpoint variants - The resource type is
840
- # `variant` and the unique identifier is the resource ID. Example:
884
+ # * Amazon SageMaker endpoint variant - The resource type is `variant`
885
+ # and the unique identifier is the resource ID. Example:
841
886
  # `endpoint/my-end-point/variant/KMeansClustering`.
842
887
  #
843
888
  # * Custom resources are not supported with a resource type. This
@@ -846,6 +891,11 @@ module Aws::ApplicationAutoScaling
846
891
  # is defined by the service provider. More information is available
847
892
  # in our [GitHub repository][1].
848
893
  #
894
+ # * Amazon Comprehend document classification endpoint - The resource
895
+ # type and unique identifier are specified using the endpoint ARN.
896
+ # Example:
897
+ # `arn:aws:comprehend:us-west-2:123456789012:document-classifier-endpoint/EXAMPLE`.
898
+ #
849
899
  #
850
900
  #
851
901
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -889,6 +939,10 @@ module Aws::ApplicationAutoScaling
889
939
  #
890
940
  # * `custom-resource:ResourceType:Property` - The scalable dimension
891
941
  # for a custom resource provided by your own application or service.
942
+ #
943
+ # * `comprehend:document-classifier-endpoint:DesiredInferenceUnits` -
944
+ # The number of inference units for an Amazon Comprehend document
945
+ # classification endpoint.
892
946
  # @return [String]
893
947
  #
894
948
  # @!attribute [rw] max_results
@@ -940,9 +994,9 @@ module Aws::ApplicationAutoScaling
940
994
  #
941
995
  # {
942
996
  # scheduled_action_names: ["ResourceIdMaxLen1600"],
943
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource
997
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend
944
998
  # resource_id: "ResourceIdMaxLen1600",
945
- # 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
999
+ # 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
946
1000
  # max_results: 1,
947
1001
  # next_token: "XmlString",
948
1002
  # }
@@ -984,17 +1038,17 @@ module Aws::ApplicationAutoScaling
984
1038
  # identifier is the fleet name. Example: `fleet/sample-fleet`.
985
1039
  #
986
1040
  # * DynamoDB table - The resource type is `table` and the unique
987
- # identifier is the resource ID. Example: `table/my-table`.
1041
+ # identifier is the table name. Example: `table/my-table`.
988
1042
  #
989
1043
  # * DynamoDB global secondary index - The resource type is `index` and
990
- # the unique identifier is the resource ID. Example:
1044
+ # the unique identifier is the index name. Example:
991
1045
  # `table/my-table/index/my-table-index`.
992
1046
  #
993
1047
  # * Aurora DB cluster - The resource type is `cluster` and the unique
994
1048
  # identifier is the cluster name. Example: `cluster:my-db-cluster`.
995
1049
  #
996
- # * Amazon SageMaker endpoint variants - The resource type is
997
- # `variant` and the unique identifier is the resource ID. Example:
1050
+ # * Amazon SageMaker endpoint variant - The resource type is `variant`
1051
+ # and the unique identifier is the resource ID. Example:
998
1052
  # `endpoint/my-end-point/variant/KMeansClustering`.
999
1053
  #
1000
1054
  # * Custom resources are not supported with a resource type. This
@@ -1003,6 +1057,11 @@ module Aws::ApplicationAutoScaling
1003
1057
  # is defined by the service provider. More information is available
1004
1058
  # in our [GitHub repository][1].
1005
1059
  #
1060
+ # * Amazon Comprehend document classification endpoint - The resource
1061
+ # type and unique identifier are specified using the endpoint ARN.
1062
+ # Example:
1063
+ # `arn:aws:comprehend:us-west-2:123456789012:document-classifier-endpoint/EXAMPLE`.
1064
+ #
1006
1065
  #
1007
1066
  #
1008
1067
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -1046,6 +1105,10 @@ module Aws::ApplicationAutoScaling
1046
1105
  #
1047
1106
  # * `custom-resource:ResourceType:Property` - The scalable dimension
1048
1107
  # for a custom resource provided by your own application or service.
1108
+ #
1109
+ # * `comprehend:document-classifier-endpoint:DesiredInferenceUnits` -
1110
+ # The number of inference units for an Amazon Comprehend document
1111
+ # classification endpoint.
1049
1112
  # @return [String]
1050
1113
  #
1051
1114
  # @!attribute [rw] max_results
@@ -1203,7 +1266,7 @@ module Aws::ApplicationAutoScaling
1203
1266
  # data as a hash:
1204
1267
  #
1205
1268
  # {
1206
- # predefined_metric_type: "DynamoDBReadCapacityUtilization", # required, accepts DynamoDBReadCapacityUtilization, DynamoDBWriteCapacityUtilization, ALBRequestCountPerTarget, RDSReaderAverageCPUUtilization, RDSReaderAverageDatabaseConnections, EC2SpotFleetRequestAverageCPUUtilization, EC2SpotFleetRequestAverageNetworkIn, EC2SpotFleetRequestAverageNetworkOut, SageMakerVariantInvocationsPerInstance, ECSServiceAverageCPUUtilization, ECSServiceAverageMemoryUtilization
1269
+ # predefined_metric_type: "DynamoDBReadCapacityUtilization", # required, accepts DynamoDBReadCapacityUtilization, DynamoDBWriteCapacityUtilization, ALBRequestCountPerTarget, RDSReaderAverageCPUUtilization, RDSReaderAverageDatabaseConnections, EC2SpotFleetRequestAverageCPUUtilization, EC2SpotFleetRequestAverageNetworkIn, EC2SpotFleetRequestAverageNetworkOut, SageMakerVariantInvocationsPerInstance, ECSServiceAverageCPUUtilization, ECSServiceAverageMemoryUtilization, AppStreamAverageCapacityUtilization, ComprehendInferenceUtilization
1207
1270
  # resource_label: "ResourceLabel",
1208
1271
  # }
1209
1272
  #
@@ -1242,9 +1305,9 @@ module Aws::ApplicationAutoScaling
1242
1305
  #
1243
1306
  # {
1244
1307
  # policy_name: "PolicyName", # required
1245
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource
1308
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend
1246
1309
  # resource_id: "ResourceIdMaxLen1600", # required
1247
- # 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
1310
+ # 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
1248
1311
  # policy_type: "StepScaling", # accepts StepScaling, TargetTrackingScaling
1249
1312
  # step_scaling_policy_configuration: {
1250
1313
  # adjustment_type: "ChangeInCapacity", # accepts ChangeInCapacity, PercentChangeInCapacity, ExactCapacity
@@ -1262,7 +1325,7 @@ module Aws::ApplicationAutoScaling
1262
1325
  # target_tracking_scaling_policy_configuration: {
1263
1326
  # target_value: 1.0, # required
1264
1327
  # predefined_metric_specification: {
1265
- # predefined_metric_type: "DynamoDBReadCapacityUtilization", # required, accepts DynamoDBReadCapacityUtilization, DynamoDBWriteCapacityUtilization, ALBRequestCountPerTarget, RDSReaderAverageCPUUtilization, RDSReaderAverageDatabaseConnections, EC2SpotFleetRequestAverageCPUUtilization, EC2SpotFleetRequestAverageNetworkIn, EC2SpotFleetRequestAverageNetworkOut, SageMakerVariantInvocationsPerInstance, ECSServiceAverageCPUUtilization, ECSServiceAverageMemoryUtilization
1328
+ # predefined_metric_type: "DynamoDBReadCapacityUtilization", # required, accepts DynamoDBReadCapacityUtilization, DynamoDBWriteCapacityUtilization, ALBRequestCountPerTarget, RDSReaderAverageCPUUtilization, RDSReaderAverageDatabaseConnections, EC2SpotFleetRequestAverageCPUUtilization, EC2SpotFleetRequestAverageNetworkIn, EC2SpotFleetRequestAverageNetworkOut, SageMakerVariantInvocationsPerInstance, ECSServiceAverageCPUUtilization, ECSServiceAverageMemoryUtilization, AppStreamAverageCapacityUtilization, ComprehendInferenceUtilization
1266
1329
  # resource_label: "ResourceLabel",
1267
1330
  # },
1268
1331
  # customized_metric_specification: {
@@ -1318,17 +1381,17 @@ module Aws::ApplicationAutoScaling
1318
1381
  # identifier is the fleet name. Example: `fleet/sample-fleet`.
1319
1382
  #
1320
1383
  # * DynamoDB table - The resource type is `table` and the unique
1321
- # identifier is the resource ID. Example: `table/my-table`.
1384
+ # identifier is the table name. Example: `table/my-table`.
1322
1385
  #
1323
1386
  # * DynamoDB global secondary index - The resource type is `index` and
1324
- # the unique identifier is the resource ID. Example:
1387
+ # the unique identifier is the index name. Example:
1325
1388
  # `table/my-table/index/my-table-index`.
1326
1389
  #
1327
1390
  # * Aurora DB cluster - The resource type is `cluster` and the unique
1328
1391
  # identifier is the cluster name. Example: `cluster:my-db-cluster`.
1329
1392
  #
1330
- # * Amazon SageMaker endpoint variants - The resource type is
1331
- # `variant` and the unique identifier is the resource ID. Example:
1393
+ # * Amazon SageMaker endpoint variant - The resource type is `variant`
1394
+ # and the unique identifier is the resource ID. Example:
1332
1395
  # `endpoint/my-end-point/variant/KMeansClustering`.
1333
1396
  #
1334
1397
  # * Custom resources are not supported with a resource type. This
@@ -1337,6 +1400,11 @@ module Aws::ApplicationAutoScaling
1337
1400
  # is defined by the service provider. More information is available
1338
1401
  # in our [GitHub repository][1].
1339
1402
  #
1403
+ # * Amazon Comprehend document classification endpoint - The resource
1404
+ # type and unique identifier are specified using the endpoint ARN.
1405
+ # Example:
1406
+ # `arn:aws:comprehend:us-west-2:123456789012:document-classifier-endpoint/EXAMPLE`.
1407
+ #
1340
1408
  #
1341
1409
  #
1342
1410
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -1379,6 +1447,10 @@ module Aws::ApplicationAutoScaling
1379
1447
  #
1380
1448
  # * `custom-resource:ResourceType:Property` - The scalable dimension
1381
1449
  # for a custom resource provided by your own application or service.
1450
+ #
1451
+ # * `comprehend:document-classifier-endpoint:DesiredInferenceUnits` -
1452
+ # The number of inference units for an Amazon Comprehend document
1453
+ # classification endpoint.
1382
1454
  # @return [String]
1383
1455
  #
1384
1456
  # @!attribute [rw] policy_type
@@ -1387,9 +1459,9 @@ module Aws::ApplicationAutoScaling
1387
1459
  #
1388
1460
  # The following policy types are supported:
1389
1461
  #
1390
- # `TargetTrackingScaling`—Not supported for Amazon EMR or AppStream
1462
+ # `TargetTrackingScaling`—Not supported for Amazon EMR
1391
1463
  #
1392
- # `StepScaling`—Not supported for Amazon DynamoDB
1464
+ # `StepScaling`—Not supported for DynamoDB or Amazon Comprehend
1393
1465
  #
1394
1466
  # For more information, see [Target Tracking Scaling Policies][1] and
1395
1467
  # [Step Scaling Policies][2] in the *Application Auto Scaling User
@@ -1450,11 +1522,11 @@ module Aws::ApplicationAutoScaling
1450
1522
  # data as a hash:
1451
1523
  #
1452
1524
  # {
1453
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource
1525
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend
1454
1526
  # schedule: "ResourceIdMaxLen1600",
1455
1527
  # scheduled_action_name: "ScheduledActionName", # required
1456
1528
  # resource_id: "ResourceIdMaxLen1600", # required
1457
- # 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
1529
+ # 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
1458
1530
  # start_time: Time.now,
1459
1531
  # end_time: Time.now,
1460
1532
  # scalable_target_action: {
@@ -1521,17 +1593,17 @@ module Aws::ApplicationAutoScaling
1521
1593
  # identifier is the fleet name. Example: `fleet/sample-fleet`.
1522
1594
  #
1523
1595
  # * DynamoDB table - The resource type is `table` and the unique
1524
- # identifier is the resource ID. Example: `table/my-table`.
1596
+ # identifier is the table name. Example: `table/my-table`.
1525
1597
  #
1526
1598
  # * DynamoDB global secondary index - The resource type is `index` and
1527
- # the unique identifier is the resource ID. Example:
1599
+ # the unique identifier is the index name. Example:
1528
1600
  # `table/my-table/index/my-table-index`.
1529
1601
  #
1530
1602
  # * Aurora DB cluster - The resource type is `cluster` and the unique
1531
1603
  # identifier is the cluster name. Example: `cluster:my-db-cluster`.
1532
1604
  #
1533
- # * Amazon SageMaker endpoint variants - The resource type is
1534
- # `variant` and the unique identifier is the resource ID. Example:
1605
+ # * Amazon SageMaker endpoint variant - The resource type is `variant`
1606
+ # and the unique identifier is the resource ID. Example:
1535
1607
  # `endpoint/my-end-point/variant/KMeansClustering`.
1536
1608
  #
1537
1609
  # * Custom resources are not supported with a resource type. This
@@ -1540,6 +1612,11 @@ module Aws::ApplicationAutoScaling
1540
1612
  # is defined by the service provider. More information is available
1541
1613
  # in our [GitHub repository][1].
1542
1614
  #
1615
+ # * Amazon Comprehend document classification endpoint - The resource
1616
+ # type and unique identifier are specified using the endpoint ARN.
1617
+ # Example:
1618
+ # `arn:aws:comprehend:us-west-2:123456789012:document-classifier-endpoint/EXAMPLE`.
1619
+ #
1543
1620
  #
1544
1621
  #
1545
1622
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -1582,6 +1659,10 @@ module Aws::ApplicationAutoScaling
1582
1659
  #
1583
1660
  # * `custom-resource:ResourceType:Property` - The scalable dimension
1584
1661
  # for a custom resource provided by your own application or service.
1662
+ #
1663
+ # * `comprehend:document-classifier-endpoint:DesiredInferenceUnits` -
1664
+ # The number of inference units for an Amazon Comprehend document
1665
+ # classification endpoint.
1585
1666
  # @return [String]
1586
1667
  #
1587
1668
  # @!attribute [rw] start_time
@@ -1623,9 +1704,9 @@ module Aws::ApplicationAutoScaling
1623
1704
  # data as a hash:
1624
1705
  #
1625
1706
  # {
1626
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource
1707
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend
1627
1708
  # resource_id: "ResourceIdMaxLen1600", # required
1628
- # scalable_dimension: "ecs:service:DesiredCount", # required, accepts ecs:service:DesiredCount, ec2:spot-fleet-request:TargetCapacity, elasticmapreduce:instancegroup:InstanceCount, appstream:fleet:DesiredCapacity, dynamodb:table:ReadCapacityUnits, dynamodb:table:WriteCapacityUnits, dynamodb:index:ReadCapacityUnits, dynamodb:index:WriteCapacityUnits, rds:cluster:ReadReplicaCount, sagemaker:variant:DesiredInstanceCount, custom-resource:ResourceType:Property
1709
+ # 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
1629
1710
  # min_capacity: 1,
1630
1711
  # max_capacity: 1,
1631
1712
  # role_arn: "ResourceIdMaxLen1600",
@@ -1668,17 +1749,17 @@ module Aws::ApplicationAutoScaling
1668
1749
  # identifier is the fleet name. Example: `fleet/sample-fleet`.
1669
1750
  #
1670
1751
  # * DynamoDB table - The resource type is `table` and the unique
1671
- # identifier is the resource ID. Example: `table/my-table`.
1752
+ # identifier is the table name. Example: `table/my-table`.
1672
1753
  #
1673
1754
  # * DynamoDB global secondary index - The resource type is `index` and
1674
- # the unique identifier is the resource ID. Example:
1755
+ # the unique identifier is the index name. Example:
1675
1756
  # `table/my-table/index/my-table-index`.
1676
1757
  #
1677
1758
  # * Aurora DB cluster - The resource type is `cluster` and the unique
1678
1759
  # identifier is the cluster name. Example: `cluster:my-db-cluster`.
1679
1760
  #
1680
- # * Amazon SageMaker endpoint variants - The resource type is
1681
- # `variant` and the unique identifier is the resource ID. Example:
1761
+ # * Amazon SageMaker endpoint variant - The resource type is `variant`
1762
+ # and the unique identifier is the resource ID. Example:
1682
1763
  # `endpoint/my-end-point/variant/KMeansClustering`.
1683
1764
  #
1684
1765
  # * Custom resources are not supported with a resource type. This
@@ -1687,6 +1768,11 @@ module Aws::ApplicationAutoScaling
1687
1768
  # is defined by the service provider. More information is available
1688
1769
  # in our [GitHub repository][1].
1689
1770
  #
1771
+ # * Amazon Comprehend document classification endpoint - The resource
1772
+ # type and unique identifier are specified using the endpoint ARN.
1773
+ # Example:
1774
+ # `arn:aws:comprehend:us-west-2:123456789012:document-classifier-endpoint/EXAMPLE`.
1775
+ #
1690
1776
  #
1691
1777
  #
1692
1778
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -1730,6 +1816,10 @@ module Aws::ApplicationAutoScaling
1730
1816
  #
1731
1817
  # * `custom-resource:ResourceType:Property` - The scalable dimension
1732
1818
  # for a custom resource provided by your own application or service.
1819
+ #
1820
+ # * `comprehend:document-classifier-endpoint:DesiredInferenceUnits` -
1821
+ # The number of inference units for an Amazon Comprehend document
1822
+ # classification endpoint.
1733
1823
  # @return [String]
1734
1824
  #
1735
1825
  # @!attribute [rw] min_capacity
@@ -1778,8 +1868,8 @@ module Aws::ApplicationAutoScaling
1778
1868
  # all scaling activities that involve scheduled actions are
1779
1869
  # suspended.
1780
1870
  #
1781
- # For more information, see [Suspend and Resume Application Auto
1782
- # Scaling][1] in the *Application Auto Scaling User Guide*.
1871
+ # For more information, see [Suspending and Resuming Scaling][1] in
1872
+ # the *Application Auto Scaling User Guide*.
1783
1873
  #
1784
1874
  #
1785
1875
  #
@@ -1836,17 +1926,17 @@ module Aws::ApplicationAutoScaling
1836
1926
  # identifier is the fleet name. Example: `fleet/sample-fleet`.
1837
1927
  #
1838
1928
  # * DynamoDB table - The resource type is `table` and the unique
1839
- # identifier is the resource ID. Example: `table/my-table`.
1929
+ # identifier is the table name. Example: `table/my-table`.
1840
1930
  #
1841
1931
  # * DynamoDB global secondary index - The resource type is `index` and
1842
- # the unique identifier is the resource ID. Example:
1932
+ # the unique identifier is the index name. Example:
1843
1933
  # `table/my-table/index/my-table-index`.
1844
1934
  #
1845
1935
  # * Aurora DB cluster - The resource type is `cluster` and the unique
1846
1936
  # identifier is the cluster name. Example: `cluster:my-db-cluster`.
1847
1937
  #
1848
- # * Amazon SageMaker endpoint variants - The resource type is
1849
- # `variant` and the unique identifier is the resource ID. Example:
1938
+ # * Amazon SageMaker endpoint variant - The resource type is `variant`
1939
+ # and the unique identifier is the resource ID. Example:
1850
1940
  # `endpoint/my-end-point/variant/KMeansClustering`.
1851
1941
  #
1852
1942
  # * Custom resources are not supported with a resource type. This
@@ -1855,6 +1945,11 @@ module Aws::ApplicationAutoScaling
1855
1945
  # is defined by the service provider. More information is available
1856
1946
  # in our [GitHub repository][1].
1857
1947
  #
1948
+ # * Amazon Comprehend document classification endpoint - The resource
1949
+ # type and unique identifier are specified using the endpoint ARN.
1950
+ # Example:
1951
+ # `arn:aws:comprehend:us-west-2:123456789012:document-classifier-endpoint/EXAMPLE`.
1952
+ #
1858
1953
  #
1859
1954
  #
1860
1955
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -1898,6 +1993,10 @@ module Aws::ApplicationAutoScaling
1898
1993
  #
1899
1994
  # * `custom-resource:ResourceType:Property` - The scalable dimension
1900
1995
  # for a custom resource provided by your own application or service.
1996
+ #
1997
+ # * `comprehend:document-classifier-endpoint:DesiredInferenceUnits` -
1998
+ # The number of inference units for an Amazon Comprehend document
1999
+ # classification endpoint.
1901
2000
  # @return [String]
1902
2001
  #
1903
2002
  # @!attribute [rw] min_capacity
@@ -1999,17 +2098,17 @@ module Aws::ApplicationAutoScaling
1999
2098
  # identifier is the fleet name. Example: `fleet/sample-fleet`.
2000
2099
  #
2001
2100
  # * DynamoDB table - The resource type is `table` and the unique
2002
- # identifier is the resource ID. Example: `table/my-table`.
2101
+ # identifier is the table name. Example: `table/my-table`.
2003
2102
  #
2004
2103
  # * DynamoDB global secondary index - The resource type is `index` and
2005
- # the unique identifier is the resource ID. Example:
2104
+ # the unique identifier is the index name. Example:
2006
2105
  # `table/my-table/index/my-table-index`.
2007
2106
  #
2008
2107
  # * Aurora DB cluster - The resource type is `cluster` and the unique
2009
2108
  # identifier is the cluster name. Example: `cluster:my-db-cluster`.
2010
2109
  #
2011
- # * Amazon SageMaker endpoint variants - The resource type is
2012
- # `variant` and the unique identifier is the resource ID. Example:
2110
+ # * Amazon SageMaker endpoint variant - The resource type is `variant`
2111
+ # and the unique identifier is the resource ID. Example:
2013
2112
  # `endpoint/my-end-point/variant/KMeansClustering`.
2014
2113
  #
2015
2114
  # * Custom resources are not supported with a resource type. This
@@ -2018,6 +2117,11 @@ module Aws::ApplicationAutoScaling
2018
2117
  # is defined by the service provider. More information is available
2019
2118
  # in our [GitHub repository][1].
2020
2119
  #
2120
+ # * Amazon Comprehend document classification endpoint - The resource
2121
+ # type and unique identifier are specified using the endpoint ARN.
2122
+ # Example:
2123
+ # `arn:aws:comprehend:us-west-2:123456789012:document-classifier-endpoint/EXAMPLE`.
2124
+ #
2021
2125
  #
2022
2126
  #
2023
2127
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -2060,6 +2164,10 @@ module Aws::ApplicationAutoScaling
2060
2164
  #
2061
2165
  # * `custom-resource:ResourceType:Property` - The scalable dimension
2062
2166
  # for a custom resource provided by your own application or service.
2167
+ #
2168
+ # * `comprehend:document-classifier-endpoint:DesiredInferenceUnits` -
2169
+ # The number of inference units for an Amazon Comprehend document
2170
+ # classification endpoint.
2063
2171
  # @return [String]
2064
2172
  #
2065
2173
  # @!attribute [rw] description
@@ -2149,17 +2257,17 @@ module Aws::ApplicationAutoScaling
2149
2257
  # identifier is the fleet name. Example: `fleet/sample-fleet`.
2150
2258
  #
2151
2259
  # * DynamoDB table - The resource type is `table` and the unique
2152
- # identifier is the resource ID. Example: `table/my-table`.
2260
+ # identifier is the table name. Example: `table/my-table`.
2153
2261
  #
2154
2262
  # * DynamoDB global secondary index - The resource type is `index` and
2155
- # the unique identifier is the resource ID. Example:
2263
+ # the unique identifier is the index name. Example:
2156
2264
  # `table/my-table/index/my-table-index`.
2157
2265
  #
2158
2266
  # * Aurora DB cluster - The resource type is `cluster` and the unique
2159
2267
  # identifier is the cluster name. Example: `cluster:my-db-cluster`.
2160
2268
  #
2161
- # * Amazon SageMaker endpoint variants - The resource type is
2162
- # `variant` and the unique identifier is the resource ID. Example:
2269
+ # * Amazon SageMaker endpoint variant - The resource type is `variant`
2270
+ # and the unique identifier is the resource ID. Example:
2163
2271
  # `endpoint/my-end-point/variant/KMeansClustering`.
2164
2272
  #
2165
2273
  # * Custom resources are not supported with a resource type. This
@@ -2168,6 +2276,11 @@ module Aws::ApplicationAutoScaling
2168
2276
  # is defined by the service provider. More information is available
2169
2277
  # in our [GitHub repository][1].
2170
2278
  #
2279
+ # * Amazon Comprehend document classification endpoint - The resource
2280
+ # type and unique identifier are specified using the endpoint ARN.
2281
+ # Example:
2282
+ # `arn:aws:comprehend:us-west-2:123456789012:document-classifier-endpoint/EXAMPLE`.
2283
+ #
2171
2284
  #
2172
2285
  #
2173
2286
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -2210,6 +2323,10 @@ module Aws::ApplicationAutoScaling
2210
2323
  #
2211
2324
  # * `custom-resource:ResourceType:Property` - The scalable dimension
2212
2325
  # for a custom resource provided by your own application or service.
2326
+ #
2327
+ # * `comprehend:document-classifier-endpoint:DesiredInferenceUnits` -
2328
+ # The number of inference units for an Amazon Comprehend document
2329
+ # classification endpoint.
2213
2330
  # @return [String]
2214
2331
  #
2215
2332
  # @!attribute [rw] policy_type
@@ -2312,17 +2429,17 @@ module Aws::ApplicationAutoScaling
2312
2429
  # identifier is the fleet name. Example: `fleet/sample-fleet`.
2313
2430
  #
2314
2431
  # * DynamoDB table - The resource type is `table` and the unique
2315
- # identifier is the resource ID. Example: `table/my-table`.
2432
+ # identifier is the table name. Example: `table/my-table`.
2316
2433
  #
2317
2434
  # * DynamoDB global secondary index - The resource type is `index` and
2318
- # the unique identifier is the resource ID. Example:
2435
+ # the unique identifier is the index name. Example:
2319
2436
  # `table/my-table/index/my-table-index`.
2320
2437
  #
2321
2438
  # * Aurora DB cluster - The resource type is `cluster` and the unique
2322
2439
  # identifier is the cluster name. Example: `cluster:my-db-cluster`.
2323
2440
  #
2324
- # * Amazon SageMaker endpoint variants - The resource type is
2325
- # `variant` and the unique identifier is the resource ID. Example:
2441
+ # * Amazon SageMaker endpoint variant - The resource type is `variant`
2442
+ # and the unique identifier is the resource ID. Example:
2326
2443
  # `endpoint/my-end-point/variant/KMeansClustering`.
2327
2444
  #
2328
2445
  # * Custom resources are not supported with a resource type. This
@@ -2331,6 +2448,11 @@ module Aws::ApplicationAutoScaling
2331
2448
  # is defined by the service provider. More information is available
2332
2449
  # in our [GitHub repository][1].
2333
2450
  #
2451
+ # * Amazon Comprehend document classification endpoint - The resource
2452
+ # type and unique identifier are specified using the endpoint ARN.
2453
+ # Example:
2454
+ # `arn:aws:comprehend:us-west-2:123456789012:document-classifier-endpoint/EXAMPLE`.
2455
+ #
2334
2456
  #
2335
2457
  #
2336
2458
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -2373,6 +2495,10 @@ module Aws::ApplicationAutoScaling
2373
2495
  #
2374
2496
  # * `custom-resource:ResourceType:Property` - The scalable dimension
2375
2497
  # for a custom resource provided by your own application or service.
2498
+ #
2499
+ # * `comprehend:document-classifier-endpoint:DesiredInferenceUnits` -
2500
+ # The number of inference units for an Amazon Comprehend document
2501
+ # classification endpoint.
2376
2502
  # @return [String]
2377
2503
  #
2378
2504
  # @!attribute [rw] start_time
@@ -2624,7 +2750,7 @@ module Aws::ApplicationAutoScaling
2624
2750
  # {
2625
2751
  # target_value: 1.0, # required
2626
2752
  # predefined_metric_specification: {
2627
- # predefined_metric_type: "DynamoDBReadCapacityUtilization", # required, accepts DynamoDBReadCapacityUtilization, DynamoDBWriteCapacityUtilization, ALBRequestCountPerTarget, RDSReaderAverageCPUUtilization, RDSReaderAverageDatabaseConnections, EC2SpotFleetRequestAverageCPUUtilization, EC2SpotFleetRequestAverageNetworkIn, EC2SpotFleetRequestAverageNetworkOut, SageMakerVariantInvocationsPerInstance, ECSServiceAverageCPUUtilization, ECSServiceAverageMemoryUtilization
2753
+ # predefined_metric_type: "DynamoDBReadCapacityUtilization", # required, accepts DynamoDBReadCapacityUtilization, DynamoDBWriteCapacityUtilization, ALBRequestCountPerTarget, RDSReaderAverageCPUUtilization, RDSReaderAverageDatabaseConnections, EC2SpotFleetRequestAverageCPUUtilization, EC2SpotFleetRequestAverageNetworkIn, EC2SpotFleetRequestAverageNetworkOut, SageMakerVariantInvocationsPerInstance, ECSServiceAverageCPUUtilization, ECSServiceAverageMemoryUtilization, AppStreamAverageCapacityUtilization, ComprehendInferenceUtilization
2628
2754
  # resource_label: "ResourceLabel",
2629
2755
  # },
2630
2756
  # customized_metric_specification: {