aws-sdk-applicationautoscaling 1.45.0 → 1.50.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.
@@ -216,6 +216,7 @@ module Aws::ApplicationAutoScaling
216
216
 
217
217
  PutScheduledActionRequest.add_member(:service_namespace, Shapes::ShapeRef.new(shape: ServiceNamespace, required: true, location_name: "ServiceNamespace"))
218
218
  PutScheduledActionRequest.add_member(:schedule, Shapes::ShapeRef.new(shape: ResourceIdMaxLen1600, location_name: "Schedule"))
219
+ PutScheduledActionRequest.add_member(:timezone, Shapes::ShapeRef.new(shape: ResourceIdMaxLen1600, location_name: "Timezone"))
219
220
  PutScheduledActionRequest.add_member(:scheduled_action_name, Shapes::ShapeRef.new(shape: ScheduledActionName, required: true, location_name: "ScheduledActionName"))
220
221
  PutScheduledActionRequest.add_member(:resource_id, Shapes::ShapeRef.new(shape: ResourceIdMaxLen1600, required: true, location_name: "ResourceId"))
221
222
  PutScheduledActionRequest.add_member(:scalable_dimension, Shapes::ShapeRef.new(shape: ScalableDimension, required: true, location_name: "ScalableDimension"))
@@ -288,6 +289,7 @@ module Aws::ApplicationAutoScaling
288
289
  ScheduledAction.add_member(:scheduled_action_arn, Shapes::ShapeRef.new(shape: ResourceIdMaxLen1600, required: true, location_name: "ScheduledActionARN"))
289
290
  ScheduledAction.add_member(:service_namespace, Shapes::ShapeRef.new(shape: ServiceNamespace, required: true, location_name: "ServiceNamespace"))
290
291
  ScheduledAction.add_member(:schedule, Shapes::ShapeRef.new(shape: ResourceIdMaxLen1600, required: true, location_name: "Schedule"))
292
+ ScheduledAction.add_member(:timezone, Shapes::ShapeRef.new(shape: ResourceIdMaxLen1600, location_name: "Timezone"))
291
293
  ScheduledAction.add_member(:resource_id, Shapes::ShapeRef.new(shape: ResourceIdMaxLen1600, required: true, location_name: "ResourceId"))
292
294
  ScheduledAction.add_member(:scalable_dimension, Shapes::ShapeRef.new(shape: ScalableDimension, location_name: "ScalableDimension"))
293
295
  ScheduledAction.add_member(:start_time, Shapes::ShapeRef.new(shape: TimestampType, location_name: "StartTime"))
@@ -130,9 +130,9 @@ module Aws::ApplicationAutoScaling
130
130
  #
131
131
  # {
132
132
  # policy_name: "ResourceIdMaxLen1600", # required
133
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra
133
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka
134
134
  # resource_id: "ResourceIdMaxLen1600", # required
135
- # scalable_dimension: "ecs:service:DesiredCount", # required, accepts ecs:service:DesiredCount, ec2:spot-fleet-request:TargetCapacity, elasticmapreduce:instancegroup:InstanceCount, appstream:fleet:DesiredCapacity, dynamodb:table:ReadCapacityUnits, dynamodb:table:WriteCapacityUnits, dynamodb:index:ReadCapacityUnits, dynamodb:index:WriteCapacityUnits, rds:cluster:ReadReplicaCount, sagemaker:variant:DesiredInstanceCount, custom-resource:ResourceType:Property, comprehend:document-classifier-endpoint:DesiredInferenceUnits, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits
135
+ # scalable_dimension: "ecs:service:DesiredCount", # required, accepts ecs:service:DesiredCount, ec2:spot-fleet-request:TargetCapacity, elasticmapreduce:instancegroup:InstanceCount, appstream:fleet:DesiredCapacity, dynamodb:table:ReadCapacityUnits, dynamodb:table:WriteCapacityUnits, dynamodb:index:ReadCapacityUnits, dynamodb:index:WriteCapacityUnits, rds:cluster:ReadReplicaCount, sagemaker:variant:DesiredInstanceCount, custom-resource:ResourceType:Property, comprehend:document-classifier-endpoint:DesiredInferenceUnits, comprehend:entity-recognizer-endpoint:DesiredInferenceUnits, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits, kafka:broker-storage:VolumeSize
136
136
  # }
137
137
  #
138
138
  # @!attribute [rw] policy_name
@@ -189,6 +189,11 @@ module Aws::ApplicationAutoScaling
189
189
  # Example:
190
190
  # `arn:aws:comprehend:us-west-2:123456789012:document-classifier-endpoint/EXAMPLE`.
191
191
  #
192
+ # * Amazon Comprehend entity recognizer endpoint - The resource type
193
+ # and unique identifier are specified using the endpoint ARN.
194
+ # Example:
195
+ # `arn:aws:comprehend:us-west-2:123456789012:entity-recognizer-endpoint/EXAMPLE`.
196
+ #
192
197
  # * Lambda provisioned concurrency - The resource type is `function`
193
198
  # and the unique identifier is the function name with a function
194
199
  # version or alias name suffix that is not `$LATEST`. Example:
@@ -198,6 +203,10 @@ module Aws::ApplicationAutoScaling
198
203
  # unique identifier is the table name. Example:
199
204
  # `keyspace/mykeyspace/table/mytable`.
200
205
  #
206
+ # * Amazon MSK cluster - The resource type and unique identifier are
207
+ # specified using the cluster ARN. Example:
208
+ # `arn:aws:kafka:us-east-1:123456789012:cluster/demo-cluster-1/6357e0b2-0e6a-4b86-a0b4-70df934c2e31-5`.
209
+ #
201
210
  #
202
211
  #
203
212
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -245,6 +254,10 @@ module Aws::ApplicationAutoScaling
245
254
  # The number of inference units for an Amazon Comprehend document
246
255
  # classification endpoint.
247
256
  #
257
+ # * `comprehend:entity-recognizer-endpoint:DesiredInferenceUnits` -
258
+ # The number of inference units for an Amazon Comprehend entity
259
+ # recognizer endpoint.
260
+ #
248
261
  # * `lambda:function:ProvisionedConcurrency` - The provisioned
249
262
  # concurrency for a Lambda function.
250
263
  #
@@ -253,6 +266,9 @@ module Aws::ApplicationAutoScaling
253
266
  #
254
267
  # * `cassandra:table:WriteCapacityUnits` - The provisioned write
255
268
  # capacity for an Amazon Keyspaces table.
269
+ #
270
+ # * `kafka:broker-storage:VolumeSize` - The provisioned volume size
271
+ # (in GiB) for brokers in an Amazon MSK cluster.
256
272
  # @return [String]
257
273
  #
258
274
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeleteScalingPolicyRequest AWS API Documentation
@@ -274,10 +290,10 @@ module Aws::ApplicationAutoScaling
274
290
  # data as a hash:
275
291
  #
276
292
  # {
277
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra
293
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka
278
294
  # scheduled_action_name: "ResourceIdMaxLen1600", # required
279
295
  # resource_id: "ResourceIdMaxLen1600", # required
280
- # 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, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits
296
+ # scalable_dimension: "ecs:service:DesiredCount", # required, accepts ecs:service:DesiredCount, ec2:spot-fleet-request:TargetCapacity, elasticmapreduce:instancegroup:InstanceCount, appstream:fleet:DesiredCapacity, dynamodb:table:ReadCapacityUnits, dynamodb:table:WriteCapacityUnits, dynamodb:index:ReadCapacityUnits, dynamodb:index:WriteCapacityUnits, rds:cluster:ReadReplicaCount, sagemaker:variant:DesiredInstanceCount, custom-resource:ResourceType:Property, comprehend:document-classifier-endpoint:DesiredInferenceUnits, comprehend:entity-recognizer-endpoint:DesiredInferenceUnits, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits, kafka:broker-storage:VolumeSize
281
297
  # }
282
298
  #
283
299
  # @!attribute [rw] service_namespace
@@ -334,6 +350,11 @@ module Aws::ApplicationAutoScaling
334
350
  # Example:
335
351
  # `arn:aws:comprehend:us-west-2:123456789012:document-classifier-endpoint/EXAMPLE`.
336
352
  #
353
+ # * Amazon Comprehend entity recognizer endpoint - The resource type
354
+ # and unique identifier are specified using the endpoint ARN.
355
+ # Example:
356
+ # `arn:aws:comprehend:us-west-2:123456789012:entity-recognizer-endpoint/EXAMPLE`.
357
+ #
337
358
  # * Lambda provisioned concurrency - The resource type is `function`
338
359
  # and the unique identifier is the function name with a function
339
360
  # version or alias name suffix that is not `$LATEST`. Example:
@@ -343,6 +364,10 @@ module Aws::ApplicationAutoScaling
343
364
  # unique identifier is the table name. Example:
344
365
  # `keyspace/mykeyspace/table/mytable`.
345
366
  #
367
+ # * Amazon MSK cluster - The resource type and unique identifier are
368
+ # specified using the cluster ARN. Example:
369
+ # `arn:aws:kafka:us-east-1:123456789012:cluster/demo-cluster-1/6357e0b2-0e6a-4b86-a0b4-70df934c2e31-5`.
370
+ #
346
371
  #
347
372
  #
348
373
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -390,6 +415,10 @@ module Aws::ApplicationAutoScaling
390
415
  # The number of inference units for an Amazon Comprehend document
391
416
  # classification endpoint.
392
417
  #
418
+ # * `comprehend:entity-recognizer-endpoint:DesiredInferenceUnits` -
419
+ # The number of inference units for an Amazon Comprehend entity
420
+ # recognizer endpoint.
421
+ #
393
422
  # * `lambda:function:ProvisionedConcurrency` - The provisioned
394
423
  # concurrency for a Lambda function.
395
424
  #
@@ -398,6 +427,9 @@ module Aws::ApplicationAutoScaling
398
427
  #
399
428
  # * `cassandra:table:WriteCapacityUnits` - The provisioned write
400
429
  # capacity for an Amazon Keyspaces table.
430
+ #
431
+ # * `kafka:broker-storage:VolumeSize` - The provisioned volume size
432
+ # (in GiB) for brokers in an Amazon MSK cluster.
401
433
  # @return [String]
402
434
  #
