aws-sdk-rds 1.142.0 → 1.145.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1612,70 +1612,6 @@ module Aws::RDS
1612
1612
  include Aws::Structure
1613
1613
  end
1614
1614
 
1615
- # @note When making an API call, you may pass CreateCustomAvailabilityZoneMessage
1616
- # data as a hash:
1617
- #
1618
- # {
1619
- # custom_availability_zone_name: "String", # required
1620
- # existing_vpn_id: "String",
1621
- # new_vpn_tunnel_name: "String",
1622
- # vpn_tunnel_originator_ip: "String",
1623
- # }
1624
- #
1625
- # @!attribute [rw] custom_availability_zone_name
1626
- # The name of the custom Availability Zone (AZ).
1627
- # @return [String]
1628
- #
1629
- # @!attribute [rw] existing_vpn_id
1630
- # The ID of an existing virtual private network (VPN) between the
1631
- # Amazon RDS website and the VMware vSphere cluster.
1632
- # @return [String]
1633
- #
1634
- # @!attribute [rw] new_vpn_tunnel_name
1635
- # The name of a new VPN tunnel between the Amazon RDS website and the
1636
- # VMware vSphere cluster.
1637
- #
1638
- # Specify this parameter only if `ExistingVpnId` isn't specified.
1639
- # @return [String]
1640
- #
1641
- # @!attribute [rw] vpn_tunnel_originator_ip
1642
- # The IP address of network traffic from your on-premises data center.
1643
- # A custom AZ receives the network traffic.
1644
- #
1645
- # Specify this parameter only if `ExistingVpnId` isn't specified.
1646
- # @return [String]
1647
- #
1648
- # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateCustomAvailabilityZoneMessage AWS API Documentation
1649
- #
1650
- class CreateCustomAvailabilityZoneMessage < Struct.new(
1651
- :custom_availability_zone_name,
1652
- :existing_vpn_id,
1653
- :new_vpn_tunnel_name,
1654
- :vpn_tunnel_originator_ip)
1655
- SENSITIVE = []
1656
- include Aws::Structure
1657
- end
1658
-
1659
- # @!attribute [rw] custom_availability_zone
1660
- # A custom Availability Zone (AZ) is an on-premises AZ that is
1661
- # integrated with a VMware vSphere cluster.
1662
- #
1663
- # For more information about RDS on VMware, see the [ RDS on VMware
1664
- # User Guide.][1]
1665
- #
1666
- #
1667
- #
1668
- # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/RDSonVMwareUserGuide/rds-on-vmware.html
1669
- # @return [Types::CustomAvailabilityZone]
1670
- #
1671
- # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateCustomAvailabilityZoneResult AWS API Documentation
1672
- #
1673
- class CreateCustomAvailabilityZoneResult < Struct.new(
1674
- :custom_availability_zone)
1675
- SENSITIVE = []
1676
- include Aws::Structure
1677
- end
1678
-
1679
1615
  # @note When making an API call, you may pass CreateCustomDBEngineVersionMessage
1680
1616
  # data as a hash:
1681
1617
  #
@@ -1926,6 +1862,10 @@ module Aws::RDS
1926
1862
  # enable_performance_insights: false,
1927
1863
  # performance_insights_kms_key_id: "String",
1928
1864
  # performance_insights_retention_period: 1,
1865
+ # serverless_v2_scaling_configuration: {
1866
+ # min_capacity: 1.0,
1867
+ # max_capacity: 1.0,
1868
+ # },
1929
1869
  # source_region: "String",
1930
1870
  # }
1931
1871
  #
@@ -2688,6 +2628,18 @@ module Aws::RDS
2688
2628
  # Valid for: Multi-AZ DB clusters only
2689
2629
  # @return [Integer]
2690
2630
  #
2631
+ # @!attribute [rw] serverless_v2_scaling_configuration
2632
+ # Contains the scaling configuration of an Aurora Serverless v2 DB
2633
+ # cluster.
2634
+ #
2635
+ # For more information, see [Using Amazon Aurora Serverless v2][1] in
2636
+ # the *Amazon Aurora User Guide*.
2637
+ #
2638
+ #
2639
+ #
2640
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
2641
+ # @return [Types::ServerlessV2ScalingConfiguration]
2642
+ #
2691
2643
  # @!attribute [rw] source_region
2692
2644
  # The source region of the snapshot. This is only needed when the
2693
2645
  # shapshot is encrypted and in a different region.
@@ -2740,6 +2692,7 @@ module Aws::RDS
2740
2692
  :enable_performance_insights,
2741
2693
  :performance_insights_kms_key_id,
2742
2694
  :performance_insights_retention_period,
2695
+ :serverless_v2_scaling_configuration,
2743
2696
  :source_region)
2744
2697
  SENSITIVE = []
2745
2698
  include Aws::Structure
@@ -3036,6 +2989,7 @@ module Aws::RDS
3036
2989
  # enable_customer_owned_ip: false,
3037
2990
  # custom_iam_instance_profile: "String",
3038
2991
  # backup_target: "String",
2992
+ # network_type: "String",
3039
2993
  # }
3040
2994
  #
3041
2995
  # @!attribute [rw] db_name
@@ -3408,7 +3362,10 @@ module Aws::RDS
3408
3362
  #
3409
3363
  # **Amazon Aurora**
3410
3364
  #
3411
- # Not applicable. Availability Zones are managed by the DB cluster.
3365
+ # Each Aurora DB cluster hosts copies of its storage in three separate
3366
+ # Availability Zones. Specify one of these Availability Zones. Aurora
3367
+ # automatically chooses an appropriate Availability Zone if you don't
3368
+ # specify one.
3412
3369
  #
3413
3370
  # Default: A random, system-chosen Availability Zone in the
3414
3371
  # endpoint's Amazon Web Services Region.
@@ -3643,7 +3600,7 @@ module Aws::RDS
3643
3600
  #
3644
3601
  #
3645
3602
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-creating.html#custom-creating.create
3646
- # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits.html#custom-reqs-limits.reqsMS
3603
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits-MS.html
3647
3604
  # [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MariaDB.html#MariaDB.Concepts.VersionMgmt
3648
3605
  # [4]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.VersionSupport
3649
3606
  # [5]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_MySQL.html#MySQL.Concepts.VersionMgmt
@@ -4114,6 +4071,27 @@ module Aws::RDS
4114
4071
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
4115
4072
  # @return [String]
4116
4073
  #
4074
+ # @!attribute [rw] network_type
4075
+ # The network type of the DB instance.
4076
+ #
4077
+ # Valid values:
4078
+ #
4079
+ # * `IPV4`
4080
+ #
4081
+ # * `DUAL`
4082
+ #
4083
+ # The network type is determined by the `DBSubnetGroup` specified for
4084
+ # the DB instance. A `DBSubnetGroup` can support only the IPv4
4085
+ # protocol or the IPv4 and the IPv6 protocols (`DUAL`).
4086
+ #
4087
+ # For more information, see [ Working with a DB instance in a VPC][1]
4088
+ # in the *Amazon RDS User Guide.*
4089
+ #
4090
+ #
4091
+ #
4092
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
4093
+ # @return [String]
4094
+ #
4117
4095
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceMessage AWS API Documentation
4118
4096
  #
