aws-sdk-applicationautoscaling 1.4.0 → 1.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 457c63d703093af8e063a301f52ff2d9f28fa798
4
- data.tar.gz: 3b3749ec1996c53322ce96815abd9136ba469c22
3
+ metadata.gz: 2655c7af2ad9028666b2883e8816e7aaa5f91e77
4
+ data.tar.gz: 9b6595acb51dcd0e329651420514168163112147
5
5
  SHA512:
6
- metadata.gz: 186f691f6e1300efae030bcf4a2d2ff997ab7126eb3301f8bb45b55961163ae2211e029de12cf79b0d461affa2b7bb43152f33944c345ccbe977ca6328d8189d
7
- data.tar.gz: 25e9ba306ecfa64465a4d9c75e29d4babf6a81ad392118d0e27edf1a5e55ccc3c820bd1d87571c7e81055dda0d89534268b81a12236456d93f2a0e4c984d7e7b
6
+ metadata.gz: bcd1f7038fc769912598a73b85f426c1a5e2ab1082976b9d71a27d16aba369729523aee688b180c6a6fc1210c2aa55e14ad868c37ad4fa570e8df0ee3a0bc357
7
+ data.tar.gz: 4aca4b0759cd89e17b13b384e56f623dccbd5f9baf796114bfaf595718530b25baa2501dbbf32d341f47b0d1916bd26dc5873a11833dc24121a40963a658e607
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-applicationautoscaling/customizations'
42
42
  # @service
43
43
  module Aws::ApplicationAutoScaling
44
44
 
45
- GEM_VERSION = '1.4.0'
45
+ GEM_VERSION = '1.5.0'
46
46
 
47
47
  end
@@ -201,6 +201,9 @@ module Aws::ApplicationAutoScaling
201
201
  # the unique identifier is the resource ID. Example:
202
202
  # `table/my-table/index/my-table-index`.
203
203
  #
204
+ # * Aurora DB cluster - The resource type is `cluster` and the unique
205
+ # identifier is the cluster name. Example: `cluster:my-db-cluster`.
206
+ #
204
207
  # @option params [required, String] :scalable_dimension
205
208
  # The scalable dimension. This string consists of the service namespace,
206
209
  # resource type, and scaling property.
@@ -229,6 +232,9 @@ module Aws::ApplicationAutoScaling
229
232
  # * `dynamodb:index:WriteCapacityUnits` - The provisioned write capacity
230
233
  # for a DynamoDB global secondary index.
231
234
  #
235
+ # * `rds:cluster:ReadReplicaCount` - The count of Aurora Replicas in an
236
+ # Aurora DB cluster. Available for Aurora MySQL-compatible edition.
237
+ #
232
238
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
233
239
  #
234
240
  #
@@ -252,9 +258,9 @@ module Aws::ApplicationAutoScaling
252
258
  #
253
259
  # resp = client.delete_scaling_policy({
254
260
  # policy_name: "ResourceIdMaxLen1600", # required
255
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb
261
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds
256
262
  # resource_id: "ResourceIdMaxLen1600", # required
257
- # 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
263
+ # 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
258
264
  # })
259
265
  #
260
266
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeleteScalingPolicy AWS API Documentation
@@ -305,6 +311,9 @@ module Aws::ApplicationAutoScaling
305
311
  # the unique identifier is the resource ID. Example:
306
312
  # `table/my-table/index/my-table-index`.
307
313
  #
314
+ # * Aurora DB cluster - The resource type is `cluster` and the unique
315
+ # identifier is the cluster name. Example: `cluster:my-db-cluster`.
316
+ #
308
317
  # @option params [String] :scalable_dimension
309
318
  # The scalable dimension. This string consists of the service namespace,
310
319
  # resource type, and scaling property.
@@ -333,15 +342,18 @@ module Aws::ApplicationAutoScaling
333
342
  # * `dynamodb:index:WriteCapacityUnits` - The provisioned write capacity
334
343
  # for a DynamoDB global secondary index.
335
344
  #
345
+ # * `rds:cluster:ReadReplicaCount` - The count of Aurora Replicas in an
346
+ # Aurora DB cluster. Available for Aurora MySQL-compatible edition.
347
+ #
336
348
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
337
349
  #
338
350
  # @example Request syntax with placeholder values
339
351
  #
340
352
  # resp = client.delete_scheduled_action({
341
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb
353
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds
342
354
  # scheduled_action_name: "ResourceIdMaxLen1600", # required
343
355
  # resource_id: "ResourceIdMaxLen1600", # required
344
- # 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
356
+ # 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
345
357
  # })
346
358
  #
347
359
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeleteScheduledAction AWS API Documentation
@@ -395,6 +407,9 @@ module Aws::ApplicationAutoScaling
395
407
  # the unique identifier is the resource ID. Example:
396
408
  # `table/my-table/index/my-table-index`.
397
409
  #
410
+ # * Aurora DB cluster - The resource type is `cluster` and the unique
411
+ # identifier is the cluster name. Example: `cluster:my-db-cluster`.
412
+ #
398
413
  # @option params [required, String] :scalable_dimension
399
414
  # The scalable dimension associated with the scalable target. This
400
415
  # string consists of the service namespace, resource type, and scaling
@@ -424,6 +439,9 @@ module Aws::ApplicationAutoScaling
424
439
  # * `dynamodb:index:WriteCapacityUnits` - The provisioned write capacity
425
440
  # for a DynamoDB global secondary index.
426
441
  #
442
+ # * `rds:cluster:ReadReplicaCount` - The count of Aurora Replicas in an
443
+ # Aurora DB cluster. Available for Aurora MySQL-compatible edition.
444
+ #
427
445
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
428
446
  #
429
447
  #
@@ -445,9 +463,9 @@ module Aws::ApplicationAutoScaling
445
463
  # @example Request syntax with placeholder values
446
464
  #
447
465
  # resp = client.deregister_scalable_target({
448
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb
466
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds
449
467
  # resource_id: "ResourceIdMaxLen1600", # required
450
- # 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
468
+ # 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
451
469
  # })
452
470
  #
453
471
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeregisterScalableTarget AWS API Documentation
@@ -504,6 +522,9 @@ module Aws::ApplicationAutoScaling
504
522
  # the unique identifier is the resource ID. Example:
505
523
  # `table/my-table/index/my-table-index`.
506
524
  #
525
+ # * Aurora DB cluster - The resource type is `cluster` and the unique
526
+ # identifier is the cluster name. Example: `cluster:my-db-cluster`.
527
+ #
507
528
  # @option params [String] :scalable_dimension
508
529
  # The scalable dimension associated with the scalable target. This
509
530
  # string consists of the service namespace, resource type, and scaling
@@ -534,6 +555,9 @@ module Aws::ApplicationAutoScaling
534
555
  # * `dynamodb:index:WriteCapacityUnits` - The provisioned write capacity
