aws-sdk-rds 1.211.0 → 1.213.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -107,6 +107,8 @@ module Aws::RDS
107
107
  Aws::RDS::Endpoints::CreateDBProxyEndpoint.build(context)
108
108
  when :create_db_security_group
109
109
  Aws::RDS::Endpoints::CreateDBSecurityGroup.build(context)
110
+ when :create_db_shard_group
111
+ Aws::RDS::Endpoints::CreateDBShardGroup.build(context)
110
112
  when :create_db_snapshot
111
113
  Aws::RDS::Endpoints::CreateDBSnapshot.build(context)
112
114
  when :create_db_subnet_group
@@ -147,6 +149,8 @@ module Aws::RDS
147
149
  Aws::RDS::Endpoints::DeleteDBProxyEndpoint.build(context)
148
150
  when :delete_db_security_group
149
151
  Aws::RDS::Endpoints::DeleteDBSecurityGroup.build(context)
152
+ when :delete_db_shard_group
153
+ Aws::RDS::Endpoints::DeleteDBShardGroup.build(context)
150
154
  when :delete_db_snapshot
151
155
  Aws::RDS::Endpoints::DeleteDBSnapshot.build(context)
152
156
  when :delete_db_subnet_group
@@ -209,6 +213,8 @@ module Aws::RDS
209
213
  Aws::RDS::Endpoints::DescribeDBRecommendations.build(context)
210
214
  when :describe_db_security_groups
211
215
  Aws::RDS::Endpoints::DescribeDBSecurityGroups.build(context)
216
+ when :describe_db_shard_groups
217
+ Aws::RDS::Endpoints::DescribeDBShardGroups.build(context)
212
218
  when :describe_db_snapshot_attributes
213
219
  Aws::RDS::Endpoints::DescribeDBSnapshotAttributes.build(context)
214
220
  when :describe_db_snapshot_tenant_databases
@@ -291,6 +297,8 @@ module Aws::RDS
291
297
  Aws::RDS::Endpoints::ModifyDBProxyTargetGroup.build(context)
292
298
  when :modify_db_recommendation
293
299
  Aws::RDS::Endpoints::ModifyDBRecommendation.build(context)
300
+ when :modify_db_shard_group
301
+ Aws::RDS::Endpoints::ModifyDBShardGroup.build(context)
294
302
  when :modify_db_snapshot
295
303
  Aws::RDS::Endpoints::ModifyDBSnapshot.build(context)
296
304
  when :modify_db_snapshot_attribute
@@ -315,6 +323,8 @@ module Aws::RDS
315
323
  Aws::RDS::Endpoints::RebootDBCluster.build(context)
316
324
  when :reboot_db_instance
317
325
  Aws::RDS::Endpoints::RebootDBInstance.build(context)
326
+ when :reboot_db_shard_group
327
+ Aws::RDS::Endpoints::RebootDBShardGroup.build(context)
318
328
  when :register_db_proxy_targets
319
329
  Aws::RDS::Endpoints::RegisterDBProxyTargets.build(context)
320
330
  when :remove_from_global_cluster
@@ -99,6 +99,7 @@ module Aws::RDS
99
99
  # enable_performance_insights: false,
100
100
  # performance_insights_kms_key_id: "String",
101
101
  # performance_insights_retention_period: 1,
102
+ # enable_limitless_database: false,
102
103
  # serverless_v2_scaling_configuration: {
103
104
  # min_capacity: 1.0,
104
105
  # max_capacity: 1.0,
@@ -789,6 +790,11 @@ module Aws::RDS
789
790
  #
790
791
  # If you specify a retention period that isn't valid, such as `94`,
791
792
  # Amazon RDS issues an error.
793
+ # @option options [Boolean] :enable_limitless_database
794
+ # Specifies whether to enable Aurora Limitless Database. You must enable
795
+ # Aurora Limitless Database to create a DB shard group.
796
+ #
797
+ # Valid for: Aurora DB clusters only
792
798
  # @option options [Types::ServerlessV2ScalingConfiguration] :serverless_v2_scaling_configuration
793
799
  # Contains the scaling configuration of an Aurora Serverless v2 DB
794
800
  # cluster.
