aws-sdk-rds 1.23.0 → 1.24.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: 1be6f56e662f8a478624662c30f2bc9631b923ad
4
- data.tar.gz: 7b8196cb12850fc3dc2c5f24027d181b017d4a8a
3
+ metadata.gz: 3f49d91df6695907aec40256a3e8a187db86e846
4
+ data.tar.gz: c156ecd8b69ed000b9efb797b1507ffe5e3a5a5a
5
5
  SHA512:
6
- metadata.gz: 48da6cc257f12c3d5972cb06d7777500bb76fda807cc1a85ac2e2f07cc2a4db804eadf09af1db488e8a5157b192c7c07baf0e63be1976719e8d645cc97117c14
7
- data.tar.gz: 58eb6156ee2c047ae0162b068f67d86129953ef6cb057a51d090c89430d99054d3ab27c31635795d1ad9178dda0a00154445742746fd090e02203d5b00dab5aa
6
+ metadata.gz: '088a2f24da69dbbf3c460f8c82ee82636bca83bf476d6e1808a8712d780d0efd7c6213a2f04015e9308d0bbea916568a5d685d8d0c2571ff73f6708668d5de42'
7
+ data.tar.gz: 0472f7231bfd20898d3c32c64d56790d8dc150f8d0d783e971d3b9f55caee1d5209450d5bb756be9dc1b1658611ef36ac74b0514b43ea209812df2f6f1dbc334
@@ -68,6 +68,6 @@ require_relative 'aws-sdk-rds/customizations'
68
68
  # @service
69
69
  module Aws::RDS
70
70
 
71
- GEM_VERSION = '1.23.0'
71
+ GEM_VERSION = '1.24.0'
72
72
 
73
73
  end
@@ -1709,7 +1709,22 @@ module Aws::RDS
1709
1709
  #
1710
1710
  # @option params [Array<String>] :enable_cloudwatch_logs_exports
1711
1711
  # The list of log types that need to be enabled for exporting to
1712
- # CloudWatch Logs.
1712
+ # CloudWatch Logs. The values in the list depend on the DB engine being
1713
+ # used. For more information, see [Publishing Database Logs to Amazon
1714
+ # CloudWatch Logs ][1] in the *Amazon Relational Database Service User
1715
+ # Guide*.
1716
+ #
1717
+ #
1718
+ #
1719
+ # [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
1720
+ #
1721
+ # @option params [String] :engine_mode
1722
+ # The DB engine mode of the DB cluster, either `provisioned` or
1723
+ # `serverless`.
1724
+ #
1725
+ # @option params [Types::ScalingConfiguration] :scaling_configuration
1726
+ # For DB clusters in `serverless` DB engine mode, the scaling properties
1727
+ # of the DB cluster.
1713
1728
  #
1714
1729
  # @option params [String] :source_region
1715
1730
  # The source region of the snapshot. This is only needed when the
@@ -1778,6 +1793,13 @@ module Aws::RDS
1778
1793
  # enable_iam_database_authentication: false,
1779
1794
  # backtrack_window: 1,
1780
1795
  # enable_cloudwatch_logs_exports: ["String"],
1796
+ # engine_mode: "String",
1797
+ # scaling_configuration: {
1798
+ # min_capacity: 1,
1799
+ # max_capacity: 1,
1800
+ # auto_pause: false,
1801
+ # seconds_until_auto_pause: 1,
1802
+ # },
1781
1803
  # source_region: "String",
1782
1804
  # })
1783
1805
  #
@@ -1827,6 +1849,7 @@ module Aws::RDS
1827
1849
  # resp.db_cluster.associated_roles #=> Array
1828
1850
  # resp.db_cluster.associated_roles[0].role_arn #=> String
1829
1851
  # resp.db_cluster.associated_roles[0].status #=> String
1852
+ # resp.db_cluster.associated_roles[0].feature_name #=> String
1830
1853
  # resp.db_cluster.iam_database_authentication_enabled #=> Boolean
1831
1854
  # resp.db_cluster.clone_group_id #=> String
1832
1855
  # resp.db_cluster.cluster_create_time #=> Time
@@ -1835,6 +1858,12 @@ module Aws::RDS
1835
1858
  # resp.db_cluster.backtrack_consumed_change_records #=> Integer
1836
1859
  # resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
1837
1860
  # resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
1861
+ # resp.db_cluster.capacity #=> Integer
1862
+ # resp.db_cluster.engine_mode #=> String
1863
+ # resp.db_cluster.scaling_configuration_info.min_capacity #=> Integer
1864
+ # resp.db_cluster.scaling_configuration_info.max_capacity #=> Integer
1865
+ # resp.db_cluster.scaling_configuration_info.auto_pause #=> Boolean
1866
+ # resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
1838
1867
  #
1839
1868
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBCluster AWS API Documentation
1840
1869
  #
@@ -2664,19 +2693,26 @@ module Aws::RDS
2664
2693
  # specifies an internal instance with a DNS name that resolves to a
2665
2694
  # private IP address.
2666
2695
  #