535
556
  # for a DynamoDB global secondary index.
536
557
  #
558
+ # * `rds:cluster:ReadReplicaCount` - The count of Aurora Replicas in an
559
+ # Aurora DB cluster. Available for Aurora MySQL-compatible edition.
560
+ #
537
561
  # @option params [Integer] :max_results
538
562
  # The maximum number of scalable target results. This value can be
539
563
  # between 1 and 50. The default value is 50.
@@ -579,9 +603,9 @@ module Aws::ApplicationAutoScaling
579
603
  # @example Request syntax with placeholder values
580
604
  #
581
605
  # resp = client.describe_scalable_targets({
582
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb
606
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds
583
607
  # resource_ids: ["ResourceIdMaxLen1600"],
584
- # 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
608
+ # 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
585
609
  # max_results: 1,
586
610
  # next_token: "XmlString",
587
611
  # })
@@ -589,9 +613,9 @@ module Aws::ApplicationAutoScaling
589
613
  # @example Response structure
590
614
  #
591
615
  # resp.scalable_targets #=> Array
592
- # resp.scalable_targets[0].service_namespace #=> String, one of "ecs", "elasticmapreduce", "ec2", "appstream", "dynamodb"
616
+ # resp.scalable_targets[0].service_namespace #=> String, one of "ecs", "elasticmapreduce", "ec2", "appstream", "dynamodb", "rds"
593
617
  # resp.scalable_targets[0].resource_id #=> String
594
- # resp.scalable_targets[0].scalable_dimension #=> String, one of "ecs:service:DesiredCount", "ec2:spot-fleet-request:TargetCapacity", "elasticmapreduce:instancegroup:InstanceCount", "appstream:fleet:DesiredCapacity", "dynamodb:table:ReadCapacityUnits", "dynamodb:table:WriteCapacityUnits", "dynamodb:index:ReadCapacityUnits", "dynamodb:index:WriteCapacityUnits"
618
+ # resp.scalable_targets[0].scalable_dimension #=> String, one of "ecs:service:DesiredCount", "ec2:spot-fleet-request:TargetCapacity", "elasticmapreduce:instancegroup:InstanceCount", "appstream:fleet:DesiredCapacity", "dynamodb:table:ReadCapacityUnits", "dynamodb:table:WriteCapacityUnits", "dynamodb:index:ReadCapacityUnits", "dynamodb:index:WriteCapacityUnits", "rds:cluster:ReadReplicaCount"
595
619
  # resp.scalable_targets[0].min_capacity #=> Integer
596
620
  # resp.scalable_targets[0].max_capacity #=> Integer
597
621
  # resp.scalable_targets[0].role_arn #=> String
@@ -653,6 +677,9 @@ module Aws::ApplicationAutoScaling
653
677
  # the unique identifier is the resource ID. Example:
654
678
  # `table/my-table/index/my-table-index`.
655
679
  #
680
+ # * Aurora DB cluster - The resource type is `cluster` and the unique
681
+ # identifier is the cluster name. Example: `cluster:my-db-cluster`.
682
+ #
656
683
  # @option params [String] :scalable_dimension
657
684
  # The scalable dimension. This string consists of the service namespace,
658
685
  # resource type, and scaling property. If you specify a scalable
@@ -682,6 +709,9 @@ module Aws::ApplicationAutoScaling
682
709
  # * `dynamodb:index:WriteCapacityUnits` - The provisioned write capacity
683
710
  # for a DynamoDB global secondary index.
684
711
  #
712
+ # * `rds:cluster:ReadReplicaCount` - The count of Aurora Replicas in an
713
+ # Aurora DB cluster. Available for Aurora MySQL-compatible edition.
714
+ #
685
715
  # @option params [Integer] :max_results
686
716
  # The maximum number of scalable target results. This value can be
687
717
  # between 1 and 50. The default value is 50.
@@ -733,9 +763,9 @@ module Aws::ApplicationAutoScaling
733
763
  # @example Request syntax with placeholder values
734
764
  #
735
765
  # resp = client.describe_scaling_activities({
736
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb
766
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds
737
767
  # resource_id: "ResourceIdMaxLen1600",
738
- # 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
768
+ # 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
739
769
  # max_results: 1,
740
770
  # next_token: "XmlString",
741
771
  # })
@@ -744,9 +774,9 @@ module Aws::ApplicationAutoScaling
744
774
  #
745
775
  # resp.scaling_activities #=> Array
746
776
  # resp.scaling_activities[0].activity_id #=> String
747
- # resp.scaling_activities[0].service_namespace #=> String, one of "ecs", "elasticmapreduce", "ec2", "appstream", "dynamodb"
777
+ # resp.scaling_activities[0].service_namespace #=> String, one of "ecs", "elasticmapreduce", "ec2", "appstream", "dynamodb", "rds"
748
778
  # resp.scaling_activities[0].resource_id #=> String
749
- # resp.scaling_activities[0].scalable_dimension #=> String, one of "ecs:service:DesiredCount", "ec2:spot-fleet-request:TargetCapacity", "elasticmapreduce:instancegroup:InstanceCount", "appstream:fleet:DesiredCapacity", "dynamodb:table:ReadCapacityUnits", "dynamodb:table:WriteCapacityUnits", "dynamodb:index:ReadCapacityUnits", "dynamodb:index:WriteCapacityUnits"
779
+ # resp.scaling_activities[0].scalable_dimension #=> String, one of "ecs:service:DesiredCount", "ec2:spot-fleet-request:TargetCapacity", "elasticmapreduce:instancegroup:InstanceCount", "appstream:fleet:DesiredCapacity", "dynamodb:table:ReadCapacityUnits", "dynamodb:table:WriteCapacityUnits", "dynamodb:index:ReadCapacityUnits", "dynamodb:index:WriteCapacityUnits", "rds:cluster:ReadReplicaCount"
750
780
  # resp.scaling_activities[0].description #=> String
751
781
  # resp.scaling_activities[0].cause #=> String
752
782
  # resp.scaling_activities[0].start_time #=> Time
@@ -812,6 +842,9 @@ module Aws::ApplicationAutoScaling
812
842
  # the unique identifier is the resource ID. Example:
813
843
  # `table/my-table/index/my-table-index`.
814
844
  #
845
+ # * Aurora DB cluster - The resource type is `cluster` and the unique
846
+ # identifier is the cluster name. Example: `cluster:my-db-cluster`.
847
+ #
815
848
  # @option params [String] :scalable_dimension
816
849
  # The scalable dimension. This string consists of the service namespace,
817
850
  # resource type, and scaling property. If you specify a scalable
@@ -841,6 +874,9 @@ module Aws::ApplicationAutoScaling
841
874
  # * `dynamodb:index:WriteCapacityUnits` - The provisioned write capacity