@@ -2445,8 +2451,18 @@ module Aws::RDS
2445
2451
  # Constraints: The name must be less than 255 characters.
2446
2452
  # @option options [required, String] :sns_topic_arn
2447
2453
  # The Amazon Resource Name (ARN) of the SNS topic created for event
2448
- # notification. The ARN is created by Amazon SNS when you create a topic
2449
- # and subscribe to it.
2454
+ # notification. SNS automatically creates the ARN when you create a
2455
+ # topic and subscribe to it.
2456
+ #
2457
+ # <note markdown="1"> RDS doesn't support FIFO (first in, first out) topics. For more
2458
+ # information, see [Message ordering and deduplication (FIFO topics)][1]
2459
+ # in the *Amazon Simple Notification Service Developer Guide*.
2460
+ #
2461
+ # </note>
2462
+ #
2463
+ #
2464
+ #
2465
+ # [1]: https://docs.aws.amazon.com/sns/latest/dg/sns-fifo-topics.html
2450
2466
  # @option options [String] :source_type
2451
2467
  # The type of source that is generating the events. For example, if you
2452
2468
  # want to be notified of events generated by a DB instance, you set this
@@ -1784,6 +1784,13 @@ module Aws::RDS
1784
1784
  # @!attribute [rw] target_db_instance_class
1785
1785
  # Specify the DB instance class for the databases in the green
1786
1786
  # environment.
1787
+ #
1788
+ # This parameter only applies to RDS DB instances, because DB
1789
+ # instances within an Aurora DB cluster can have multiple different
1790
+ # instance classes. If you're creating a blue/green deployment from
1791
+ # an Aurora DB cluster, don't specify this parameter. After the green
1792
+ # environment is created, you can individually modify the instance
1793
+ # classes of the DB instances within the green DB cluster.
1787
1794
  # @return [String]
1788
1795
  #
1789
1796
  # @!attribute [rw] upgrade_target_storage_config
@@ -2797,6 +2804,13 @@ module Aws::RDS
2797
2804
  # Amazon RDS issues an error.
2798
2805
  # @return [Integer]
2799
2806
  #
2807
+ # @!attribute [rw] enable_limitless_database
2808
+ # Specifies whether to enable Aurora Limitless Database. You must
2809
+ # enable Aurora Limitless Database to create a DB shard group.
2810
+ #
2811
+ # Valid for: Aurora DB clusters only
2812
+ # @return [Boolean]
2813
+ #
2800
2814
  # @!attribute [rw] serverless_v2_scaling_configuration
2801
2815
  # Contains the scaling configuration of an Aurora Serverless v2 DB
2802
2816
  # cluster.
@@ -2943,6 +2957,7 @@ module Aws::RDS
2943
2957
  :enable_performance_insights,
2944
2958
  :performance_insights_kms_key_id,
2945
2959
  :performance_insights_retention_period,
2960
+ :enable_limitless_database,
2946
2961
  :serverless_v2_scaling_configuration,
2947
2962
  :network_type,
2948
2963
  :db_system_id,
@@ -5627,6 +5642,83 @@ module Aws::RDS
5627
5642
  include Aws::Structure
5628
5643
  end
5629
5644
 