2667
- # Default: The default behavior varies depending on whether a VPC has
2668
- # been requested or not. The following list shows the default behavior
2669
- # in each case.
2696
+ # Default: The default behavior varies depending on whether
2697
+ # `DBSubnetGroupName` is specified.
2698
+ #
2699
+ # If `DBSubnetGroupName` is not specified, and `PubliclyAccessible` is
2700
+ # not specified, the following applies:
2670
2701
  #
2671
- # * **Default VPC:** true
2702
+ # * If the default VPC in the target region doesn’t have an Internet
2703
+ # gateway attached to it, the DB instance is private.
2672
2704
  #
2673
- # * **VPC:** false
2705
+ # * If the default VPC in the target region has an Internet gateway
2706
+ # attached to it, the DB instance is public.
2674
2707
  #
2675
- # If no DB subnet group has been specified as part of the request and
2676
- # the PubliclyAccessible value has not been set, the DB instance is
2677
- # publicly accessible. If a specific DB subnet group has been specified
2678
- # as part of the request and the PubliclyAccessible value has not been
2679
- # set, the DB instance is private.
2708
+ # If `DBSubnetGroupName` is specified, and `PubliclyAccessible` is not
2709
+ # specified, the following applies:
2710
+ #
2711
+ # * If the subnets are part of a VPC that doesn’t have an Internet
2712
+ # gateway attached to it, the DB instance is private.
2713
+ #
2714
+ # * If the subnets are part of a VPC that has an Internet gateway
2715
+ # attached to it, the DB instance is public.
2680
2716
  #
2681
2717
  # @option params [Array<Types::Tag>] :tags
2682
2718
  # A list of tags. For more information, see [Tagging Amazon RDS
@@ -2841,7 +2877,14 @@ module Aws::RDS
2841
2877
  #
2842
2878
  # @option params [Array<String>] :enable_cloudwatch_logs_exports
2843
2879
  # The list of log types that need to be enabled for exporting to
2844
- # CloudWatch Logs.
2880
+ # CloudWatch Logs. The values in the list depend on the DB engine being
2881
+ # used. For more information, see [Publishing Database Logs to Amazon
2882
+ # CloudWatch Logs ][1] in the *Amazon Relational Database Service User
2883
+ # Guide*.
2884
+ #
2885
+ #
2886
+ #
2887
+ # [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
2845
2888
  #
2846
2889
  # @option params [Array<Types::ProcessorFeature>] :processor_features
2847
2890
  # The number of CPU cores and the number of threads per core for the DB
@@ -3157,21 +3200,7 @@ module Aws::RDS
3157
3200
  # true specifies an Internet-facing instance with a publicly resolvable
3158
3201
  # DNS name, which resolves to a public IP address. A value of false
3159
3202
  # specifies an internal instance with a DNS name that resolves to a
3160
- # private IP address.
3161
- #
3162
- # Default: The default behavior varies depending on whether a VPC has
3163
- # been requested or not. The following list shows the default behavior
3164
- # in each case.
3165
- #
3166
- # * **Default VPC:**true
3167
- #
3168
- # * **VPC:**false
3169
- #
3170
- # If no DB subnet group has been specified as part of the request and
3171
- # the PubliclyAccessible value has not been set, the DB instance is
3172
- # publicly accessible. If a specific DB subnet group has been specified
3173
- # as part of the request and the PubliclyAccessible value has not been
3174
- # set, the DB instance is private.
3203
+ # private IP address. For more information, see CreateDBInstance.
3175
3204
  #
3176
3205
  # @option params [Array<Types::Tag>] :tags
3177
3206
  # A list of tags. For more information, see [Tagging Amazon RDS
@@ -3355,7 +3384,13 @@ module Aws::RDS
3355
3384
  #
3356
3385
  # @option params [Array<String>] :enable_cloudwatch_logs_exports
3357
3386
  # The list of logs that the new DB instance is to export to CloudWatch
3358
- # Logs.
3387
+ # Logs. The values in the list depend on the DB engine being used. For
3388
+ # more information, see [Publishing Database Logs to Amazon CloudWatch
3389
+ # Logs ][1] in the *Amazon Relational Database Service User Guide*.
3390
+ #
3391
+ #
3392
+ #
3393
+ # [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
3359
3394
  #
3360
3395
  # @option params [Array<Types::ProcessorFeature>] :processor_features
3361
3396
  # The number of CPU cores and the number of threads per core for the DB
@@ -4362,6 +4397,7 @@ module Aws::RDS
4362
4397
  # resp.db_cluster.associated_roles #=> Array
4363
4398
  # resp.db_cluster.associated_roles[0].role_arn #=> String
4364
4399
  # resp.db_cluster.associated_roles[0].status #=> String
4400
+ # resp.db_cluster.associated_roles[0].feature_name #=> String
4365
4401
  # resp.db_cluster.iam_database_authentication_enabled #=> Boolean
4366
4402
  # resp.db_cluster.clone_group_id #=> String
4367
4403
  # resp.db_cluster.cluster_create_time #=> Time
@@ -4370,6 +4406,12 @@ module Aws::RDS
4370
4406
  # resp.db_cluster.backtrack_consumed_change_records #=> Integer
4371
4407
  # resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
4372
4408
  # resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