842
875
  # for a DynamoDB global secondary index.
843
876
  #
877
+ # * `rds:cluster:ReadReplicaCount` - The count of Aurora Replicas in an
878
+ # Aurora DB cluster. Available for Aurora MySQL-compatible edition.
879
+ #
844
880
  # @option params [Integer] :max_results
845
881
  # The maximum number of scalable target results. This value can be
846
882
  # between 1 and 50. The default value is 50.
@@ -904,9 +940,9 @@ module Aws::ApplicationAutoScaling
904
940
  #
905
941
  # resp = client.describe_scaling_policies({
906
942
  # policy_names: ["ResourceIdMaxLen1600"],
907
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb
943
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds
908
944
  # resource_id: "ResourceIdMaxLen1600",
909
- # 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
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
910
946
  # max_results: 1,
911
947
  # next_token: "XmlString",
912
948
  # })
@@ -916,9 +952,9 @@ module Aws::ApplicationAutoScaling
916
952
  # resp.scaling_policies #=> Array
917
953
  # resp.scaling_policies[0].policy_arn #=> String
918
954
  # resp.scaling_policies[0].policy_name #=> String
919
- # resp.scaling_policies[0].service_namespace #=> String, one of "ecs", "elasticmapreduce", "ec2", "appstream", "dynamodb"
955
+ # resp.scaling_policies[0].service_namespace #=> String, one of "ecs", "elasticmapreduce", "ec2", "appstream", "dynamodb", "rds"
920
956
  # resp.scaling_policies[0].resource_id #=> String
921
- # resp.scaling_policies[0].scalable_dimension #=> String, one of "ecs:service:DesiredCount", "ec2:spot-fleet-request:TargetCapacity", "elasticmapreduce:instancegroup:InstanceCount", "appstream:fleet:DesiredCapacity", "dynamodb:table:ReadCapacityUnits", "dynamodb:table:WriteCapacityUnits", "dynamodb:index:ReadCapacityUnits", "dynamodb:index:WriteCapacityUnits"
957
+ # resp.scaling_policies[0].scalable_dimension #=> String, one of "ecs:service:DesiredCount", "ec2:spot-fleet-request:TargetCapacity", "elasticmapreduce:instancegroup:InstanceCount", "appstream:fleet:DesiredCapacity", "dynamodb:table:ReadCapacityUnits", "dynamodb:table:WriteCapacityUnits", "dynamodb:index:ReadCapacityUnits", "dynamodb:index:WriteCapacityUnits", "rds:cluster:ReadReplicaCount"
922
958
  # resp.scaling_policies[0].policy_type #=> String, one of "StepScaling", "TargetTrackingScaling"
923
959
  # resp.scaling_policies[0].step_scaling_policy_configuration.adjustment_type #=> String, one of "ChangeInCapacity", "PercentChangeInCapacity", "ExactCapacity"
924
960
  # resp.scaling_policies[0].step_scaling_policy_configuration.step_adjustments #=> Array
@@ -929,7 +965,7 @@ module Aws::ApplicationAutoScaling
929
965
  # resp.scaling_policies[0].step_scaling_policy_configuration.cooldown #=> Integer
930
966
  # resp.scaling_policies[0].step_scaling_policy_configuration.metric_aggregation_type #=> String, one of "Average", "Minimum", "Maximum"
931
967
  # resp.scaling_policies[0].target_tracking_scaling_policy_configuration.target_value #=> Float
932
- # resp.scaling_policies[0].target_tracking_scaling_policy_configuration.predefined_metric_specification.predefined_metric_type #=> String, one of "DynamoDBReadCapacityUtilization", "DynamoDBWriteCapacityUtilization"
968
+ # resp.scaling_policies[0].target_tracking_scaling_policy_configuration.predefined_metric_specification.predefined_metric_type #=> String, one of "DynamoDBReadCapacityUtilization", "DynamoDBWriteCapacityUtilization", "RDSReaderAverageCPUUtilization", "RDSReaderAverageDatabaseConnections"
933
969
  # resp.scaling_policies[0].target_tracking_scaling_policy_configuration.predefined_metric_specification.resource_label #=> String
934
970
  # resp.scaling_policies[0].target_tracking_scaling_policy_configuration.customized_metric_specification.metric_name #=> String
935
971
  # resp.scaling_policies[0].target_tracking_scaling_policy_configuration.customized_metric_specification.namespace #=> String
@@ -1003,6 +1039,9 @@ module Aws::ApplicationAutoScaling
1003
1039
  # the unique identifier is the resource ID. Example:
1004
1040
  # `table/my-table/index/my-table-index`.
1005
1041
  #
1042
+ # * Aurora DB cluster - The resource type is `cluster` and the unique
1043
+ # identifier is the cluster name. Example: `cluster:my-db-cluster`.
1044
+ #
1006
1045
  # @option params [String] :scalable_dimension
1007
1046
  # The scalable dimension. This string consists of the service namespace,
1008
1047
  # resource type, and scaling property. If you specify a scalable
@@ -1032,8 +1071,11 @@ module Aws::ApplicationAutoScaling
1032
1071
  # * `dynamodb:index:WriteCapacityUnits` - The provisioned write capacity
1033
1072
  # for a DynamoDB global secondary index.
1034
1073
  #
1074
+ # * `rds:cluster:ReadReplicaCount` - The count of Aurora Replicas in an
1075
+ # Aurora DB cluster. Available for Aurora MySQL-compatible edition.
1076
+ #
1035
1077
  # @option params [Integer] :max_results
1036
- # The maximum number of scalable target results. This value can be
1078
+ # The maximum number of scheduled action results. This value can be
1037
1079
  # between 1 and 50. The default value is 50.
1038
1080
  #
1039
1081
  # If this parameter is used, the operation returns up to `MaxResults`
@@ -1054,9 +1096,9 @@ module Aws::ApplicationAutoScaling
1054
1096
  #
1055
1097
  # resp = client.describe_scheduled_actions({
1056
1098
  # scheduled_action_names: ["ResourceIdMaxLen1600"],
1057
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb
1099
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds
1058
1100
  # resource_id: "ResourceIdMaxLen1600",
1059
- # 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
1101
+ # 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
1060
1102
  # max_results: 1,
1061
1103
  # next_token: "XmlString",
1062
1104
  # })
@@ -1066,10 +1108,10 @@ module Aws::ApplicationAutoScaling
1066
1108
  # resp.scheduled_actions #=> Array
1067
1109
  # resp.scheduled_actions[0].scheduled_action_name #=> String
1068
1110
  # resp.scheduled_actions[0].scheduled_action_arn #=> String
1069
- # resp.scheduled_actions[0].service_namespace #=> String, one of "ecs", "elasticmapreduce", "ec2", "appstream", "dynamodb"
1111
+ # resp.scheduled_actions[0].service_namespace #=> String, one of "ecs", "elasticmapreduce", "ec2", "appstream", "dynamodb", "rds"
1070
1112
  # resp.scheduled_actions[0].schedule #=> String