5645
+ # @!attribute [rw] db_shard_group_identifier
5646
+ # The name of the DB shard group.
5647
+ # @return [String]
5648
+ #
5649
+ # @!attribute [rw] db_cluster_identifier
5650
+ # The name of the primary DB cluster for the DB shard group.
5651
+ # @return [String]
5652
+ #
5653
+ # @!attribute [rw] compute_redundancy
5654
+ # Specifies whether to create standby instances for the DB shard
5655
+ # group. Valid values are the following:
5656
+ #
5657
+ # * 0 - Creates a single, primary DB instance for each physical shard.
5658
+ # This is the default value, and the only one supported for the
5659
+ # preview.
5660
+ #
5661
+ # * 1 - Creates a primary DB instance and a standby instance in a
5662
+ # different Availability Zone (AZ) for each physical shard.
5663
+ #
5664
+ # * 2 - Creates a primary DB instance and two standby instances in
5665
+ # different AZs for each physical shard.
5666
+ # @return [Integer]
5667
+ #
5668
+ # @!attribute [rw] max_acu
5669
+ # The maximum capacity of the DB shard group in Aurora capacity units
5670
+ # (ACUs).
5671
+ # @return [Float]
5672
+ #
5673
+ # @!attribute [rw] publicly_accessible
5674
+ # Specifies whether the DB shard group is publicly accessible.
5675
+ #
5676
+ # When the DB shard group is publicly accessible, its Domain Name
5677
+ # System (DNS) endpoint resolves to the private IP address from within
5678
+ # the DB shard group's virtual private cloud (VPC). It resolves to
5679
+ # the public IP address from outside of the DB shard group's VPC.
5680
+ # Access to the DB shard group is ultimately controlled by the
5681
+ # security group it uses. That public access is not permitted if the
5682
+ # security group assigned to the DB shard group doesn't permit it.
5683
+ #
5684
+ # When the DB shard group isn't publicly accessible, it is an
5685
+ # internal DB shard group with a DNS name that resolves to a private
5686
+ # IP address.
5687
+ #
5688
+ # Default: The default behavior varies depending on whether
5689
+ # `DBSubnetGroupName` is specified.
5690
+ #
5691
+ # If `DBSubnetGroupName` isn't specified, and `PubliclyAccessible`
5692
+ # isn't specified, the following applies:
5693
+ #
5694
+ # * If the default VPC in the target Region doesn’t have an internet
5695
+ # gateway attached to it, the DB shard group is private.
5696
+ #
5697
+ # * If the default VPC in the target Region has an internet gateway
5698
+ # attached to it, the DB shard group is public.
5699
+ #
5700
+ # If `DBSubnetGroupName` is specified, and `PubliclyAccessible` isn't
5701
+ # specified, the following applies:
5702
+ #
5703
+ # * If the subnets are part of a VPC that doesn’t have an internet
5704
+ # gateway attached to it, the DB shard group is private.
5705
+ #
5706
+ # * If the subnets are part of a VPC that has an internet gateway
5707
+ # attached to it, the DB shard group is public.
5708
+ # @return [Boolean]
5709
+ #
5710
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBShardGroupMessage AWS API Documentation
5711
+ #
5712
+ class CreateDBShardGroupMessage < Struct.new(
5713
+ :db_shard_group_identifier,
5714
+ :db_cluster_identifier,
5715
+ :compute_redundancy,
5716
+ :max_acu,
5717
+ :publicly_accessible)
5718
+ SENSITIVE = []
5719
+ include Aws::Structure
5720
+ end
5721
+
5630
5722
  # @!attribute [rw] db_snapshot_identifier
5631
5723
  # The identifier for the DB snapshot.
5632
5724
  #
@@ -5750,8 +5842,19 @@ module Aws::RDS
5750
5842
  #
5751
5843
  # @!attribute [rw] sns_topic_arn
5752
5844
  # The Amazon Resource Name (ARN) of the SNS topic created for event
5753
- # notification. The ARN is created by Amazon SNS when you create a
5845
+ # notification. SNS automatically creates the ARN when you create a
5754
5846
  # topic and subscribe to it.
5847
+ #
5848
+ # <note markdown="1"> RDS doesn't support FIFO (first in, first out) topics. For more
5849
+ # information, see [Message ordering and deduplication (FIFO
5850
+ # topics)][1] in the *Amazon Simple Notification Service Developer
5851
+ # Guide*.
5852
+ #
5853
+ # </note>
5854
+ #
5855
+ #
5856
+ #
5857
+ # [1]: https://docs.aws.amazon.com/sns/latest/dg/sns-fifo-topics.html
5755
5858
  # @return [String]
5756
5859
  #
5757
5860
  # @!attribute [rw] source_type
@@ -6761,6 +6864,10 @@ module Aws::RDS
6761
6864
  # Services Backup.
6762
6865
  # @return [String]
6763
6866
  #
6867
+ # @!attribute [rw] limitless_database
6868
+ # The details for Aurora Limitless Database.
6869
+ # @return [Types::LimitlessDatabase]
6870
+ #
6764
6871
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBCluster AWS API Documentation
6765
6872
  #