403
435
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeleteScheduledActionRequest AWS API Documentation
@@ -419,9 +451,9 @@ module Aws::ApplicationAutoScaling
419
451
  # data as a hash:
420
452
  #
421
453
  # {
422
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra
454
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka
423
455
  # resource_id: "ResourceIdMaxLen1600", # required
424
- # 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, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits
456
+ # scalable_dimension: "ecs:service:DesiredCount", # required, accepts ecs:service:DesiredCount, ec2:spot-fleet-request:TargetCapacity, elasticmapreduce:instancegroup:InstanceCount, appstream:fleet:DesiredCapacity, dynamodb:table:ReadCapacityUnits, dynamodb:table:WriteCapacityUnits, dynamodb:index:ReadCapacityUnits, dynamodb:index:WriteCapacityUnits, rds:cluster:ReadReplicaCount, sagemaker:variant:DesiredInstanceCount, custom-resource:ResourceType:Property, comprehend:document-classifier-endpoint:DesiredInferenceUnits, comprehend:entity-recognizer-endpoint:DesiredInferenceUnits, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits, kafka:broker-storage:VolumeSize
425
457
  # }
426
458
  #
427
459
  # @!attribute [rw] service_namespace
@@ -474,6 +506,11 @@ module Aws::ApplicationAutoScaling
474
506
  # Example:
475
507
  # `arn:aws:comprehend:us-west-2:123456789012:document-classifier-endpoint/EXAMPLE`.
476
508
  #
509
+ # * Amazon Comprehend entity recognizer endpoint - The resource type
510
+ # and unique identifier are specified using the endpoint ARN.
511
+ # Example:
512
+ # `arn:aws:comprehend:us-west-2:123456789012:entity-recognizer-endpoint/EXAMPLE`.
513
+ #
477
514
  # * Lambda provisioned concurrency - The resource type is `function`
478
515
  # and the unique identifier is the function name with a function
479
516
  # version or alias name suffix that is not `$LATEST`. Example:
@@ -483,6 +520,10 @@ module Aws::ApplicationAutoScaling
483
520
  # unique identifier is the table name. Example:
484
521
  # `keyspace/mykeyspace/table/mytable`.
485
522
  #
523
+ # * Amazon MSK cluster - The resource type and unique identifier are
524
+ # specified using the cluster ARN. Example:
525
+ # `arn:aws:kafka:us-east-1:123456789012:cluster/demo-cluster-1/6357e0b2-0e6a-4b86-a0b4-70df934c2e31-5`.
526
+ #
486
527
  #
487
528
  #
488
529
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -531,6 +572,10 @@ module Aws::ApplicationAutoScaling
531
572
  # The number of inference units for an Amazon Comprehend document
532
573
  # classification endpoint.
533
574
  #
575
+ # * `comprehend:entity-recognizer-endpoint:DesiredInferenceUnits` -
576
+ # The number of inference units for an Amazon Comprehend entity
577
+ # recognizer endpoint.
578
+ #
534
579
  # * `lambda:function:ProvisionedConcurrency` - The provisioned
535
580
  # concurrency for a Lambda function.
536
581
  #
@@ -539,6 +584,9 @@ module Aws::ApplicationAutoScaling
539
584
  #
540
585
  # * `cassandra:table:WriteCapacityUnits` - The provisioned write
541
586
  # capacity for an Amazon Keyspaces table.
587
+ #
588
+ # * `kafka:broker-storage:VolumeSize` - The provisioned volume size
589
+ # (in GiB) for brokers in an Amazon MSK cluster.
542
590
  # @return [String]
543
591
  #
544
592
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeregisterScalableTargetRequest AWS API Documentation
@@ -559,9 +607,9 @@ module Aws::ApplicationAutoScaling
559
607
  # data as a hash:
560
608
  #
561
609
  # {
562
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra
610
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka
563
611
  # resource_ids: ["ResourceIdMaxLen1600"],
564
- # 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, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits
612
+ # scalable_dimension: "ecs:service:DesiredCount", # accepts ecs:service:DesiredCount, ec2:spot-fleet-request:TargetCapacity, elasticmapreduce:instancegroup:InstanceCount, appstream:fleet:DesiredCapacity, dynamodb:table:ReadCapacityUnits, dynamodb:table:WriteCapacityUnits, dynamodb:index:ReadCapacityUnits, dynamodb:index:WriteCapacityUnits, rds:cluster:ReadReplicaCount, sagemaker:variant:DesiredInstanceCount, custom-resource:ResourceType:Property, comprehend:document-classifier-endpoint:DesiredInferenceUnits, comprehend:entity-recognizer-endpoint:DesiredInferenceUnits, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits, kafka:broker-storage:VolumeSize
565
613
  # max_results: 1,
566
614
  # next_token: "XmlString",
567
615
  # }
@@ -574,9 +622,7 @@ module Aws::ApplicationAutoScaling
574
622
  #
575
623
  # @!attribute [rw] resource_ids
576
624
  # The identifier of the resource associated with the scalable target.
577
- # This string consists of the resource type and unique identifier. If
578
- # you specify a scalable dimension, you must also specify a resource
579
- # ID.
625
+ # This string consists of the resource type and unique identifier.
580
626
  #
581
627
  # * ECS service - The resource type is `service` and the unique
582
628
  # identifier is the cluster name and service name. Example:
@@ -618,6 +664,11 @@ module Aws::ApplicationAutoScaling
618
664
  # Example:
619
665
  # `arn:aws:comprehend:us-west-2:123456789012:document-classifier-endpoint/EXAMPLE`.
620
666
  #
667
+ # * Amazon Comprehend entity recognizer endpoint - The resource type
668
+ # and unique identifier are specified using the endpoint ARN.
669
+ # Example:
670
+ # `arn:aws:comprehend:us-west-2:123456789012:entity-recognizer-endpoint/EXAMPLE`.
671
+ #
621
672
  # * Lambda provisioned concurrency - The resource type is `function`
622
673
  # and the unique identifier is the function name with a function
623
674
  # version or alias name suffix that is not `$LATEST`. Example:
@@ -627,6 +678,10 @@ module Aws::ApplicationAutoScaling
627
678
  # unique identifier is the table name. Example:
628
679
  # `keyspace/mykeyspace/table/mytable`.
629
680
  #
681
+ # * Amazon MSK cluster - The resource type and unique identifier are
682
+ # specified using the cluster ARN. Example:
683
+ # `arn:aws:kafka:us-east-1:123456789012:cluster/demo-cluster-1/6357e0b2-0e6a-4b86-a0b4-70df934c2e31-5`.
684
+ #
630
685
  #
631
686
  #
632
687
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -676,6 +731,10 @@ module Aws::ApplicationAutoScaling
676
731
  # The number of inference units for an Amazon Comprehend document
677
732
  # classification endpoint.
678
733
  #
734
+ # * `comprehend:entity-recognizer-endpoint:DesiredInferenceUnits` -
735
+ # The number of inference units for an Amazon Comprehend entity
736
+ # recognizer endpoint.
737
+ #
679
738
  # * `lambda:function:ProvisionedConcurrency` - The provisioned
680
739
  # concurrency for a Lambda function.
681
740
  #
@@ -684,6 +743,9 @@ module Aws::ApplicationAutoScaling
684
743
  #
685
744
  # * `cassandra:table:WriteCapacityUnits` - The provisioned write
686
745
  # capacity for an Amazon Keyspaces table.
746
+ #
747
+ # * `kafka:broker-storage:VolumeSize` - The provisioned volume size
748
+ # (in GiB) for brokers in an Amazon MSK cluster.
687
749
  # @return [String]
688
750
  #
689
751
  # @!attribute [rw] max_results
@@ -735,9 +797,9 @@ module Aws::ApplicationAutoScaling
735
797
  # data as a hash:
736
798
  #
737
799
  # {
738
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra
800
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka
739
801
  # resource_id: "ResourceIdMaxLen1600",
740
- # 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, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits
802
+ # scalable_dimension: "ecs:service:DesiredCount", # accepts ecs:service:DesiredCount, ec2:spot-fleet-request:TargetCapacity, elasticmapreduce:instancegroup:InstanceCount, appstream:fleet:DesiredCapacity, dynamodb:table:ReadCapacityUnits, dynamodb:table:WriteCapacityUnits, dynamodb:index:ReadCapacityUnits, dynamodb:index:WriteCapacityUnits, rds:cluster:ReadReplicaCount, sagemaker:variant:DesiredInstanceCount, custom-resource:ResourceType:Property, comprehend:document-classifier-endpoint:DesiredInferenceUnits, comprehend:entity-recognizer-endpoint:DesiredInferenceUnits, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits, kafka:broker-storage:VolumeSize
741
803
  # max_results: 1,
742
804
  # next_token: "XmlString",
743
805
  # }
@@ -750,9 +812,7 @@ module Aws::ApplicationAutoScaling
750
812
  #
751
813
  # @!attribute [rw] resource_id
752
814
  # The identifier of the resource associated with the scaling activity.
753
- # This string consists of the resource type and unique identifier. If
754
- # you specify a scalable dimension, you must also specify a resource
755
- # ID.
815
+ # This string consists of the resource type and unique identifier.
756
816
  #
757
817
  # * ECS service - The resource type is `service` and the unique
758
818
  # identifier is the cluster name and service name. Example:
@@ -794,6 +854,11 @@ module Aws::ApplicationAutoScaling
794
854
  # Example:
795
855
  # `arn:aws:comprehend:us-west-2:123456789012:document-classifier-endpoint/EXAMPLE`.
796
856
  #
857
+ # * Amazon Comprehend entity recognizer endpoint - The resource type
858
+ # and unique identifier are specified using the endpoint ARN.
859
+ # Example:
860
+ # `arn:aws:comprehend:us-west-2:123456789012:entity-recognizer-endpoint/EXAMPLE`.
861
+ #
797
862
  # * Lambda provisioned concurrency - The resource type is `function`
798
863
  # and the unique identifier is the function name with a function
799
864
  # version or alias name suffix that is not `$LATEST`. Example:
@@ -803,6 +868,10 @@ module Aws::ApplicationAutoScaling
803
868
  # unique identifier is the table name. Example:
804
869
  # `keyspace/mykeyspace/table/mytable`.
805
870
  #