1071
1113
  # resp.scheduled_actions[0].resource_id #=> String
1072
- # resp.scheduled_actions[0].scalable_dimension #=> String, one of "ecs:service:DesiredCount", "ec2:spot-fleet-request:TargetCapacity", "elasticmapreduce:instancegroup:InstanceCount", "appstream:fleet:DesiredCapacity", "dynamodb:table:ReadCapacityUnits", "dynamodb:table:WriteCapacityUnits", "dynamodb:index:ReadCapacityUnits", "dynamodb:index:WriteCapacityUnits"
1114
+ # resp.scheduled_actions[0].scalable_dimension #=> String, one of "ecs:service:DesiredCount", "ec2:spot-fleet-request:TargetCapacity", "elasticmapreduce:instancegroup:InstanceCount", "appstream:fleet:DesiredCapacity", "dynamodb:table:ReadCapacityUnits", "dynamodb:table:WriteCapacityUnits", "dynamodb:index:ReadCapacityUnits", "dynamodb:index:WriteCapacityUnits", "rds:cluster:ReadReplicaCount"
1073
1115
  # resp.scheduled_actions[0].start_time #=> Time
1074
1116
  # resp.scheduled_actions[0].end_time #=> Time
1075
1117
  # resp.scheduled_actions[0].scalable_target_action.min_capacity #=> Integer
@@ -1140,6 +1182,9 @@ module Aws::ApplicationAutoScaling
1140
1182
  # the unique identifier is the resource ID. Example:
1141
1183
  # `table/my-table/index/my-table-index`.
1142
1184
  #
1185
+ # * Aurora DB cluster - The resource type is `cluster` and the unique
1186
+ # identifier is the cluster name. Example: `cluster:my-db-cluster`.
1187
+ #
1143
1188
  # @option params [required, String] :scalable_dimension
1144
1189
  # The scalable dimension. This string consists of the service namespace,
1145
1190
  # resource type, and scaling property.
@@ -1168,6 +1213,9 @@ module Aws::ApplicationAutoScaling
1168
1213
  # * `dynamodb:index:WriteCapacityUnits` - The provisioned write capacity
1169
1214
  # for a DynamoDB global secondary index.
1170
1215
  #
1216
+ # * `rds:cluster:ReadReplicaCount` - The count of Aurora Replicas in an
1217
+ # Aurora DB cluster. Available for Aurora MySQL-compatible edition.
1218
+ #
1171
1219
  # @option params [String] :policy_type
1172
1220
  # The policy type. If you are creating a new policy, this parameter is
1173
1221
  # required. If you are updating a policy, this parameter is not
@@ -1254,9 +1302,9 @@ module Aws::ApplicationAutoScaling
1254
1302
  #
1255
1303
  # resp = client.put_scaling_policy({
1256
1304
  # policy_name: "PolicyName", # required
1257
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb
1305
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds
1258
1306
  # resource_id: "ResourceIdMaxLen1600", # required
1259
- # 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
1307
+ # 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
1260
1308
  # policy_type: "StepScaling", # accepts StepScaling, TargetTrackingScaling
1261
1309
  # step_scaling_policy_configuration: {
1262
1310
  # adjustment_type: "ChangeInCapacity", # accepts ChangeInCapacity, PercentChangeInCapacity, ExactCapacity
@@ -1274,7 +1322,7 @@ module Aws::ApplicationAutoScaling
1274
1322
  # target_tracking_scaling_policy_configuration: {
1275
1323
  # target_value: 1.0, # required
1276
1324
  # predefined_metric_specification: {
1277
- # predefined_metric_type: "DynamoDBReadCapacityUtilization", # required, accepts DynamoDBReadCapacityUtilization, DynamoDBWriteCapacityUtilization
1325
+ # predefined_metric_type: "DynamoDBReadCapacityUtilization", # required, accepts DynamoDBReadCapacityUtilization, DynamoDBWriteCapacityUtilization, RDSReaderAverageCPUUtilization, RDSReaderAverageDatabaseConnections
1278
1326
  # resource_label: "ResourceLabel",
1279
1327
  # },
1280
1328
  # customized_metric_specification: {
@@ -1387,6 +1435,9 @@ module Aws::ApplicationAutoScaling
1387
1435
  # the unique identifier is the resource ID. Example:
1388
1436
  # `table/my-table/index/my-table-index`.
1389
1437
  #
1438
+ # * Aurora DB cluster - The resource type is `cluster` and the unique
1439
+ # identifier is the cluster name. Example: `cluster:my-db-cluster`.
1440
+ #
1390
1441
  # @option params [String] :scalable_dimension
1391
1442
  # The scalable dimension. This string consists of the service namespace,
1392
1443
  # resource type, and scaling property.
@@ -1415,6 +1466,9 @@ module Aws::ApplicationAutoScaling
1415
1466
  # * `dynamodb:index:WriteCapacityUnits` - The provisioned write capacity
1416
1467
  # for a DynamoDB global secondary index.
1417
1468
  #
1469
+ # * `rds:cluster:ReadReplicaCount` - The count of Aurora Replicas in an
1470
+ # Aurora DB cluster. Available for Aurora MySQL-compatible edition.
1471
+ #
1418
1472
  # @option params [Time,DateTime,Date,Integer,String] :start_time
1419
1473
  # The date and time for the scheduled action to start.
1420
1474
  #
@@ -1433,11 +1487,11 @@ module Aws::ApplicationAutoScaling
1433
1487
  # @example Request syntax with placeholder values
1434
1488
  #
1435
1489
  # resp = client.put_scheduled_action({
1436
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb
1490
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds
1437
1491
  # schedule: "ResourceIdMaxLen1600",
1438
1492
  # scheduled_action_name: "ScheduledActionName", # required
1439
1493
  # resource_id: "ResourceIdMaxLen1600", # required
1440
- # 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
1494
+ # 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
1441
1495
  # start_time: Time.now,
1442
1496
  # end_time: Time.now,
1443
1497
  # scalable_target_action: {
@@ -1501,6 +1555,9 @@ module Aws::ApplicationAutoScaling
1501
1555
  # the unique identifier is the resource ID. Example:
1502
1556
  # `table/my-table/index/my-table-index`.
1503
1557
  #
1558
+ # * Aurora DB cluster - The resource type is `cluster` and the unique
1559
+ # identifier is the cluster name. Example: `cluster:my-db-cluster`.
1560
+ #
1504
1561
  # @option params [required, String] :scalable_dimension
1505
1562
  # The scalable dimension associated with the scalable target. This
1506
1563
  # string consists of the service namespace, resource type, and scaling