4119
4097
  class CreateDBInstanceMessage < Struct.new(
@@ -4166,7 +4144,8 @@ module Aws::RDS
4166
4144
  :max_allocated_storage,
4167
4145
  :enable_customer_owned_ip,
4168
4146
  :custom_iam_instance_profile,
4169
- :backup_target)
4147
+ :backup_target,
4148
+ :network_type)
4170
4149
  SENSITIVE = []
4171
4150
  include Aws::Structure
4172
4151
  end
@@ -4218,6 +4197,7 @@ module Aws::RDS
4218
4197
  # replica_mode: "open-read-only", # accepts open-read-only, mounted
4219
4198
  # max_allocated_storage: 1,
4220
4199
  # custom_iam_instance_profile: "String",
4200
+ # network_type: "String",
4221
4201
  # source_region: "String",
4222
4202
  # }
4223
4203
  #
@@ -4750,6 +4730,27 @@ module Aws::RDS
4750
4730
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
4751
4731
  # @return [String]
4752
4732
  #
4733
+ # @!attribute [rw] network_type
4734
+ # The network type of the DB instance.
4735
+ #
4736
+ # Valid values:
4737
+ #
4738
+ # * `IPV4`
4739
+ #
4740
+ # * `DUAL`
4741
+ #
4742
+ # The network type is determined by the `DBSubnetGroup` specified for
4743
+ # read replica. A `DBSubnetGroup` can support only the IPv4 protocol
4744
+ # or the IPv4 and the IPv6 protocols (`DUAL`).
4745
+ #
4746
+ # For more information, see [ Working with a DB instance in a VPC][1]
4747
+ # in the *Amazon RDS User Guide.*
4748
+ #
4749
+ #
4750
+ #
4751
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
4752
+ # @return [String]
4753
+ #
4753
4754
  # @!attribute [rw] source_region
4754
4755
  # The source region of the snapshot. This is only needed when the
4755
4756
  # shapshot is encrypted and in a different region.
@@ -4791,6 +4792,7 @@ module Aws::RDS
4791
4792
  :replica_mode,
4792
4793
  :max_allocated_storage,
4793
4794
  :custom_iam_instance_profile,
4795
+ :network_type,
4794
4796
  :source_region)
4795
4797
  SENSITIVE = []
4796
4798
  include Aws::Structure
@@ -5660,75 +5662,6 @@ module Aws::RDS
5660
5662
  include Aws::Structure
5661
5663
  end
5662
5664
 
5663
- # A custom Availability Zone (AZ) is an on-premises AZ that is
5664
- # integrated with a VMware vSphere cluster.
5665
- #
5666
- # For more information about RDS on VMware, see the [ RDS on VMware User
5667
- # Guide.][1]
5668
- #
5669
- #
5670
- #
5671
- # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/RDSonVMwareUserGuide/rds-on-vmware.html
5672
- #
5673
- # @!attribute [rw] custom_availability_zone_id
5674
- # The identifier of the custom AZ.
5675
- #
5676
- # Amazon RDS generates a unique identifier when a custom AZ is
5677
- # created.
5678
- # @return [String]
5679
- #
5680
- # @!attribute [rw] custom_availability_zone_name
5681
- # The name of the custom AZ.
5682
- # @return [String]
5683
- #
5684
- # @!attribute [rw] custom_availability_zone_status
5685
- # The status of the custom AZ.
5686
- # @return [String]
5687
- #
5688
- # @!attribute [rw] vpn_details
5689
- # Information about the virtual private network (VPN) between the
5690
- # VMware vSphere cluster and the Amazon Web Services website.
5691
- # @return [Types::VpnDetails]
5692
- #
5693
- # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CustomAvailabilityZone AWS API Documentation
5694
- #
5695
- class CustomAvailabilityZone < Struct.new(
5696
- :custom_availability_zone_id,
5697
- :custom_availability_zone_name,
5698
- :custom_availability_zone_status,
5699
- :vpn_details)
5700
- SENSITIVE = []
5701
- include Aws::Structure
5702
- end
5703
-
5704
- # `CustomAvailabilityZoneName` is already used by an existing custom
5705
- # Availability Zone.
5706
- #
5707
- # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CustomAvailabilityZoneAlreadyExistsFault AWS API Documentation
5708
- #
5709
- class CustomAvailabilityZoneAlreadyExistsFault < Aws::EmptyStructure; end
5710
-
5711
- # @!attribute [rw] marker
5712
- # An optional pagination token provided by a previous
5713
- # `DescribeCustomAvailabilityZones` request. If this parameter is
5714
- # specified, the response includes only records beyond the marker, up
5715
- # to the value specified by `MaxRecords`.
5716
- # @return [String]
5717
- #
5718
- # @!attribute [rw] custom_availability_zones
5719
- # The list of CustomAvailabilityZone objects for the Amazon Web
5720
- # Services account.
5721
- # @return [Array<Types::CustomAvailabilityZone>]
5722
- #
5723
- # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CustomAvailabilityZoneMessage AWS API Documentation
5724
- #
5725
- class CustomAvailabilityZoneMessage < Struct.new(
5726
- :marker,
5727
- :custom_availability_zones)
5728
- SENSITIVE = []
5729
- include Aws::Structure
5730
- end
5731
-
5732
5665
  # `CustomAvailabilityZoneId` doesn't refer to an existing custom
5733
5666
  # Availability Zone identifier.
5734
5667
  #
@@ -5736,12 +5669,6 @@ module Aws::RDS
5736
5669
  #
5737
5670
  class CustomAvailabilityZoneNotFoundFault < Aws::EmptyStructure; end
5738
5671
 
5739
- # You have exceeded the maximum number of custom Availability Zones.
5740
- #
5741
- # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CustomAvailabilityZoneQuotaExceededFault AWS API Documentation
5742
- #
5743
- class CustomAvailabilityZoneQuotaExceededFault < Aws::EmptyStructure; end
5744
-
5745
5672
  # A CEV with the specified name already exists.
5746
5673
  #
5747
5674
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CustomDBEngineVersionAlreadyExistsFault AWS API Documentation
@@ -6222,6 +6149,18 @@ module Aws::RDS
6222
6149
  # This setting is only for non-Aurora Multi-AZ DB clusters.
6223
6150
  # @return [Integer]
6224
6151
  #
6152
+ # @!attribute [rw] serverless_v2_scaling_configuration
6153
+ # Shows the scaling configuration for an Aurora Serverless v2 DB
6154
+ # cluster.
6155
+ #
6156
+ # For more information, see [Using Amazon Aurora Serverless v2][1] in
6157
+ # the *Amazon Aurora User Guide*.
6158
+ #
6159
+ #
6160
+ #
6161
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
6162
+ # @return [Types::ServerlessV2ScalingConfigurationInfo]
6163
+ #
6225
6164
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBCluster AWS API Documentation
6226
6165
  #
6227
6166
  class DBCluster < Struct.new(
@@ -6291,7 +6230,8 @@ module Aws::RDS
6291
6230
  :monitoring_role_arn,
6292
6231
  :performance_insights_enabled,
6293
6232
  :performance_insights_kms_key_id,
6294
- :performance_insights_retention_period)
6233
+ :performance_insights_retention_period,
6234
+ :serverless_v2_scaling_configuration)
6295
6235
  SENSITIVE = []