871
+ # * Amazon MSK cluster - The resource type and unique identifier are
872
+ # specified using the cluster ARN. Example:
873
+ # `arn:aws:kafka:us-east-1:123456789012:cluster/demo-cluster-1/6357e0b2-0e6a-4b86-a0b4-70df934c2e31-5`.
874
+ #
806
875
  #
807
876
  #
808
877
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -851,6 +920,10 @@ module Aws::ApplicationAutoScaling
851
920
  # The number of inference units for an Amazon Comprehend document
852
921
  # classification endpoint.
853
922
  #
923
+ # * `comprehend:entity-recognizer-endpoint:DesiredInferenceUnits` -
924
+ # The number of inference units for an Amazon Comprehend entity
925
+ # recognizer endpoint.
926
+ #
854
927
  # * `lambda:function:ProvisionedConcurrency` - The provisioned
855
928
  # concurrency for a Lambda function.
856
929
  #
@@ -859,6 +932,9 @@ module Aws::ApplicationAutoScaling
859
932
  #
860
933
  # * `cassandra:table:WriteCapacityUnits` - The provisioned write
861
934
  # capacity for an Amazon Keyspaces table.
935
+ #
936
+ # * `kafka:broker-storage:VolumeSize` - The provisioned volume size
937
+ # (in GiB) for brokers in an Amazon MSK cluster.
862
938
  # @return [String]
863
939
  #
864
940
  # @!attribute [rw] max_results
@@ -911,9 +987,9 @@ module Aws::ApplicationAutoScaling
911
987
  #
912
988
  # {
913
989
  # policy_names: ["ResourceIdMaxLen1600"],
914
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra
990
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka
915
991
  # resource_id: "ResourceIdMaxLen1600",
916
- # 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, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits
992
+ # scalable_dimension: "ecs:service:DesiredCount", # accepts ecs:service:DesiredCount, ec2:spot-fleet-request:TargetCapacity, elasticmapreduce:instancegroup:InstanceCount, appstream:fleet:DesiredCapacity, dynamodb:table:ReadCapacityUnits, dynamodb:table:WriteCapacityUnits, dynamodb:index:ReadCapacityUnits, dynamodb:index:WriteCapacityUnits, rds:cluster:ReadReplicaCount, sagemaker:variant:DesiredInstanceCount, custom-resource:ResourceType:Property, comprehend:document-classifier-endpoint:DesiredInferenceUnits, comprehend:entity-recognizer-endpoint:DesiredInferenceUnits, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits, kafka:broker-storage:VolumeSize
917
993
  # max_results: 1,
918
994
  # next_token: "XmlString",
919
995
  # }
@@ -930,9 +1006,7 @@ module Aws::ApplicationAutoScaling
930
1006
  #
931
1007
  # @!attribute [rw] resource_id
932
1008
  # The identifier of the resource associated with the scaling policy.
933
- # This string consists of the resource type and unique identifier. If
934
- # you specify a scalable dimension, you must also specify a resource
935
- # ID.
1009
+ # This string consists of the resource type and unique identifier.
936
1010
  #
937
1011
  # * ECS service - The resource type is `service` and the unique
938
1012
  # identifier is the cluster name and service name. Example:
@@ -974,6 +1048,11 @@ module Aws::ApplicationAutoScaling
974
1048
  # Example:
975
1049
  # `arn:aws:comprehend:us-west-2:123456789012:document-classifier-endpoint/EXAMPLE`.
976
1050
  #
1051
+ # * Amazon Comprehend entity recognizer endpoint - The resource type
1052
+ # and unique identifier are specified using the endpoint ARN.
1053
+ # Example:
1054
+ # `arn:aws:comprehend:us-west-2:123456789012:entity-recognizer-endpoint/EXAMPLE`.
1055
+ #
977
1056
  # * Lambda provisioned concurrency - The resource type is `function`
978
1057
  # and the unique identifier is the function name with a function
979
1058
  # version or alias name suffix that is not `$LATEST`. Example:
@@ -983,6 +1062,10 @@ module Aws::ApplicationAutoScaling
983
1062
  # unique identifier is the table name. Example:
984
1063
  # `keyspace/mykeyspace/table/mytable`.
985
1064
  #
1065
+ # * Amazon MSK cluster - The resource type and unique identifier are
1066
+ # specified using the cluster ARN. Example:
1067
+ # `arn:aws:kafka:us-east-1:123456789012:cluster/demo-cluster-1/6357e0b2-0e6a-4b86-a0b4-70df934c2e31-5`.
1068
+ #
986
1069
  #
987
1070
  #
988
1071
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -1031,6 +1114,10 @@ module Aws::ApplicationAutoScaling
1031
1114
  # The number of inference units for an Amazon Comprehend document
1032
1115
  # classification endpoint.
1033
1116
  #
1117
+ # * `comprehend:entity-recognizer-endpoint:DesiredInferenceUnits` -
1118
+ # The number of inference units for an Amazon Comprehend entity
1119
+ # recognizer endpoint.
1120
+ #
1034
1121
  # * `lambda:function:ProvisionedConcurrency` - The provisioned
1035
1122
  # concurrency for a Lambda function.
1036
1123
  #
@@ -1039,6 +1126,9 @@ module Aws::ApplicationAutoScaling
1039
1126
  #
1040
1127
  # * `cassandra:table:WriteCapacityUnits` - The provisioned write
1041
1128
  # capacity for an Amazon Keyspaces table.
1129
+ #
1130
+ # * `kafka:broker-storage:VolumeSize` - The provisioned volume size
1131
+ # (in GiB) for brokers in an Amazon MSK cluster.
1042
1132
  # @return [String]
1043
1133
  #
1044
1134
  # @!attribute [rw] max_results
@@ -1092,9 +1182,9 @@ module Aws::ApplicationAutoScaling
1092
1182
  #
1093
1183
  # {
1094
1184
  # scheduled_action_names: ["ResourceIdMaxLen1600"],
1095
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra
1185
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka
1096
1186
  # resource_id: "ResourceIdMaxLen1600",
1097
- # 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, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits
1187
+ # scalable_dimension: "ecs:service:DesiredCount", # accepts ecs:service:DesiredCount, ec2:spot-fleet-request:TargetCapacity, elasticmapreduce:instancegroup:InstanceCount, appstream:fleet:DesiredCapacity, dynamodb:table:ReadCapacityUnits, dynamodb:table:WriteCapacityUnits, dynamodb:index:ReadCapacityUnits, dynamodb:index:WriteCapacityUnits, rds:cluster:ReadReplicaCount, sagemaker:variant:DesiredInstanceCount, custom-resource:ResourceType:Property, comprehend:document-classifier-endpoint:DesiredInferenceUnits, comprehend:entity-recognizer-endpoint:DesiredInferenceUnits, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits, kafka:broker-storage:VolumeSize
1098
1188
  # max_results: 1,
1099
1189
  # next_token: "XmlString",
1100
1190
  # }
@@ -1111,9 +1201,7 @@ module Aws::ApplicationAutoScaling
1111
1201
  #
1112
1202
  # @!attribute [rw] resource_id
1113
1203
  # The identifier of the resource associated with the scheduled action.
1114
- # This string consists of the resource type and unique identifier. If
1115
- # you specify a scalable dimension, you must also specify a resource
1116
- # ID.
1204
+ # This string consists of the resource type and unique identifier.
1117
1205
  #
1118
1206
  # * ECS service - The resource type is `service` and the unique
1119
1207
  # identifier is the cluster name and service name. Example:
@@ -1155,6 +1243,11 @@ module Aws::ApplicationAutoScaling
1155
1243
  # Example:
1156
1244
  # `arn:aws:comprehend:us-west-2:123456789012:document-classifier-endpoint/EXAMPLE`.
1157
1245
  #
1246
+ # * Amazon Comprehend entity recognizer endpoint - The resource type
1247
+ # and unique identifier are specified using the endpoint ARN.
1248
+ # Example:
1249
+ # `arn:aws:comprehend:us-west-2:123456789012:entity-recognizer-endpoint/EXAMPLE`.
1250
+ #
1158
1251
  # * Lambda provisioned concurrency - The resource type is `function`
1159
1252
  # and the unique identifier is the function name with a function
1160
1253
  # version or alias name suffix that is not `$LATEST`. Example:
@@ -1164,6 +1257,10 @@ module Aws::ApplicationAutoScaling
1164
1257
  # unique identifier is the table name. Example:
1165
1258
  # `keyspace/mykeyspace/table/mytable`.
1166
1259
  #
1260
+ # * Amazon MSK cluster - The resource type and unique identifier are
1261
+ # specified using the cluster ARN. Example:
1262
+ # `arn:aws:kafka:us-east-1:123456789012:cluster/demo-cluster-1/6357e0b2-0e6a-4b86-a0b4-70df934c2e31-5`.
1263
+ #
1167
1264
  #
1168
1265
  #
1169
1266
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -1212,6 +1309,10 @@ module Aws::ApplicationAutoScaling
1212
1309
  # The number of inference units for an Amazon Comprehend document
1213
1310
  # classification endpoint.
1214
1311
  #
1312
+ # * `comprehend:entity-recognizer-endpoint:DesiredInferenceUnits` -
1313
+ # The number of inference units for an Amazon Comprehend entity
1314
+ # recognizer endpoint.
1315
+ #
1215
1316
  # * `lambda:function:ProvisionedConcurrency` - The provisioned
1216
1317
  # concurrency for a Lambda function.
1217
1318
  #
@@ -1220,6 +1321,9 @@ module Aws::ApplicationAutoScaling
1220
1321
  #
1221
1322
  # * `cassandra:table:WriteCapacityUnits` - The provisioned write
1222
1323
  # capacity for an Amazon Keyspaces table.
1324
+ #
1325
+ # * `kafka:broker-storage:VolumeSize` - The provisioned volume size
1326
+ # (in GiB) for brokers in an Amazon MSK cluster.
1223
1327
  # @return [String]
1224
1328
  #
1225
1329
  # @!attribute [rw] max_results
@@ -1316,11 +1420,11 @@ module Aws::ApplicationAutoScaling
1316
1420
  end
1317
1421
 
1318
1422
  # A per-account resource limit is exceeded. For more information, see
1319
- # [Application Auto Scaling Limits][1].
1423
+ # [Application Auto Scaling service quotas][1].
1320
1424
  #