@@ -1530,6 +1587,9 @@ module Aws::ApplicationAutoScaling
1530
1587
  # * `dynamodb:index:WriteCapacityUnits` - The provisioned write capacity
1531
1588
  # for a DynamoDB global secondary index.
1532
1589
  #
1590
+ # * `rds:cluster:ReadReplicaCount` - The count of Aurora Replicas in an
1591
+ # Aurora DB cluster. Available for Aurora MySQL-compatible edition.
1592
+ #
1533
1593
  # @option params [Integer] :min_capacity
1534
1594
  # The minimum value to scale to in response to a scale in event. This
1535
1595
  # parameter is required if you are registering a scalable target and
@@ -1542,8 +1602,19 @@ module Aws::ApplicationAutoScaling
1542
1602
  #
1543
1603
  # @option params [String] :role_arn
1544
1604
  # The ARN of an IAM role that allows Application Auto Scaling to modify
1545
- # the scalable target on your behalf. This parameter is required when
1546
- # you register a scalable target and optional when you update one.
1605
+ # the scalable target on your behalf.
1606
+ #
1607
+ # With Amazon RDS resources, permissions are granted using a
1608
+ # service-linked role. For more information, see [Service-Linked Roles
1609
+ # for Application Auto Scaling][1].
1610
+ #
1611
+ # For resources that are not supported using a service-linked role, this
1612
+ # parameter is required when you register a scalable target and optional
1613
+ # when you update one.
1614
+ #
1615
+ #
1616
+ #
1617
+ # [1]: http://docs.aws.amazon.com/ApplicationAutoScaling/latest/APIReference/application-autoscaling-service-linked-roles.html
1547
1618
  #
1548
1619
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1549
1620
  #
@@ -1583,9 +1654,9 @@ module Aws::ApplicationAutoScaling
1583
1654
  # @example Request syntax with placeholder values
1584
1655
  #
1585
1656
  # resp = client.register_scalable_target({
1586
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb
1657
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds
1587
1658
  # resource_id: "ResourceIdMaxLen1600", # required
1588
- # 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
1659
+ # 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
1589
1660
  # min_capacity: 1,
1590
1661
  # max_capacity: 1,
1591
1662
  # role_arn: "ResourceIdMaxLen1600",
@@ -1613,7 +1684,7 @@ module Aws::ApplicationAutoScaling
1613
1684
  params: params,
1614
1685
  config: config)
1615
1686
  context[:gem_name] = 'aws-sdk-applicationautoscaling'
1616
- context[:gem_version] = '1.4.0'
1687
+ context[:gem_version] = '1.5.0'
1617
1688
  Seahorse::Client::Request.new(handlers, context)
1618
1689
  end
1619
1690
 
@@ -80,9 +80,9 @@ module Aws::ApplicationAutoScaling
80
80
  #
81
81
  # {
82
82
  # policy_name: "ResourceIdMaxLen1600", # required
83
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb
83
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds
84
84
  # resource_id: "ResourceIdMaxLen1600", # required
85
- # 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
85
+ # 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
86
86
  # }
87
87
  #
88
88
  # @!attribute [rw] policy_name
@@ -124,6 +124,9 @@ module Aws::ApplicationAutoScaling
124
124
  # * DynamoDB global secondary index - The resource type is `index` and
125
125
  # the unique identifier is the resource ID. Example:
126
126
  # `table/my-table/index/my-table-index`.
127
+ #
128
+ # * Aurora DB cluster - The resource type is `cluster` and the unique
129
+ # identifier is the cluster name. Example: `cluster:my-db-cluster`.
127
130
  # @return [String]
128
131
  #
129
132
  # @!attribute [rw] scalable_dimension
@@ -153,6 +156,10 @@ module Aws::ApplicationAutoScaling
153
156
  #
154
157
  # * `dynamodb:index:WriteCapacityUnits` - The provisioned write
155
158
  # capacity for a DynamoDB global secondary index.
159
+ #
160
+ # * `rds:cluster:ReadReplicaCount` - The count of Aurora Replicas in
161
+ # an Aurora DB cluster. Available for Aurora MySQL-compatible
162
+ # edition.
156
163
  # @return [String]
157
164
  #
158
165
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeleteScalingPolicyRequest AWS API Documentation
@@ -173,10 +180,10 @@ module Aws::ApplicationAutoScaling
173
180
  # data as a hash:
174
181
  #
175
182
  # {
176
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb
183
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds
177
184
  # scheduled_action_name: "ResourceIdMaxLen1600", # required
178
185
  # resource_id: "ResourceIdMaxLen1600", # required
179
- # 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
186
+ # 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
180
187
  # }
181
188
  #
182
189
  # @!attribute [rw] service_namespace
@@ -218,6 +225,9 @@ module Aws::ApplicationAutoScaling
218
225
  # * DynamoDB global secondary index - The resource type is `index` and
219
226
  # the unique identifier is the resource ID. Example:
220
227
  # `table/my-table/index/my-table-index`.
228
+ #
229
+ # * Aurora DB cluster - The resource type is `cluster` and the unique
230
+ # identifier is the cluster name. Example: `cluster:my-db-cluster`.
221
231
  # @return [String]
222
232
  #
223
233
  # @!attribute [rw] scalable_dimension
@@ -247,6 +257,10 @@ module Aws::ApplicationAutoScaling
247
257
  #
248
258
  # * `dynamodb:index:WriteCapacityUnits` - The provisioned write
249
259
  # capacity for a DynamoDB global secondary index.
260
+ #
261
+ # * `rds:cluster:ReadReplicaCount` - The count of Aurora Replicas in
262
+ # an Aurora DB cluster. Available for Aurora MySQL-compatible
263
+ # edition.
250
264
  # @return [String]
251
265
  #
252
266
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeleteScheduledActionRequest AWS API Documentation
@@ -267,9 +281,9 @@ module Aws::ApplicationAutoScaling
267
281
  # data as a hash:
268
282
  #
269
283
  # {
270
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb
284
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds
271
285
  # resource_id: "ResourceIdMaxLen1600", # required
272
- # 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
286
+ # 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
273
287
  # }
274
288
  #
275
289
  # @!attribute [rw] service_namespace
@@ -307,6 +321,9 @@ module Aws::ApplicationAutoScaling
307
321
  # * DynamoDB global secondary index - The resource type is `index` and
308
322
  # the unique identifier is the resource ID. Example:
309
323
  # `table/my-table/index/my-table-index`.
324
+ #
325
+ # * Aurora DB cluster - The resource type is `cluster` and the unique
326
+ # identifier is the cluster name. Example: `cluster:my-db-cluster`.
310
327
  # @return [String]
311
328
  #
312
329
  # @!attribute [rw] scalable_dimension
@@ -337,6 +354,10 @@ module Aws::ApplicationAutoScaling
337
354
  #
338
355
  # * `dynamodb:index:WriteCapacityUnits` - The provisioned write