4409
+ # resp.db_cluster.capacity #=> Integer
4410
+ # resp.db_cluster.engine_mode #=> String
4411
+ # resp.db_cluster.scaling_configuration_info.min_capacity #=> Integer
4412
+ # resp.db_cluster.scaling_configuration_info.max_capacity #=> Integer
4413
+ # resp.db_cluster.scaling_configuration_info.auto_pause #=> Boolean
4414
+ # resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
4373
4415
  #
4374
4416
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBCluster AWS API Documentation
4375
4417
  #
@@ -5465,6 +5507,8 @@ module Aws::RDS
5465
5507
  # resp.parameters[0].is_modifiable #=> Boolean
5466
5508
  # resp.parameters[0].minimum_engine_version #=> String
5467
5509
  # resp.parameters[0].apply_method #=> String, one of "immediate", "pending-reboot"
5510
+ # resp.parameters[0].supported_engine_modes #=> Array
5511
+ # resp.parameters[0].supported_engine_modes[0] #=> String
5468
5512
  # resp.marker #=> String
5469
5513
  #
5470
5514
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusterParameters AWS API Documentation
@@ -5834,6 +5878,7 @@ module Aws::RDS
5834
5878
  # resp.db_clusters[0].associated_roles #=> Array
5835
5879
  # resp.db_clusters[0].associated_roles[0].role_arn #=> String
5836
5880
  # resp.db_clusters[0].associated_roles[0].status #=> String
5881
+ # resp.db_clusters[0].associated_roles[0].feature_name #=> String
5837
5882
  # resp.db_clusters[0].iam_database_authentication_enabled #=> Boolean
5838
5883
  # resp.db_clusters[0].clone_group_id #=> String
5839
5884
  # resp.db_clusters[0].cluster_create_time #=> Time
@@ -5842,6 +5887,12 @@ module Aws::RDS
5842
5887
  # resp.db_clusters[0].backtrack_consumed_change_records #=> Integer
5843
5888
  # resp.db_clusters[0].enabled_cloudwatch_logs_exports #=> Array
5844
5889
  # resp.db_clusters[0].enabled_cloudwatch_logs_exports[0] #=> String
5890
+ # resp.db_clusters[0].capacity #=> Integer
5891
+ # resp.db_clusters[0].engine_mode #=> String
5892
+ # resp.db_clusters[0].scaling_configuration_info.min_capacity #=> Integer
5893
+ # resp.db_clusters[0].scaling_configuration_info.max_capacity #=> Integer
5894
+ # resp.db_clusters[0].scaling_configuration_info.auto_pause #=> Boolean
5895
+ # resp.db_clusters[0].scaling_configuration_info.seconds_until_auto_pause #=> Integer
5845
5896
  #
5846
5897
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusters AWS API Documentation
5847
5898
  #
@@ -5971,6 +6022,8 @@ module Aws::RDS
5971
6022
  # resp.db_engine_versions[0].exportable_log_types[0] #=> String
5972
6023
  # resp.db_engine_versions[0].supports_log_exports_to_cloudwatch_logs #=> Boolean
5973
6024
  # resp.db_engine_versions[0].supports_read_replica #=> Boolean
6025
+ # resp.db_engine_versions[0].supported_engine_modes #=> Array
6026
+ # resp.db_engine_versions[0].supported_engine_modes[0] #=> String
5974
6027
  #
5975
6028
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBEngineVersions AWS API Documentation
5976
6029
  #
@@ -6438,6 +6491,8 @@ module Aws::RDS
6438
6491
  # resp.parameters[0].is_modifiable #=> Boolean
6439
6492
  # resp.parameters[0].minimum_engine_version #=> String
6440
6493
  # resp.parameters[0].apply_method #=> String, one of "immediate", "pending-reboot"
6494
+ # resp.parameters[0].supported_engine_modes #=> Array
6495
+ # resp.parameters[0].supported_engine_modes[0] #=> String
6441
6496
  # resp.marker #=> String
6442
6497
  #
6443
6498
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBParameters AWS API Documentation
@@ -6933,6 +6988,8 @@ module Aws::RDS
6933
6988
  # resp.engine_defaults.parameters[0].is_modifiable #=> Boolean
6934
6989
  # resp.engine_defaults.parameters[0].minimum_engine_version #=> String
6935
6990
  # resp.engine_defaults.parameters[0].apply_method #=> String, one of "immediate", "pending-reboot"
6991
+ # resp.engine_defaults.parameters[0].supported_engine_modes #=> Array
6992
+ # resp.engine_defaults.parameters[0].supported_engine_modes[0] #=> String
6936
6993
  #
6937
6994
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeEngineDefaultClusterParameters AWS API Documentation
6938
6995
  #
@@ -7016,6 +7073,8 @@ module Aws::RDS
7016
7073
  # resp.engine_defaults.parameters[0].is_modifiable #=> Boolean
7017
7074
  # resp.engine_defaults.parameters[0].minimum_engine_version #=> String
7018
7075
  # resp.engine_defaults.parameters[0].apply_method #=> String, one of "immediate", "pending-reboot"