6766
6873
  class DBCluster < Struct.new(
@@ -6839,7 +6946,8 @@ module Aws::RDS
6839
6946
  :master_user_secret,
6840
6947
  :io_optimized_next_allowed_modification_time,
6841
6948
  :local_write_forwarding_status,
6842
- :aws_backup_recovery_point_arn)
6949
+ :aws_backup_recovery_point_arn,
6950
+ :limitless_database)
6843
6951
  SENSITIVE = []
6844
6952
  include Aws::Structure
6845
6953
  end
@@ -10039,6 +10147,95 @@ module Aws::RDS
10039
10147
  #
10040
10148
  class DBSecurityGroupQuotaExceededFault < Aws::EmptyStructure; end
10041
10149
 
10150
+ # @!attribute [rw] db_shard_group_resource_id
10151
+ # The Amazon Web Services Region-unique, immutable identifier for the
10152
+ # DB shard group.
10153
+ # @return [String]
10154
+ #
10155
+ # @!attribute [rw] db_shard_group_identifier
10156
+ # The name of the DB shard group.
10157
+ # @return [String]
10158
+ #
10159
+ # @!attribute [rw] db_cluster_identifier
10160
+ # The name of the primary DB cluster for the DB shard group.
10161
+ # @return [String]
10162
+ #
10163
+ # @!attribute [rw] max_acu
10164
+ # The maximum capacity of the DB shard group in Aurora capacity units
10165
+ # (ACUs).
10166
+ # @return [Float]
10167
+ #
10168
+ # @!attribute [rw] compute_redundancy
10169
+ # Specifies whether to create standby instances for the DB shard
10170
+ # group. Valid values are the following:
10171
+ #
10172
+ # * 0 - Creates a single, primary DB instance for each physical shard.
10173
+ # This is the default value, and the only one supported for the
10174
+ # preview.
10175
+ #
10176
+ # * 1 - Creates a primary DB instance and a standby instance in a
10177
+ # different Availability Zone (AZ) for each physical shard.
10178
+ #
10179
+ # * 2 - Creates a primary DB instance and two standby instances in
10180
+ # different AZs for each physical shard.
10181
+ # @return [Integer]
10182
+ #
10183
+ # @!attribute [rw] status
10184
+ # The status of the DB shard group.
10185
+ # @return [String]
10186
+ #
10187
+ # @!attribute [rw] publicly_accessible
10188
+ # Indicates whether the DB shard group is publicly accessible.
10189
+ #
10190
+ # When the DB shard group is publicly accessible, its Domain Name
10191
+ # System (DNS) endpoint resolves to the private IP address from within
10192
+ # the DB shard group's virtual private cloud (VPC). It resolves to
10193
+ # the public IP address from outside of the DB shard group's VPC.
10194
+ # Access to the DB shard group is ultimately controlled by the
10195
+ # security group it uses. That public access isn't permitted if the
10196
+ # security group assigned to the DB shard group doesn't permit it.
10197
+ #
10198
+ # When the DB shard group isn't publicly accessible, it is an
10199
+ # internal DB shard group with a DNS name that resolves to a private
10200
+ # IP address.
10201
+ #
10202
+ # For more information, see CreateDBShardGroup.
10203
+ #
10204
+ # This setting is only for Aurora Limitless Database.
10205
+ # @return [Boolean]
10206
+ #
10207
+ # @!attribute [rw] endpoint
10208
+ # The connection endpoint for the DB shard group.
10209
+ # @return [String]
10210
+ #
10211
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBShardGroup AWS API Documentation
10212
+ #
10213
+ class DBShardGroup < Struct.new(
10214
+ :db_shard_group_resource_id,
10215
+ :db_shard_group_identifier,
10216
+ :db_cluster_identifier,
10217
+ :max_acu,
10218
+ :compute_redundancy,
10219
+ :status,
10220
+ :publicly_accessible,
10221
+ :endpoint)
10222
+ SENSITIVE = []
10223
+ include Aws::Structure
10224
+ end
10225
+
10226
+ # The specified DB shard group name must be unique in your Amazon Web
10227
+ # Services account in the specified Amazon Web Services Region.
10228
+ #
10229
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBShardGroupAlreadyExistsFault AWS API Documentation
10230
+ #
10231
+ class DBShardGroupAlreadyExistsFault < Aws::EmptyStructure; end
10232
+
10233
+ # The specified DB shard group name wasn't found.
10234
+ #
10235
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBShardGroupNotFoundFault AWS API Documentation
10236
+ #
10237
+ class DBShardGroupNotFoundFault < Aws::EmptyStructure; end
10238
+
10042
10239
  # Contains the details of an Amazon RDS DB snapshot.