6296
6236
  include Aws::Structure
6297
6237
  end
@@ -7770,6 +7710,29 @@ module Aws::RDS
7770
7710
  # Amazon Web Services Outposts or the Amazon Web Services Region.
7771
7711
  # @return [String]
7772
7712
  #
7713
+ # @!attribute [rw] network_type
7714
+ # The network type of the DB instance.
7715
+ #
7716
+ # Valid values:
7717
+ #
7718
+ # * `IPV4`
7719
+ #
7720
+ # * `DUAL`
7721
+ #
7722
+ # The network type is determined by the `DBSubnetGroup` specified for
7723
+ # the DB instance. A `DBSubnetGroup` can support only the IPv4
7724
+ # protocol or the IPv4 and the IPv6 protocols (`DUAL`).
7725
+ #
7726
+ # For more information, see [ Working with a DB instance in a VPC][1]
7727
+ # in the *Amazon RDS User Guide* and [ Working with a DB instance in a
7728
+ # VPC][2] in the *Amazon Aurora User Guide.*
7729
+ #
7730
+ #
7731
+ #
7732
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
7733
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
7734
+ # @return [String]
7735
+ #
7773
7736
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstance AWS API Documentation
7774
7737
  #
7775
7738
  class DBInstance < Struct.new(
@@ -7846,7 +7809,8 @@ module Aws::RDS
7846
7809
  :automation_mode,
7847
7810
  :resume_full_automation_mode_time,
7848
7811
  :custom_iam_instance_profile,
7849
- :backup_target)
7812
+ :backup_target,
7813
+ :network_type)
7850
7814
  SENSITIVE = []
7851
7815
  include Aws::Structure
7852
7816
  end
@@ -9188,6 +9152,26 @@ module Aws::RDS
9188
9152
  # The Amazon Resource Name (ARN) for the DB subnet group.
9189
9153
  # @return [String]
9190
9154
  #
9155
+ # @!attribute [rw] supported_network_types
9156
+ # The network type of the DB subnet group.
9157
+ #
9158
+ # Valid values:
9159
+ #
9160
+ # * `IPV4`
9161
+ #
9162
+ # * `DUAL`
9163
+ #
9164
+ # A `DBSubnetGroup` can support only the IPv4 protocol or the IPv4 and
9165
+ # the IPv6 protocols (`DUAL`).
9166
+ #
9167
+ # For more information, see [ Working with a DB instance in a VPC][1]
9168
+ # in the *Amazon RDS User Guide.*
9169
+ #
9170
+ #
9171
+ #
9172
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
9173
+ # @return [Array<String>]
9174
+ #
9191
9175
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBSubnetGroup AWS API Documentation
9192
9176
  #
9193
9177
  class DBSubnetGroup < Struct.new(
@@ -9196,7 +9180,8 @@ module Aws::RDS
9196
9180
  :vpc_id,
9197
9181
  :subnet_group_status,
9198
9182
  :subnets,
9199
- :db_subnet_group_arn)
9183
+ :db_subnet_group_arn,
9184
+ :supported_network_types)
9200
9185
  SENSITIVE = []
9201
9186
  include Aws::Structure
9202
9187
  end
@@ -9270,45 +9255,6 @@ module Aws::RDS
9270
9255
  #
9271
9256
  class DBUpgradeDependencyFailureFault < Aws::EmptyStructure; end
9272
9257
 
9273
- # @note When making an API call, you may pass DeleteCustomAvailabilityZoneMessage
9274
- # data as a hash:
9275
- #
9276
- # {
9277
- # custom_availability_zone_id: "String", # required
9278
- # }
9279
- #
9280
- # @!attribute [rw] custom_availability_zone_id
9281
- # The custom AZ identifier.
9282
- # @return [String]
9283
- #
9284
- # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteCustomAvailabilityZoneMessage AWS API Documentation
9285
- #
9286
- class DeleteCustomAvailabilityZoneMessage < Struct.new(
9287
- :custom_availability_zone_id)
9288
- SENSITIVE = []
9289
- include Aws::Structure
9290
- end
9291
-
9292
- # @!attribute [rw] custom_availability_zone
9293
- # A custom Availability Zone (AZ) is an on-premises AZ that is
9294
- # integrated with a VMware vSphere cluster.
9295
- #
9296
- # For more information about RDS on VMware, see the [ RDS on VMware
9297
- # User Guide.][1]
9298
- #
9299
- #
9300
- #
9301
- # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/RDSonVMwareUserGuide/rds-on-vmware.html
9302
- # @return [Types::CustomAvailabilityZone]
9303
- #
9304
- # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteCustomAvailabilityZoneResult AWS API Documentation
9305
- #
9306
- class DeleteCustomAvailabilityZoneResult < Struct.new(
9307
- :custom_availability_zone)
9308
- SENSITIVE = []
9309
- include Aws::Structure
9310
- end
9311
-
9312
9258
  # @note When making an API call, you may pass DeleteCustomDBEngineVersionMessage
9313
9259
  # data as a hash:
9314
9260
  #
@@ -9927,25 +9873,6 @@ module Aws::RDS
9927
9873
  include Aws::Structure
9928
9874
  end
9929
9875
 
9930
- # @note When making an API call, you may pass DeleteInstallationMediaMessage
9931
- # data as a hash:
9932
- #
9933
- # {
9934
- # installation_media_id: "String", # required
9935
- # }
9936
- #
9937
- # @!attribute [rw] installation_media_id
9938
- # The installation medium ID.
9939
- # @return [String]
9940
- #
9941
- # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteInstallationMediaMessage AWS API Documentation
9942
- #
9943
- class DeleteInstallationMediaMessage < Struct.new(
9944
- :installation_media_id)
9945
- SENSITIVE = []
9946
- include Aws::Structure
9947
- end
9948
-
9949
9876
  # @note When making an API call, you may pass DeleteOptionGroupMessage
9950
9877
  # data as a hash:
9951
9878
  #
@@ -10077,59 +10004,6 @@ module Aws::RDS
10077
10004
  include Aws::Structure
10078
10005
  end
10079
10006
 
10080
- # @note When making an API call, you may pass DescribeCustomAvailabilityZonesMessage
10081
- # data as a hash:
10082
- #
10083
- # {
10084
- # custom_availability_zone_id: "String",
10085
- # filters: [
10086
- # {
10087
- # name: "String", # required
10088
- # values: ["String"], # required
10089
- # },
10090
- # ],
10091
- # max_records: 1,
10092
- # marker: "String",
10093
- # }
10094
- #
10095
- # @!attribute [rw] custom_availability_zone_id
10096
- # The custom AZ identifier. If this parameter is specified,
10097
- # information from only the specific custom AZ is returned.
10098
- # @return [String]
10099
- #
10100
- # @!attribute [rw] filters
10101
- # A filter that specifies one or more custom AZs to describe.
10102
- # @return [Array<Types::Filter>]
10103
- #
10104
- # @!attribute [rw] max_records
10105
- # The maximum number of records to include in the response. If more
10106
- # records exist than the specified `MaxRecords` value, a pagination
10107
- # token called a marker is included in the response so you can
10108
- # retrieve the remaining results.
10109
- #
10110
- # Default: 100
10111
- #
10112
- # Constraints: Minimum 20, maximum 100.
10113
- # @return [Integer]
10114
- #
10115
- # @!attribute [rw] marker
10116
- # An optional pagination token provided by a previous
10117
- # `DescribeCustomAvailabilityZones` request. If this parameter is
10118
- # specified, the response includes only records beyond the marker, up
10119
- # to the value specified by `MaxRecords`.
10120
- # @return [String]
10121
- #
10122
- # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeCustomAvailabilityZonesMessage AWS API Documentation
10123
- #
10124
- class DescribeCustomAvailabilityZonesMessage < Struct.new(
10125
- :custom_availability_zone_id,
10126
- :filters,
10127
- :max_records,
10128
- :marker)
10129
- SENSITIVE = []
10130
- include Aws::Structure
10131
- end
10132
-
10133
10007
  # @note When making an API call, you may pass DescribeDBClusterBacktracksMessage