7076
+ # resp.engine_defaults.parameters[0].supported_engine_modes #=> Array
7077
+ # resp.engine_defaults.parameters[0].supported_engine_modes[0] #=> String
7019
7078
  #
7020
7079
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeEngineDefaultParameters AWS API Documentation
7021
7080
  #
@@ -7647,6 +7706,8 @@ module Aws::RDS
7647
7706
  # resp.orderable_db_instance_options[0].available_processor_features[0].name #=> String
7648
7707
  # resp.orderable_db_instance_options[0].available_processor_features[0].default_value #=> String
7649
7708
  # resp.orderable_db_instance_options[0].available_processor_features[0].allowed_values #=> String
7709
+ # resp.orderable_db_instance_options[0].supported_engine_modes #=> Array
7710
+ # resp.orderable_db_instance_options[0].supported_engine_modes[0] #=> String
7650
7711
  # resp.marker #=> String
7651
7712
  #
7652
7713
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeOrderableDBInstanceOptions AWS API Documentation
@@ -8380,6 +8441,7 @@ module Aws::RDS
8380
8441
  # resp.db_cluster.associated_roles #=> Array
8381
8442
  # resp.db_cluster.associated_roles[0].role_arn #=> String
8382
8443
  # resp.db_cluster.associated_roles[0].status #=> String
8444
+ # resp.db_cluster.associated_roles[0].feature_name #=> String
8383
8445
  # resp.db_cluster.iam_database_authentication_enabled #=> Boolean
8384
8446
  # resp.db_cluster.clone_group_id #=> String
8385
8447
  # resp.db_cluster.cluster_create_time #=> Time
@@ -8388,6 +8450,12 @@ module Aws::RDS
8388
8450
  # resp.db_cluster.backtrack_consumed_change_records #=> Integer
8389
8451
  # resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
8390
8452
  # resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
8453
+ # resp.db_cluster.capacity #=> Integer
8454
+ # resp.db_cluster.engine_mode #=> String
8455
+ # resp.db_cluster.scaling_configuration_info.min_capacity #=> Integer
8456
+ # resp.db_cluster.scaling_configuration_info.max_capacity #=> Integer
8457
+ # resp.db_cluster.scaling_configuration_info.auto_pause #=> Boolean
8458
+ # resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
8391
8459
  #
8392
8460
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverDBCluster AWS API Documentation
8393
8461
  #
@@ -8463,6 +8531,103 @@ module Aws::RDS
8463
8531
  req.send_request(options)
8464
8532
  end
8465
8533
 
8534
+ # Set the capacity of an Aurora Serverless DB cluster to a specific
8535
+ # value.
8536
+ #
8537
+ # Aurora Serverless scales seamlessly based on the workload on the DB
8538
+ # cluster. In some cases, the capacity might not scale fast enough to
8539
+ # meet a sudden change in workload, such as a large number of new
8540
+ # transactions. Call `ModifyCurrentDBClusterCapacity` to set the
8541
+ # capacity explicitly.
8542
+ #
8543
+ # After this call sets the DB cluster capacity, Aurora Serverless can
8544
+ # automatically scale the DB cluster based on the cooldown period for
8545
+ # scaling up and the cooldown period for scaling down.
8546
+ #
8547
+ # For more information about Aurora Serverless, see [Using Amazon Aurora
8548
+ # Serverless][1] in the *Amazon RDS User Guide*.
8549
+ #
8550
+ # If you call `ModifyCurrentDBClusterCapacity` with the default
8551
+ # `TimeoutAction`, connections to the DB cluster are dropped when the
8552
+ # capacity is set.
8553
+ #
8554
+ #
8555
+ #
8556
+ # [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/aurora-serverless.html
8557
+ #
8558
+ # @option params [required, String] :db_cluster_identifier
8559
+ # The DB cluster identifier for the cluster being modified. This
8560
+ # parameter is not case-sensitive.
8561
+ #
8562
+ # Constraints:
8563
+ #
8564
+ # * Must match the identifier of an existing DB cluster.
8565
+ #
8566
+ # ^
8567
+ #
8568
+ # @option params [Integer] :capacity
8569
+ # The DB cluster capacity.
8570
+ #
8571
+ # Constraints:
8572
+ #
8573
+ # * Value must be `2`, `4`, `8`, `16`, `32`, `64`, `128`, or `256`.
8574
+ #
8575
+ # ^
8576
+ #
8577
+ # @option params [Integer] :seconds_before_timeout
8578
+ # The amount of time, in seconds, that Aurora Serverless tries to find a
8579
+ # scaling point to perform seamless scaling before enforcing the timeout
8580
+ # action. The default is 300.
8581
+ #
8582
+ # * Value must be from 10 through 600.
8583
+ #
8584
+ # ^
8585
+ #
8586
+ # @option params [String] :timeout_action
8587
+ # The action to take when the timeout is reached, either
8588
+ # `ForceApplyCapacityChange` or `RollbackCapacityChange`.
8589
+ #
8590
+ # `ForceApplyCapacityChange`, the default, drops connections to the DB
8591
+ # cluster and sets the capacity to the specified value as soon as
8592
+ # possible.
8593
+ #
8594
+ # `RollbackCapacityChange` ignores the capacity change if a scaling
8595
+ # point is not found in the timeout period.
8596
+ #
8597
+ # @return [Types::DBClusterCapacityInfo] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8598
+ #
8599
+ # * {Types::DBClusterCapacityInfo#db_cluster_identifier #db_cluster_identifier} => String
8600
+ # * {Types::DBClusterCapacityInfo#pending_capacity #pending_capacity} => Integer
8601
+ # * {Types::DBClusterCapacityInfo#current_capacity #current_capacity} => Integer
8602
+ # * {Types::DBClusterCapacityInfo#seconds_before_timeout #seconds_before_timeout} => Integer
8603
+ # * {Types::DBClusterCapacityInfo#timeout_action #timeout_action} => String
8604
+ #
8605
+ # @example Request syntax with placeholder values
8606
+ #
8607
+ # resp = client.modify_current_db_cluster_capacity({
8608
+ # db_cluster_identifier: "String", # required
8609
+ # capacity: 1,
8610
+ # seconds_before_timeout: 1,
8611
+ # timeout_action: "String",
8612
+ # })
8613
+ #
8614
+ # @example Response structure
8615
+ #
8616
+ # resp.db_cluster_identifier #=> String
8617
+ # resp.pending_capacity #=> Integer
8618
+ # resp.current_capacity #=> Integer
8619
+ # resp.seconds_before_timeout #=> Integer
8620
+ # resp.timeout_action #=> String
8621
+ #
8622
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyCurrentDBClusterCapacity AWS API Documentation
8623
+ #
8624
+ # @overload modify_current_db_cluster_capacity(params = {})
8625
+ # @param [Hash] params ({})
8626
+ def modify_current_db_cluster_capacity(params = {}, options = {})
8627
+ req = build_request(:modify_current_db_cluster_capacity, params)
8628
+ req.send_request(options)
8629
+ end
8630
+
8466
8631
  # Modify a setting for an Amazon Aurora DB cluster. You can change one