339
356
  # capacity for a DynamoDB global secondary index.
357
+ #
358
+ # * `rds:cluster:ReadReplicaCount` - The count of Aurora Replicas in
359
+ # an Aurora DB cluster. Available for Aurora MySQL-compatible
360
+ # edition.
340
361
  # @return [String]
341
362
  #
342
363
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/DeregisterScalableTargetRequest AWS API Documentation
@@ -356,9 +377,9 @@ module Aws::ApplicationAutoScaling
356
377
  # data as a hash:
357
378
  #
358
379
  # {
359
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb
380
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds
360
381
  # resource_ids: ["ResourceIdMaxLen1600"],
361
- # 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
382
+ # 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
362
383
  # max_results: 1,
363
384
  # next_token: "XmlString",
364
385
  # }
@@ -400,6 +421,9 @@ module Aws::ApplicationAutoScaling
400
421
  # * DynamoDB global secondary index - The resource type is `index` and
401
422
  # the unique identifier is the resource ID. Example:
402
423
  # `table/my-table/index/my-table-index`.
424
+ #
425
+ # * Aurora DB cluster - The resource type is `cluster` and the unique
426
+ # identifier is the cluster name. Example: `cluster:my-db-cluster`.
403
427
  # @return [Array<String>]
404
428
  #
405
429
  # @!attribute [rw] scalable_dimension
@@ -431,6 +455,10 @@ module Aws::ApplicationAutoScaling
431
455
  #
432
456
  # * `dynamodb:index:WriteCapacityUnits` - The provisioned write
433
457
  # capacity for a DynamoDB global secondary index.
458
+ #
459
+ # * `rds:cluster:ReadReplicaCount` - The count of Aurora Replicas in
460
+ # an Aurora DB cluster. Available for Aurora MySQL-compatible
461
+ # edition.
434
462
  # @return [String]
435
463
  #
436
464
  # @!attribute [rw] max_results
@@ -480,9 +508,9 @@ module Aws::ApplicationAutoScaling
480
508
  # data as a hash:
481
509
  #
482
510
  # {
483
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb
511
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds
484
512
  # resource_id: "ResourceIdMaxLen1600",
485
- # 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
513
+ # 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
486
514
  # max_results: 1,
487
515
  # next_token: "XmlString",
488
516
  # }
@@ -524,6 +552,9 @@ module Aws::ApplicationAutoScaling
524
552
  # * DynamoDB global secondary index - The resource type is `index` and
525
553
  # the unique identifier is the resource ID. Example:
526
554
  # `table/my-table/index/my-table-index`.
555
+ #
556
+ # * Aurora DB cluster - The resource type is `cluster` and the unique
557
+ # identifier is the cluster name. Example: `cluster:my-db-cluster`.
527
558
  # @return [String]
528
559
  #
529
560
  # @!attribute [rw] scalable_dimension
@@ -554,6 +585,10 @@ module Aws::ApplicationAutoScaling
554
585
  #
555
586
  # * `dynamodb:index:WriteCapacityUnits` - The provisioned write
556
587
  # capacity for a DynamoDB global secondary index.
588
+ #
589
+ # * `rds:cluster:ReadReplicaCount` - The count of Aurora Replicas in
590
+ # an Aurora DB cluster. Available for Aurora MySQL-compatible
591
+ # edition.
557
592
  # @return [String]
558
593
  #
559
594
  # @!attribute [rw] max_results
@@ -604,9 +639,9 @@ module Aws::ApplicationAutoScaling
604
639
  #
605
640
  # {
606
641
  # policy_names: ["ResourceIdMaxLen1600"],
607
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb
642
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds
608
643
  # resource_id: "ResourceIdMaxLen1600",
609
- # 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
644
+ # 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
610
645
  # max_results: 1,
611
646
  # next_token: "XmlString",
612
647
  # }
@@ -652,6 +687,9 @@ module Aws::ApplicationAutoScaling
652
687
  # * DynamoDB global secondary index - The resource type is `index` and
653
688
  # the unique identifier is the resource ID. Example:
654
689
  # `table/my-table/index/my-table-index`.
690
+ #
691
+ # * Aurora DB cluster - The resource type is `cluster` and the unique
692
+ # identifier is the cluster name. Example: `cluster:my-db-cluster`.
655
693
  # @return [String]
656
694
  #
657
695
  # @!attribute [rw] scalable_dimension
@@ -682,6 +720,10 @@ module Aws::ApplicationAutoScaling
682
720
  #
683
721
  # * `dynamodb:index:WriteCapacityUnits` - The provisioned write
684
722
  # capacity for a DynamoDB global secondary index.
723
+ #
724
+ # * `rds:cluster:ReadReplicaCount` - The count of Aurora Replicas in
725
+ # an Aurora DB cluster. Available for Aurora MySQL-compatible
726
+ # edition.
685
727
  # @return [String]
686
728
  #
687
729
  # @!attribute [rw] max_results
@@ -733,9 +775,9 @@ module Aws::ApplicationAutoScaling
733
775
  #
734
776
  # {
735
777
  # scheduled_action_names: ["ResourceIdMaxLen1600"],
736
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb
778
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds
737
779
  # resource_id: "ResourceIdMaxLen1600",
738
- # 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
780
+ # 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
739
781
  # max_results: 1,
740
782
  # next_token: "XmlString",
741
783
  # }
@@ -781,6 +823,9 @@ module Aws::ApplicationAutoScaling
781
823
  # * DynamoDB global secondary index - The resource type is `index` and
782
824
  # the unique identifier is the resource ID. Example:
783
825
  # `table/my-table/index/my-table-index`.
826
+ #
827
+ # * Aurora DB cluster - The resource type is `cluster` and the unique
828
+ # identifier is the cluster name. Example: `cluster:my-db-cluster`.
784
829
  # @return [String]
785
830
  #
786
831
  # @!attribute [rw] scalable_dimension
@@ -811,10 +856,14 @@ module Aws::ApplicationAutoScaling
811
856
  #
812
857
  # * `dynamodb:index:WriteCapacityUnits` - The provisioned write
813
858
  # capacity for a DynamoDB global secondary index.
859
+ #
860
+ # * `rds:cluster:ReadReplicaCount` - The count of Aurora Replicas in
861
+ # an Aurora DB cluster. Available for Aurora MySQL-compatible
862
+ # edition.
814
863
  # @return [String]
815
864
  #
816
865
  # @!attribute [rw] max_results
817
- # The maximum number of scalable target results. This value can be
866
+ # The maximum number of scheduled action results. This value can be
818
867
  # between 1 and 50. The default value is 50.
819
868
  #
820
869
  # If this parameter is used, the operation returns up to `MaxResults`
@@ -889,7 +938,7 @@ module Aws::ApplicationAutoScaling
889
938
  # data as a hash:
890
939
  #
891
940
  # {
892
- # predefined_metric_type: "DynamoDBReadCapacityUtilization", # required, accepts DynamoDBReadCapacityUtilization, DynamoDBWriteCapacityUtilization
941
+ # predefined_metric_type: "DynamoDBReadCapacityUtilization", # required, accepts DynamoDBReadCapacityUtilization, DynamoDBWriteCapacityUtilization, RDSReaderAverageCPUUtilization, RDSReaderAverageDatabaseConnections
893
942
  # resource_label: "ResourceLabel",
894
943
  # }
895
944
  #
@@ -914,9 +963,9 @@ module Aws::ApplicationAutoScaling
914
963
  #
915
964
  # {
916
965
  # policy_name: "PolicyName", # required
917
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb
966
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds
918
967
  # resource_id: "ResourceIdMaxLen1600", # required
919
- # 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
968
+ # 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
920
969
  # policy_type: "StepScaling", # accepts StepScaling, TargetTrackingScaling
921
970
  # step_scaling_policy_configuration: {
922
971
  # adjustment_type: "ChangeInCapacity", # accepts ChangeInCapacity, PercentChangeInCapacity, ExactCapacity
@@ -934,7 +983,7 @@ module Aws::ApplicationAutoScaling
934
983
  # target_tracking_scaling_policy_configuration: {
935
984
  # target_value: 1.0, # required
936
985
  # predefined_metric_specification: {
937
- # predefined_metric_type: "DynamoDBReadCapacityUtilization", # required, accepts DynamoDBReadCapacityUtilization, DynamoDBWriteCapacityUtilization
986
+ # predefined_metric_type: "DynamoDBReadCapacityUtilization", # required, accepts DynamoDBReadCapacityUtilization, DynamoDBWriteCapacityUtilization, RDSReaderAverageCPUUtilization, RDSReaderAverageDatabaseConnections
938
987
  # resource_label: "ResourceLabel",
939
988
  # },
940
989
  # customized_metric_specification: {
@@ -994,6 +1043,9 @@ module Aws::ApplicationAutoScaling
994
1043
  # * DynamoDB global secondary index - The resource type is `index` and
995
1044
  # the unique identifier is the resource ID. Example:
996
1045
  # `table/my-table/index/my-table-index`.
1046
+ #
1047
+ # * Aurora DB cluster - The resource type is `cluster` and the unique
1048
+ # identifier is the cluster name. Example: `cluster:my-db-cluster`.
997
1049
  # @return [String]
998
1050
  #
999
1051
  # @!attribute [rw] scalable_dimension
@@ -1023,6 +1075,10 @@ module Aws::ApplicationAutoScaling
1023
1075
  #
1024
1076
  # * `dynamodb:index:WriteCapacityUnits` - The provisioned write
1025
1077
  # capacity for a DynamoDB global secondary index.
1078
+ #
1079
+ # * `rds:cluster:ReadReplicaCount` - The count of Aurora Replicas in
1080
+ # an Aurora DB cluster. Available for Aurora MySQL-compatible
1081
+ # edition.
1026
1082
  # @return [String]
1027
1083
  #
1028
1084
  # @!attribute [rw] policy_type
@@ -1081,11 +1137,11 @@ module Aws::ApplicationAutoScaling
1081
1137
  # data as a hash:
1082
1138
  #
1083
1139
  # {
1084
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb
1140
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds
1085
1141
  # schedule: "ResourceIdMaxLen1600",
1086
1142
  # scheduled_action_name: "ScheduledActionName", # required
1087
1143
  # resource_id: "ResourceIdMaxLen1600", # required
1088
- # 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
1144
+ # 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
1089
1145
  # start_time: Time.now,
1090
1146
  # end_time: Time.now,
1091
1147
  # scalable_target_action: {
@@ -1155,6 +1211,9 @@ module Aws::ApplicationAutoScaling
1155
1211
  # * DynamoDB global secondary index - The resource type is `index` and
1156
1212
  # the unique identifier is the resource ID. Example:
1157
1213
  # `table/my-table/index/my-table-index`.
1214
+ #
1215
+ # * Aurora DB cluster - The resource type is `cluster` and the unique
1216
+ # identifier is the cluster name. Example: `cluster:my-db-cluster`.
1158
1217
  # @return [String]
1159
1218
  #
1160
1219
  # @!attribute [rw] scalable_dimension
@@ -1184,6 +1243,10 @@ module Aws::ApplicationAutoScaling
1184
1243
  #
1185
1244
  # * `dynamodb:index:WriteCapacityUnits` - The provisioned write
1186
1245
  # capacity for a DynamoDB global secondary index.
1246
+ #
1247
+ # * `rds:cluster:ReadReplicaCount` - The count of Aurora Replicas in
1248
+ # an Aurora DB cluster. Available for Aurora MySQL-compatible
1249
+ # edition.
1187
1250
  # @return [String]
1188
1251
  #
1189
1252
  # @!attribute [rw] start_time
@@ -1225,9 +1288,9 @@ module Aws::ApplicationAutoScaling
1225
1288
  # data as a hash:
1226
1289
  #
1227
1290
  # {
1228
- # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb
1291
+ # service_namespace: "ecs", # required, accepts ecs, elasticmapreduce, ec2, appstream, dynamodb, rds
1229
1292
  # resource_id: "ResourceIdMaxLen1600", # required
1230
- # 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
1293
+ # 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
1231
1294
  # min_capacity: 1,
1232
1295
  # max_capacity: 1,
1233
1296
  # role_arn: "ResourceIdMaxLen1600",
@@ -1268,6 +1331,9 @@ module Aws::ApplicationAutoScaling
1268
1331
  # * DynamoDB global secondary index - The resource type is `index` and
1269
1332
  # the unique identifier is the resource ID. Example:
1270
1333
  # `table/my-table/index/my-table-index`.
1334
+ #
1335
+ # * Aurora DB cluster - The resource type is `cluster` and the unique
1336
+ # identifier is the cluster name. Example: `cluster:my-db-cluster`.
1271
1337
  # @return [String]
1272
1338
  #
1273
1339
  # @!attribute [rw] scalable_dimension
@@ -1298,6 +1364,10 @@ module Aws::ApplicationAutoScaling
1298
1364
  #
1299
1365
  # * `dynamodb:index:WriteCapacityUnits` - The provisioned write
1300
1366
  # capacity for a DynamoDB global secondary index.
1367
+ #
1368
+ # * `rds:cluster:ReadReplicaCount` - The count of Aurora Replicas in
1369
+ # an Aurora DB cluster. Available for Aurora MySQL-compatible
1370
+ # edition.
1301
1371
  # @return [String]
1302
1372
  #
1303
1373
  # @!attribute [rw] min_capacity
@@ -1314,9 +1384,19 @@ module Aws::ApplicationAutoScaling
1314
1384
  #