10134
10008
  # data as a hash:
10135
10009
  #
@@ -12005,6 +11879,86 @@ module Aws::RDS
12005
11879
  #
12006
11880
  # @!attribute [rw] db_parameter_group_family
12007
11881
  # The name of the DB parameter group family.
11882
+ #
11883
+ # Valid Values:
11884
+ #
11885
+ # * `aurora5.6`
11886
+ #
11887
+ # * `aurora-mysql5.7`
11888
+ #
11889
+ # * `aurora-mysql8.0`
11890
+ #
11891
+ # * `aurora-postgresql10`
11892
+ #
11893
+ # * `aurora-postgresql11`
11894
+ #
11895
+ # * `aurora-postgresql12`
11896
+ #
11897
+ # * `aurora-postgresql13`
11898
+ #
11899
+ # * `mariadb10.2`
11900
+ #
11901
+ # * `mariadb10.3`
11902
+ #
11903
+ # * `mariadb10.4`
11904
+ #
11905
+ # * `mariadb10.5`
11906
+ #
11907
+ # * `mariadb10.6`
11908
+ #
11909
+ # * `mysql5.7`
11910
+ #
11911
+ # * `mysql8.0`
11912
+ #
11913
+ # * `postgres10`
11914
+ #
11915
+ # * `postgres11`
11916
+ #
11917
+ # * `postgres12`
11918
+ #
11919
+ # * `postgres13`
11920
+ #
11921
+ # * `postgres14`
11922
+ #
11923
+ # * `sqlserver-ee-11.0`
11924
+ #
11925
+ # * `sqlserver-ee-12.0`
11926
+ #
11927
+ # * `sqlserver-ee-13.0`
11928
+ #
11929
+ # * `sqlserver-ee-14.0`
11930
+ #
11931
+ # * `sqlserver-ee-15.0`
11932
+ #
11933
+ # * `sqlserver-ex-11.0`
11934
+ #
11935
+ # * `sqlserver-ex-12.0`
11936
+ #
11937
+ # * `sqlserver-ex-13.0`
11938
+ #
11939
+ # * `sqlserver-ex-14.0`
11940
+ #
11941
+ # * `sqlserver-ex-15.0`
11942
+ #
11943
+ # * `sqlserver-se-11.0`
11944
+ #
11945
+ # * `sqlserver-se-12.0`
11946
+ #
11947
+ # * `sqlserver-se-13.0`
11948
+ #
11949
+ # * `sqlserver-se-14.0`
11950
+ #
11951
+ # * `sqlserver-se-15.0`
11952
+ #
11953
+ # * `sqlserver-web-11.0`
11954
+ #
11955
+ # * `sqlserver-web-12.0`
11956
+ #
11957
+ # * `sqlserver-web-13.0`
11958
+ #
11959
+ # * `sqlserver-web-14.0`
11960
+ #
11961
+ # * `sqlserver-web-15.0`
12008
11962
  # @return [String]
12009
11963
  #
12010
11964
  # @!attribute [rw] filters
@@ -12419,11 +12373,12 @@ module Aws::RDS
12419
12373
  include Aws::Structure
12420
12374
  end
12421
12375
 
12422
- # @note When making an API call, you may pass DescribeInstallationMediaMessage
12376
+ # @note When making an API call, you may pass DescribeOptionGroupOptionsMessage
12423
12377
  # data as a hash:
12424
12378
  #
12425
12379
  # {
12426
- # installation_media_id: "String",
12380
+ # engine_name: "String", # required
12381
+ # major_engine_version: "String",
12427
12382
  # filters: [
12428
12383
  # {
12429
12384
  # name: "String", # required
@@ -12434,69 +12389,9 @@ module Aws::RDS
12434
12389
  # marker: "String",
12435
12390
  # }
12436
12391
  #
12437
- # @!attribute [rw] installation_media_id
12438
- # The installation medium ID.
12439
- # @return [String]
12440
- #
12441
- # @!attribute [rw] filters
12442
- # A filter that specifies one or more installation media to describe.
12443
- # Supported filters include the following:
12444
- #
12445
- # * `custom-availability-zone-id` - Accepts custom Availability Zone
12446
- # (AZ) identifiers. The results list includes information about only
12447
- # the custom AZs identified by these identifiers.
12448
- #
12449
- # * `engine` - Accepts database engines. The results list includes
12450
- # information about only the database engines identified by these
12451
- # identifiers.
12452
- #
12453
- # For more information about the valid engines for installation
12454
- # media, see ImportInstallationMedia.
12455
- # @return [Array<Types::Filter>]
12456
- #
12457
- # @!attribute [rw] max_records
12458
- # An optional pagination token provided by a previous
12459
- # DescribeInstallationMedia request. If this parameter is specified,
12460
- # the response includes only records beyond the marker, up to the
12461
- # value specified by `MaxRecords`.
12462
- # @return [Integer]
12463
- #
12464
- # @!attribute [rw] marker
12465
- # An optional pagination token provided by a previous request. If this
12466
- # parameter is specified, the response includes only records beyond
12467
- # the marker, up to the value specified by `MaxRecords`.
12468
- # @return [String]
12469
- #
12470
- # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeInstallationMediaMessage AWS API Documentation
12471
- #
12472
- class DescribeInstallationMediaMessage < Struct.new(
12473
- :installation_media_id,
12474
- :filters,
12475
- :max_records,
12476
- :marker)
12477
- SENSITIVE = []
12478
- include Aws::Structure
12479
- end
12480
-
12481
- # @note When making an API call, you may pass DescribeOptionGroupOptionsMessage
12482
- # data as a hash:
12483
- #
12484
- # {
12485
- # engine_name: "String", # required
12486
- # major_engine_version: "String",
12487
- # filters: [
12488
- # {
12489
- # name: "String", # required
12490
- # values: ["String"], # required
12491
- # },
12492
- # ],
12493
- # max_records: 1,
12494
- # marker: "String",
12495
- # }
12496
- #
12497
- # @!attribute [rw] engine_name
12498
- # A required parameter. Options available for the given engine name
12499
- # are described.
12392
+ # @!attribute [rw] engine_name
12393
+ # A required parameter. Options available for the given engine name
12394
+ # are described.
12500
12395
  #