8467
8632
  # or more database configuration parameters by specifying these
8468
8633
  # parameters and the new values in the request. For more information on
@@ -8634,6 +8799,10 @@ module Aws::RDS
8634
8799
  # For a list of valid engine versions, see CreateDBCluster, or call
8635
8800
  # DescribeDBEngineVersions.
8636
8801
  #
8802
+ # @option params [Types::ScalingConfiguration] :scaling_configuration
8803
+ # The scaling properties of the DB cluster. You can only modify scaling
8804
+ # properties for DB clusters in `serverless` DB engine mode.
8805
+ #
8637
8806
  # @return [Types::ModifyDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8638
8807
  #
8639
8808
  # * {Types::ModifyDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
@@ -8679,6 +8848,12 @@ module Aws::RDS
8679
8848
  # disable_log_types: ["String"],
8680
8849
  # },
8681
8850
  # engine_version: "String",
8851
+ # scaling_configuration: {
8852
+ # min_capacity: 1,
8853
+ # max_capacity: 1,
8854
+ # auto_pause: false,
8855
+ # seconds_until_auto_pause: 1,
8856
+ # },
8682
8857
  # })
8683
8858
  #
8684
8859
  # @example Response structure
@@ -8727,6 +8902,7 @@ module Aws::RDS
8727
8902
  # resp.db_cluster.associated_roles #=> Array
8728
8903
  # resp.db_cluster.associated_roles[0].role_arn #=> String
8729
8904
  # resp.db_cluster.associated_roles[0].status #=> String
8905
+ # resp.db_cluster.associated_roles[0].feature_name #=> String
8730
8906
  # resp.db_cluster.iam_database_authentication_enabled #=> Boolean
8731
8907
  # resp.db_cluster.clone_group_id #=> String
8732
8908
  # resp.db_cluster.cluster_create_time #=> Time
@@ -8735,6 +8911,12 @@ module Aws::RDS
8735
8911
  # resp.db_cluster.backtrack_consumed_change_records #=> Integer
8736
8912
  # resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
8737
8913
  # resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
8914
+ # resp.db_cluster.capacity #=> Integer
8915
+ # resp.db_cluster.engine_mode #=> String
8916
+ # resp.db_cluster.scaling_configuration_info.min_capacity #=> Integer
8917
+ # resp.db_cluster.scaling_configuration_info.max_capacity #=> Integer
8918
+ # resp.db_cluster.scaling_configuration_info.auto_pause #=> Boolean
8919
+ # resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
8738
8920
  #
8739
8921
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBCluster AWS API Documentation
8740
8922
  #
@@ -8822,6 +9004,7 @@ module Aws::RDS
8822
9004
  # is_modifiable: false,
8823
9005
  # minimum_engine_version: "String",
8824
9006
  # apply_method: "immediate", # accepts immediate, pending-reboot
9007
+ # supported_engine_modes: ["String"],
8825
9008
  # },
8826
9009
  # ],
8827
9010
  # })
@@ -9789,6 +9972,7 @@ module Aws::RDS
9789
9972
  # is_modifiable: false,
9790
9973
  # minimum_engine_version: "String",
9791
9974
  # apply_method: "immediate", # accepts immediate, pending-reboot