10043
10240
  #
10044
10241
  # This data type is used as a response element in the
@@ -11097,6 +11294,18 @@ module Aws::RDS
11097
11294
  include Aws::Structure
11098
11295
  end
11099
11296
 
11297
+ # @!attribute [rw] db_shard_group_identifier
11298
+ # Teh name of the DB shard group to delete.
11299
+ # @return [String]
11300
+ #
11301
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBShardGroupMessage AWS API Documentation
11302
+ #
11303
+ class DeleteDBShardGroupMessage < Struct.new(
11304
+ :db_shard_group_identifier)
11305
+ SENSITIVE = []
11306
+ include Aws::Structure
11307
+ end
11308
+
11100
11309
  # @!attribute [rw] db_snapshot_identifier
11101
11310
  # The DB snapshot identifier.
11102
11311
  #
@@ -11972,7 +12181,7 @@ module Aws::RDS
11972
12181
  #
11973
12182
  # Default: 100
11974
12183
  #
11975
- # Constraints: Minimum 20, maximum 100.
12184
+ # Constraints: Minimum 20, maximum 100
11976
12185
  # @return [Integer]
11977
12186
  #
11978
12187
  # @!attribute [rw] marker
@@ -12909,6 +13118,70 @@ module Aws::RDS
12909
13118
  include Aws::Structure
12910
13119
  end
12911
13120
 
13121
+ # @!attribute [rw] db_shard_group_identifier
13122
+ # The user-supplied DB shard group identifier or the Amazon Resource
13123
+ # Name (ARN) of the DB shard group. If this parameter is specified,
13124
+ # information for only the specific DB shard group is returned. This
13125
+ # parameter isn't case-sensitive.
13126
+ #
13127
+ # Constraints:
13128
+ #
13129
+ # * If supplied, must match an existing DB shard group identifier.
13130
+ #
13131
+ # ^
13132
+ # @return [String]
13133
+ #
13134
+ # @!attribute [rw] filters
13135
+ # A filter that specifies one or more DB shard groups to describe.
13136
+ # @return [Array<Types::Filter>]
13137
+ #
13138
+ # @!attribute [rw] marker
13139
+ # An optional pagination token provided by a previous
13140
+ # `DescribeDBShardGroups` request. If this parameter is specified, the
13141
+ # response includes only records beyond the marker, up to the value
13142
+ # specified by `MaxRecords`.
13143
+ # @return [String]
13144
+ #
13145
+ # @!attribute [rw] max_records
13146
+ # The maximum number of records to include in the response. If more
13147
+ # records exist than the specified `MaxRecords` value, a pagination
13148
+ # token called a marker is included in the response so you can
13149
+ # retrieve the remaining results.
13150
+ #
13151
+ # Default: 100
13152
+ #
13153
+ # Constraints: Minimum 20, maximum 100
13154
+ # @return [Integer]
13155
+ #
13156
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBShardGroupsMessage AWS API Documentation
13157
+ #
13158
+ class DescribeDBShardGroupsMessage < Struct.new(
13159
+ :db_shard_group_identifier,
13160
+ :filters,
13161
+ :marker,
13162
+ :max_records)
13163
+ SENSITIVE = []
13164
+ include Aws::Structure
13165
+ end
13166
+
13167
+ # @!attribute [rw] db_shard_groups
13168
+ # Contains a list of DB shard groups for the user.
13169
+ # @return [Array<Types::DBShardGroup>]
13170
+ #
13171
+ # @!attribute [rw] marker
13172
+ # A pagination token that can be used in a later `DescribeDBClusters`
13173
+ # request.
13174
+ # @return [String]
13175
+ #
13176
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBShardGroupsResponse AWS API Documentation
13177
+ #
13178
+ class DescribeDBShardGroupsResponse < Struct.new(
13179
+ :db_shard_groups,
13180
+ :marker)
13181
+ SENSITIVE = []
13182
+ include Aws::Structure
13183
+ end
13184
+
12912
13185
  # @!attribute [rw] db_snapshot_identifier