12501
12396
  # Valid Values:
12502
12397
  #
@@ -14153,186 +14048,6 @@ module Aws::RDS
14153
14048
  #
14154
14049
  class IamRoleNotFoundFault < Aws::EmptyStructure; end
14155
14050
 
14156
- # @note When making an API call, you may pass ImportInstallationMediaMessage
14157
- # data as a hash:
14158
- #
14159
- # {
14160
- # custom_availability_zone_id: "String", # required
14161
- # engine: "String", # required
14162
- # engine_version: "String", # required
14163
- # engine_installation_media_path: "String", # required
14164
- # os_installation_media_path: "String", # required
14165
- # }
14166
- #
14167
- # @!attribute [rw] custom_availability_zone_id
14168
- # The identifier of the custom Availability Zone (AZ) to import the
14169
- # installation media to.
14170
- # @return [String]
14171
- #
14172
- # @!attribute [rw] engine
14173
- # The name of the database engine to be used for this instance.
14174
- #
14175
- # The list only includes supported DB engines that require an
14176
- # on-premises customer provided license.
14177
- #
14178
- # Valid Values:
14179
- #
14180
- # * `sqlserver-ee`
14181
- #
14182
- # * `sqlserver-se`
14183
- #
14184
- # * `sqlserver-ex`
14185
- #
14186
- # * `sqlserver-web`
14187
- # @return [String]
14188
- #
14189
- # @!attribute [rw] engine_version
14190
- # The version number of the database engine to use.
14191
- #
14192
- # For a list of valid engine versions, call DescribeDBEngineVersions.
14193
- #
14194
- # The following are the database engines and links to information
14195
- # about the major and minor versions. The list only includes DB
14196
- # engines that require an on-premises customer provided license.
14197
- #
14198
- # **Microsoft SQL Server**
14199
- #
14200
- # See [ Microsoft SQL Server Versions on Amazon RDS][1] in the *Amazon
14201
- # RDS User Guide*.
14202
- #
14203
- #
14204
- #
14205
- # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.VersionSupport
14206
- # @return [String]
14207
- #
14208
- # @!attribute [rw] engine_installation_media_path
14209
- # The path to the installation medium for the specified DB engine.
14210
- #
14211
- # Example:
14212
- # `SQLServerISO/en_sql_server_2016_enterprise_x64_dvd_8701793.iso`
14213
- # @return [String]
14214
- #
14215
- # @!attribute [rw] os_installation_media_path
14216
- # The path to the installation medium for the operating system
14217
- # associated with the specified DB engine.
14218
- #
14219
- # Example: `WindowsISO/en_windows_server_2016_x64_dvd_9327751.iso`
14220
- # @return [String]
14221
- #
14222
- # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ImportInstallationMediaMessage AWS API Documentation
14223
- #
14224
- class ImportInstallationMediaMessage < Struct.new(
14225
- :custom_availability_zone_id,
14226
- :engine,
14227
- :engine_version,
14228
- :engine_installation_media_path,
14229
- :os_installation_media_path)
14230
- SENSITIVE = []
14231
- include Aws::Structure
14232
- end
14233
-
14234
- # Contains the installation media for a DB engine that requires an
14235
- # on-premises customer provided license, such as Microsoft SQL Server.
14236
- #
14237
- # @!attribute [rw] installation_media_id
14238
- # The installation medium ID.
14239
- # @return [String]
14240
- #
14241
- # @!attribute [rw] custom_availability_zone_id
14242
- # The custom Availability Zone (AZ) that contains the installation
14243
- # media.
14244
- # @return [String]
14245
- #
14246
- # @!attribute [rw] engine
14247
- # The DB engine.
14248
- # @return [String]
14249
- #
14250
- # @!attribute [rw] engine_version
14251
- # The engine version of the DB engine.
14252
- # @return [String]
14253
- #
14254
- # @!attribute [rw] engine_installation_media_path
14255
- # The path to the installation medium for the DB engine.
14256
- # @return [String]
14257
- #
14258
- # @!attribute [rw] os_installation_media_path
14259
- # The path to the installation medium for the operating system
14260
- # associated with the DB engine.
14261
- # @return [String]
14262
- #
14263
- # @!attribute [rw] status
14264
- # The status of the installation medium.
14265
- # @return [String]
14266
- #
14267
- # @!attribute [rw] failure_cause
14268
- # If an installation media failure occurred, the cause of the failure.
14269
- # @return [Types::InstallationMediaFailureCause]
14270
- #
14271
- # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/InstallationMedia AWS API Documentation
14272
- #
14273
- class InstallationMedia < Struct.new(
14274
- :installation_media_id,
14275
- :custom_availability_zone_id,
14276
- :engine,
14277
- :engine_version,
14278
- :engine_installation_media_path,
14279
- :os_installation_media_path,
14280
- :status,
14281
- :failure_cause)
14282
- SENSITIVE = []
14283
- include Aws::Structure
14284
- end
14285
-
14286
- # The specified installation medium has already been imported.
14287
- #
14288
- # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/InstallationMediaAlreadyExistsFault AWS API Documentation
14289
- #
14290
- class InstallationMediaAlreadyExistsFault < Aws::EmptyStructure; end
14291
-
14292
- # Contains the cause of an installation media failure. Installation
14293
- # media is used for a DB engine that requires an on-premises customer
14294
- # provided license, such as Microsoft SQL Server.
14295
- #
14296
- # @!attribute [rw] message
14297
- # The reason that an installation media import failed.
14298
- # @return [String]
14299
- #
14300
- # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/InstallationMediaFailureCause AWS API Documentation
14301
- #
14302
- class InstallationMediaFailureCause < Struct.new(
14303
- :message)
14304
- SENSITIVE = []
14305
- include Aws::Structure
14306
- end
14307
-
14308
- # @!attribute [rw] marker
14309
- # An optional pagination token provided by a previous
14310
- # DescribeInstallationMedia request. If this parameter is specified,
14311
- # the response includes only records beyond the marker, up to the
14312
- # value specified by `MaxRecords`.
14313
- # @return [String]
14314
- #
14315
- # @!attribute [rw] installation_media
14316
- # The list of InstallationMedia objects for the Amazon Web Services
14317
- # account.
14318
- # @return [Array<Types::InstallationMedia>]
14319
- #
14320
- # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/InstallationMediaMessage AWS API Documentation
14321
- #
14322
- class InstallationMediaMessage < Struct.new(
14323
- :marker,
14324
- :installation_media)
14325
- SENSITIVE = []
14326
- include Aws::Structure
14327
- end
14328
-
14329
- # `InstallationMediaID` doesn't refer to an existing installation
14330
- # medium.
14331
- #
14332
- # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/InstallationMediaNotFoundFault AWS API Documentation
14333
- #
14334
- class InstallationMediaNotFoundFault < Aws::EmptyStructure; end
14335
-
14336
14051
  # The request would result in the user exceeding the allowed number of
14337
14052
  # DB instances.
14338
14053
  #
@@ -14859,6 +14574,10 @@ module Aws::RDS
14859
14574
  # enable_performance_insights: false,
14860
14575
  # performance_insights_kms_key_id: "String",
14861
14576
  # performance_insights_retention_period: 1,