1321
1425
  #
1322
1426
  #
1323
- # [1]: https://docs.aws.amazon.com/ApplicationAutoScaling/latest/userguide/application-auto-scaling-limits.html
1427
+ # [1]: https://docs.aws.amazon.com/autoscaling/application/userguide/application-auto-scaling-limits.html
1324
1428
  #
1325
1429
  # @!attribute [rw] message
1326
1430
  # @return [String]
@@ -1384,7 +1488,7 @@ module Aws::ApplicationAutoScaling
1384
1488
  # Only the AWS services that you're using send metrics to Amazon
1385
1489
  # CloudWatch. To determine whether a desired metric already exists by
1386
1490
  # looking up its namespace and dimension using the CloudWatch metrics
1387
- # dashboard in the console, follow the procedure in [Building Dashboards
1491
+ # dashboard in the console, follow the procedure in [Building dashboards
1388
1492
  # with CloudWatch][1] in the *Application Auto Scaling User Guide*.
1389
1493
  #
1390
1494
  #
@@ -1395,7 +1499,7 @@ module Aws::ApplicationAutoScaling
1395
1499
  # data as a hash:
1396
1500
  #
1397
1501
  # {
1398
- # predefined_metric_type: "DynamoDBReadCapacityUtilization", # required, accepts DynamoDBReadCapacityUtilization, DynamoDBWriteCapacityUtilization, ALBRequestCountPerTarget, RDSReaderAverageCPUUtilization, RDSReaderAverageDatabaseConnections, EC2SpotFleetRequestAverageCPUUtilization, EC2SpotFleetRequestAverageNetworkIn, EC2SpotFleetRequestAverageNetworkOut, SageMakerVariantInvocationsPerInstance, ECSServiceAverageCPUUtilization, ECSServiceAverageMemoryUtilization, AppStreamAverageCapacityUtilization, ComprehendInferenceUtilization, LambdaProvisionedConcurrencyUtilization, CassandraReadCapacityUtilization, CassandraWriteCapacityUtilization
1502
+ # predefined_metric_type: "DynamoDBReadCapacityUtilization", # required, accepts DynamoDBReadCapacityUtilization, DynamoDBWriteCapacityUtilization, ALBRequestCountPerTarget, RDSReaderAverageCPUUtilization, RDSReaderAverageDatabaseConnections, EC2SpotFleetRequestAverageCPUUtilization, EC2SpotFleetRequestAverageNetworkIn, EC2SpotFleetRequestAverageNetworkOut, SageMakerVariantInvocationsPerInstance, ECSServiceAverageCPUUtilization, ECSServiceAverageMemoryUtilization, AppStreamAverageCapacityUtilization, ComprehendInferenceUtilization, LambdaProvisionedConcurrencyUtilization, CassandraReadCapacityUtilization, CassandraWriteCapacityUtilization, KafkaBrokerStorageUtilization
1399
1503
  # resource_label: "ResourceLabel",
1400
1504
  # }
1401
1505
  #
@@ -1410,9 +1514,9 @@ module Aws::ApplicationAutoScaling
1410
1514
  # `ALBRequestCountPerTarget` and there is a target group attached to
1411
1515
  # the Spot Fleet request or ECS service.
1412
1516
  #
1413
- # Elastic Load Balancing sends data about your load balancers to
1414
- # Amazon CloudWatch. CloudWatch collects the data and specifies the
1415
- # format to use to access the data. The format is
1517
+ # You create the resource label by appending the final portion of the
1518
+ # load balancer ARN and the final portion of the target group ARN into
1519
+ # a single value, separated by a forward slash (/). The format is
1416
1520
  # app/<load-balancer-name>/<load-balancer-id>/targetgroup/<target-group-name>/<target-group-id>,
1417
1521
  # where:
1418
1522
  #
@@ -1422,6 +1526,9 @@ module Aws::ApplicationAutoScaling
1422
1526
  # * targetgroup/<target-group-name>/<target-group-id> is
1423
1527
  # the final portion of the target group ARN.
1424
1528
  #
1529
+ # This is an example:
1530
+ # app/EC2Co-EcsEl-1TKLTMITMM0EO/f37c06a68c1748aa/targetgroup/EC2Co-Defau-LDNM7Q3ZH1ZN/6d4ea56ca2d6a18d.
1531
+ #
1425
1532
  # To find the ARN for an Application Load Balancer, use the
1426
1533
  # [DescribeLoadBalancers][1] API operation. To find the ARN for the
1427
1534
  # target group, use the [DescribeTargetGroups][2] API operation.
@@ -1446,9 +1553,9 @@ module Aws::ApplicationAutoScaling
1446
1553
  #
1447
1554
  # {
1448
1555
  # policy_name: "PolicyName", # required
1449
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra
1556
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka
1450
1557
  # resource_id: "ResourceIdMaxLen1600", # required
1451
- # 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, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits
1558
+ # scalable_dimension: "ecs:service:DesiredCount", # required, accepts ecs:service:DesiredCount, ec2:spot-fleet-request:TargetCapacity, elasticmapreduce:instancegroup:InstanceCount, appstream:fleet:DesiredCapacity, dynamodb:table:ReadCapacityUnits, dynamodb:table:WriteCapacityUnits, dynamodb:index:ReadCapacityUnits, dynamodb:index:WriteCapacityUnits, rds:cluster:ReadReplicaCount, sagemaker:variant:DesiredInstanceCount, custom-resource:ResourceType:Property, comprehend:document-classifier-endpoint:DesiredInferenceUnits, comprehend:entity-recognizer-endpoint:DesiredInferenceUnits, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits, kafka:broker-storage:VolumeSize
1452
1559
  # policy_type: "StepScaling", # accepts StepScaling, TargetTrackingScaling
1453
1560
  # step_scaling_policy_configuration: {
1454
1561
  # adjustment_type: "ChangeInCapacity", # accepts ChangeInCapacity, PercentChangeInCapacity, ExactCapacity
@@ -1466,7 +1573,7 @@ module Aws::ApplicationAutoScaling
1466
1573
  # target_tracking_scaling_policy_configuration: {
1467
1574
  # target_value: 1.0, # required
1468
1575
  # predefined_metric_specification: {
1469
- # predefined_metric_type: "DynamoDBReadCapacityUtilization", # required, accepts DynamoDBReadCapacityUtilization, DynamoDBWriteCapacityUtilization, ALBRequestCountPerTarget, RDSReaderAverageCPUUtilization, RDSReaderAverageDatabaseConnections, EC2SpotFleetRequestAverageCPUUtilization, EC2SpotFleetRequestAverageNetworkIn, EC2SpotFleetRequestAverageNetworkOut, SageMakerVariantInvocationsPerInstance, ECSServiceAverageCPUUtilization, ECSServiceAverageMemoryUtilization, AppStreamAverageCapacityUtilization, ComprehendInferenceUtilization, LambdaProvisionedConcurrencyUtilization, CassandraReadCapacityUtilization, CassandraWriteCapacityUtilization
1576
+ # predefined_metric_type: "DynamoDBReadCapacityUtilization", # required, accepts DynamoDBReadCapacityUtilization, DynamoDBWriteCapacityUtilization, ALBRequestCountPerTarget, RDSReaderAverageCPUUtilization, RDSReaderAverageDatabaseConnections, EC2SpotFleetRequestAverageCPUUtilization, EC2SpotFleetRequestAverageNetworkIn, EC2SpotFleetRequestAverageNetworkOut, SageMakerVariantInvocationsPerInstance, ECSServiceAverageCPUUtilization, ECSServiceAverageMemoryUtilization, AppStreamAverageCapacityUtilization, ComprehendInferenceUtilization, LambdaProvisionedConcurrencyUtilization, CassandraReadCapacityUtilization, CassandraWriteCapacityUtilization, KafkaBrokerStorageUtilization
1470
1577
  # resource_label: "ResourceLabel",
1471
1578
  # },
1472
1579
  # customized_metric_specification: {
@@ -1541,6 +1648,11 @@ module Aws::ApplicationAutoScaling
1541
1648
  # Example:
1542
1649
  # `arn:aws:comprehend:us-west-2:123456789012:document-classifier-endpoint/EXAMPLE`.
1543
1650
  #
1651
+ # * Amazon Comprehend entity recognizer endpoint - The resource type
1652
+ # and unique identifier are specified using the endpoint ARN.
1653
+ # Example:
1654
+ # `arn:aws:comprehend:us-west-2:123456789012:entity-recognizer-endpoint/EXAMPLE`.
1655
+ #
1544
1656
  # * Lambda provisioned concurrency - The resource type is `function`
1545
1657
  # and the unique identifier is the function name with a function
1546
1658
  # version or alias name suffix that is not `$LATEST`. Example:
@@ -1550,6 +1662,10 @@ module Aws::ApplicationAutoScaling
1550
1662
  # unique identifier is the table name. Example:
1551
1663
  # `keyspace/mykeyspace/table/mytable`.
1552
1664
  #
1665
+ # * Amazon MSK cluster - The resource type and unique identifier are
1666
+ # specified using the cluster ARN. Example:
1667
+ # `arn:aws:kafka:us-east-1:123456789012:cluster/demo-cluster-1/6357e0b2-0e6a-4b86-a0b4-70df934c2e31-5`.
1668
+ #
1553
1669
  #
1554
1670
  #
1555
1671
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -1597,6 +1713,10 @@ module Aws::ApplicationAutoScaling
1597
1713
  # The number of inference units for an Amazon Comprehend document
1598
1714
  # classification endpoint.
1599
1715
  #
1716
+ # * `comprehend:entity-recognizer-endpoint:DesiredInferenceUnits` -
1717
+ # The number of inference units for an Amazon Comprehend entity
1718
+ # recognizer endpoint.
1719
+ #
1600
1720
  # * `lambda:function:ProvisionedConcurrency` - The provisioned
1601
1721
  # concurrency for a Lambda function.
1602
1722
  #
@@ -1605,6 +1725,9 @@ module Aws::ApplicationAutoScaling
1605
1725
  #
1606
1726
  # * `cassandra:table:WriteCapacityUnits` - The provisioned write
1607
1727
  # capacity for an Amazon Keyspaces table.