12913
13186
  # The identifier for the DB snapshot to describe the attributes for.
12914
13187
  # @return [String]
@@ -15766,6 +16039,12 @@ module Aws::RDS
15766
16039
  #
15767
16040
  class InvalidDBSecurityGroupStateFault < Aws::EmptyStructure; end
15768
16041
 
16042
+ # The DB shard group must be in the available state.
16043
+ #
16044
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/InvalidDBShardGroupStateFault AWS API Documentation
16045
+ #
16046
+ class InvalidDBShardGroupStateFault < Aws::EmptyStructure; end
16047
+
15769
16048
  # The state of the DB snapshot doesn't allow deletion.
15770
16049
  #
15771
16050
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/InvalidDBSnapshotStateFault AWS API Documentation
@@ -15831,6 +16110,13 @@ module Aws::RDS
15831
16110
  #
15832
16111
  class InvalidIntegrationStateFault < Aws::EmptyStructure; end
15833
16112
 
16113
+ # The maximum capacity of the DB shard group must be 48-7168 Aurora
16114
+ # capacity units (ACUs).
16115
+ #
16116
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/InvalidMaxAcuFault AWS API Documentation
16117
+ #
16118
+ class InvalidMaxAcuFault < Aws::EmptyStructure; end
16119
+
15834
16120
  # The option group isn't in the *available* state.
15835
16121
  #
15836
16122
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/InvalidOptionGroupStateFault AWS API Documentation
@@ -15895,6 +16181,26 @@ module Aws::RDS
15895
16181
  #
15896
16182
  class KMSKeyNotAccessibleFault < Aws::EmptyStructure; end
15897
16183
 
16184
+ # Contains details for Aurora Limitless Database.
16185
+ #
16186
+ # @!attribute [rw] status
16187
+ # The status of Aurora Limitless Database.
16188
+ # @return [String]
16189
+ #
16190
+ # @!attribute [rw] min_required_acu
16191
+ # The minimum required capacity for Aurora Limitless Database in
16192
+ # Aurora capacity units (ACUs).
16193
+ # @return [Float]
16194
+ #
16195
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/LimitlessDatabase AWS API Documentation
16196
+ #
16197
+ class LimitlessDatabase < Struct.new(
16198
+ :status,
16199
+ :min_required_acu)
16200
+ SENSITIVE = []
16201
+ include Aws::Structure
16202
+ end
16203
+
15898
16204
  # @!attribute [rw] resource_name
15899
16205
  # The Amazon RDS resource with tags to be listed. This value is an
15900
16206
  # Amazon Resource Name (ARN). For information about creating an ARN,
@@ -15974,6 +16280,13 @@ module Aws::RDS
15974
16280
  include Aws::Structure
15975
16281
  end
15976
16282
 
16283
+ # The maximum number of DB shard groups for your Amazon Web Services
16284
+ # account in the specified Amazon Web Services Region has been reached.
16285
+ #
16286
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/MaxDBShardGroupLimitReached AWS API Documentation
16287
+ #
16288
+ class MaxDBShardGroupLimitReached < Aws::EmptyStructure; end
16289
+
15977
16290
  # The representation of a metric.
15978
16291
  #
15979
16292
  # @!attribute [rw] name
@@ -17026,6 +17339,13 @@ module Aws::RDS
17026
17339
  # Services Backup.
17027
17340
  # @return [String]
17028
17341
  #
17342
+ # @!attribute [rw] enable_limitless_database
17343
+ # Specifies whether to enable Aurora Limitless Database. You must
17344
+ # enable Aurora Limitless Database to create a DB shard group.
17345
+ #
17346
+ # Valid for: Aurora DB clusters only
17347
+ # @return [Boolean]
17348
+ #
17029
17349
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterMessage AWS API Documentation
17030
17350
  #