9975
+ # supported_engine_modes: ["String"],
9792
9976
  # },
9793
9977
  # ],
9794
9978
  # })
@@ -10572,6 +10756,7 @@ module Aws::RDS
10572
10756
  # resp.db_cluster.associated_roles #=> Array
10573
10757
  # resp.db_cluster.associated_roles[0].role_arn #=> String
10574
10758
  # resp.db_cluster.associated_roles[0].status #=> String
10759
+ # resp.db_cluster.associated_roles[0].feature_name #=> String
10575
10760
  # resp.db_cluster.iam_database_authentication_enabled #=> Boolean
10576
10761
  # resp.db_cluster.clone_group_id #=> String
10577
10762
  # resp.db_cluster.cluster_create_time #=> Time
@@ -10580,6 +10765,12 @@ module Aws::RDS
10580
10765
  # resp.db_cluster.backtrack_consumed_change_records #=> Integer
10581
10766
  # resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
10582
10767
  # resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
10768
+ # resp.db_cluster.capacity #=> Integer
10769
+ # resp.db_cluster.engine_mode #=> String
10770
+ # resp.db_cluster.scaling_configuration_info.min_capacity #=> Integer
10771
+ # resp.db_cluster.scaling_configuration_info.max_capacity #=> Integer
10772
+ # resp.db_cluster.scaling_configuration_info.auto_pause #=> Boolean
10773
+ # resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
10583
10774
  #
10584
10775
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplicaDBCluster AWS API Documentation
10585
10776
  #
@@ -11069,6 +11260,7 @@ module Aws::RDS
11069
11260
  # is_modifiable: false,
11070
11261
  # minimum_engine_version: "String",
11071
11262
  # apply_method: "immediate", # accepts immediate, pending-reboot
11263
+ # supported_engine_modes: ["String"],
11072
11264
  # },
11073
11265
  # ],
11074
11266
  # })
@@ -11172,6 +11364,7 @@ module Aws::RDS
11172
11364
  # is_modifiable: false,
11173
11365
  # minimum_engine_version: "String",
11174
11366
  # apply_method: "immediate", # accepts immediate, pending-reboot
11367
+ # supported_engine_modes: ["String"],
11175
11368
  # },
11176
11369
  # ],
11177
11370
  # })
@@ -11426,7 +11619,14 @@ module Aws::RDS
11426
11619
  #
11427
11620
  # @option params [Array<String>] :enable_cloudwatch_logs_exports
11428
11621
  # The list of logs that the restored DB cluster is to export to
11429
- # CloudWatch Logs.
11622
+ # CloudWatch Logs. The values in the list depend on the DB engine being
11623
+ # used. For more information, see [Publishing Database Logs to Amazon
11624
+ # CloudWatch Logs ][1] in the *Amazon Relational Database Service User
11625
+ # Guide*.
11626
+ #
11627
+ #
11628
+ #
11629
+ # [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
11430
11630
  #
11431
11631
  # @return [Types::RestoreDBClusterFromS3Result] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
11432
11632
  #
@@ -11515,6 +11715,7 @@ module Aws::RDS
11515
11715
  # resp.db_cluster.associated_roles #=> Array
11516
11716
  # resp.db_cluster.associated_roles[0].role_arn #=> String
11517
11717
  # resp.db_cluster.associated_roles[0].status #=> String
11718
+ # resp.db_cluster.associated_roles[0].feature_name #=> String
11518
11719
  # resp.db_cluster.iam_database_authentication_enabled #=> Boolean
11519
11720
  # resp.db_cluster.clone_group_id #=> String
11520
11721
  # resp.db_cluster.cluster_create_time #=> Time
@@ -11523,6 +11724,12 @@ module Aws::RDS
11523
11724
  # resp.db_cluster.backtrack_consumed_change_records #=> Integer
11524
11725
  # resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
11525
11726
  # resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
11727
+ # resp.db_cluster.capacity #=> Integer
11728
+ # resp.db_cluster.engine_mode #=> String
11729
+ # resp.db_cluster.scaling_configuration_info.min_capacity #=> Integer
11730
+ # resp.db_cluster.scaling_configuration_info.max_capacity #=> Integer
11731
+ # resp.db_cluster.scaling_configuration_info.auto_pause #=> Boolean
11732
+ # resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
11526
11733
  #
11527
11734
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3 AWS API Documentation
11528
11735
  #
@@ -11661,7 +11868,22 @@ module Aws::RDS
11661
11868
  #
11662
11869
  # @option params [Array<String>] :enable_cloudwatch_logs_exports
11663
11870
  # The list of logs that the restored DB cluster is to export to
11664
- # CloudWatch Logs.
11871
+ # CloudWatch Logs. The values in the list depend on the DB engine being
11872
+ # used. For more information, see [Publishing Database Logs to Amazon
11873
+ # CloudWatch Logs ][1] in the *Amazon Relational Database Service User
11874
+ # Guide*.
11875
+ #
11876
+ #
11877
+ #
11878
+ # [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
11879
+ #
11880
+ # @option params [String] :engine_mode
11881
+ # The DB engine mode of the DB cluster, either `provisioned` or
11882
+ # `serverless`.
11883
+ #
11884
+ # @option params [Types::ScalingConfiguration] :scaling_configuration
11885
+ # For DB clusters in `serverless` DB engine mode, the scaling properties
11886
+ # of the DB cluster.
11665
11887
  #