1728
+ #
1729
+ # * `kafka:broker-storage:VolumeSize` - The provisioned volume size
1730
+ # (in GiB) for brokers in an Amazon MSK cluster.
1608
1731
  # @return [String]
1609
1732
  #
1610
1733
  # @!attribute [rw] policy_type
@@ -1616,10 +1739,10 @@ module Aws::ApplicationAutoScaling
1616
1739
  # `TargetTrackingScaling`—Not supported for Amazon EMR
1617
1740
  #
1618
1741
  # `StepScaling`—Not supported for DynamoDB, Amazon Comprehend, Lambda,
1619
- # or Amazon Keyspaces (for Apache Cassandra).
1742
+ # Amazon Keyspaces (for Apache Cassandra), or Amazon MSK.
1620
1743
  #
1621
- # For more information, see [Target Tracking Scaling Policies][1] and
1622
- # [Step Scaling Policies][2] in the *Application Auto Scaling User
1744
+ # For more information, see [Target tracking scaling policies][1] and
1745
+ # [Step scaling policies][2] in the *Application Auto Scaling User
1623
1746
  # Guide*.
1624
1747
  #
1625
1748
  #
@@ -1679,11 +1802,12 @@ module Aws::ApplicationAutoScaling
1679
1802
  # data as a hash:
1680
1803
  #
1681
1804
  # {
1682
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra
1805
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka
1683
1806
  # schedule: "ResourceIdMaxLen1600",
1807
+ # timezone: "ResourceIdMaxLen1600",
1684
1808
  # scheduled_action_name: "ScheduledActionName", # required
1685
1809
  # resource_id: "ResourceIdMaxLen1600", # required
1686
- # 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, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits
1810
+ # scalable_dimension: "ecs:service:DesiredCount", # required, accepts ecs:service:DesiredCount, ec2:spot-fleet-request:TargetCapacity, elasticmapreduce:instancegroup:InstanceCount, appstream:fleet:DesiredCapacity, dynamodb:table:ReadCapacityUnits, dynamodb:table:WriteCapacityUnits, dynamodb:index:ReadCapacityUnits, dynamodb:index:WriteCapacityUnits, rds:cluster:ReadReplicaCount, sagemaker:variant:DesiredInstanceCount, custom-resource:ResourceType:Property, comprehend:document-classifier-endpoint:DesiredInferenceUnits, comprehend:entity-recognizer-endpoint:DesiredInferenceUnits, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits, kafka:broker-storage:VolumeSize
1687
1811
  # start_time: Time.now,
1688
1812
  # end_time: Time.now,
1689
1813
  # scalable_target_action: {
@@ -1707,22 +1831,43 @@ module Aws::ApplicationAutoScaling
1707
1831
  #
1708
1832
  # * Cron expressions - "`cron(fields)`"
1709
1833
  #
1710
- # At expressions are useful for one-time schedules. Specify the time
1711
- # in UTC.
1834
+ # At expressions are useful for one-time schedules. Cron expressions
1835
+ # are useful for scheduled actions that run periodically at a
1836
+ # specified date and time, and rate expressions are useful for
1837
+ # scheduled actions that run at a regular interval.
1838
+ #
1839
+ # At and cron expressions use Universal Coordinated Time (UTC) by
1840
+ # default.
1841
+ #
1842
+ # The cron format consists of six fields separated by white spaces:
1843
+ # \[Minutes\] \[Hours\] \[Day\_of\_Month\] \[Month\] \[Day\_of\_Week\]
1844
+ # \[Year\].
1712
1845
  #
1713
1846
  # For rate expressions, *value* is a positive integer and *unit* is
1714
1847
  # `minute` \| `minutes` \| `hour` \| `hours` \| `day` \| `days`.
1715
1848
  #
1716
- # For more information about cron expressions, see [Cron
1717
- # Expressions][1] in the *Amazon CloudWatch Events User Guide*.
1849
+ # For more information and examples, see [Example scheduled actions
1850
+ # for Application Auto Scaling][1] in the *Application Auto Scaling
1851
+ # User Guide*.
1852
+ #
1853
+ #
1854
+ #
1855
+ # [1]: https://docs.aws.amazon.com/autoscaling/application/userguide/examples-scheduled-actions.html
1856
+ # @return [String]
1857
+ #
1858
+ # @!attribute [rw] timezone
1859
+ # Specifies the time zone used when setting a scheduled action by
1860
+ # using an at or cron expression. If a time zone is not provided, UTC
1861
+ # is used by default.
1718
1862
  #
1719
- # For examples of using these expressions, see [Scheduled Scaling][2]
1720
- # in the *Application Auto Scaling User Guide*.
1863
+ # Valid values are the canonical names of the IANA time zones
1864
+ # supported by Joda-Time (such as `Etc/GMT+9` or `Pacific/Tahiti`).
1865
+ # For more information, see
1866
+ # [https://www.joda.org/joda-time/timezones.html][1].
1721
1867
  #
1722
1868
  #
1723
1869
  #
1724
- # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/ScheduledEvents.html#CronExpressions
1725
- # [2]: https://docs.aws.amazon.com/autoscaling/application/userguide/application-auto-scaling-scheduled-scaling.html
1870
+ # [1]: https://www.joda.org/joda-time/timezones.html
1726
1871
  # @return [String]
1727
1872
  #
1728
1873
  # @!attribute [rw] scheduled_action_name
@@ -1774,6 +1919,11 @@ module Aws::ApplicationAutoScaling
1774
1919
  # Example:
1775
1920
  # `arn:aws:comprehend:us-west-2:123456789012:document-classifier-endpoint/EXAMPLE`.
1776
1921
  #
1922
+ # * Amazon Comprehend entity recognizer endpoint - The resource type
1923
+ # and unique identifier are specified using the endpoint ARN.
1924
+ # Example:
1925
+ # `arn:aws:comprehend:us-west-2:123456789012:entity-recognizer-endpoint/EXAMPLE`.
1926
+ #
1777
1927
  # * Lambda provisioned concurrency - The resource type is `function`
1778
1928
  # and the unique identifier is the function name with a function
1779
1929
  # version or alias name suffix that is not `$LATEST`. Example:
@@ -1783,6 +1933,10 @@ module Aws::ApplicationAutoScaling
1783
1933
  # unique identifier is the table name. Example:
1784
1934
  # `keyspace/mykeyspace/table/mytable`.
1785
1935
  #
1936
+ # * Amazon MSK cluster - The resource type and unique identifier are
1937
+ # specified using the cluster ARN. Example:
1938
+ # `arn:aws:kafka:us-east-1:123456789012:cluster/demo-cluster-1/6357e0b2-0e6a-4b86-a0b4-70df934c2e31-5`.
1939
+ #
1786
1940
  #
1787
1941
  #
1788
1942
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -1830,6 +1984,10 @@ module Aws::ApplicationAutoScaling
1830
1984
  # The number of inference units for an Amazon Comprehend document
1831
1985
  # classification endpoint.
1832
1986
  #
1987
+ # * `comprehend:entity-recognizer-endpoint:DesiredInferenceUnits` -
1988
+ # The number of inference units for an Amazon Comprehend entity
1989
+ # recognizer endpoint.
1990
+ #
1833
1991
  # * `lambda:function:ProvisionedConcurrency` - The provisioned
1834
1992
  # concurrency for a Lambda function.
1835
1993
  #
@@ -1838,14 +1996,17 @@ module Aws::ApplicationAutoScaling
1838
1996
  #
1839
1997
  # * `cassandra:table:WriteCapacityUnits` - The provisioned write
1840
1998
  # capacity for an Amazon Keyspaces table.
1999
+ #
2000
+ # * `kafka:broker-storage:VolumeSize` - The provisioned volume size
2001
+ # (in GiB) for brokers in an Amazon MSK cluster.
1841
2002
  # @return [String]
1842
2003
  #
1843
2004
  # @!attribute [rw] start_time
1844
- # The date and time for this scheduled action to start.
2005
+ # The date and time for this scheduled action to start, in UTC.
1845
2006
  # @return [Time]
1846
2007
  #
1847
2008
  # @!attribute [rw] end_time
1848
- # The date and time for the recurring schedule to end.
2009
+ # The date and time for the recurring schedule to end, in UTC.
1849
2010
  # @return [Time]
1850
2011
  #
1851
2012
  # @!attribute [rw] scalable_target_action