14577
+ # serverless_v2_scaling_configuration: {
14578
+ # min_capacity: 1.0,
14579
+ # max_capacity: 1.0,
14580
+ # },
14862
14581
  # }
14863
14582
  #
14864
14583
  # @!attribute [rw] db_cluster_identifier
@@ -15372,6 +15091,18 @@ module Aws::RDS
15372
15091
  # Valid for: Multi-AZ DB clusters only
15373
15092
  # @return [Integer]
15374
15093
  #
15094
+ # @!attribute [rw] serverless_v2_scaling_configuration
15095
+ # Contains the scaling configuration of an Aurora Serverless v2 DB
15096
+ # cluster.
15097
+ #
15098
+ # For more information, see [Using Amazon Aurora Serverless v2][1] in
15099
+ # the *Amazon Aurora User Guide*.
15100
+ #
15101
+ #
15102
+ #
15103
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
15104
+ # @return [Types::ServerlessV2ScalingConfiguration]
15105
+ #
15375
15106
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterMessage AWS API Documentation
15376
15107
  #
15377
15108
  class ModifyDBClusterMessage < Struct.new(
@@ -15408,7 +15139,8 @@ module Aws::RDS
15408
15139
  :monitoring_role_arn,
15409
15140
  :enable_performance_insights,
15410
15141
  :performance_insights_kms_key_id,
15411
- :performance_insights_retention_period)
15142
+ :performance_insights_retention_period,
15143
+ :serverless_v2_scaling_configuration)
15412
15144
  SENSITIVE = []
15413
15145
  include Aws::Structure
15414
15146
  end
@@ -15650,6 +15382,7 @@ module Aws::RDS
15650
15382
  # aws_backup_recovery_point_arn: "AwsBackupRecoveryPointArn",
15651
15383
  # automation_mode: "full", # accepts full, all-paused
15652
15384
  # resume_full_automation_mode_minutes: 1,
15385
+ # network_type: "String",
15653
15386
  # }
15654
15387
  #
15655
15388
  # @!attribute [rw] db_instance_identifier
@@ -16490,6 +16223,27 @@ module Aws::RDS
16490
16223
  # (default). The maximum value is `1,440`.
16491
16224
  # @return [Integer]
16492
16225
  #
16226
+ # @!attribute [rw] network_type
16227
+ # The network type of the DB instance.
16228
+ #
16229
+ # Valid values:
16230
+ #
16231
+ # * `IPV4`
16232
+ #
16233
+ # * `DUAL`
16234
+ #
16235
+ # The network type is determined by the `DBSubnetGroup` specified for
16236
+ # the DB instance. A `DBSubnetGroup` can support only the IPv4
16237
+ # protocol or the IPv4 and the IPv6 protocols (`DUAL`).
16238
+ #
16239
+ # For more information, see [ Working with a DB instance in a VPC][1]
16240
+ # in the *Amazon RDS User Guide.*
16241
+ #
16242
+ #
16243
+ #
16244
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
16245
+ # @return [String]
16246
+ #
16493
16247
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstanceMessage AWS API Documentation
16494
16248
  #
16495
16249
  class ModifyDBInstanceMessage < Struct.new(
@@ -16539,7 +16293,8 @@ module Aws::RDS
16539
16293
  :enable_customer_owned_ip,
16540
16294
  :aws_backup_recovery_point_arn,
16541
16295
  :automation_mode,
16542
- :resume_full_automation_mode_minutes)
16296
+ :resume_full_automation_mode_minutes,
16297
+ :network_type)
16543
16298
  SENSITIVE = []
16544
16299
  include Aws::Structure
16545
16300
  end
@@ -17318,6 +17073,13 @@ module Aws::RDS
17318
17073
  include Aws::Structure
17319
17074
  end
17320
17075
 
17076
+ # The network type is invalid for the DB instance. Valid nework type
17077
+ # values are `IPV4` and `DUAL`.
17078
+ #
17079
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/NetworkTypeNotSupported AWS API Documentation
17080
+ #
17081
+ class NetworkTypeNotSupported < Aws::EmptyStructure; end
17082
+
17321
17083
  # Option details.
17322
17084
  #
17323
17085
  # @!attribute [rw] option_name
@@ -17973,6 +17735,20 @@ module Aws::RDS
17973
17735
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
17974
17736
  # @return [Boolean]
17975
17737
  #
17738
+ # @!attribute [rw] supported_network_types
17739
+ # The network types supported by the DB instance (`IPV4` or `DUAL`).
17740
+ #
17741
+ # A DB instance can support only the IPv4 protocol or the IPv4 and the
17742
+ # IPv6 protocols (`DUAL`).
17743
+ #
17744
+ # For more information, see [ Working with a DB instance in a VPC][1]
17745
+ # in the *Amazon RDS User Guide.*
17746
+ #
17747
+ #
17748
+ #
17749
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
17750
+ # @return [Array<String>]
17751
+ #
17976
17752
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/OrderableDBInstanceOption AWS API Documentation
17977
17753
  #
17978
17754
  class OrderableDBInstanceOption < Struct.new(
@@ -18004,7 +17780,8 @@ module Aws::RDS
18004
17780
  :outpost_capable,
18005
17781
  :supported_activity_stream_modes,
18006
17782
  :supports_global_databases,
18007
- :supports_clusters)
17783
+ :supports_clusters,
17784
+ :supported_network_types)
18008
17785
  SENSITIVE = []
18009
17786
  include Aws::Structure
18010
17787
  end
@@ -19494,6 +19271,10 @@ module Aws::RDS
19494
19271
  # copy_tags_to_snapshot: false,
19495
19272
  # domain: "String",
19496
19273
  # domain_iam_role_name: "String",
19274
+ # serverless_v2_scaling_configuration: {
19275
+ # min_capacity: 1.0,
19276
+ # max_capacity: 1.0,
19277
+ # },
19497
19278
  # }
19498
19279
  #
19499
19280
  # @!attribute [rw] availability_zones
@@ -19833,6 +19614,18 @@ module Aws::RDS
19833
19614
  # the Directory Service.
19834
19615
  # @return [String]
19835
19616
  #
19617
+ # @!attribute [rw] serverless_v2_scaling_configuration
19618
+ # Contains the scaling configuration of an Aurora Serverless v2 DB
19619
+ # cluster.
19620
+ #
19621
+ # For more information, see [Using Amazon Aurora Serverless v2][1] in
19622
+ # the *Amazon Aurora User Guide*.
19623
+ #
19624
+ #
19625
+ #
19626
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
19627
+ # @return [Types::ServerlessV2ScalingConfiguration]
19628
+ #
19836
19629
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3Message AWS API Documentation
19837
19630
  #
19838
19631
  class RestoreDBClusterFromS3Message < Struct.new(
@@ -19866,7 +19659,8 @@ module Aws::RDS
19866
19659
  :deletion_protection,
19867
19660
  :copy_tags_to_snapshot,
19868
19661
  :domain,
19869
- :domain_iam_role_name)
19662
+ :domain_iam_role_name,
19663
+ :serverless_v2_scaling_configuration)
19870
19664
  SENSITIVE = []
19871
19665
  include Aws::Structure
19872
19666
  end