17031
17351
  class ModifyDBClusterMessage < Struct.new(
@@ -17071,7 +17391,8 @@ module Aws::RDS
17071
17391
  :engine_mode,
17072
17392
  :allow_engine_mode_change,
17073
17393
  :enable_local_write_forwarding,
17074
- :aws_backup_recovery_point_arn)
17394
+ :aws_backup_recovery_point_arn,
17395
+ :enable_limitless_database)
17075
17396
  SENSITIVE = []
17076
17397
  include Aws::Structure
17077
17398
  end
@@ -18692,6 +19013,24 @@ module Aws::RDS
18692
19013
  include Aws::Structure
18693
19014
  end
18694
19015
 
19016
+ # @!attribute [rw] db_shard_group_identifier
19017
+ # The name of the DB shard group to modify.
19018
+ # @return [String]
19019
+ #
19020
+ # @!attribute [rw] max_acu
19021
+ # The maximum capacity of the DB shard group in Aurora capacity units
19022
+ # (ACUs).
19023
+ # @return [Float]
19024
+ #
19025
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBShardGroupMessage AWS API Documentation
19026
+ #
19027
+ class ModifyDBShardGroupMessage < Struct.new(
19028
+ :db_shard_group_identifier,
19029
+ :max_acu)
19030
+ SENSITIVE = []
19031
+ include Aws::Structure
19032
+ end
19033
+
18695
19034
  # @!attribute [rw] db_snapshot_identifier
18696
19035
  # The identifier for the DB snapshot to modify the attributes for.
18697
19036
  # @return [String]
@@ -20825,6 +21164,18 @@ module Aws::RDS
20825
21164
  include Aws::Structure
20826
21165
  end
20827
21166
 
21167
+ # @!attribute [rw] db_shard_group_identifier
21168
+ # The name of the DB shard group to reboot.
21169
+ # @return [String]
21170
+ #
21171
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBShardGroupMessage AWS API Documentation
21172
+ #
21173
+ class RebootDBShardGroupMessage < Struct.new(
21174
+ :db_shard_group_identifier)
21175
+ SENSITIVE = []
21176
+ include Aws::Structure
21177
+ end
21178
+
20828
21179
  # The recommended actions to apply to resolve the issues associated with
20829
21180
  # your DB instances, DB clusters, and DB parameter groups.
20830
21181
  #
@@ -26361,6 +26712,13 @@ module Aws::RDS
26361
26712
  include Aws::Structure
26362
26713
  end
26363
26714
 
26715
+ # The specified DB engine version isn't supported for Aurora Limitless
26716
+ # Database.
26717
+ #
26718
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/UnsupportedDBEngineVersionFault AWS API Documentation
26719
+ #
26720
+ class UnsupportedDBEngineVersionFault < Aws::EmptyStructure; end
26721
+
26364
26722
  # The version of the database engine that a DB instance can be upgraded
26365
26723
  # to.
26366
26724
  #
data/lib/aws-sdk-rds.rb CHANGED
@@ -78,6 +78,6 @@ require_relative 'aws-sdk-rds/customizations'
78
78
  # @!group service
79
79
  module Aws::RDS
80
80
 
81
- GEM_VERSION = '1.211.0'
81
+ GEM_VERSION = '1.213.0'
82
82
 
83
83
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-rds
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.211.0
4
+ version: 1.213.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-12-21 00:00:00.000000000 Z
11
+ date: 2024-01-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4
@@ -100,7 +100,7 @@ licenses:
100
100
  metadata:
101
101
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-rds
102
102
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-rds/CHANGELOG.md
103
- post_install_message:
103
+ post_install_message:
104
104
  rdoc_options: []
105
105
  require_paths:
106
106
  - lib
@@ -115,8 +115,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
115
115
  - !ruby/object:Gem::Version
116
116
  version: '0'
117
117
  requirements: []
118
- rubygems_version: 3.1.6
119
- signing_key:
118
+ rubygems_version: 3.4.10
119
+ signing_key:
120
120
  specification_version: 4
121
121
  summary: AWS SDK for Ruby - Amazon RDS
122
122
  test_files: []