11666
11888
  # @return [Types::RestoreDBClusterFromSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
11667
11889
  #
@@ -11707,6 +11929,13 @@ module Aws::RDS
11707
11929
  # enable_iam_database_authentication: false,
11708
11930
  # backtrack_window: 1,
11709
11931
  # enable_cloudwatch_logs_exports: ["String"],
11932
+ # engine_mode: "String",
11933
+ # scaling_configuration: {
11934
+ # min_capacity: 1,
11935
+ # max_capacity: 1,
11936
+ # auto_pause: false,
11937
+ # seconds_until_auto_pause: 1,
11938
+ # },
11710
11939
  # })
11711
11940
  #
11712
11941
  # @example Response structure
@@ -11755,6 +11984,7 @@ module Aws::RDS
11755
11984
  # resp.db_cluster.associated_roles #=> Array
11756
11985
  # resp.db_cluster.associated_roles[0].role_arn #=> String
11757
11986
  # resp.db_cluster.associated_roles[0].status #=> String
11987
+ # resp.db_cluster.associated_roles[0].feature_name #=> String
11758
11988
  # resp.db_cluster.iam_database_authentication_enabled #=> Boolean
11759
11989
  # resp.db_cluster.clone_group_id #=> String
11760
11990
  # resp.db_cluster.cluster_create_time #=> Time
@@ -11763,6 +11993,12 @@ module Aws::RDS
11763
11993
  # resp.db_cluster.backtrack_consumed_change_records #=> Integer
11764
11994
  # resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
11765
11995
  # resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
11996
+ # resp.db_cluster.capacity #=> Integer
11997
+ # resp.db_cluster.engine_mode #=> String
11998
+ # resp.db_cluster.scaling_configuration_info.min_capacity #=> Integer
11999
+ # resp.db_cluster.scaling_configuration_info.max_capacity #=> Integer
12000
+ # resp.db_cluster.scaling_configuration_info.auto_pause #=> Boolean
12001
+ # resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
11766
12002
  #
11767
12003
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshot AWS API Documentation
11768
12004
  #
@@ -11938,7 +12174,14 @@ module Aws::RDS
11938
12174
  #
11939
12175
  # @option params [Array<String>] :enable_cloudwatch_logs_exports
11940
12176
  # The list of logs that the restored DB cluster is to export to
11941
- # CloudWatch Logs.
12177
+ # CloudWatch Logs. The values in the list depend on the DB engine being
12178
+ # used. For more information, see [Publishing Database Logs to Amazon
12179
+ # CloudWatch Logs ][1] in the *Amazon Relational Database Service User
12180
+ # Guide*.
12181
+ #
12182
+ #
12183
+ #
12184
+ # [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
11942
12185
  #
11943
12186
  # @return [Types::RestoreDBClusterToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
11944
12187
  #
@@ -12031,6 +12274,7 @@ module Aws::RDS
12031
12274
  # resp.db_cluster.associated_roles #=> Array
12032
12275
  # resp.db_cluster.associated_roles[0].role_arn #=> String
12033
12276
  # resp.db_cluster.associated_roles[0].status #=> String
12277
+ # resp.db_cluster.associated_roles[0].feature_name #=> String
12034
12278
  # resp.db_cluster.iam_database_authentication_enabled #=> Boolean
12035
12279
  # resp.db_cluster.clone_group_id #=> String
12036
12280
  # resp.db_cluster.cluster_create_time #=> Time
@@ -12039,6 +12283,12 @@ module Aws::RDS
12039
12283
  # resp.db_cluster.backtrack_consumed_change_records #=> Integer
12040
12284
  # resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
12041
12285
  # resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
12286
+ # resp.db_cluster.capacity #=> Integer
12287
+ # resp.db_cluster.engine_mode #=> String
12288
+ # resp.db_cluster.scaling_configuration_info.min_capacity #=> Integer
12289
+ # resp.db_cluster.scaling_configuration_info.max_capacity #=> Integer
12290
+ # resp.db_cluster.scaling_configuration_info.auto_pause #=> Boolean
12291
+ # resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
12042
12292
  #
12043
12293
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTime AWS API Documentation
12044
12294
  #
@@ -12149,21 +12399,7 @@ module Aws::RDS
12149
12399
  # true specifies an Internet-facing instance with a publicly resolvable
12150
12400
  # DNS name, which resolves to a public IP address. A value of false
12151
12401
  # specifies an internal instance with a DNS name that resolves to a
12152
- # private IP address.
12153
- #
12154
- # Default: The default behavior varies depending on whether a VPC has
12155
- # been requested or not. The following list shows the default behavior
12156
- # in each case.
12157
- #
12158
- # * **Default VPC:** true
12159
- #
12160
- # * **VPC:** false
12161
- #
12162
- # If no DB subnet group has been specified as part of the request and
12163
- # the PubliclyAccessible value has not been set, the DB instance is
12164
- # publicly accessible. If a specific DB subnet group has been specified
12165
- # as part of the request and the PubliclyAccessible value has not been
12166
- # set, the DB instance is private.
12402
+ # private IP address. For more information, see CreateDBInstance.
12167
12403
  #