1315
1385
  # @!attribute [rw] role_arn
1316
1386
  # The ARN of an IAM role that allows Application Auto Scaling to
1317
- # modify the scalable target on your behalf. This parameter is
1318
- # required when you register a scalable target and optional when you
1319
- # update one.
1387
+ # modify the scalable target on your behalf.
1388
+ #
1389
+ # With Amazon RDS resources, permissions are granted using a
1390
+ # service-linked role. For more information, see [Service-Linked Roles
1391
+ # for Application Auto Scaling][1].
1392
+ #
1393
+ # For resources that are not supported using a service-linked role,
1394
+ # this parameter is required when you register a scalable target and
1395
+ # optional when you update one.
1396
+ #
1397
+ #
1398
+ #
1399
+ # [1]: http://docs.aws.amazon.com/ApplicationAutoScaling/latest/APIReference/application-autoscaling-service-linked-roles.html
1320
1400
  # @return [String]
1321
1401
  #
1322
1402
  # @see http://docs.aws.amazon.com/goto/WebAPI/application-autoscaling-2016-02-06/RegisterScalableTargetRequest AWS API Documentation
@@ -1372,6 +1452,9 @@ module Aws::ApplicationAutoScaling
1372
1452
  # * DynamoDB global secondary index - The resource type is `index` and
1373
1453
  # the unique identifier is the resource ID. Example:
1374
1454
  # `table/my-table/index/my-table-index`.
1455
+ #
1456
+ # * Aurora DB cluster - The resource type is `cluster` and the unique
1457
+ # identifier is the cluster name. Example: `cluster:my-db-cluster`.
1375
1458
  # @return [String]
1376
1459
  #
1377
1460
  # @!attribute [rw] scalable_dimension
@@ -1402,6 +1485,10 @@ module Aws::ApplicationAutoScaling
1402
1485
  #
1403
1486
  # * `dynamodb:index:WriteCapacityUnits` - The provisioned write
1404
1487
  # capacity for a DynamoDB global secondary index.
1488
+ #
1489
+ # * `rds:cluster:ReadReplicaCount` - The count of Aurora Replicas in
1490
+ # an Aurora DB cluster. Available for Aurora MySQL-compatible
1491
+ # edition.
1405
1492
  # @return [String]
1406
1493
  #
1407
1494
  # @!attribute [rw] min_capacity
@@ -1501,6 +1588,9 @@ module Aws::ApplicationAutoScaling
1501
1588
  # * DynamoDB global secondary index - The resource type is `index` and
1502
1589
  # the unique identifier is the resource ID. Example:
1503
1590
  # `table/my-table/index/my-table-index`.
1591
+ #
1592
+ # * Aurora DB cluster - The resource type is `cluster` and the unique
1593
+ # identifier is the cluster name. Example: `cluster:my-db-cluster`.
1504
1594
  # @return [String]
1505
1595
  #
1506
1596
  # @!attribute [rw] scalable_dimension
@@ -1530,6 +1620,10 @@ module Aws::ApplicationAutoScaling
1530
1620
  #
1531
1621
  # * `dynamodb:index:WriteCapacityUnits` - The provisioned write
1532
1622
  # capacity for a DynamoDB global secondary index.
1623
+ #
1624
+ # * `rds:cluster:ReadReplicaCount` - The count of Aurora Replicas in
1625
+ # an Aurora DB cluster. Available for Aurora MySQL-compatible
1626
+ # edition.
1533
1627
  # @return [String]
1534
1628
  #
1535
1629
  # @!attribute [rw] description
@@ -1623,6 +1717,9 @@ module Aws::ApplicationAutoScaling
1623
1717
  # * DynamoDB global secondary index - The resource type is `index` and
1624
1718
  # the unique identifier is the resource ID. Example:
1625
1719
  # `table/my-table/index/my-table-index`.
1720
+ #
1721
+ # * Aurora DB cluster - The resource type is `cluster` and the unique
1722
+ # identifier is the cluster name. Example: `cluster:my-db-cluster`.
1626
1723
  # @return [String]
1627
1724
  #
1628
1725
  # @!attribute [rw] scalable_dimension
@@ -1652,6 +1749,10 @@ module Aws::ApplicationAutoScaling
1652
1749
  #
1653
1750
  # * `dynamodb:index:WriteCapacityUnits` - The provisioned write
1654
1751
  # capacity for a DynamoDB global secondary index.
1752
+ #
1753
+ # * `rds:cluster:ReadReplicaCount` - The count of Aurora Replicas in
1754
+ # an Aurora DB cluster. Available for Aurora MySQL-compatible
1755
+ # edition.
1655
1756
  # @return [String]
1656
1757
  #
1657
1758
  # @!attribute [rw] policy_type
@@ -1757,6 +1858,9 @@ module Aws::ApplicationAutoScaling
1757
1858
  # * DynamoDB global secondary index - The resource type is `index` and
1758
1859
  # the unique identifier is the resource ID. Example:
1759
1860
  # `table/my-table/index/my-table-index`.
1861
+ #
1862
+ # * Aurora DB cluster - The resource type is `cluster` and the unique
1863
+ # identifier is the cluster name. Example: `cluster:my-db-cluster`.
1760
1864
  # @return [String]
1761
1865
  #
1762
1866
  # @!attribute [rw] scalable_dimension
@@ -1786,6 +1890,10 @@ module Aws::ApplicationAutoScaling
1786
1890
  #
1787
1891
  # * `dynamodb:index:WriteCapacityUnits` - The provisioned write
1788
1892
  # capacity for a DynamoDB global secondary index.
1893
+ #
1894
+ # * `rds:cluster:ReadReplicaCount` - The count of Aurora Replicas in
1895
+ # an Aurora DB cluster. Available for Aurora MySQL-compatible
1896
+ # edition.
1789
1897
  # @return [String]
1790
1898
  #
1791
1899
  # @!attribute [rw] start_time
@@ -1986,7 +2094,7 @@ module Aws::ApplicationAutoScaling
1986
2094
  # {
1987
2095
  # target_value: 1.0, # required
1988
2096
  # predefined_metric_specification: {
1989
- # predefined_metric_type: "DynamoDBReadCapacityUtilization", # required, accepts DynamoDBReadCapacityUtilization, DynamoDBWriteCapacityUtilization
2097
+ # predefined_metric_type: "DynamoDBReadCapacityUtilization", # required, accepts DynamoDBReadCapacityUtilization, DynamoDBWriteCapacityUtilization, RDSReaderAverageCPUUtilization, RDSReaderAverageDatabaseConnections
1990
2098
  # resource_label: "ResourceLabel",
1991
2099
  # },
1992
2100
  # customized_metric_specification: {
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-applicationautoscaling
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-11-08 00:00:00.000000000 Z
11
+ date: 2017-11-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core