@@ -19952,6 +19746,10 @@ module Aws::RDS
19952
19746
  # storage_type: "String",
19953
19747
  # iops: 1,
19954
19748
  # publicly_accessible: false,
19749
+ # serverless_v2_scaling_configuration: {
19750
+ # min_capacity: 1.0,
19751
+ # max_capacity: 1.0,
19752
+ # },
19955
19753
  # }
19956
19754
  #
19957
19755
  # @!attribute [rw] availability_zones
@@ -20377,6 +20175,18 @@ module Aws::RDS
20377
20175
  # Valid for: Aurora DB clusters and Multi-AZ DB clusters
20378
20176
  # @return [Boolean]
20379
20177
  #
20178
+ # @!attribute [rw] serverless_v2_scaling_configuration
20179
+ # Contains the scaling configuration of an Aurora Serverless v2 DB
20180
+ # cluster.
20181
+ #
20182
+ # For more information, see [Using Amazon Aurora Serverless v2][1] in
20183
+ # the *Amazon Aurora User Guide*.
20184
+ #
20185
+ #
20186
+ #
20187
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
20188
+ # @return [Types::ServerlessV2ScalingConfiguration]
20189
+ #
20380
20190
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshotMessage AWS API Documentation
20381
20191
  #
20382
20192
  class RestoreDBClusterFromSnapshotMessage < Struct.new(
@@ -20405,7 +20215,8 @@ module Aws::RDS
20405
20215
  :db_cluster_instance_class,
20406
20216
  :storage_type,
20407
20217
  :iops,
20408
- :publicly_accessible)
20218
+ :publicly_accessible,
20219
+ :serverless_v2_scaling_configuration)
20409
20220
  SENSITIVE = []
20410
20221
  include Aws::Structure
20411
20222
  end
@@ -20490,6 +20301,10 @@ module Aws::RDS
20490
20301
  # storage_type: "String",
20491
20302
  # publicly_accessible: false,
20492
20303
  # iops: 1,
20304
+ # serverless_v2_scaling_configuration: {
20305
+ # min_capacity: 1.0,
20306
+ # max_capacity: 1.0,
20307
+ # },
20493
20308
  # }
20494
20309
  #
20495
20310
  # @!attribute [rw] db_cluster_identifier
@@ -20878,6 +20693,18 @@ module Aws::RDS
20878
20693
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
20879
20694
  # @return [Integer]
20880
20695
  #
20696
+ # @!attribute [rw] serverless_v2_scaling_configuration
20697
+ # Contains the scaling configuration of an Aurora Serverless v2 DB
20698
+ # cluster.
20699
+ #
20700
+ # For more information, see [Using Amazon Aurora Serverless v2][1] in
20701
+ # the *Amazon Aurora User Guide*.
20702
+ #
20703
+ #
20704
+ #
20705
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
20706
+ # @return [Types::ServerlessV2ScalingConfiguration]
20707
+ #
20881
20708
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTimeMessage AWS API Documentation
20882
20709
  #
20883
20710
  class RestoreDBClusterToPointInTimeMessage < Struct.new(
@@ -20905,7 +20732,8 @@ module Aws::RDS
20905
20732
  :db_cluster_instance_class,
20906
20733
  :storage_type,
20907
20734
  :publicly_accessible,
20908
- :iops)
20735
+ :iops,
20736
+ :serverless_v2_scaling_configuration)
20909
20737
  SENSITIVE = []
20910
20738
  include Aws::Structure
20911
20739
  end
@@ -20994,6 +20822,7 @@ module Aws::RDS
20994
20822
  # enable_customer_owned_ip: false,
20995
20823
  # custom_iam_instance_profile: "String",
20996
20824
  # backup_target: "String",
20825
+ # network_type: "String",
20997
20826
  # }
20998
20827
  #
20999
20828
  # @!attribute [rw] db_instance_identifier
@@ -21407,6 +21236,27 @@ module Aws::RDS
21407
21236
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
21408
21237
  # @return [String]
21409
21238
  #
21239
+ # @!attribute [rw] network_type
21240
+ # The network type of the DB instance.
21241
+ #
21242
+ # Valid values:
21243
+ #
21244
+ # * `IPV4`
21245
+ #
21246
+ # * `DUAL`
21247
+ #
21248
+ # The network type is determined by the `DBSubnetGroup` specified for
21249
+ # the DB instance. A `DBSubnetGroup` can support only the IPv4
21250
+ # protocol or the IPv4 and the IPv6 protocols (`DUAL`).
21251
+ #
21252
+ # For more information, see [ Working with a DB instance in a VPC][1]
21253
+ # in the *Amazon RDS User Guide.*
21254
+ #
21255
+ #
21256
+ #
21257
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
21258
+ # @return [String]
21259
+ #
21410
21260
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshotMessage AWS API Documentation
21411
21261
  #
21412
21262
  class RestoreDBInstanceFromDBSnapshotMessage < Struct.new(
@@ -21440,7 +21290,8 @@ module Aws::RDS
21440
21290
  :deletion_protection,
21441
21291
  :enable_customer_owned_ip,
21442
21292
  :custom_iam_instance_profile,
21443
- :backup_target)
21293
+ :backup_target,
21294
+ :network_type)
21444
21295
  SENSITIVE = []
21445
21296
  include Aws::Structure
21446
21297
  end
@@ -21523,6 +21374,7 @@ module Aws::RDS
21523
21374
  # use_default_processor_features: false,
21524
21375
  # deletion_protection: false,
21525
21376
  # max_allocated_storage: 1,
21377
+ # network_type: "String",
21526
21378
  # }
21527
21379
  #
21528
21380
  # @!attribute [rw] db_name
@@ -21955,6 +21807,27 @@ module Aws::RDS
21955
21807
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
21956
21808
  # @return [Integer]
21957
21809
  #
21810
+ # @!attribute [rw] network_type
21811
+ # The network type of the DB instance.
21812
+ #
21813
+ # Valid values:
21814
+ #
21815
+ # * `IPV4`
21816
+ #
21817
+ # * `DUAL`
21818
+ #
21819
+ # The network type is determined by the `DBSubnetGroup` specified for
21820
+ # the DB instance. A `DBSubnetGroup` can support only the IPv4
21821
+ # protocol or the IPv4 and the IPv6 protocols (`DUAL`).
21822
+ #
21823
+ # For more information, see [ Working with a DB instance in a VPC][1]
21824
+ # in the *Amazon RDS User Guide.*
21825
+ #
21826
+ #
21827
+ #
21828
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
21829
+ # @return [String]
21830
+ #
21958
21831
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3Message AWS API Documentation
21959
21832
  #
21960
21833
  class RestoreDBInstanceFromS3Message < Struct.new(
@@ -22001,7 +21874,8 @@ module Aws::RDS
22001
21874
  :processor_features,
22002
21875
  :use_default_processor_features,
22003
21876
  :deletion_protection,
22004
- :max_allocated_storage)
21877
+ :max_allocated_storage,
21878
+ :network_type)
22005
21879
  SENSITIVE = []
22006
21880
  include Aws::Structure
22007
21881
  end
@@ -22076,6 +21950,7 @@ module Aws::RDS
22076
21950
  # enable_customer_owned_ip: false,
22077
21951
  # custom_iam_instance_profile: "String",