@@ -1862,6 +2023,7 @@ module Aws::ApplicationAutoScaling
1862
2023
  class PutScheduledActionRequest < Struct.new(
1863
2024
  :service_namespace,
1864
2025
  :schedule,
2026
+ :timezone,
1865
2027
  :scheduled_action_name,
1866
2028
  :resource_id,
1867
2029
  :scalable_dimension,
@@ -1880,9 +2042,9 @@ module Aws::ApplicationAutoScaling
1880
2042
  # data as a hash:
1881
2043
  #
1882
2044
  # {
1883
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra
2045
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds, sagemaker, custom-resource, comprehend, lambda, cassandra, kafka
1884
2046
  # resource_id: "ResourceIdMaxLen1600", # required
1885
- # 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, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits
2047
+ # scalable_dimension: "ecs:service:DesiredCount", # required, accepts ecs:service:DesiredCount, ec2:spot-fleet-request:TargetCapacity, elasticmapreduce:instancegroup:InstanceCount, appstream:fleet:DesiredCapacity, dynamodb:table:ReadCapacityUnits, dynamodb:table:WriteCapacityUnits, dynamodb:index:ReadCapacityUnits, dynamodb:index:WriteCapacityUnits, rds:cluster:ReadReplicaCount, sagemaker:variant:DesiredInstanceCount, custom-resource:ResourceType:Property, comprehend:document-classifier-endpoint:DesiredInferenceUnits, comprehend:entity-recognizer-endpoint:DesiredInferenceUnits, lambda:function:ProvisionedConcurrency, cassandra:table:ReadCapacityUnits, cassandra:table:WriteCapacityUnits, kafka:broker-storage:VolumeSize
1886
2048
  # min_capacity: 1,
1887
2049
  # max_capacity: 1,
1888
2050
  # role_arn: "ResourceIdMaxLen1600",
@@ -1944,6 +2106,11 @@ module Aws::ApplicationAutoScaling
1944
2106
  # Example:
1945
2107
  # `arn:aws:comprehend:us-west-2:123456789012:document-classifier-endpoint/EXAMPLE`.
1946
2108
  #
2109
+ # * Amazon Comprehend entity recognizer endpoint - The resource type
2110
+ # and unique identifier are specified using the endpoint ARN.
2111
+ # Example:
2112
+ # `arn:aws:comprehend:us-west-2:123456789012:entity-recognizer-endpoint/EXAMPLE`.
2113
+ #
1947
2114
  # * Lambda provisioned concurrency - The resource type is `function`
1948
2115
  # and the unique identifier is the function name with a function
1949
2116
  # version or alias name suffix that is not `$LATEST`. Example:
@@ -1953,6 +2120,10 @@ module Aws::ApplicationAutoScaling
1953
2120
  # unique identifier is the table name. Example:
1954
2121
  # `keyspace/mykeyspace/table/mytable`.
1955
2122
  #
2123
+ # * Amazon MSK cluster - The resource type and unique identifier are
2124
+ # specified using the cluster ARN. Example:
2125
+ # `arn:aws:kafka:us-east-1:123456789012:cluster/demo-cluster-1/6357e0b2-0e6a-4b86-a0b4-70df934c2e31-5`.
2126
+ #
1956
2127
  #
1957
2128
  #
1958
2129
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -2001,6 +2172,10 @@ module Aws::ApplicationAutoScaling
2001
2172
  # The number of inference units for an Amazon Comprehend document
2002
2173
  # classification endpoint.
2003
2174
  #
2175
+ # * `comprehend:entity-recognizer-endpoint:DesiredInferenceUnits` -
2176
+ # The number of inference units for an Amazon Comprehend entity
2177
+ # recognizer endpoint.
2178
+ #
2004
2179
  # * `lambda:function:ProvisionedConcurrency` - The provisioned
2005
2180
  # concurrency for a Lambda function.
2006
2181
  #
@@ -2009,15 +2184,18 @@ module Aws::ApplicationAutoScaling
2009
2184
  #
2010
2185
  # * `cassandra:table:WriteCapacityUnits` - The provisioned write
2011
2186
  # capacity for an Amazon Keyspaces table.
2187
+ #
2188
+ # * `kafka:broker-storage:VolumeSize` - The provisioned volume size
2189
+ # (in GiB) for brokers in an Amazon MSK cluster.
2012
2190
  # @return [String]
2013
2191
  #
2014
2192
  # @!attribute [rw] min_capacity
2015
2193
  # The minimum value that you plan to scale in to. When a scaling
2016
2194
  # policy is in effect, Application Auto Scaling can scale in
2017
2195
  # (contract) as needed to the minimum capacity limit in response to
2018
- # changing demand.
2196
+ # changing demand. This property is required when registering a new
2197
+ # scalable target.
2019
2198
  #
2020
- # This parameter is required if you are registering a scalable target.
2021
2199
  # For certain resources, the minimum value allowed is 0. This includes
2022
2200
  # Lambda provisioned concurrency, Spot Fleet, ECS services, Aurora DB
2023
2201
  # clusters, EMR clusters, and custom resources. For all other
@@ -2028,9 +2206,21 @@ module Aws::ApplicationAutoScaling
2028
2206
  # The maximum value that you plan to scale out to. When a scaling
2029
2207
  # policy is in effect, Application Auto Scaling can scale out (expand)
2030
2208
  # as needed to the maximum capacity limit in response to changing
2031
- # demand.
2209
+ # demand. This property is required when registering a new scalable
2210
+ # target.
2211
+ #
2212
+ # Although you can specify a large maximum capacity, note that service
2213
+ # quotas may impose lower limits. Each service has its own default
2214
+ # quotas for the maximum capacity of the resource. If you want to
2215
+ # specify a higher limit, you can request an increase. For more
2216
+ # information, consult the documentation for that service. For
2217
+ # information about the default quotas for each service, see [Service
2218
+ # Endpoints and Quotas][1] in the *Amazon Web Services General
2219
+ # Reference*.
2220
+ #
2221
+ #
2032
2222
  #
2033
- # This parameter is required if you are registering a scalable target.
2223
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws-service-information.html
2034
2224
  # @return [Integer]
2035
2225
  #
2036
2226
  # @!attribute [rw] role_arn
@@ -2042,7 +2232,7 @@ module Aws::ApplicationAutoScaling
2042
2232
  # If the service supports service-linked roles, Application Auto
2043
2233
  # Scaling uses a service-linked role, which it creates if it does not
2044
2234
  # yet exist. For more information, see [Application Auto Scaling IAM
2045
- # Roles][1].
2235
+ # roles][1].
2046
2236
  #
2047
2237
  #
2048
2238
  #
@@ -2070,7 +2260,7 @@ module Aws::ApplicationAutoScaling
2070
2260
  # all scaling activities that involve scheduled actions are
2071
2261
  # suspended.
2072
2262
  #
2073
- # For more information, see [Suspending and Resuming Scaling][1] in
2263
+ # For more information, see [Suspending and resuming scaling][1] in
2074
2264
  # the *Application Auto Scaling User Guide*.
2075
2265
  #
2076
2266
  #
@@ -2147,6 +2337,11 @@ module Aws::ApplicationAutoScaling
2147
2337
  # Example:
2148
2338
  # `arn:aws:comprehend:us-west-2:123456789012:document-classifier-endpoint/EXAMPLE`.
2149
2339
  #
2340
+ # * Amazon Comprehend entity recognizer endpoint - The resource type
2341
+ # and unique identifier are specified using the endpoint ARN.
2342
+ # Example:
2343
+ # `arn:aws:comprehend:us-west-2:123456789012:entity-recognizer-endpoint/EXAMPLE`.
2344
+ #
2150
2345
  # * Lambda provisioned concurrency - The resource type is `function`
2151
2346
  # and the unique identifier is the function name with a function
2152
2347
  # version or alias name suffix that is not `$LATEST`. Example:
@@ -2156,6 +2351,10 @@ module Aws::ApplicationAutoScaling
2156
2351
  # unique identifier is the table name. Example:
2157
2352
  # `keyspace/mykeyspace/table/mytable`.
2158
2353
  #
2354
+ # * Amazon MSK cluster - The resource type and unique identifier are
2355
+ # specified using the cluster ARN. Example:
2356
+ # `arn:aws:kafka:us-east-1:123456789012:cluster/demo-cluster-1/6357e0b2-0e6a-4b86-a0b4-70df934c2e31-5`.
2357
+ #
2159
2358
  #
2160
2359
  #
2161
2360
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -2204,6 +2403,10 @@ module Aws::ApplicationAutoScaling
2204
2403
  # The number of inference units for an Amazon Comprehend document
2205
2404
  # classification endpoint.
2206
2405
  #
2406
+ # * `comprehend:entity-recognizer-endpoint:DesiredInferenceUnits` -
2407
+ # The number of inference units for an Amazon Comprehend entity
2408
+ # recognizer endpoint.
2409
+ #
2207
2410
  # * `lambda:function:ProvisionedConcurrency` - The provisioned
2208
2411
  # concurrency for a Lambda function.
2209
2412
  #
@@ -2212,6 +2415,9 @@ module Aws::ApplicationAutoScaling
2212
2415
  #
2213
2416
  # * `cassandra:table:WriteCapacityUnits` - The provisioned write
2214
2417
  # capacity for an Amazon Keyspaces table.
2418
+ #
2419
+ # * `kafka:broker-storage:VolumeSize` - The provisioned volume size
2420
+ # (in GiB) for brokers in an Amazon MSK cluster.
2215
2421
  # @return [String]
2216
2422
  #
2217
2423
  # @!attribute [rw] min_capacity
@@ -2264,12 +2470,27 @@ module Aws::ApplicationAutoScaling
2264
2470
  # @!attribute [rw] min_capacity
2265
2471
  # The minimum capacity.
2266
2472
  #
2267
- # For Lambda provisioned concurrency, the minimum value allowed is 0.
2268
- # For all other resources, the minimum value allowed is 1.
2473
+ # For certain resources, the minimum value allowed is 0. This includes
2474
+ # Lambda provisioned concurrency, Spot Fleet, ECS services, Aurora DB
2475
+ # clusters, EMR clusters, and custom resources. For all other
2476
+ # resources, the minimum value allowed is 1.
2269
2477
  # @return [Integer]
2270
2478
  #
2271
2479
  # @!attribute [rw] max_capacity
2272
2480
  # The maximum capacity.
2481
+ #
2482
+ # Although you can specify a large maximum capacity, note that service
2483
+ # quotas may impose lower limits. Each service has its own default
2484
+ # quotas for the maximum capacity of the resource. If you want to
2485
+ # specify a higher limit, you can request an increase. For more
2486
+ # information, consult the documentation for that service. For
2487
+ # information about the default quotas for each service, see [Service
2488
+ # Endpoints and Quotas][1] in the *Amazon Web Services General
2489
+ # Reference*.
2490
+ #
2491
+ #
2492
+ #
2493
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws-service-information.html
2273
2494
  # @return [Integer]
2274
2495
  #
2275
2496
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/ScalableTargetAction AWS API Documentation
@@ -2336,6 +2557,11 @@ module Aws::ApplicationAutoScaling
2336
2557
  # Example:
2337
2558
  # `arn:aws:comprehend:us-west-2:123456789012:document-classifier-endpoint/EXAMPLE`.
2338
2559
  #
2560
+ # * Amazon Comprehend entity recognizer endpoint - The resource type
2561
+ # and unique identifier are specified using the endpoint ARN.
2562
+ # Example:
2563
+ # `arn:aws:comprehend:us-west-2:123456789012:entity-recognizer-endpoint/EXAMPLE`.
2564
+ #
2339
2565
  # * Lambda provisioned concurrency - The resource type is `function`
2340
2566
  # and the unique identifier is the function name with a function
2341
2567
  # version or alias name suffix that is not `$LATEST`. Example:
@@ -2345,6 +2571,10 @@ module Aws::ApplicationAutoScaling
2345
2571
  # unique identifier is the table name. Example:
2346
2572
  # `keyspace/mykeyspace/table/mytable`.
2347
2573
  #
2574
+ # * Amazon MSK cluster - The resource type and unique identifier are
2575
+ # specified using the cluster ARN. Example:
2576
+ # `arn:aws:kafka:us-east-1:123456789012:cluster/demo-cluster-1/6357e0b2-0e6a-4b86-a0b4-70df934c2e31-5`.
2577
+ #
2348
2578
  #
2349
2579
  #
2350
2580
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -2392,6 +2622,10 @@ module Aws::ApplicationAutoScaling
2392
2622
  # The number of inference units for an Amazon Comprehend document
2393
2623
  # classification endpoint.
2394
2624
  #
2625
+ # * `comprehend:entity-recognizer-endpoint:DesiredInferenceUnits` -
2626
+ # The number of inference units for an Amazon Comprehend entity
2627
+ # recognizer endpoint.
2628
+ #
2395
2629
  # * `lambda:function:ProvisionedConcurrency` - The provisioned
2396
2630
  # concurrency for a Lambda function.
2397
2631
  #
@@ -2400,6 +2634,9 @@ module Aws::ApplicationAutoScaling
2400
2634
  #
2401
2635
  # * `cassandra:table:WriteCapacityUnits` - The provisioned write
2402
2636
  # capacity for an Amazon Keyspaces table.
2637
+ #
2638
+ # * `kafka:broker-storage:VolumeSize` - The provisioned volume size
2639
+ # (in GiB) for brokers in an Amazon MSK cluster.
2403
2640
  # @return [String]
2404
2641
  #
2405
2642
  # @!attribute [rw] description
@@ -2451,6 +2688,14 @@ module Aws::ApplicationAutoScaling
2451
2688
 
2452
2689
  # Represents a scaling policy to use with Application Auto Scaling.
2453
2690
  #
2691
+ # For more information about configuring scaling policies for a specific
2692
+ # service, see [Getting started with Application Auto Scaling][1] in the
2693
+ # *Application Auto Scaling User Guide*.
2694
+ #
2695
+ #
2696
+ #
2697
+ # [1]: https://docs.aws.amazon.com/autoscaling/application/userguide/getting-started.html
2698
+ #
2454
2699
  # @!attribute [rw] policy_arn
2455
2700
  # The Amazon Resource Name (ARN) of the scaling policy.
2456
2701
  # @return [String]
@@ -2508,6 +2753,11 @@ module Aws::ApplicationAutoScaling
2508
2753
  # Example:
2509
2754
  # `arn:aws:comprehend:us-west-2:123456789012:document-classifier-endpoint/EXAMPLE`.
2510
2755
  #
2756
+ # * Amazon Comprehend entity recognizer endpoint - The resource type
2757
+ # and unique identifier are specified using the endpoint ARN.
2758
+ # Example:
2759
+ # `arn:aws:comprehend:us-west-2:123456789012:entity-recognizer-endpoint/EXAMPLE`.
2760
+ #
2511
2761
  # * Lambda provisioned concurrency - The resource type is `function`
2512
2762
  # and the unique identifier is the function name with a function
2513
2763
  # version or alias name suffix that is not `$LATEST`. Example:
@@ -2517,6 +2767,10 @@ module Aws::ApplicationAutoScaling
2517
2767
  # unique identifier is the table name. Example:
2518
2768
  # `keyspace/mykeyspace/table/mytable`.
2519
2769
  #
2770
+ # * Amazon MSK cluster - The resource type and unique identifier are
2771
+ # specified using the cluster ARN. Example:
2772
+ # `arn:aws:kafka:us-east-1:123456789012:cluster/demo-cluster-1/6357e0b2-0e6a-4b86-a0b4-70df934c2e31-5`.
2773
+ #
2520
2774
  #
2521
2775
  #
2522
2776
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -2564,6 +2818,10 @@ module Aws::ApplicationAutoScaling
2564
2818
  # The number of inference units for an Amazon Comprehend document
2565
2819
  # classification endpoint.
2566
2820
  #
2821
+ # * `comprehend:entity-recognizer-endpoint:DesiredInferenceUnits` -
2822
+ # The number of inference units for an Amazon Comprehend entity
2823
+ # recognizer endpoint.
2824
+ #
2567
2825
  # * `lambda:function:ProvisionedConcurrency` - The provisioned
2568
2826
  # concurrency for a Lambda function.
2569
2827
  #
@@ -2572,6 +2830,9 @@ module Aws::ApplicationAutoScaling
2572
2830
  #
2573
2831
  # * `cassandra:table:WriteCapacityUnits` - The provisioned write
2574
2832
  # capacity for an Amazon Keyspaces table.
2833
+ #
2834
+ # * `kafka:broker-storage:VolumeSize` - The provisioned volume size
2835
+ # (in GiB) for brokers in an Amazon MSK cluster.
2575
2836
  # @return [String]
2576
2837
  #
2577
2838
  # @!attribute [rw] policy_type
@@ -2635,22 +2896,34 @@ module Aws::ApplicationAutoScaling
2635
2896
  #
2636
2897
  # * Cron expressions - "`cron(fields)`"
2637
2898
  #
2638
- # At expressions are useful for one-time schedules. Specify the time
2639
- # in UTC.
2899
+ # At expressions are useful for one-time schedules. Cron expressions
2900
+ # are useful for scheduled actions that run periodically at a
2901
+ # specified date and time, and rate expressions are useful for
2902
+ # scheduled actions that run at a regular interval.
2903
+ #
2904
+ # At and cron expressions use Universal Coordinated Time (UTC) by
2905
+ # default.
2906
+ #
2907
+ # The cron format consists of six fields separated by white spaces:
2908
+ # \[Minutes\] \[Hours\] \[Day\_of\_Month\] \[Month\] \[Day\_of\_Week\]
2909
+ # \[Year\].
2640
2910
  #
2641
2911
  # For rate expressions, *value* is a positive integer and *unit* is
2642
2912
  # `minute` \| `minutes` \| `hour` \| `hours` \| `day` \| `days`.
2643
2913
  #
2644
- # For more information about cron expressions, see [Cron
2645
- # Expressions][1] in the *Amazon CloudWatch Events User Guide*.
2914
+ # For more information and examples, see [Example scheduled actions
2915
+ # for Application Auto Scaling][1] in the *Application Auto Scaling
2916
+ # User Guide*.
2646
2917
  #
2647
- # For examples of using these expressions, see [Scheduled Scaling][2]
2648
- # in the *Application Auto Scaling User Guide*.
2649
2918
  #
2650
2919
  #
2920
+ # [1]: https://docs.aws.amazon.com/autoscaling/application/userguide/examples-scheduled-actions.html
2921
+ # @return [String]
2651
2922
  #
2652
- # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/ScheduledEvents.html#CronExpressions
2653
- # [2]: https://docs.aws.amazon.com/autoscaling/application/userguide/application-auto-scaling-scheduled-scaling.html
2923
+ # @!attribute [rw] timezone
2924
+ # The time zone used when referring to the date and time of a
2925
+ # scheduled action, when the scheduled action uses an at or cron
2926
+ # expression.
2654
2927
  # @return [String]
2655
2928
  #
2656
2929
  # @!attribute [rw] resource_id
@@ -2697,6 +2970,11 @@ module Aws::ApplicationAutoScaling
2697
2970
  # Example:
2698
2971
  # `arn:aws:comprehend:us-west-2:123456789012:document-classifier-endpoint/EXAMPLE`.
2699
2972
  #
2973
+ # * Amazon Comprehend entity recognizer endpoint - The resource type
2974
+ # and unique identifier are specified using the endpoint ARN.
2975
+ # Example:
2976
+ # `arn:aws:comprehend:us-west-2:123456789012:entity-recognizer-endpoint/EXAMPLE`.
2977
+ #
2700
2978
  # * Lambda provisioned concurrency - The resource type is `function`
2701
2979
  # and the unique identifier is the function name with a function
2702
2980
  # version or alias name suffix that is not `$LATEST`. Example:
@@ -2706,6 +2984,10 @@ module Aws::ApplicationAutoScaling
2706
2984
  # unique identifier is the table name. Example:
2707
2985
  # `keyspace/mykeyspace/table/mytable`.
2708
2986
  #
2987
+ # * Amazon MSK cluster - The resource type and unique identifier are
2988
+ # specified using the cluster ARN. Example:
2989
+ # `arn:aws:kafka:us-east-1:123456789012:cluster/demo-cluster-1/6357e0b2-0e6a-4b86-a0b4-70df934c2e31-5`.
2990
+ #
2709
2991
  #
2710
2992
  #
2711
2993
  # [1]: https://github.com/aws/aws-auto-scaling-custom-resource
@@ -2753,6 +3035,10 @@ module Aws::ApplicationAutoScaling
2753
3035
  # The number of inference units for an Amazon Comprehend document
2754
3036
  # classification endpoint.
2755
3037
  #
3038
+ # * `comprehend:entity-recognizer-endpoint:DesiredInferenceUnits` -
3039
+ # The number of inference units for an Amazon Comprehend entity
3040
+ # recognizer endpoint.
3041
+ #
2756
3042
  # * `lambda:function:ProvisionedConcurrency` - The provisioned
2757
3043
  # concurrency for a Lambda function.
2758
3044
  #
@@ -2761,14 +3047,17 @@ module Aws::ApplicationAutoScaling
2761
3047
  #
2762
3048
  # * `cassandra:table:WriteCapacityUnits` - The provisioned write
2763
3049
  # capacity for an Amazon Keyspaces table.
3050
+ #
3051
+ # * `kafka:broker-storage:VolumeSize` - The provisioned volume size
3052
+ # (in GiB) for brokers in an Amazon MSK cluster.
2764
3053
  # @return [String]
2765
3054
  #
2766
3055
  # @!attribute [rw] start_time
2767
- # The date and time that the action is scheduled to begin.
3056
+ # The date and time that the action is scheduled to begin, in UTC.
2768
3057
  # @return [Time]
2769
3058
  #
2770
3059
  # @!attribute [rw] end_time
2771
- # The date and time that the action is scheduled to end.
3060
+ # The date and time that the action is scheduled to end, in UTC.
2772
3061
  # @return [Time]
2773
3062
  #
2774
3063
  # @!attribute [rw] scalable_target_action
@@ -2791,6 +3080,7 @@ module Aws::ApplicationAutoScaling
2791
3080
  :scheduled_action_arn,
2792
3081
  :service_namespace,
2793
3082
  :schedule,
3083
+ :timezone,
2794
3084
  :resource_id,
2795
3085
  :scalable_dimension,
2796
3086
  :start_time,
@@ -2868,7 +3158,8 @@ module Aws::ApplicationAutoScaling
2868
3158
  # @!attribute [rw] scaling_adjustment
2869
3159
  # The amount by which to scale, based on the specified adjustment
2870
3160
  # type. A positive value adds to the current capacity while a negative
2871
- # number removes from the current capacity.
3161
+ # number removes from the current capacity. For exact capacity, you
3162
+ # must specify a positive value.
2872
3163
  # @return [Integer]
2873
3164
  #
2874
3165
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/StepAdjustment AWS API Documentation
@@ -2902,9 +3193,10 @@ module Aws::ApplicationAutoScaling
2902
3193
  # }
2903
3194
  #
2904
3195
  # @!attribute [rw] adjustment_type
2905
- # Specifies whether the `ScalingAdjustment` value in a
2906
- # [StepAdjustment][1] is an absolute number or a percentage of the
2907
- # current capacity.
3196
+ # Specifies how the `ScalingAdjustment` value in a [StepAdjustment][1]
3197
+ # is interpreted (for example, an absolute number or a percentage).
3198
+ # The valid values are `ChangeInCapacity`, `ExactCapacity`, and
3199
+ # `PercentChangeInCapacity`.
2908
3200
  #
2909
3201
  # `AdjustmentType` is required if you are adding a new step scaling
2910
3202
  # policy configuration.
@@ -2923,15 +3215,13 @@ module Aws::ApplicationAutoScaling
2923
3215
  # @return [Array<Types::StepAdjustment>]
2924
3216
  #
2925
3217
  # @!attribute [rw] min_adjustment_magnitude
2926
- # The minimum value to scale by when scaling by percentages. For
2927
- # example, suppose that you create a step scaling policy to scale out
2928
- # an Amazon ECS service by 25 percent and you specify a
2929
- # `MinAdjustmentMagnitude` of 2. If the service has 4 tasks and the
2930
- # scaling policy is performed, 25 percent of 4 is 1. However, because
2931
- # you specified a `MinAdjustmentMagnitude` of 2, Application Auto
2932
- # Scaling scales out the service by 2 tasks.
2933
- #
2934
- # Valid only if the adjustment type is `PercentChangeInCapacity`.
3218
+ # The minimum value to scale by when the adjustment type is
3219
+ # `PercentChangeInCapacity`. For example, suppose that you create a
3220
+ # step scaling policy to scale out an Amazon ECS service by 25 percent
3221
+ # and you specify a `MinAdjustmentMagnitude` of 2. If the service has
3222
+ # 4 tasks and the scaling policy is performed, 25 percent of 4 is 1.
3223
+ # However, because you specified a `MinAdjustmentMagnitude` of 2,
3224
+ # Application Auto Scaling scales out the service by 2 tasks.
2935
3225
  # @return [Integer]
2936
3226
  #
2937
3227
  # @!attribute [rw] cooldown
@@ -2941,12 +3231,14 @@ module Aws::ApplicationAutoScaling
2941
3231
  # With scale-out policies, the intention is to continuously (but not
2942
3232
  # excessively) scale out. After Application Auto Scaling successfully
2943
3233
  # scales out using a step scaling policy, it starts to calculate the
2944
- # cooldown time. While the cooldown period is in effect, capacity
2945
- # added by the initiating scale-out activity is calculated as part of
2946
- # the desired capacity for the next scale-out activity. For example,
2947
- # when an alarm triggers a step scaling policy to increase the
2948
- # capacity by 2, the scaling activity completes successfully, and a
2949
- # cooldown period starts. If the alarm triggers again during the
3234
+ # cooldown time. The scaling policy won't increase the desired
3235
+ # capacity again unless either a larger scale out is triggered or the
3236
+ # cooldown period ends. While the cooldown period is in effect,
3237
+ # capacity added by the initiating scale-out activity is calculated as
3238
+ # part of the desired capacity for the next scale-out activity. For
3239
+ # example, when an alarm triggers a step scaling policy to increase
3240
+ # the capacity by 2, the scaling activity completes successfully, and
3241
+ # a cooldown period starts. If the alarm triggers again during the
2950
3242
  # cooldown period but at a more aggressive step adjustment of 3, the
2951
3243
  # previous increase of 2 is considered part of the current capacity.
2952
3244
  # Therefore, only 1 is added to the capacity.
@@ -2982,11 +3274,14 @@ module Aws::ApplicationAutoScaling
2982
3274
  #
2983
3275
  # * DynamoDB global secondary indexes
2984
3276
  #
2985
- # * Amazon Comprehend document classification endpoints
3277
+ # * Amazon Comprehend document classification and entity recognizer
3278
+ # endpoints
2986
3279
  #
2987
3280
  # * Lambda provisioned concurrency
2988
3281
  #
2989
3282
  # * Amazon Keyspaces tables
3283
+ #
3284
+ # * Amazon MSK broker storage
2990
3285
  # @return [Integer]
2991
3286
  #
2992
3287
  # @!attribute [rw] metric_aggregation_type
@@ -3058,7 +3353,7 @@ module Aws::ApplicationAutoScaling
3058
3353
  # {
3059
3354
  # target_value: 1.0, # required
3060
3355
  # predefined_metric_specification: {
3061
- # predefined_metric_type: "DynamoDBReadCapacityUtilization", # required, accepts DynamoDBReadCapacityUtilization, DynamoDBWriteCapacityUtilization, ALBRequestCountPerTarget, RDSReaderAverageCPUUtilization, RDSReaderAverageDatabaseConnections, EC2SpotFleetRequestAverageCPUUtilization, EC2SpotFleetRequestAverageNetworkIn, EC2SpotFleetRequestAverageNetworkOut, SageMakerVariantInvocationsPerInstance, ECSServiceAverageCPUUtilization, ECSServiceAverageMemoryUtilization, AppStreamAverageCapacityUtilization, ComprehendInferenceUtilization, LambdaProvisionedConcurrencyUtilization, CassandraReadCapacityUtilization, CassandraWriteCapacityUtilization
3356
+ # predefined_metric_type: "DynamoDBReadCapacityUtilization", # required, accepts DynamoDBReadCapacityUtilization, DynamoDBWriteCapacityUtilization, ALBRequestCountPerTarget, RDSReaderAverageCPUUtilization, RDSReaderAverageDatabaseConnections, EC2SpotFleetRequestAverageCPUUtilization, EC2SpotFleetRequestAverageNetworkIn, EC2SpotFleetRequestAverageNetworkOut, SageMakerVariantInvocationsPerInstance, ECSServiceAverageCPUUtilization, ECSServiceAverageMemoryUtilization, AppStreamAverageCapacityUtilization, ComprehendInferenceUtilization, LambdaProvisionedConcurrencyUtilization, CassandraReadCapacityUtilization, CassandraWriteCapacityUtilization, KafkaBrokerStorageUtilization
3062
3357
  # resource_label: "ResourceLabel",
3063
3358
  # },
3064
3359
  # customized_metric_specification: {
@@ -3079,8 +3374,13 @@ module Aws::ApplicationAutoScaling
3079
3374
  # }
3080
3375
  #
3081
3376
  # @!attribute [rw] target_value
3082
- # The target value for the metric. The range is 8.515920e-109 to
3083
- # 1.174271e+108 (Base 10) or 2e-360 to 2e360 (Base 2).
3377
+ # The target value for the metric. Although this property accepts
3378
+ # numbers of type Double, it won't accept values that are either too
3379
+ # small or too large. Values must be in the range of -2^360 to 2^360.
3380
+ # The value must be a valid number based on the choice of metric. For
3381
+ # example, if the metric is CPU utilization, then the target value is
3382
+ # a percent value that represents how much of the CPU can be used
3383
+ # before scaling out.
3084
3384
  # @return [Float]
3085
3385
  #
3086
3386
  # @!attribute [rw] predefined_metric_specification
@@ -3100,10 +3400,12 @@ module Aws::ApplicationAutoScaling
3100
3400
  # With the *scale-out cooldown period*, the intention is to
3101
3401
  # continuously (but not excessively) scale out. After Application Auto
3102
3402
  # Scaling successfully scales out using a target tracking scaling
3103
- # policy, it starts to calculate the cooldown time. While the
3104
- # scale-out cooldown period is in effect, the capacity added by the
3105
- # initiating scale-out activity is calculated as part of the desired
3106
- # capacity for the next scale-out activity.
3403
+ # policy, it starts to calculate the cooldown time. The scaling policy
3404
+ # won't increase the desired capacity again unless either a larger
3405
+ # scale out is triggered or the cooldown period ends. While the
3406
+ # cooldown period is in effect, the capacity added by the initiating
3407
+ # scale-out activity is calculated as part of the desired capacity for
3408
+ # the next scale-out activity.
3107
3409
  #
3108
3410
  # Application Auto Scaling provides a default value of 300 for the
3109
3411
  # following scalable targets:
@@ -3128,11 +3430,14 @@ module Aws::ApplicationAutoScaling
3128
3430
  #
3129
3431
  # * DynamoDB global secondary indexes
3130
3432
  #
3131
- # * Amazon Comprehend document classification endpoints
3433
+ # * Amazon Comprehend document classification and entity recognizer
3434
+ # endpoints
3132
3435
  #
3133
3436
  # * Lambda provisioned concurrency
3134
3437
  #
3135
3438
  # * Amazon Keyspaces tables
3439
+ #
3440
+ # * Amazon MSK broker storage
3136
3441
  # @return [Integer]
3137
3442
  #
3138
3443
  # @!attribute [rw] scale_in_cooldown
@@ -3170,11 +3475,14 @@ module Aws::ApplicationAutoScaling
3170
3475
  #
3171
3476
  # * DynamoDB global secondary indexes
3172
3477
  #
3173
- # * Amazon Comprehend document classification endpoints
3478
+ # * Amazon Comprehend document classification and entity recognizer
3479
+ # endpoints
3174
3480
  #
3175
3481
  # * Lambda provisioned concurrency
3176
3482
  #
3177
3483
  # * Amazon Keyspaces tables
3484
+ #
3485
+ # * Amazon MSK broker storage
3178
3486
  # @return [Integer]
3179
3487
  #
3180
3488
  # @!attribute [rw] disable_scale_in