12168
12404
  # @option params [Boolean] :auto_minor_version_upgrade
12169
12405
  # Indicates that minor version upgrades are applied automatically to the
@@ -12297,7 +12533,14 @@ module Aws::RDS
12297
12533
  #
12298
12534
  # @option params [Array<String>] :enable_cloudwatch_logs_exports
12299
12535
  # The list of logs that the restored DB instance is to export to
12300
- # CloudWatch Logs.
12536
+ # CloudWatch Logs. The values in the list depend on the DB engine being
12537
+ # used. For more information, see [Publishing Database Logs to Amazon
12538
+ # CloudWatch Logs ][1] in the *Amazon Relational Database Service User
12539
+ # Guide*.
12540
+ #
12541
+ #
12542
+ #
12543
+ # [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
12301
12544
  #
12302
12545
  # @option params [Array<Types::ProcessorFeature>] :processor_features
12303
12546
  # The number of CPU cores and the number of threads per core for the DB
@@ -12759,8 +13002,11 @@ module Aws::RDS
12759
13002
  # engine is used.
12760
13003
  #
12761
13004
  # @option params [Boolean] :publicly_accessible
12762
- # Specifies whether the DB instance is publicly accessible or not. For
12763
- # more information, see CreateDBInstance.
13005
+ # Specifies the accessibility options for the DB instance. A value of
13006
+ # true specifies an Internet-facing instance with a publicly resolvable
13007
+ # DNS name, which resolves to a public IP address. A value of false
13008
+ # specifies an internal instance with a DNS name that resolves to a
13009
+ # private IP address. For more information, see CreateDBInstance.
12764
13010
  #
12765
13011
  # @option params [Array<Types::Tag>] :tags
12766
13012
  # A list of tags to associate with this DB instance. For more
@@ -12880,7 +13126,14 @@ module Aws::RDS
12880
13126
  #
12881
13127
  # @option params [Array<String>] :enable_cloudwatch_logs_exports
12882
13128
  # The list of logs that the restored DB instance is to export to
12883
- # CloudWatch Logs.
13129
+ # CloudWatch Logs. The values in the list depend on the DB engine being
13130
+ # used. For more information, see [Publishing Database Logs to Amazon
13131
+ # CloudWatch Logs ][1] in the *Amazon Relational Database Service User
13132
+ # Guide*.
13133
+ #
13134
+ #
13135
+ #
13136
+ # [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
12884
13137
  #
12885
13138
  # @option params [Array<Types::ProcessorFeature>] :processor_features
12886
13139
  # The number of CPU cores and the number of threads per core for the DB
@@ -13177,21 +13430,7 @@ module Aws::RDS
13177
13430
  # true specifies an Internet-facing instance with a publicly resolvable
13178
13431
  # DNS name, which resolves to a public IP address. A value of false
13179
13432
  # specifies an internal instance with a DNS name that resolves to a
13180
- # private IP address.
13181
- #
13182
- # Default: The default behavior varies depending on whether a VPC has
13183
- # been requested or not. The following list shows the default behavior
13184
- # in each case.
13185
- #
13186
- # * **Default VPC:**true
13187
- #
13188
- # * **VPC:**false
13189
- #
13190
- # If no DB subnet group has been specified as part of the request and
13191
- # the PubliclyAccessible value has not been set, the DB instance is
13192
- # publicly accessible. If a specific DB subnet group has been specified
13193
- # as part of the request and the PubliclyAccessible value has not been
13194
- # set, the DB instance is private.
13433
+ # private IP address. For more information, see CreateDBInstance.
13195
13434
  #
13196
13435
  # @option params [Boolean] :auto_minor_version_upgrade
13197
13436
  # Indicates that minor version upgrades are applied automatically to the
@@ -13315,7 +13554,14 @@ module Aws::RDS
13315
13554
  #
13316
13555
  # @option params [Array<String>] :enable_cloudwatch_logs_exports
13317
13556
  # The list of logs that the restored DB instance is to export to
13318
- # CloudWatch Logs.
13557
+ # CloudWatch Logs. The values in the list depend on the DB engine being
13558
+ # used. For more information, see [Publishing Database Logs to Amazon
13559
+ # CloudWatch Logs ][1] in the *Amazon Relational Database Service User
13560
+ # Guide*.
13561
+ #
13562
+ #
13563
+ #
13564
+ # [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
13319
13565
  #
13320
13566
  # @option params [Array<Types::ProcessorFeature>] :processor_features
13321
13567
  # The number of CPU cores and the number of threads per core for the DB
@@ -13968,7 +14214,7 @@ module Aws::RDS
13968
14214
  params: params,
13969
14215
  config: config)
13970
14216
  context[:gem_name] = 'aws-sdk-rds'
13971
- context[:gem_version] = '1.23.0'
14217
+ context[:gem_version] = '1.24.0'
13972
14218
  Seahorse::Client::Request.new(handlers, context)
13973
14219
  end
13974
14220