22078
21952
  # backup_target: "String",
21953
+ # network_type: "String",
22079
21954
  # }
22080
21955
  #
22081
21956
  # @!attribute [rw] source_db_instance_identifier
@@ -22515,6 +22390,27 @@ module Aws::RDS
22515
22390
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
22516
22391
  # @return [String]
22517
22392
  #
22393
+ # @!attribute [rw] network_type
22394
+ # The network type of the DB instance.
22395
+ #
22396
+ # Valid values:
22397
+ #
22398
+ # * `IPV4`
22399
+ #
22400
+ # * `DUAL`
22401
+ #
22402
+ # The network type is determined by the `DBSubnetGroup` specified for
22403
+ # the DB instance. A `DBSubnetGroup` can support only the IPv4
22404
+ # protocol or the IPv4 and the IPv6 protocols (`DUAL`).
22405
+ #
22406
+ # For more information, see [ Working with a DB instance in a VPC][1]
22407
+ # in the *Amazon RDS User Guide.*
22408
+ #
22409
+ #
22410
+ #
22411
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
22412
+ # @return [String]
22413
+ #
22518
22414
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTimeMessage AWS API Documentation
22519
22415
  #
22520
22416
  class RestoreDBInstanceToPointInTimeMessage < Struct.new(
@@ -22553,7 +22449,8 @@ module Aws::RDS
22553
22449
  :source_db_instance_automated_backups_arn,
22554
22450
  :enable_customer_owned_ip,
22555
22451
  :custom_iam_instance_profile,
22556
- :backup_target)
22452
+ :backup_target,
22453
+ :network_type)
22557
22454
  SENSITIVE = []
22558
22455
  include Aws::Structure
22559
22456
  end
@@ -22863,6 +22760,80 @@ module Aws::RDS
22863
22760
  include Aws::Structure
22864
22761
  end
22865
22762
 
22763
+ # Contains the scaling configuration of an Aurora Serverless v2 DB
22764
+ # cluster.
22765
+ #
22766
+ # For more information, see [Using Amazon Aurora Serverless v2][1] in
22767
+ # the *Amazon Aurora User Guide*.
22768
+ #
22769
+ #
22770
+ #
22771
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
22772
+ #
22773
+ # @note When making an API call, you may pass ServerlessV2ScalingConfiguration
22774
+ # data as a hash:
22775
+ #
22776
+ # {
22777
+ # min_capacity: 1.0,
22778
+ # max_capacity: 1.0,
22779
+ # }
22780
+ #
22781
+ # @!attribute [rw] min_capacity
22782
+ # The minimum number of Aurora capacity units (ACUs) for a DB instance
22783
+ # in an Aurora Serverless v2 cluster. You can specify ACU values in
22784
+ # half-step increments, such as 8, 8.5, 9, and so on. The smallest
22785
+ # value that you can use is 0.5.
22786
+ # @return [Float]
22787
+ #
22788
+ # @!attribute [rw] max_capacity
22789
+ # The maximum number of Aurora capacity units (ACUs) for a DB instance
22790
+ # in an Aurora Serverless v2 cluster. You can specify ACU values in
22791
+ # half-step increments, such as 40, 40.5, 41, and so on. The largest
22792
+ # value that you can use is 128.
22793
+ # @return [Float]
22794
+ #
22795
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ServerlessV2ScalingConfiguration AWS API Documentation
22796
+ #
22797
+ class ServerlessV2ScalingConfiguration < Struct.new(
22798
+ :min_capacity,
22799
+ :max_capacity)
22800
+ SENSITIVE = []
22801
+ include Aws::Structure
22802
+ end
22803
+
22804
+ # Shows the scaling configuration for an Aurora Serverless v2 DB
22805
+ # cluster.
22806
+ #
22807
+ # For more information, see [Using Amazon Aurora Serverless v2][1] in
22808
+ # the *Amazon Aurora User Guide*.
22809
+ #
22810
+ #
22811
+ #
22812
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
22813
+ #
22814
+ # @!attribute [rw] min_capacity
22815
+ # The minimum number of Aurora capacity units (ACUs) for a DB instance
22816
+ # in an Aurora Serverless v2 cluster. You can specify ACU values in
22817
+ # half-step increments, such as 8, 8.5, 9, and so on. The smallest
22818
+ # value that you can use is 0.5.
22819
+ # @return [Float]
22820
+ #
22821
+ # @!attribute [rw] max_capacity
22822
+ # The maximum number of Aurora capacity units (ACUs) for a DB instance
22823
+ # in an Aurora Serverless v2 cluster. You can specify ACU values in
22824
+ # half-step increments, such as 40, 40.5, 41, and so on. The largest
22825
+ # value that you can use is 128.
22826
+ # @return [Float]
22827
+ #
22828
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ServerlessV2ScalingConfigurationInfo AWS API Documentation
22829
+ #
22830
+ class ServerlessV2ScalingConfigurationInfo < Struct.new(
22831
+ :min_capacity,
22832
+ :max_capacity)
22833
+ SENSITIVE = []
22834
+ include Aws::Structure
22835
+ end
22836
+
22866
22837
  # You have exceeded the maximum number of accounts that you can share a
22867
22838
  # manual DB snapshot with.
22868
22839
  #
@@ -23907,54 +23878,5 @@ module Aws::RDS
23907
23878
  include Aws::Structure
23908
23879
  end
23909
23880
 
23910
- # Information about the virtual private network (VPN) between the VMware
23911
- # vSphere cluster and the Amazon Web Services website.
23912
- #
23913
- # For more information about RDS on VMware, see the [ RDS on VMware User
23914
- # Guide.][1]
23915
- #
23916
- #
23917
- #
23918
- # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/RDSonVMwareUserGuide/rds-on-vmware.html
23919
- #
23920
- # @!attribute [rw] vpn_id
23921
- # The ID of the VPN.
23922
- # @return [String]
23923
- #
23924
- # @!attribute [rw] vpn_tunnel_originator_ip
23925
- # The IP address of network traffic from your on-premises data center.
23926
- # A custom AZ receives the network traffic.
23927
- # @return [String]
23928
- #
23929
- # @!attribute [rw] vpn_gateway_ip
23930
- # The IP address of network traffic from Amazon Web Services to your
23931
- # on-premises data center.
23932
- # @return [String]
23933
- #
23934
- # @!attribute [rw] vpn_psk
23935
- # The preshared key (PSK) for the VPN.
23936
- # @return [String]
23937
- #
23938
- # @!attribute [rw] vpn_name
23939
- # The name of the VPN.
23940
- # @return [String]
23941
- #
23942
- # @!attribute [rw] vpn_state
23943
- # The state of the VPN.
23944
- # @return [String]
23945
- #
23946
- # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/VpnDetails AWS API Documentation
23947
- #
23948
- class VpnDetails < Struct.new(
23949
- :vpn_id,
23950
- :vpn_tunnel_originator_ip,
23951
- :vpn_gateway_ip,
23952
- :vpn_psk,
23953
- :vpn_name,
23954
- :vpn_state)
23955
- SENSITIVE = [:vpn_psk]
23956
- include Aws::Structure
23957
- end
23958
-
23959
23881
  end
23960
23882
  end