aws-sdk-rds 1.290.0 → 1.300.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 +4 -4
- data/CHANGELOG.md +50 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +1558 -1397
- data/lib/aws-sdk-rds/client_api.rb +238 -159
- data/lib/aws-sdk-rds/customizations.rb +0 -1
- data/lib/aws-sdk-rds/db_cluster.rb +383 -345
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +2 -2
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +25 -25
- data/lib/aws-sdk-rds/db_engine_version.rb +55 -55
- data/lib/aws-sdk-rds/db_instance.rb +351 -318
- data/lib/aws-sdk-rds/db_parameter_group.rb +2 -2
- data/lib/aws-sdk-rds/db_snapshot.rb +74 -74
- data/lib/aws-sdk-rds/endpoint_parameters.rb +4 -4
- data/lib/aws-sdk-rds/errors.rb +11 -0
- data/lib/aws-sdk-rds/option_group.rb +1 -1
- data/lib/aws-sdk-rds/resource.rb +239 -227
- data/lib/aws-sdk-rds/types.rb +1296 -1066
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +113 -104
- data/sig/db_cluster.rbs +69 -64
- data/sig/db_cluster_snapshot.rbs +6 -6
- data/sig/db_engine_version.rbs +21 -21
- data/sig/db_instance.rbs +50 -45
- data/sig/db_snapshot.rbs +14 -14
- data/sig/errors.rbs +2 -0
- data/sig/event.rbs +1 -1
- data/sig/resource.rbs +23 -21
- data/sig/types.rbs +136 -118
- metadata +3 -3
data/lib/aws-sdk-rds/types.rb
CHANGED
|
@@ -960,6 +960,10 @@ module Aws::RDS
|
|
|
960
960
|
# The number of days for which automatic DB snapshots are retained.
|
|
961
961
|
# @return [Integer]
|
|
962
962
|
#
|
|
963
|
+
# @!attribute [rw] storage_type
|
|
964
|
+
# The storage type for the DB cluster.
|
|
965
|
+
# @return [String]
|
|
966
|
+
#
|
|
963
967
|
# @!attribute [rw] allocated_storage
|
|
964
968
|
# The allocated storage size in gibibytes (GiB) for all database
|
|
965
969
|
# engines except Amazon Aurora. For Aurora, `AllocatedStorage` always
|
|
@@ -976,10 +980,6 @@ module Aws::RDS
|
|
|
976
980
|
# is only for non-Aurora Multi-AZ DB clusters.
|
|
977
981
|
# @return [Integer]
|
|
978
982
|
#
|
|
979
|
-
# @!attribute [rw] storage_type
|
|
980
|
-
# The storage type for the DB cluster.
|
|
981
|
-
# @return [String]
|
|
982
|
-
#
|
|
983
983
|
# @!attribute [rw] certificate_details
|
|
984
984
|
# The details of the DB instance’s server certificate.
|
|
985
985
|
#
|
|
@@ -1003,12 +1003,12 @@ module Aws::RDS
|
|
|
1003
1003
|
:iam_database_authentication_enabled,
|
|
1004
1004
|
:engine_version,
|
|
1005
1005
|
:backup_retention_period,
|
|
1006
|
+
:storage_type,
|
|
1006
1007
|
:allocated_storage,
|
|
1007
1008
|
:rds_custom_cluster_configuration,
|
|
1008
1009
|
:iops,
|
|
1009
|
-
:storage_type,
|
|
1010
1010
|
:certificate_details)
|
|
1011
|
-
SENSITIVE = []
|
|
1011
|
+
SENSITIVE = [:master_user_password]
|
|
1012
1012
|
include Aws::Structure
|
|
1013
1013
|
end
|
|
1014
1014
|
|
|
@@ -1284,20 +1284,19 @@ module Aws::RDS
|
|
|
1284
1284
|
# The identifier of the DB cluster snapshot to copy. This parameter
|
|
1285
1285
|
# isn't case-sensitive.
|
|
1286
1286
|
#
|
|
1287
|
-
# You can't copy an encrypted, shared DB cluster snapshot from one
|
|
1288
|
-
# Amazon Web Services Region to another.
|
|
1289
|
-
#
|
|
1290
1287
|
# Constraints:
|
|
1291
1288
|
#
|
|
1292
|
-
# * Must specify a valid
|
|
1289
|
+
# * Must specify a valid source snapshot in the "available" state.
|
|
1293
1290
|
#
|
|
1294
1291
|
# * If the source snapshot is in the same Amazon Web Services Region
|
|
1295
1292
|
# as the copy, specify a valid DB snapshot identifier.
|
|
1296
1293
|
#
|
|
1297
1294
|
# * If the source snapshot is in a different Amazon Web Services
|
|
1298
|
-
# Region than the copy, specify a valid DB cluster snapshot ARN.
|
|
1299
|
-
#
|
|
1300
|
-
#
|
|
1295
|
+
# Region than the copy, specify a valid DB cluster snapshot ARN. You
|
|
1296
|
+
# can also specify an ARN of a snapshot that is in a different
|
|
1297
|
+
# account and a different Amazon Web Services Region. For more
|
|
1298
|
+
# information, go to [ Copying Snapshots Across Amazon Web Services
|
|
1299
|
+
# Regions][1] in the *Amazon Aurora User Guide*.
|
|
1301
1300
|
#
|
|
1302
1301
|
# Example: `my-cluster-snapshot1`
|
|
1303
1302
|
#
|
|
@@ -1441,7 +1440,7 @@ module Aws::RDS
|
|
|
1441
1440
|
:copy_tags,
|
|
1442
1441
|
:tags,
|
|
1443
1442
|
:source_region)
|
|
1444
|
-
SENSITIVE = []
|
|
1443
|
+
SENSITIVE = [:pre_signed_url]
|
|
1445
1444
|
include Aws::Structure
|
|
1446
1445
|
end
|
|
1447
1446
|
|
|
@@ -1542,20 +1541,18 @@ module Aws::RDS
|
|
|
1542
1541
|
# the copy, specify a valid DB snapshot identifier. For example, you
|
|
1543
1542
|
# might specify `rds:mysql-instance1-snapshot-20130805`.
|
|
1544
1543
|
#
|
|
1545
|
-
# If the source snapshot is in a different Amazon Web Services Region
|
|
1546
|
-
# than the copy, specify a valid DB snapshot ARN. For example, you
|
|
1547
|
-
# might specify
|
|
1548
|
-
# `arn:aws:rds:us-west-2:123456789012:snapshot:mysql-instance1-snapshot-20130805`.
|
|
1549
|
-
#
|
|
1550
1544
|
# If you are copying from a shared manual DB snapshot, this parameter
|
|
1551
1545
|
# must be the Amazon Resource Name (ARN) of the shared DB snapshot.
|
|
1552
1546
|
#
|
|
1553
|
-
# If
|
|
1554
|
-
# the
|
|
1547
|
+
# If the source snapshot is in a different Amazon Web Services Region
|
|
1548
|
+
# than the copy, specify a valid DB snapshot ARN. You can also specify
|
|
1549
|
+
# an ARN of a snapshot that is in a different account and a different
|
|
1550
|
+
# Amazon Web Services Region. For example, you might specify
|
|
1551
|
+
# `arn:aws:rds:us-west-2:123456789012:snapshot:mysql-instance1-snapshot-20130805`.
|
|
1555
1552
|
#
|
|
1556
1553
|
# Constraints:
|
|
1557
1554
|
#
|
|
1558
|
-
# * Must specify a valid
|
|
1555
|
+
# * Must specify a valid source snapshot in the "available" state.
|
|
1559
1556
|
#
|
|
1560
1557
|
# ^
|
|
1561
1558
|
#
|
|
@@ -1718,6 +1715,18 @@ module Aws::RDS
|
|
|
1718
1715
|
# Example: `rds-caz-aiqhTgQv`.
|
|
1719
1716
|
# @return [String]
|
|
1720
1717
|
#
|
|
1718
|
+
# @!attribute [rw] snapshot_target
|
|
1719
|
+
# Configures the location where RDS will store copied snapshots.
|
|
1720
|
+
#
|
|
1721
|
+
# Valid Values:
|
|
1722
|
+
#
|
|
1723
|
+
# * `local` (Dedicated Local Zone)
|
|
1724
|
+
#
|
|
1725
|
+
# * `outposts` (Amazon Web Services Outposts)
|
|
1726
|
+
#
|
|
1727
|
+
# * `region` (Amazon Web Services Region)
|
|
1728
|
+
# @return [String]
|
|
1729
|
+
#
|
|
1721
1730
|
# @!attribute [rw] copy_option_group
|
|
1722
1731
|
# Specifies whether to copy the DB option group associated with the
|
|
1723
1732
|
# source DB snapshot to the target Amazon Web Services account and
|
|
@@ -1731,18 +1740,6 @@ module Aws::RDS
|
|
|
1731
1740
|
# a Dedicated Local Zone.
|
|
1732
1741
|
# @return [String]
|
|
1733
1742
|
#
|
|
1734
|
-
# @!attribute [rw] snapshot_target
|
|
1735
|
-
# Configures the location where RDS will store copied snapshots.
|
|
1736
|
-
#
|
|
1737
|
-
# Valid Values:
|
|
1738
|
-
#
|
|
1739
|
-
# * `local` (Dedicated Local Zone)
|
|
1740
|
-
#
|
|
1741
|
-
# * `outposts` (Amazon Web Services Outposts)
|
|
1742
|
-
#
|
|
1743
|
-
# * `region` (Amazon Web Services Region)
|
|
1744
|
-
# @return [String]
|
|
1745
|
-
#
|
|
1746
1743
|
# @!attribute [rw] source_region
|
|
1747
1744
|
# The source region of the snapshot. This is only needed when the
|
|
1748
1745
|
# shapshot is encrypted and in a different region.
|
|
@@ -1759,11 +1756,11 @@ module Aws::RDS
|
|
|
1759
1756
|
:pre_signed_url,
|
|
1760
1757
|
:option_group_name,
|
|
1761
1758
|
:target_custom_availability_zone,
|
|
1759
|
+
:snapshot_target,
|
|
1762
1760
|
:copy_option_group,
|
|
1763
1761
|
:snapshot_availability_zone,
|
|
1764
|
-
:snapshot_target,
|
|
1765
1762
|
:source_region)
|
|
1766
|
-
SENSITIVE = []
|
|
1763
|
+
SENSITIVE = [:pre_signed_url]
|
|
1767
1764
|
include Aws::Structure
|
|
1768
1765
|
end
|
|
1769
1766
|
|
|
@@ -2069,6 +2066,20 @@ module Aws::RDS
|
|
|
2069
2066
|
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/create-keys.html#create-symmetric-cmk
|
|
2070
2067
|
# @return [String]
|
|
2071
2068
|
#
|
|
2069
|
+
# @!attribute [rw] source_custom_db_engine_version_identifier
|
|
2070
|
+
# The ARN of a CEV to use as a source for creating a new CEV. You can
|
|
2071
|
+
# specify a different Amazon Machine Imagine (AMI) by using either
|
|
2072
|
+
# `Source` or `UseAwsProvidedLatestImage`. You can't specify a
|
|
2073
|
+
# different JSON manifest when you specify
|
|
2074
|
+
# `SourceCustomDbEngineVersionIdentifier`.
|
|
2075
|
+
# @return [String]
|
|
2076
|
+
#
|
|
2077
|
+
# @!attribute [rw] use_aws_provided_latest_image
|
|
2078
|
+
# Specifies whether to use the latest service-provided Amazon Machine
|
|
2079
|
+
# Image (AMI) for the CEV. If you specify `UseAwsProvidedLatestImage`,
|
|
2080
|
+
# you can't also specify `ImageId`.
|
|
2081
|
+
# @return [Boolean]
|
|
2082
|
+
#
|
|
2072
2083
|
# @!attribute [rw] description
|
|
2073
2084
|
# An optional description of your CEV.
|
|
2074
2085
|
# @return [String]
|
|
@@ -2124,20 +2135,6 @@ module Aws::RDS
|
|
|
2124
2135
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
|
2125
2136
|
# @return [Array<Types::Tag>]
|
|
2126
2137
|
#
|
|
2127
|
-
# @!attribute [rw] source_custom_db_engine_version_identifier
|
|
2128
|
-
# The ARN of a CEV to use as a source for creating a new CEV. You can
|
|
2129
|
-
# specify a different Amazon Machine Imagine (AMI) by using either
|
|
2130
|
-
# `Source` or `UseAwsProvidedLatestImage`. You can't specify a
|
|
2131
|
-
# different JSON manifest when you specify
|
|
2132
|
-
# `SourceCustomDbEngineVersionIdentifier`.
|
|
2133
|
-
# @return [String]
|
|
2134
|
-
#
|
|
2135
|
-
# @!attribute [rw] use_aws_provided_latest_image
|
|
2136
|
-
# Specifies whether to use the latest service-provided Amazon Machine
|
|
2137
|
-
# Image (AMI) for the CEV. If you specify `UseAwsProvidedLatestImage`,
|
|
2138
|
-
# you can't also specify `ImageId`.
|
|
2139
|
-
# @return [Boolean]
|
|
2140
|
-
#
|
|
2141
2138
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateCustomDBEngineVersionMessage AWS API Documentation
|
|
2142
2139
|
#
|
|
2143
2140
|
class CreateCustomDBEngineVersionMessage < Struct.new(
|
|
@@ -2147,11 +2144,11 @@ module Aws::RDS
|
|
|
2147
2144
|
:database_installation_files_s3_prefix,
|
|
2148
2145
|
:image_id,
|
|
2149
2146
|
:kms_key_id,
|
|
2147
|
+
:source_custom_db_engine_version_identifier,
|
|
2148
|
+
:use_aws_provided_latest_image,
|
|
2150
2149
|
:description,
|
|
2151
2150
|
:manifest,
|
|
2152
|
-
:tags
|
|
2153
|
-
:source_custom_db_engine_version_identifier,
|
|
2154
|
-
:use_aws_provided_latest_image)
|
|
2151
|
+
:tags)
|
|
2155
2152
|
SENSITIVE = []
|
|
2156
2153
|
include Aws::Structure
|
|
2157
2154
|
end
|
|
@@ -2700,87 +2697,6 @@ module Aws::RDS
|
|
|
2700
2697
|
# Reserved for future use.
|
|
2701
2698
|
# @return [Types::RdsCustomClusterConfiguration]
|
|
2702
2699
|
#
|
|
2703
|
-
# @!attribute [rw] deletion_protection
|
|
2704
|
-
# Specifies whether the DB cluster has deletion protection enabled.
|
|
2705
|
-
# The database can't be deleted when deletion protection is enabled.
|
|
2706
|
-
# By default, deletion protection isn't enabled.
|
|
2707
|
-
#
|
|
2708
|
-
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
|
2709
|
-
# @return [Boolean]
|
|
2710
|
-
#
|
|
2711
|
-
# @!attribute [rw] global_cluster_identifier
|
|
2712
|
-
# The global cluster ID of an Aurora cluster that becomes the primary
|
|
2713
|
-
# cluster in the new global database cluster.
|
|
2714
|
-
#
|
|
2715
|
-
# Valid for Cluster Type: Aurora DB clusters only
|
|
2716
|
-
# @return [String]
|
|
2717
|
-
#
|
|
2718
|
-
# @!attribute [rw] enable_http_endpoint
|
|
2719
|
-
# Specifies whether to enable the HTTP endpoint for the DB cluster. By
|
|
2720
|
-
# default, the HTTP endpoint isn't enabled.
|
|
2721
|
-
#
|
|
2722
|
-
# When enabled, the HTTP endpoint provides a connectionless web
|
|
2723
|
-
# service API (RDS Data API) for running SQL queries on the DB
|
|
2724
|
-
# cluster. You can also query your database from inside the RDS
|
|
2725
|
-
# console with the RDS query editor.
|
|
2726
|
-
#
|
|
2727
|
-
# For more information, see [Using RDS Data API][1] in the *Amazon
|
|
2728
|
-
# Aurora User Guide*.
|
|
2729
|
-
#
|
|
2730
|
-
# Valid for Cluster Type: Aurora DB clusters only
|
|
2731
|
-
#
|
|
2732
|
-
#
|
|
2733
|
-
#
|
|
2734
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html
|
|
2735
|
-
# @return [Boolean]
|
|
2736
|
-
#
|
|
2737
|
-
# @!attribute [rw] copy_tags_to_snapshot
|
|
2738
|
-
# Specifies whether to copy all tags from the DB cluster to snapshots
|
|
2739
|
-
# of the DB cluster. The default is not to copy them.
|
|
2740
|
-
#
|
|
2741
|
-
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
|
2742
|
-
# @return [Boolean]
|
|
2743
|
-
#
|
|
2744
|
-
# @!attribute [rw] domain
|
|
2745
|
-
# The Active Directory directory ID to create the DB cluster in.
|
|
2746
|
-
#
|
|
2747
|
-
# For Amazon Aurora DB clusters, Amazon RDS can use Kerberos
|
|
2748
|
-
# authentication to authenticate users that connect to the DB cluster.
|
|
2749
|
-
#
|
|
2750
|
-
# For more information, see [Kerberos authentication][1] in the
|
|
2751
|
-
# *Amazon Aurora User Guide*.
|
|
2752
|
-
#
|
|
2753
|
-
# Valid for Cluster Type: Aurora DB clusters only
|
|
2754
|
-
#
|
|
2755
|
-
#
|
|
2756
|
-
#
|
|
2757
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/kerberos-authentication.html
|
|
2758
|
-
# @return [String]
|
|
2759
|
-
#
|
|
2760
|
-
# @!attribute [rw] domain_iam_role_name
|
|
2761
|
-
# The name of the IAM role to use when making API calls to the
|
|
2762
|
-
# Directory Service.
|
|
2763
|
-
#
|
|
2764
|
-
# Valid for Cluster Type: Aurora DB clusters only
|
|
2765
|
-
# @return [String]
|
|
2766
|
-
#
|
|
2767
|
-
# @!attribute [rw] enable_global_write_forwarding
|
|
2768
|
-
# Specifies whether to enable this DB cluster to forward write
|
|
2769
|
-
# operations to the primary cluster of a global cluster (Aurora global
|
|
2770
|
-
# database). By default, write operations are not allowed on Aurora DB
|
|
2771
|
-
# clusters that are secondary clusters in an Aurora global database.
|
|
2772
|
-
#
|
|
2773
|
-
# You can set this value only on Aurora DB clusters that are members
|
|
2774
|
-
# of an Aurora global database. With this parameter enabled, a
|
|
2775
|
-
# secondary cluster can forward writes to the current primary cluster,
|
|
2776
|
-
# and the resulting changes are replicated back to this cluster. For
|
|
2777
|
-
# the primary DB cluster of an Aurora global database, this value is
|
|
2778
|
-
# used immediately if the primary is demoted by a global cluster API
|
|
2779
|
-
# operation, but it does nothing until then.
|
|
2780
|
-
#
|
|
2781
|
-
# Valid for Cluster Type: Aurora DB clusters only
|
|
2782
|
-
# @return [Boolean]
|
|
2783
|
-
#
|
|
2784
2700
|
# @!attribute [rw] db_cluster_instance_class
|
|
2785
2701
|
# The compute and memory capacity of each DB instance in the Multi-AZ
|
|
2786
2702
|
# DB cluster, for example `db.m6gd.xlarge`. Not all DB instance
|
|
@@ -2874,40 +2790,31 @@ module Aws::RDS
|
|
|
2874
2790
|
# @!attribute [rw] publicly_accessible
|
|
2875
2791
|
# Specifies whether the DB cluster is publicly accessible.
|
|
2876
2792
|
#
|
|
2793
|
+
# Valid for Cluster Type: Multi-AZ DB clusters only
|
|
2794
|
+
#
|
|
2877
2795
|
# When the DB cluster is publicly accessible and you connect from
|
|
2878
|
-
# outside of the DB cluster's virtual private cloud (VPC), its
|
|
2879
|
-
#
|
|
2796
|
+
# outside of the DB cluster's virtual private cloud (VPC), its domain
|
|
2797
|
+
# name system (DNS) endpoint resolves to the public IP address. When
|
|
2880
2798
|
# you connect from within the same VPC as the DB cluster, the endpoint
|
|
2881
2799
|
# resolves to the private IP address. Access to the DB cluster is
|
|
2882
|
-
#
|
|
2883
|
-
# access isn't permitted if the security group assigned to the DB
|
|
2884
|
-
# cluster doesn't permit it.
|
|
2800
|
+
# controlled by its security group settings.
|
|
2885
2801
|
#
|
|
2886
2802
|
# When the DB cluster isn't publicly accessible, it is an internal DB
|
|
2887
2803
|
# cluster with a DNS name that resolves to a private IP address.
|
|
2888
2804
|
#
|
|
2889
|
-
#
|
|
2890
|
-
#
|
|
2891
|
-
# Default: The default behavior varies depending on whether
|
|
2892
|
-
# `DBSubnetGroupName` is specified.
|
|
2893
|
-
#
|
|
2894
|
-
# If `DBSubnetGroupName` isn't specified, and `PubliclyAccessible`
|
|
2895
|
-
# isn't specified, the following applies:
|
|
2896
|
-
#
|
|
2897
|
-
# * If the default VPC in the target Region doesn’t have an internet
|
|
2898
|
-
# gateway attached to it, the DB cluster is private.
|
|
2899
|
-
#
|
|
2900
|
-
# * If the default VPC in the target Region has an internet gateway
|
|
2901
|
-
# attached to it, the DB cluster is public.
|
|
2805
|
+
# The default behavior when `PubliclyAccessible` is not specified
|
|
2806
|
+
# depends on whether a `DBSubnetGroup` is specified.
|
|
2902
2807
|
#
|
|
2903
|
-
# If `
|
|
2904
|
-
#
|
|
2808
|
+
# If `DBSubnetGroup` isn't specified, `PubliclyAccessible` defaults
|
|
2809
|
+
# to `true`.
|
|
2905
2810
|
#
|
|
2906
|
-
#
|
|
2907
|
-
#
|
|
2811
|
+
# If `DBSubnetGroup` is specified, `PubliclyAccessible` defaults to
|
|
2812
|
+
# `false` unless the value of `DBSubnetGroup` is `default`, in which
|
|
2813
|
+
# case `PubliclyAccessible` defaults to `true`.
|
|
2908
2814
|
#
|
|
2909
|
-
#
|
|
2910
|
-
#
|
|
2815
|
+
# If `PubliclyAccessible` is true and the VPC that the `DBSubnetGroup`
|
|
2816
|
+
# is in doesn't have an internet gateway attached to it, Amazon RDS
|
|
2817
|
+
# returns an error.
|
|
2911
2818
|
# @return [Boolean]
|
|
2912
2819
|
#
|
|
2913
2820
|
# @!attribute [rw] auto_minor_version_upgrade
|
|
@@ -2925,65 +2832,177 @@ module Aws::RDS
|
|
|
2925
2832
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Upgrading.html#USER_UpgradeDBInstance.Upgrading.AutoMinorVersionUpgrades
|
|
2926
2833
|
# @return [Boolean]
|
|
2927
2834
|
#
|
|
2928
|
-
# @!attribute [rw]
|
|
2929
|
-
#
|
|
2930
|
-
#
|
|
2931
|
-
#
|
|
2932
|
-
#
|
|
2933
|
-
# If `MonitoringRoleArn` is specified, also set `MonitoringInterval`
|
|
2934
|
-
# to a value other than `0`.
|
|
2835
|
+
# @!attribute [rw] deletion_protection
|
|
2836
|
+
# Specifies whether the DB cluster has deletion protection enabled.
|
|
2837
|
+
# The database can't be deleted when deletion protection is enabled.
|
|
2838
|
+
# By default, deletion protection isn't enabled.
|
|
2935
2839
|
#
|
|
2936
2840
|
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
|
2841
|
+
# @return [Boolean]
|
|
2937
2842
|
#
|
|
2938
|
-
#
|
|
2843
|
+
# @!attribute [rw] global_cluster_identifier
|
|
2844
|
+
# The global cluster ID of an Aurora cluster that becomes the primary
|
|
2845
|
+
# cluster in the new global database cluster.
|
|
2939
2846
|
#
|
|
2940
|
-
#
|
|
2941
|
-
# @return [
|
|
2847
|
+
# Valid for Cluster Type: Aurora DB clusters only
|
|
2848
|
+
# @return [String]
|
|
2942
2849
|
#
|
|
2943
|
-
# @!attribute [rw]
|
|
2944
|
-
#
|
|
2945
|
-
#
|
|
2946
|
-
# example is `arn:aws:iam:123456789012:role/emaccess`. For information
|
|
2947
|
-
# on creating a monitoring role, see [Setting up and enabling Enhanced
|
|
2948
|
-
# Monitoring][1] in the *Amazon RDS User Guide*.
|
|
2850
|
+
# @!attribute [rw] enable_http_endpoint
|
|
2851
|
+
# Specifies whether to enable the HTTP endpoint for the DB cluster. By
|
|
2852
|
+
# default, the HTTP endpoint isn't enabled.
|
|
2949
2853
|
#
|
|
2950
|
-
#
|
|
2951
|
-
#
|
|
2854
|
+
# When enabled, the HTTP endpoint provides a connectionless web
|
|
2855
|
+
# service API (RDS Data API) for running SQL queries on the DB
|
|
2856
|
+
# cluster. You can also query your database from inside the RDS
|
|
2857
|
+
# console with the RDS query editor.
|
|
2952
2858
|
#
|
|
2953
|
-
#
|
|
2859
|
+
# For more information, see [Using RDS Data API][1] in the *Amazon
|
|
2860
|
+
# Aurora User Guide*.
|
|
2954
2861
|
#
|
|
2862
|
+
# Valid for Cluster Type: Aurora DB clusters only
|
|
2955
2863
|
#
|
|
2956
2864
|
#
|
|
2957
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.OS.html#USER_Monitoring.OS.Enabling
|
|
2958
|
-
# @return [String]
|
|
2959
2865
|
#
|
|
2960
|
-
#
|
|
2961
|
-
#
|
|
2866
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html
|
|
2867
|
+
# @return [Boolean]
|
|
2962
2868
|
#
|
|
2963
|
-
#
|
|
2964
|
-
#
|
|
2965
|
-
#
|
|
2869
|
+
# @!attribute [rw] copy_tags_to_snapshot
|
|
2870
|
+
# Specifies whether to copy all tags from the DB cluster to snapshots
|
|
2871
|
+
# of the DB cluster. The default is not to copy them.
|
|
2966
2872
|
#
|
|
2967
2873
|
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
|
2968
|
-
# @return [
|
|
2874
|
+
# @return [Boolean]
|
|
2969
2875
|
#
|
|
2970
|
-
# @!attribute [rw]
|
|
2971
|
-
#
|
|
2972
|
-
# cluster.
|
|
2876
|
+
# @!attribute [rw] domain
|
|
2877
|
+
# The Active Directory directory ID to create the DB cluster in.
|
|
2973
2878
|
#
|
|
2974
|
-
# For
|
|
2975
|
-
#
|
|
2879
|
+
# For Amazon Aurora DB clusters, Amazon RDS can use Kerberos
|
|
2880
|
+
# authentication to authenticate users that connect to the DB cluster.
|
|
2976
2881
|
#
|
|
2977
|
-
#
|
|
2882
|
+
# For more information, see [Kerberos authentication][1] in the
|
|
2883
|
+
# *Amazon Aurora User Guide*.
|
|
2978
2884
|
#
|
|
2885
|
+
# Valid for Cluster Type: Aurora DB clusters only
|
|
2979
2886
|
#
|
|
2980
2887
|
#
|
|
2981
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html
|
|
2982
|
-
# @return [Boolean]
|
|
2983
2888
|
#
|
|
2984
|
-
#
|
|
2985
|
-
#
|
|
2986
|
-
#
|
|
2889
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/kerberos-authentication.html
|
|
2890
|
+
# @return [String]
|
|
2891
|
+
#
|
|
2892
|
+
# @!attribute [rw] domain_iam_role_name
|
|
2893
|
+
# The name of the IAM role to use when making API calls to the
|
|
2894
|
+
# Directory Service.
|
|
2895
|
+
#
|
|
2896
|
+
# Valid for Cluster Type: Aurora DB clusters only
|
|
2897
|
+
# @return [String]
|
|
2898
|
+
#
|
|
2899
|
+
# @!attribute [rw] enable_global_write_forwarding
|
|
2900
|
+
# Specifies whether to enable this DB cluster to forward write
|
|
2901
|
+
# operations to the primary cluster of a global cluster (Aurora global
|
|
2902
|
+
# database). By default, write operations are not allowed on Aurora DB
|
|
2903
|
+
# clusters that are secondary clusters in an Aurora global database.
|
|
2904
|
+
#
|
|
2905
|
+
# You can set this value only on Aurora DB clusters that are members
|
|
2906
|
+
# of an Aurora global database. With this parameter enabled, a
|
|
2907
|
+
# secondary cluster can forward writes to the current primary cluster,
|
|
2908
|
+
# and the resulting changes are replicated back to this cluster. For
|
|
2909
|
+
# the primary DB cluster of an Aurora global database, this value is
|
|
2910
|
+
# used immediately if the primary is demoted by a global cluster API
|
|
2911
|
+
# operation, but it does nothing until then.
|
|
2912
|
+
#
|
|
2913
|
+
# Valid for Cluster Type: Aurora DB clusters only
|
|
2914
|
+
# @return [Boolean]
|
|
2915
|
+
#
|
|
2916
|
+
# @!attribute [rw] network_type
|
|
2917
|
+
# The network type of the DB cluster.
|
|
2918
|
+
#
|
|
2919
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
2920
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
|
2921
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
2922
|
+
#
|
|
2923
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
|
2924
|
+
# in the *Amazon Aurora User Guide.*
|
|
2925
|
+
#
|
|
2926
|
+
# Valid for Cluster Type: Aurora DB clusters only
|
|
2927
|
+
#
|
|
2928
|
+
# Valid Values: `IPV4 | DUAL`
|
|
2929
|
+
#
|
|
2930
|
+
#
|
|
2931
|
+
#
|
|
2932
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
2933
|
+
# @return [String]
|
|
2934
|
+
#
|
|
2935
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
|
2936
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
|
2937
|
+
# cluster.
|
|
2938
|
+
#
|
|
2939
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
|
2940
|
+
# the *Amazon Aurora User Guide*.
|
|
2941
|
+
#
|
|
2942
|
+
#
|
|
2943
|
+
#
|
|
2944
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
2945
|
+
# @return [Types::ServerlessV2ScalingConfiguration]
|
|
2946
|
+
#
|
|
2947
|
+
# @!attribute [rw] monitoring_interval
|
|
2948
|
+
# The interval, in seconds, between points when Enhanced Monitoring
|
|
2949
|
+
# metrics are collected for the DB cluster. To turn off collecting
|
|
2950
|
+
# Enhanced Monitoring metrics, specify `0`.
|
|
2951
|
+
#
|
|
2952
|
+
# If `MonitoringRoleArn` is specified, also set `MonitoringInterval`
|
|
2953
|
+
# to a value other than `0`.
|
|
2954
|
+
#
|
|
2955
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
|
2956
|
+
#
|
|
2957
|
+
# Valid Values: `0 | 1 | 5 | 10 | 15 | 30 | 60`
|
|
2958
|
+
#
|
|
2959
|
+
# Default: `0`
|
|
2960
|
+
# @return [Integer]
|
|
2961
|
+
#
|
|
2962
|
+
# @!attribute [rw] monitoring_role_arn
|
|
2963
|
+
# The Amazon Resource Name (ARN) for the IAM role that permits RDS to
|
|
2964
|
+
# send Enhanced Monitoring metrics to Amazon CloudWatch Logs. An
|
|
2965
|
+
# example is `arn:aws:iam:123456789012:role/emaccess`. For information
|
|
2966
|
+
# on creating a monitoring role, see [Setting up and enabling Enhanced
|
|
2967
|
+
# Monitoring][1] in the *Amazon RDS User Guide*.
|
|
2968
|
+
#
|
|
2969
|
+
# If `MonitoringInterval` is set to a value other than `0`, supply a
|
|
2970
|
+
# `MonitoringRoleArn` value.
|
|
2971
|
+
#
|
|
2972
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
|
2973
|
+
#
|
|
2974
|
+
#
|
|
2975
|
+
#
|
|
2976
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.OS.html#USER_Monitoring.OS.Enabling
|
|
2977
|
+
# @return [String]
|
|
2978
|
+
#
|
|
2979
|
+
# @!attribute [rw] database_insights_mode
|
|
2980
|
+
# The mode of Database Insights to enable for the DB cluster.
|
|
2981
|
+
#
|
|
2982
|
+
# If you set this value to `advanced`, you must also set the
|
|
2983
|
+
# `PerformanceInsightsEnabled` parameter to `true` and the
|
|
2984
|
+
# `PerformanceInsightsRetentionPeriod` parameter to 465.
|
|
2985
|
+
#
|
|
2986
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
|
2987
|
+
# @return [String]
|
|
2988
|
+
#
|
|
2989
|
+
# @!attribute [rw] enable_performance_insights
|
|
2990
|
+
# Specifies whether to turn on Performance Insights for the DB
|
|
2991
|
+
# cluster.
|
|
2992
|
+
#
|
|
2993
|
+
# For more information, see [ Using Amazon Performance Insights][1] in
|
|
2994
|
+
# the *Amazon RDS User Guide*.
|
|
2995
|
+
#
|
|
2996
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
|
2997
|
+
#
|
|
2998
|
+
#
|
|
2999
|
+
#
|
|
3000
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html
|
|
3001
|
+
# @return [Boolean]
|
|
3002
|
+
#
|
|
3003
|
+
# @!attribute [rw] performance_insights_kms_key_id
|
|
3004
|
+
# The Amazon Web Services KMS key identifier for encryption of
|
|
3005
|
+
# Performance Insights data.
|
|
2987
3006
|
#
|
|
2988
3007
|
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
|
2989
3008
|
# alias ARN, or alias name for the KMS key.
|
|
@@ -3030,37 +3049,6 @@ module Aws::RDS
|
|
|
3030
3049
|
# </note>
|
|
3031
3050
|
# @return [Boolean]
|
|
3032
3051
|
#
|
|
3033
|
-
# @!attribute [rw] serverless_v2_scaling_configuration
|
|
3034
|
-
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
|
3035
|
-
# cluster.
|
|
3036
|
-
#
|
|
3037
|
-
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
|
3038
|
-
# the *Amazon Aurora User Guide*.
|
|
3039
|
-
#
|
|
3040
|
-
#
|
|
3041
|
-
#
|
|
3042
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
3043
|
-
# @return [Types::ServerlessV2ScalingConfiguration]
|
|
3044
|
-
#
|
|
3045
|
-
# @!attribute [rw] network_type
|
|
3046
|
-
# The network type of the DB cluster.
|
|
3047
|
-
#
|
|
3048
|
-
# The network type is determined by the `DBSubnetGroup` specified for
|
|
3049
|
-
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
|
3050
|
-
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
3051
|
-
#
|
|
3052
|
-
# For more information, see [ Working with a DB instance in a VPC][1]
|
|
3053
|
-
# in the *Amazon Aurora User Guide.*
|
|
3054
|
-
#
|
|
3055
|
-
# Valid for Cluster Type: Aurora DB clusters only
|
|
3056
|
-
#
|
|
3057
|
-
# Valid Values: `IPV4 | DUAL`
|
|
3058
|
-
#
|
|
3059
|
-
#
|
|
3060
|
-
#
|
|
3061
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
3062
|
-
# @return [String]
|
|
3063
|
-
#
|
|
3064
3052
|
# @!attribute [rw] cluster_scalability_type
|
|
3065
3053
|
# Specifies the scalability mode of the Aurora DB cluster. When set to
|
|
3066
3054
|
# `limitless`, the cluster operates as an Aurora Limitless Database.
|
|
@@ -3102,6 +3090,14 @@ module Aws::RDS
|
|
|
3102
3090
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/rds-secrets-manager.html
|
|
3103
3091
|
# @return [Boolean]
|
|
3104
3092
|
#
|
|
3093
|
+
# @!attribute [rw] enable_local_write_forwarding
|
|
3094
|
+
# Specifies whether read replicas can forward write operations to the
|
|
3095
|
+
# writer DB instance in the DB cluster. By default, write operations
|
|
3096
|
+
# aren't allowed on reader DB instances.
|
|
3097
|
+
#
|
|
3098
|
+
# Valid for: Aurora DB clusters only
|
|
3099
|
+
# @return [Boolean]
|
|
3100
|
+
#
|
|
3105
3101
|
# @!attribute [rw] master_user_secret_kms_key_id
|
|
3106
3102
|
# The Amazon Web Services KMS key identifier to encrypt a secret that
|
|
3107
3103
|
# is automatically generated and managed in Amazon Web Services
|
|
@@ -3128,14 +3124,6 @@ module Aws::RDS
|
|
|
3128
3124
|
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
|
3129
3125
|
# @return [String]
|
|
3130
3126
|
#
|
|
3131
|
-
# @!attribute [rw] enable_local_write_forwarding
|
|
3132
|
-
# Specifies whether read replicas can forward write operations to the
|
|
3133
|
-
# writer DB instance in the DB cluster. By default, write operations
|
|
3134
|
-
# aren't allowed on reader DB instances.
|
|
3135
|
-
#
|
|
3136
|
-
# Valid for: Aurora DB clusters only
|
|
3137
|
-
# @return [Boolean]
|
|
3138
|
-
#
|
|
3139
3127
|
# @!attribute [rw] ca_certificate_identifier
|
|
3140
3128
|
# The CA certificate identifier to use for the DB cluster's server
|
|
3141
3129
|
# certificate.
|
|
@@ -3188,6 +3176,24 @@ module Aws::RDS
|
|
|
3188
3176
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
3189
3177
|
# @return [String]
|
|
3190
3178
|
#
|
|
3179
|
+
# @!attribute [rw] master_user_authentication_type
|
|
3180
|
+
# Specifies the authentication type for the master user. With IAM
|
|
3181
|
+
# master user authentication, you can configure the master DB user
|
|
3182
|
+
# with IAM database authentication when you create a DB cluster.
|
|
3183
|
+
#
|
|
3184
|
+
# You can specify one of the following values:
|
|
3185
|
+
#
|
|
3186
|
+
# * `password` - Use standard database authentication with a password.
|
|
3187
|
+
#
|
|
3188
|
+
# * `iam-db-auth` - Use IAM database authentication for the master
|
|
3189
|
+
# user.
|
|
3190
|
+
#
|
|
3191
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
|
3192
|
+
#
|
|
3193
|
+
# This option is only valid for RDS for PostgreSQL and Aurora
|
|
3194
|
+
# PostgreSQL engines.
|
|
3195
|
+
# @return [String]
|
|
3196
|
+
#
|
|
3191
3197
|
# @!attribute [rw] source_region
|
|
3192
3198
|
# The source region of the snapshot. This is only needed when the
|
|
3193
3199
|
# shapshot is encrypted and in a different region.
|
|
@@ -3223,6 +3229,12 @@ module Aws::RDS
|
|
|
3223
3229
|
:engine_mode,
|
|
3224
3230
|
:scaling_configuration,
|
|
3225
3231
|
:rds_custom_cluster_configuration,
|
|
3232
|
+
:db_cluster_instance_class,
|
|
3233
|
+
:allocated_storage,
|
|
3234
|
+
:storage_type,
|
|
3235
|
+
:iops,
|
|
3236
|
+
:publicly_accessible,
|
|
3237
|
+
:auto_minor_version_upgrade,
|
|
3226
3238
|
:deletion_protection,
|
|
3227
3239
|
:global_cluster_identifier,
|
|
3228
3240
|
:enable_http_endpoint,
|
|
@@ -3230,12 +3242,8 @@ module Aws::RDS
|
|
|
3230
3242
|
:domain,
|
|
3231
3243
|
:domain_iam_role_name,
|
|
3232
3244
|
:enable_global_write_forwarding,
|
|
3233
|
-
:
|
|
3234
|
-
:
|
|
3235
|
-
:storage_type,
|
|
3236
|
-
:iops,
|
|
3237
|
-
:publicly_accessible,
|
|
3238
|
-
:auto_minor_version_upgrade,
|
|
3245
|
+
:network_type,
|
|
3246
|
+
:serverless_v2_scaling_configuration,
|
|
3239
3247
|
:monitoring_interval,
|
|
3240
3248
|
:monitoring_role_arn,
|
|
3241
3249
|
:database_insights_mode,
|
|
@@ -3243,17 +3251,16 @@ module Aws::RDS
|
|
|
3243
3251
|
:performance_insights_kms_key_id,
|
|
3244
3252
|
:performance_insights_retention_period,
|
|
3245
3253
|
:enable_limitless_database,
|
|
3246
|
-
:serverless_v2_scaling_configuration,
|
|
3247
|
-
:network_type,
|
|
3248
3254
|
:cluster_scalability_type,
|
|
3249
3255
|
:db_system_id,
|
|
3250
3256
|
:manage_master_user_password,
|
|
3251
|
-
:master_user_secret_kms_key_id,
|
|
3252
3257
|
:enable_local_write_forwarding,
|
|
3258
|
+
:master_user_secret_kms_key_id,
|
|
3253
3259
|
:ca_certificate_identifier,
|
|
3254
3260
|
:engine_lifecycle_support,
|
|
3261
|
+
:master_user_authentication_type,
|
|
3255
3262
|
:source_region)
|
|
3256
|
-
SENSITIVE = []
|
|
3263
|
+
SENSITIVE = [:master_user_password, :pre_signed_url]
|
|
3257
3264
|
include Aws::Structure
|
|
3258
3265
|
end
|
|
3259
3266
|
|
|
@@ -4173,6 +4180,16 @@ module Aws::RDS
|
|
|
4173
4180
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html
|
|
4174
4181
|
# @return [Integer]
|
|
4175
4182
|
#
|
|
4183
|
+
# @!attribute [rw] storage_throughput
|
|
4184
|
+
# The storage throughput value, in mebibyte per second (MiBps), for
|
|
4185
|
+
# the DB instance.
|
|
4186
|
+
#
|
|
4187
|
+
# This setting applies only to the `gp3` storage type.
|
|
4188
|
+
#
|
|
4189
|
+
# This setting doesn't apply to Amazon Aurora or RDS Custom DB
|
|
4190
|
+
# instances.
|
|
4191
|
+
# @return [Integer]
|
|
4192
|
+
#
|
|
4176
4193
|
# @!attribute [rw] option_group_name
|
|
4177
4194
|
# The option group to associate the DB instance with.
|
|
4178
4195
|
#
|
|
@@ -4209,36 +4226,27 @@ module Aws::RDS
|
|
|
4209
4226
|
#
|
|
4210
4227
|
# When the DB instance is publicly accessible and you connect from
|
|
4211
4228
|
# outside of the DB instance's virtual private cloud (VPC), its
|
|
4212
|
-
#
|
|
4229
|
+
# domain name system (DNS) endpoint resolves to the public IP address.
|
|
4213
4230
|
# When you connect from within the same VPC as the DB instance, the
|
|
4214
4231
|
# endpoint resolves to the private IP address. Access to the DB
|
|
4215
|
-
# instance is
|
|
4216
|
-
# That public access is not permitted if the security group assigned
|
|
4217
|
-
# to the DB instance doesn't permit it.
|
|
4232
|
+
# instance is controlled by its security group settings.
|
|
4218
4233
|
#
|
|
4219
4234
|
# When the DB instance isn't publicly accessible, it is an internal
|
|
4220
4235
|
# DB instance with a DNS name that resolves to a private IP address.
|
|
4221
4236
|
#
|
|
4222
|
-
#
|
|
4223
|
-
# `
|
|
4224
|
-
#
|
|
4225
|
-
# If `DBSubnetGroupName` isn't specified, and `PubliclyAccessible`
|
|
4226
|
-
# isn't specified, the following applies:
|
|
4227
|
-
#
|
|
4228
|
-
# * If the default VPC in the target Region doesn’t have an internet
|
|
4229
|
-
# gateway attached to it, the DB instance is private.
|
|
4237
|
+
# The default behavior when `PubliclyAccessible` is not specified
|
|
4238
|
+
# depends on whether a `DBSubnetGroup` is specified.
|
|
4230
4239
|
#
|
|
4231
|
-
#
|
|
4232
|
-
#
|
|
4233
|
-
#
|
|
4234
|
-
# If `DBSubnetGroupName` is specified, and `PubliclyAccessible` isn't
|
|
4235
|
-
# specified, the following applies:
|
|
4240
|
+
# If `DBSubnetGroup` isn't specified, `PubliclyAccessible` defaults
|
|
4241
|
+
# to `false` for Aurora instances and `true` for non-Aurora instances.
|
|
4236
4242
|
#
|
|
4237
|
-
#
|
|
4238
|
-
#
|
|
4243
|
+
# If `DBSubnetGroup` is specified, `PubliclyAccessible` defaults to
|
|
4244
|
+
# `false` unless the value of `DBSubnetGroup` is `default`, in which
|
|
4245
|
+
# case `PubliclyAccessible` defaults to `true`.
|
|
4239
4246
|
#
|
|
4240
|
-
#
|
|
4241
|
-
#
|
|
4247
|
+
# If `PubliclyAccessible` is true and the VPC that the `DBSubnetGroup`
|
|
4248
|
+
# is in doesn't have an internet gateway attached to it, Amazon RDS
|
|
4249
|
+
# returns an error.
|
|
4242
4250
|
# @return [Boolean]
|
|
4243
4251
|
#
|
|
4244
4252
|
# @!attribute [rw] tags
|
|
@@ -4646,28 +4654,21 @@ module Aws::RDS
|
|
|
4646
4654
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
|
4647
4655
|
# @return [Boolean]
|
|
4648
4656
|
#
|
|
4649
|
-
# @!attribute [rw]
|
|
4650
|
-
# The
|
|
4651
|
-
# instance of an RDS Custom DB instance.
|
|
4652
|
-
#
|
|
4653
|
-
# This setting is required for RDS Custom.
|
|
4654
|
-
#
|
|
4655
|
-
# Constraints:
|
|
4656
|
-
#
|
|
4657
|
-
# * The profile must exist in your account.
|
|
4657
|
+
# @!attribute [rw] network_type
|
|
4658
|
+
# The network type of the DB instance.
|
|
4658
4659
|
#
|
|
4659
|
-
#
|
|
4660
|
-
#
|
|
4660
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
4661
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
|
4662
|
+
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
4661
4663
|
#
|
|
4662
|
-
#
|
|
4663
|
-
#
|
|
4664
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
|
4665
|
+
# in the *Amazon RDS User Guide.*
|
|
4664
4666
|
#
|
|
4665
|
-
#
|
|
4666
|
-
# Configure IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
|
4667
|
+
# Valid Values: `IPV4 | DUAL`
|
|
4667
4668
|
#
|
|
4668
4669
|
#
|
|
4669
4670
|
#
|
|
4670
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
|
4671
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
4671
4672
|
# @return [String]
|
|
4672
4673
|
#
|
|
4673
4674
|
# @!attribute [rw] backup_target
|
|
@@ -4691,32 +4692,55 @@ module Aws::RDS
|
|
|
4691
4692
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
|
4692
4693
|
# @return [String]
|
|
4693
4694
|
#
|
|
4694
|
-
# @!attribute [rw]
|
|
4695
|
-
# The
|
|
4695
|
+
# @!attribute [rw] custom_iam_instance_profile
|
|
4696
|
+
# The instance profile associated with the underlying Amazon EC2
|
|
4697
|
+
# instance of an RDS Custom DB instance.
|
|
4696
4698
|
#
|
|
4697
|
-
#
|
|
4698
|
-
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
|
4699
|
-
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
4699
|
+
# This setting is required for RDS Custom.
|
|
4700
4700
|
#
|
|
4701
|
-
#
|
|
4702
|
-
# in the *Amazon RDS User Guide.*
|
|
4701
|
+
# Constraints:
|
|
4703
4702
|
#
|
|
4704
|
-
#
|
|
4703
|
+
# * The profile must exist in your account.
|
|
4705
4704
|
#
|
|
4705
|
+
# * The profile must have an IAM role that Amazon EC2 has permissions
|
|
4706
|
+
# to assume.
|
|
4706
4707
|
#
|
|
4708
|
+
# * The instance profile name and the associated IAM role name must
|
|
4709
|
+
# start with the prefix `AWSRDSCustom`.
|
|
4707
4710
|
#
|
|
4708
|
-
# [
|
|
4711
|
+
# For the list of permissions required for the IAM role, see [
|
|
4712
|
+
# Configure IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
|
4713
|
+
#
|
|
4714
|
+
#
|
|
4715
|
+
#
|
|
4716
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
|
4709
4717
|
# @return [String]
|
|
4710
4718
|
#
|
|
4711
|
-
# @!attribute [rw]
|
|
4712
|
-
# The
|
|
4713
|
-
#
|
|
4719
|
+
# @!attribute [rw] db_system_id
|
|
4720
|
+
# The Oracle system identifier (SID), which is the name of the Oracle
|
|
4721
|
+
# database instance that manages your database files. In this context,
|
|
4722
|
+
# the term "Oracle database instance" refers exclusively to the
|
|
4723
|
+
# system global area (SGA) and Oracle background processes. If you
|
|
4724
|
+
# don't specify a SID, the value defaults to `RDSCDB`. The Oracle SID
|
|
4725
|
+
# is also the name of your CDB.
|
|
4726
|
+
# @return [String]
|
|
4714
4727
|
#
|
|
4715
|
-
#
|
|
4728
|
+
# @!attribute [rw] ca_certificate_identifier
|
|
4729
|
+
# The CA certificate identifier to use for the DB instance's server
|
|
4730
|
+
# certificate.
|
|
4716
4731
|
#
|
|
4717
|
-
# This setting doesn't apply to
|
|
4718
|
-
#
|
|
4719
|
-
#
|
|
4732
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
|
4733
|
+
#
|
|
4734
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to
|
|
4735
|
+
# a DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS
|
|
4736
|
+
# to encrypt a connection to a DB cluster][2] in the *Amazon Aurora
|
|
4737
|
+
# User Guide*.
|
|
4738
|
+
#
|
|
4739
|
+
#
|
|
4740
|
+
#
|
|
4741
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
|
4742
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
|
4743
|
+
# @return [String]
|
|
4720
4744
|
#
|
|
4721
4745
|
# @!attribute [rw] manage_master_user_password
|
|
4722
4746
|
# Specifies whether to manage the master user password with Amazon Web
|
|
@@ -4761,37 +4785,6 @@ module Aws::RDS
|
|
|
4761
4785
|
# each Amazon Web Services Region.
|
|
4762
4786
|
# @return [String]
|
|
4763
4787
|
#
|
|
4764
|
-
# @!attribute [rw] ca_certificate_identifier
|
|
4765
|
-
# The CA certificate identifier to use for the DB instance's server
|
|
4766
|
-
# certificate.
|
|
4767
|
-
#
|
|
4768
|
-
# This setting doesn't apply to RDS Custom DB instances.
|
|
4769
|
-
#
|
|
4770
|
-
# For more information, see [Using SSL/TLS to encrypt a connection to
|
|
4771
|
-
# a DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS
|
|
4772
|
-
# to encrypt a connection to a DB cluster][2] in the *Amazon Aurora
|
|
4773
|
-
# User Guide*.
|
|
4774
|
-
#
|
|
4775
|
-
#
|
|
4776
|
-
#
|
|
4777
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
|
4778
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
|
4779
|
-
# @return [String]
|
|
4780
|
-
#
|
|
4781
|
-
# @!attribute [rw] db_system_id
|
|
4782
|
-
# The Oracle system identifier (SID), which is the name of the Oracle
|
|
4783
|
-
# database instance that manages your database files. In this context,
|
|
4784
|
-
# the term "Oracle database instance" refers exclusively to the
|
|
4785
|
-
# system global area (SGA) and Oracle background processes. If you
|
|
4786
|
-
# don't specify a SID, the value defaults to `RDSCDB`. The Oracle SID
|
|
4787
|
-
# is also the name of your CDB.
|
|
4788
|
-
# @return [String]
|
|
4789
|
-
#
|
|
4790
|
-
# @!attribute [rw] dedicated_log_volume
|
|
4791
|
-
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
|
4792
|
-
# enabled.
|
|
4793
|
-
# @return [Boolean]
|
|
4794
|
-
#
|
|
4795
4788
|
# @!attribute [rw] multi_tenant
|
|
4796
4789
|
# Specifies whether to use the multi-tenant configuration or the
|
|
4797
4790
|
# single-tenant configuration (default). This parameter only applies
|
|
@@ -4809,6 +4802,11 @@ module Aws::RDS
|
|
|
4809
4802
|
# single-tenant configuration.
|
|
4810
4803
|
# @return [Boolean]
|
|
4811
4804
|
#
|
|
4805
|
+
# @!attribute [rw] dedicated_log_volume
|
|
4806
|
+
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
|
4807
|
+
# enabled.
|
|
4808
|
+
# @return [Boolean]
|
|
4809
|
+
#
|
|
4812
4810
|
# @!attribute [rw] engine_lifecycle_support
|
|
4813
4811
|
# The life cycle type for this DB instance.
|
|
4814
4812
|
#
|
|
@@ -4843,6 +4841,22 @@ module Aws::RDS
|
|
|
4843
4841
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
4844
4842
|
# @return [String]
|
|
4845
4843
|
#
|
|
4844
|
+
# @!attribute [rw] master_user_authentication_type
|
|
4845
|
+
# Specifies the authentication type for the master user. With IAM
|
|
4846
|
+
# master user authentication, you can configure the master DB user
|
|
4847
|
+
# with IAM database authentication when you create a DB instance.
|
|
4848
|
+
#
|
|
4849
|
+
# You can specify one of the following values:
|
|
4850
|
+
#
|
|
4851
|
+
# * `password` - Use standard database authentication with a password.
|
|
4852
|
+
#
|
|
4853
|
+
# * `iam-db-auth` - Use IAM database authentication for the master
|
|
4854
|
+
# user.
|
|
4855
|
+
#
|
|
4856
|
+
# This option is only valid for RDS for PostgreSQL and Aurora
|
|
4857
|
+
# PostgreSQL engines.
|
|
4858
|
+
# @return [String]
|
|
4859
|
+
#
|
|
4846
4860
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceMessage AWS API Documentation
|
|
4847
4861
|
#
|
|
4848
4862
|
class CreateDBInstanceMessage < Struct.new(
|
|
@@ -4867,6 +4881,7 @@ module Aws::RDS
|
|
|
4867
4881
|
:auto_minor_version_upgrade,
|
|
4868
4882
|
:license_model,
|
|
4869
4883
|
:iops,
|
|
4884
|
+
:storage_throughput,
|
|
4870
4885
|
:option_group_name,
|
|
4871
4886
|
:character_set_name,
|
|
4872
4887
|
:nchar_character_set_name,
|
|
@@ -4899,18 +4914,18 @@ module Aws::RDS
|
|
|
4899
4914
|
:deletion_protection,
|
|
4900
4915
|
:max_allocated_storage,
|
|
4901
4916
|
:enable_customer_owned_ip,
|
|
4902
|
-
:custom_iam_instance_profile,
|
|
4903
|
-
:backup_target,
|
|
4904
4917
|
:network_type,
|
|
4905
|
-
:
|
|
4918
|
+
:backup_target,
|
|
4919
|
+
:custom_iam_instance_profile,
|
|
4920
|
+
:db_system_id,
|
|
4921
|
+
:ca_certificate_identifier,
|
|
4906
4922
|
:manage_master_user_password,
|
|
4907
4923
|
:master_user_secret_kms_key_id,
|
|
4908
|
-
:ca_certificate_identifier,
|
|
4909
|
-
:db_system_id,
|
|
4910
|
-
:dedicated_log_volume,
|
|
4911
4924
|
:multi_tenant,
|
|
4912
|
-
:
|
|
4913
|
-
|
|
4925
|
+
:dedicated_log_volume,
|
|
4926
|
+
:engine_lifecycle_support,
|
|
4927
|
+
:master_user_authentication_type)
|
|
4928
|
+
SENSITIVE = [:master_user_password, :tde_credential_password]
|
|
4914
4929
|
include Aws::Structure
|
|
4915
4930
|
end
|
|
4916
4931
|
|
|
@@ -5030,6 +5045,13 @@ module Aws::RDS
|
|
|
5030
5045
|
# to initially allocate for the DB instance.
|
|
5031
5046
|
# @return [Integer]
|
|
5032
5047
|
#
|
|
5048
|
+
# @!attribute [rw] storage_throughput
|
|
5049
|
+
# Specifies the storage throughput value for the read replica.
|
|
5050
|
+
#
|
|
5051
|
+
# This setting doesn't apply to RDS Custom or Amazon Aurora DB
|
|
5052
|
+
# instances.
|
|
5053
|
+
# @return [Integer]
|
|
5054
|
+
#
|
|
5033
5055
|
# @!attribute [rw] option_group_name
|
|
5034
5056
|
# The option group to associate the DB instance with. If not
|
|
5035
5057
|
# specified, RDS uses the option group associated with the source DB
|
|
@@ -5537,41 +5559,28 @@ module Aws::RDS
|
|
|
5537
5559
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
|
5538
5560
|
# @return [String]
|
|
5539
5561
|
#
|
|
5540
|
-
# @!attribute [rw]
|
|
5541
|
-
#
|
|
5542
|
-
#
|
|
5543
|
-
#
|
|
5544
|
-
# For more information about this setting, including limitations that
|
|
5545
|
-
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
|
5546
|
-
# storage autoscaling][1] in the *Amazon RDS User Guide*.
|
|
5547
|
-
#
|
|
5548
|
-
#
|
|
5549
|
-
#
|
|
5550
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
|
5551
|
-
# @return [Integer]
|
|
5552
|
-
#
|
|
5553
|
-
# @!attribute [rw] custom_iam_instance_profile
|
|
5554
|
-
# The instance profile associated with the underlying Amazon EC2
|
|
5555
|
-
# instance of an RDS Custom DB instance. The instance profile must
|
|
5556
|
-
# meet the following requirements:
|
|
5557
|
-
#
|
|
5558
|
-
# * The profile must exist in your account.
|
|
5559
|
-
#
|
|
5560
|
-
# * The profile must have an IAM role that Amazon EC2 has permissions
|
|
5561
|
-
# to assume.
|
|
5562
|
+
# @!attribute [rw] enable_customer_owned_ip
|
|
5563
|
+
# Specifies whether to enable a customer-owned IP address (CoIP) for
|
|
5564
|
+
# an RDS on Outposts read replica.
|
|
5562
5565
|
#
|
|
5563
|
-
# *
|
|
5564
|
-
#
|
|
5566
|
+
# A *CoIP* provides local or external connectivity to resources in
|
|
5567
|
+
# your Outpost subnets through your on-premises network. For some use
|
|
5568
|
+
# cases, a CoIP can provide lower latency for connections to the read
|
|
5569
|
+
# replica from outside of its virtual private cloud (VPC) on your
|
|
5570
|
+
# local network.
|
|
5565
5571
|
#
|
|
5566
|
-
# For
|
|
5567
|
-
#
|
|
5572
|
+
# For more information about RDS on Outposts, see [Working with Amazon
|
|
5573
|
+
# RDS on Amazon Web Services Outposts][1] in the *Amazon RDS User
|
|
5574
|
+
# Guide*.
|
|
5568
5575
|
#
|
|
5569
|
-
#
|
|
5576
|
+
# For more information about CoIPs, see [Customer-owned IP
|
|
5577
|
+
# addresses][2] in the *Amazon Web Services Outposts User Guide*.
|
|
5570
5578
|
#
|
|
5571
5579
|
#
|
|
5572
5580
|
#
|
|
5573
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
|
5574
|
-
#
|
|
5581
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
|
5582
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
|
5583
|
+
# @return [Boolean]
|
|
5575
5584
|
#
|
|
5576
5585
|
# @!attribute [rw] network_type
|
|
5577
5586
|
# The network type of the DB instance.
|
|
@@ -5594,35 +5603,18 @@ module Aws::RDS
|
|
|
5594
5603
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
5595
5604
|
# @return [String]
|
|
5596
5605
|
#
|
|
5597
|
-
# @!attribute [rw]
|
|
5598
|
-
#
|
|
5599
|
-
#
|
|
5600
|
-
# This setting doesn't apply to RDS Custom or Amazon Aurora DB
|
|
5601
|
-
# instances.
|
|
5602
|
-
# @return [Integer]
|
|
5603
|
-
#
|
|
5604
|
-
# @!attribute [rw] enable_customer_owned_ip
|
|
5605
|
-
# Specifies whether to enable a customer-owned IP address (CoIP) for
|
|
5606
|
-
# an RDS on Outposts read replica.
|
|
5607
|
-
#
|
|
5608
|
-
# A *CoIP* provides local or external connectivity to resources in
|
|
5609
|
-
# your Outpost subnets through your on-premises network. For some use
|
|
5610
|
-
# cases, a CoIP can provide lower latency for connections to the read
|
|
5611
|
-
# replica from outside of its virtual private cloud (VPC) on your
|
|
5612
|
-
# local network.
|
|
5613
|
-
#
|
|
5614
|
-
# For more information about RDS on Outposts, see [Working with Amazon
|
|
5615
|
-
# RDS on Amazon Web Services Outposts][1] in the *Amazon RDS User
|
|
5616
|
-
# Guide*.
|
|
5606
|
+
# @!attribute [rw] max_allocated_storage
|
|
5607
|
+
# The upper limit in gibibytes (GiB) to which Amazon RDS can
|
|
5608
|
+
# automatically scale the storage of the DB instance.
|
|
5617
5609
|
#
|
|
5618
|
-
# For more information about
|
|
5619
|
-
#
|
|
5610
|
+
# For more information about this setting, including limitations that
|
|
5611
|
+
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
|
5612
|
+
# storage autoscaling][1] in the *Amazon RDS User Guide*.
|
|
5620
5613
|
#
|
|
5621
5614
|
#
|
|
5622
5615
|
#
|
|
5623
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
|
5624
|
-
# [
|
|
5625
|
-
# @return [Boolean]
|
|
5616
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
|
5617
|
+
# @return [Integer]
|
|
5626
5618
|
#
|
|
5627
5619
|
# @!attribute [rw] backup_target
|
|
5628
5620
|
# The location where RDS stores automated backups and manual
|
|
@@ -5635,6 +5627,29 @@ module Aws::RDS
|
|
|
5635
5627
|
# * `region` for Amazon Web Services Region
|
|
5636
5628
|
# @return [String]
|
|
5637
5629
|
#
|
|
5630
|
+
# @!attribute [rw] custom_iam_instance_profile
|
|
5631
|
+
# The instance profile associated with the underlying Amazon EC2
|
|
5632
|
+
# instance of an RDS Custom DB instance. The instance profile must
|
|
5633
|
+
# meet the following requirements:
|
|
5634
|
+
#
|
|
5635
|
+
# * The profile must exist in your account.
|
|
5636
|
+
#
|
|
5637
|
+
# * The profile must have an IAM role that Amazon EC2 has permissions
|
|
5638
|
+
# to assume.
|
|
5639
|
+
#
|
|
5640
|
+
# * The instance profile name and the associated IAM role name must
|
|
5641
|
+
# start with the prefix `AWSRDSCustom`.
|
|
5642
|
+
#
|
|
5643
|
+
# For the list of permissions required for the IAM role, see [
|
|
5644
|
+
# Configure IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
|
5645
|
+
#
|
|
5646
|
+
# This setting is required for RDS Custom DB instances.
|
|
5647
|
+
#
|
|
5648
|
+
#
|
|
5649
|
+
#
|
|
5650
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
|
5651
|
+
# @return [String]
|
|
5652
|
+
#
|
|
5638
5653
|
# @!attribute [rw] allocated_storage
|
|
5639
5654
|
# The amount of storage (in gibibytes) to allocate initially for the
|
|
5640
5655
|
# read replica. Follow the allocation rules specified in
|
|
@@ -5713,6 +5728,7 @@ module Aws::RDS
|
|
|
5713
5728
|
:multi_az,
|
|
5714
5729
|
:auto_minor_version_upgrade,
|
|
5715
5730
|
:iops,
|
|
5731
|
+
:storage_throughput,
|
|
5716
5732
|
:option_group_name,
|
|
5717
5733
|
:db_parameter_group_name,
|
|
5718
5734
|
:publicly_accessible,
|
|
@@ -5741,19 +5757,18 @@ module Aws::RDS
|
|
|
5741
5757
|
:domain_auth_secret_arn,
|
|
5742
5758
|
:domain_dns_ips,
|
|
5743
5759
|
:replica_mode,
|
|
5744
|
-
:max_allocated_storage,
|
|
5745
|
-
:custom_iam_instance_profile,
|
|
5746
|
-
:network_type,
|
|
5747
|
-
:storage_throughput,
|
|
5748
5760
|
:enable_customer_owned_ip,
|
|
5761
|
+
:network_type,
|
|
5762
|
+
:max_allocated_storage,
|
|
5749
5763
|
:backup_target,
|
|
5764
|
+
:custom_iam_instance_profile,
|
|
5750
5765
|
:allocated_storage,
|
|
5751
5766
|
:source_db_cluster_identifier,
|
|
5752
5767
|
:dedicated_log_volume,
|
|
5753
5768
|
:upgrade_storage_config,
|
|
5754
5769
|
:ca_certificate_identifier,
|
|
5755
5770
|
:source_region)
|
|
5756
|
-
SENSITIVE = []
|
|
5771
|
+
SENSITIVE = [:pre_signed_url]
|
|
5757
5772
|
include Aws::Structure
|
|
5758
5773
|
end
|
|
5759
5774
|
|
|
@@ -5942,6 +5957,29 @@ module Aws::RDS
|
|
|
5942
5957
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
|
5943
5958
|
# @return [Array<Types::Tag>]
|
|
5944
5959
|
#
|
|
5960
|
+
# @!attribute [rw] endpoint_network_type
|
|
5961
|
+
# The network type of the DB proxy endpoint. The network type
|
|
5962
|
+
# determines the IP version that the proxy endpoint supports.
|
|
5963
|
+
#
|
|
5964
|
+
# Valid values:
|
|
5965
|
+
#
|
|
5966
|
+
# * `IPV4` - The proxy endpoint supports IPv4 only.
|
|
5967
|
+
#
|
|
5968
|
+
# * `IPV6` - The proxy endpoint supports IPv6 only.
|
|
5969
|
+
#
|
|
5970
|
+
# * `DUAL` - The proxy endpoint supports both IPv4 and IPv6.
|
|
5971
|
+
#
|
|
5972
|
+
# Default: `IPV4`
|
|
5973
|
+
#
|
|
5974
|
+
# Constraints:
|
|
5975
|
+
#
|
|
5976
|
+
# * If you specify `IPV6` or `DUAL`, the VPC and all subnets must have
|
|
5977
|
+
# an IPv6 CIDR block.
|
|
5978
|
+
#
|
|
5979
|
+
# * If you specify `IPV6` or `DUAL`, the VPC tenancy cannot be
|
|
5980
|
+
# `dedicated`.
|
|
5981
|
+
# @return [String]
|
|
5982
|
+
#
|
|
5945
5983
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBProxyEndpointRequest AWS API Documentation
|
|
5946
5984
|
#
|
|
5947
5985
|
class CreateDBProxyEndpointRequest < Struct.new(
|
|
@@ -5950,7 +5988,8 @@ module Aws::RDS
|
|
|
5950
5988
|
:vpc_subnet_ids,
|
|
5951
5989
|
:vpc_security_group_ids,
|
|
5952
5990
|
:target_role,
|
|
5953
|
-
:tags
|
|
5991
|
+
:tags,
|
|
5992
|
+
:endpoint_network_type)
|
|
5954
5993
|
SENSITIVE = []
|
|
5955
5994
|
include Aws::Structure
|
|
5956
5995
|
end
|
|
@@ -5988,6 +6027,16 @@ module Aws::RDS
|
|
|
5988
6027
|
# `SQLSERVER`.
|
|
5989
6028
|
# @return [String]
|
|
5990
6029
|
#
|
|
6030
|
+
# @!attribute [rw] default_auth_scheme
|
|
6031
|
+
# The default authentication scheme that the proxy uses for client
|
|
6032
|
+
# connections to the proxy and connections from the proxy to the
|
|
6033
|
+
# underlying database. Valid values are `NONE` and `IAM_AUTH`. When
|
|
6034
|
+
# set to `IAM_AUTH`, the proxy uses end-to-end IAM authentication to
|
|
6035
|
+
# connect to the database. If you don't specify `DefaultAuthScheme`
|
|
6036
|
+
# or specify this parameter as `NONE`, you must specify the `Auth`
|
|
6037
|
+
# option.
|
|
6038
|
+
# @return [String]
|
|
6039
|
+
#
|
|
5991
6040
|
# @!attribute [rw] auth
|
|
5992
6041
|
# The authorization mechanism that the proxy uses.
|
|
5993
6042
|
# @return [Array<Types::UserAuthConfig>]
|
|
@@ -6031,11 +6080,57 @@ module Aws::RDS
|
|
|
6031
6080
|
# your choosing with the proxy.
|
|
6032
6081
|
# @return [Array<Types::Tag>]
|
|
6033
6082
|
#
|
|
6083
|
+
# @!attribute [rw] endpoint_network_type
|
|
6084
|
+
# The network type of the DB proxy endpoint. The network type
|
|
6085
|
+
# determines the IP version that the proxy endpoint supports.
|
|
6086
|
+
#
|
|
6087
|
+
# Valid values:
|
|
6088
|
+
#
|
|
6089
|
+
# * `IPV4` - The proxy endpoint supports IPv4 only.
|
|
6090
|
+
#
|
|
6091
|
+
# * `IPV6` - The proxy endpoint supports IPv6 only.
|
|
6092
|
+
#
|
|
6093
|
+
# * `DUAL` - The proxy endpoint supports both IPv4 and IPv6.
|
|
6094
|
+
#
|
|
6095
|
+
# Default: `IPV4`
|
|
6096
|
+
#
|
|
6097
|
+
# Constraints:
|
|
6098
|
+
#
|
|
6099
|
+
# * If you specify `IPV6` or `DUAL`, the VPC and all subnets must have
|
|
6100
|
+
# an IPv6 CIDR block.
|
|
6101
|
+
#
|
|
6102
|
+
# * If you specify `IPV6` or `DUAL`, the VPC tenancy cannot be
|
|
6103
|
+
# `dedicated`.
|
|
6104
|
+
# @return [String]
|
|
6105
|
+
#
|
|
6106
|
+
# @!attribute [rw] target_connection_network_type
|
|
6107
|
+
# The network type that the proxy uses to connect to the target
|
|
6108
|
+
# database. The network type determines the IP version that the proxy
|
|
6109
|
+
# uses for connections to the database.
|
|
6110
|
+
#
|
|
6111
|
+
# Valid values:
|
|
6112
|
+
#
|
|
6113
|
+
# * `IPV4` - The proxy connects to the database using IPv4 only.
|
|
6114
|
+
#
|
|
6115
|
+
# * `IPV6` - The proxy connects to the database using IPv6 only.
|
|
6116
|
+
#
|
|
6117
|
+
# Default: `IPV4`
|
|
6118
|
+
#
|
|
6119
|
+
# Constraints:
|
|
6120
|
+
#
|
|
6121
|
+
# * If you specify `IPV6`, the database must support dual-stack mode.
|
|
6122
|
+
# RDS doesn't support IPv6-only databases.
|
|
6123
|
+
#
|
|
6124
|
+
# * All targets registered with the proxy must be compatible with the
|
|
6125
|
+
# specified network type.
|
|
6126
|
+
# @return [String]
|
|
6127
|
+
#
|
|
6034
6128
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBProxyRequest AWS API Documentation
|
|
6035
6129
|
#
|
|
6036
6130
|
class CreateDBProxyRequest < Struct.new(
|
|
6037
6131
|
:db_proxy_name,
|
|
6038
6132
|
:engine_family,
|
|
6133
|
+
:default_auth_scheme,
|
|
6039
6134
|
:auth,
|
|
6040
6135
|
:role_arn,
|
|
6041
6136
|
:vpc_subnet_ids,
|
|
@@ -6043,7 +6138,9 @@ module Aws::RDS
|
|
|
6043
6138
|
:require_tls,
|
|
6044
6139
|
:idle_client_timeout,
|
|
6045
6140
|
:debug_logging,
|
|
6046
|
-
:tags
|
|
6141
|
+
:tags,
|
|
6142
|
+
:endpoint_network_type,
|
|
6143
|
+
:target_connection_network_type)
|
|
6047
6144
|
SENSITIVE = []
|
|
6048
6145
|
include Aws::Structure
|
|
6049
6146
|
end
|
|
@@ -7008,10 +7105,6 @@ module Aws::RDS
|
|
|
7008
7105
|
# The current state of this DB cluster.
|
|
7009
7106
|
# @return [String]
|
|
7010
7107
|
#
|
|
7011
|
-
# @!attribute [rw] automatic_restart_time
|
|
7012
|
-
# The time when a stopped DB cluster is restarted automatically.
|
|
7013
|
-
# @return [Time]
|
|
7014
|
-
#
|
|
7015
7108
|
# @!attribute [rw] percent_progress
|
|
7016
7109
|
# The progress of the operation as a percentage.
|
|
7017
7110
|
# @return [String]
|
|
@@ -7086,6 +7179,19 @@ module Aws::RDS
|
|
|
7086
7179
|
# Universal Coordinated Time (UTC).
|
|
7087
7180
|
# @return [String]
|
|
7088
7181
|
#
|
|
7182
|
+
# @!attribute [rw] upgrade_rollout_order
|
|
7183
|
+
# This data type represents the order in which the clusters are
|
|
7184
|
+
# upgraded.
|
|
7185
|
+
#
|
|
7186
|
+
# * \[first\] - Typically used for development or testing
|
|
7187
|
+
# environments.
|
|
7188
|
+
#
|
|
7189
|
+
# * \[second\] - Default order for resources not specifically
|
|
7190
|
+
# configured.
|
|
7191
|
+
#
|
|
7192
|
+
# * \[last\] - Usually reserved for production environments.
|
|
7193
|
+
# @return [String]
|
|
7194
|
+
#
|
|
7089
7195
|
# @!attribute [rw] replication_source_identifier
|
|
7090
7196
|
# The identifier of the source DB cluster if this DB cluster is a read
|
|
7091
7197
|
# replica.
|
|
@@ -7207,6 +7313,12 @@ module Aws::RDS
|
|
|
7207
7313
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html
|
|
7208
7314
|
# @return [Integer]
|
|
7209
7315
|
#
|
|
7316
|
+
# @!attribute [rw] pending_modified_values
|
|
7317
|
+
# Information about pending changes to the DB cluster. This
|
|
7318
|
+
# information is returned only when there are pending changes.
|
|
7319
|
+
# Specific changes are identified by subelements.
|
|
7320
|
+
# @return [Types::ClusterPendingModifiedValues]
|
|
7321
|
+
#
|
|
7210
7322
|
# @!attribute [rw] engine_mode
|
|
7211
7323
|
# The DB engine mode of the DB cluster, either `provisioned` or
|
|
7212
7324
|
# `serverless`.
|
|
@@ -7227,12 +7339,77 @@ module Aws::RDS
|
|
|
7227
7339
|
#
|
|
7228
7340
|
#
|
|
7229
7341
|
#
|
|
7230
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html
|
|
7231
|
-
# @return [Types::ScalingConfigurationInfo]
|
|
7342
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html
|
|
7343
|
+
# @return [Types::ScalingConfigurationInfo]
|
|
7344
|
+
#
|
|
7345
|
+
# @!attribute [rw] rds_custom_cluster_configuration
|
|
7346
|
+
# Reserved for future use.
|
|
7347
|
+
# @return [Types::RdsCustomClusterConfiguration]
|
|
7348
|
+
#
|
|
7349
|
+
# @!attribute [rw] db_cluster_instance_class
|
|
7350
|
+
# The name of the compute and memory capacity class of the DB
|
|
7351
|
+
# instance.
|
|
7352
|
+
#
|
|
7353
|
+
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
|
7354
|
+
# @return [String]
|
|
7355
|
+
#
|
|
7356
|
+
# @!attribute [rw] storage_type
|
|
7357
|
+
# The storage type associated with the DB cluster.
|
|
7358
|
+
# @return [String]
|
|
7359
|
+
#
|
|
7360
|
+
# @!attribute [rw] iops
|
|
7361
|
+
# The Provisioned IOPS (I/O operations per second) value.
|
|
7362
|
+
#
|
|
7363
|
+
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
|
7364
|
+
# @return [Integer]
|
|
7365
|
+
#
|
|
7366
|
+
# @!attribute [rw] storage_throughput
|
|
7367
|
+
# The storage throughput for the DB cluster. The throughput is
|
|
7368
|
+
# automatically set based on the IOPS that you provision, and is not
|
|
7369
|
+
# configurable.
|
|
7370
|
+
#
|
|
7371
|
+
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
|
7372
|
+
# @return [Integer]
|
|
7373
|
+
#
|
|
7374
|
+
# @!attribute [rw] io_optimized_next_allowed_modification_time
|
|
7375
|
+
# The next time you can modify the DB cluster to use the
|
|
7376
|
+
# `aurora-iopt1` storage type.
|
|
7377
|
+
#
|
|
7378
|
+
# This setting is only for Aurora DB clusters.
|
|
7379
|
+
# @return [Time]
|
|
7380
|
+
#
|
|
7381
|
+
# @!attribute [rw] publicly_accessible
|
|
7382
|
+
# Indicates whether the DB cluster is publicly accessible.
|
|
7383
|
+
#
|
|
7384
|
+
# When the DB cluster is publicly accessible and you connect from
|
|
7385
|
+
# outside of the DB cluster's virtual private cloud (VPC), its Domain
|
|
7386
|
+
# Name System (DNS) endpoint resolves to the public IP address. When
|
|
7387
|
+
# you connect from within the same VPC as the DB cluster, the endpoint
|
|
7388
|
+
# resolves to the private IP address. Access to the DB cluster is
|
|
7389
|
+
# ultimately controlled by the security group it uses. That public
|
|
7390
|
+
# access isn't permitted if the security group assigned to the DB
|
|
7391
|
+
# cluster doesn't permit it.
|
|
7392
|
+
#
|
|
7393
|
+
# When the DB cluster isn't publicly accessible, it is an internal DB
|
|
7394
|
+
# cluster with a DNS name that resolves to a private IP address.
|
|
7395
|
+
#
|
|
7396
|
+
# For more information, see CreateDBCluster.
|
|
7397
|
+
#
|
|
7398
|
+
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
|
7399
|
+
# @return [Boolean]
|
|
7400
|
+
#
|
|
7401
|
+
# @!attribute [rw] auto_minor_version_upgrade
|
|
7402
|
+
# Indicates whether minor version patches are applied automatically.
|
|
7403
|
+
#
|
|
7404
|
+
# This setting is for Aurora DB clusters and Multi-AZ DB clusters.
|
|
7405
|
+
#
|
|
7406
|
+
# For more information about automatic minor version upgrades, see
|
|
7407
|
+
# [Automatically upgrading the minor engine version][1].
|
|
7408
|
+
#
|
|
7409
|
+
#
|
|
7232
7410
|
#
|
|
7233
|
-
#
|
|
7234
|
-
#
|
|
7235
|
-
# @return [Types::RdsCustomClusterConfiguration]
|
|
7411
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Upgrading.html#USER_UpgradeDBInstance.Upgrading.AutoMinorVersionUpgrades
|
|
7412
|
+
# @return [Boolean]
|
|
7236
7413
|
#
|
|
7237
7414
|
# @!attribute [rw] deletion_protection
|
|
7238
7415
|
# Indicates whether the DB cluster has deletion protection enabled.
|
|
@@ -7327,61 +7504,49 @@ module Aws::RDS
|
|
|
7327
7504
|
# forwarding feature for this cluster.
|
|
7328
7505
|
# @return [Boolean]
|
|
7329
7506
|
#
|
|
7330
|
-
# @!attribute [rw]
|
|
7331
|
-
#
|
|
7332
|
-
# information is returned only when there are pending changes.
|
|
7333
|
-
# Specific changes are identified by subelements.
|
|
7334
|
-
# @return [Types::ClusterPendingModifiedValues]
|
|
7507
|
+
# @!attribute [rw] network_type
|
|
7508
|
+
# The network type of the DB instance.
|
|
7335
7509
|
#
|
|
7336
|
-
#
|
|
7337
|
-
#
|
|
7338
|
-
#
|
|
7510
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
7511
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
|
7512
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
7339
7513
|
#
|
|
7340
|
-
#
|
|
7341
|
-
#
|
|
7514
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
|
7515
|
+
# in the *Amazon Aurora User Guide.*
|
|
7342
7516
|
#
|
|
7343
|
-
#
|
|
7344
|
-
# The storage type associated with the DB cluster.
|
|
7345
|
-
# @return [String]
|
|
7517
|
+
# This setting is only for Aurora DB clusters.
|
|
7346
7518
|
#
|
|
7347
|
-
#
|
|
7348
|
-
# The Provisioned IOPS (I/O operations per second) value.
|
|
7519
|
+
# Valid Values: `IPV4 | DUAL`
|
|
7349
7520
|
#
|
|
7350
|
-
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
|
7351
|
-
# @return [Integer]
|
|
7352
7521
|
#
|
|
7353
|
-
# @!attribute [rw] publicly_accessible
|
|
7354
|
-
# Indicates whether the DB cluster is publicly accessible.
|
|
7355
7522
|
#
|
|
7356
|
-
#
|
|
7357
|
-
#
|
|
7358
|
-
# Name System (DNS) endpoint resolves to the public IP address. When
|
|
7359
|
-
# you connect from within the same VPC as the DB cluster, the endpoint
|
|
7360
|
-
# resolves to the private IP address. Access to the DB cluster is
|
|
7361
|
-
# ultimately controlled by the security group it uses. That public
|
|
7362
|
-
# access isn't permitted if the security group assigned to the DB
|
|
7363
|
-
# cluster doesn't permit it.
|
|
7523
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
7524
|
+
# @return [String]
|
|
7364
7525
|
#
|
|
7365
|
-
#
|
|
7366
|
-
#
|
|
7526
|
+
# @!attribute [rw] automatic_restart_time
|
|
7527
|
+
# The time when a stopped DB cluster is restarted automatically.
|
|
7528
|
+
# @return [Time]
|
|
7367
7529
|
#
|
|
7368
|
-
#
|
|
7530
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
|
7531
|
+
# The scaling configuration for an Aurora Serverless v2 DB cluster.
|
|
7369
7532
|
#
|
|
7370
|
-
#
|
|
7371
|
-
#
|
|
7533
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
|
7534
|
+
# the *Amazon Aurora User Guide*.
|
|
7372
7535
|
#
|
|
7373
|
-
# @!attribute [rw] auto_minor_version_upgrade
|
|
7374
|
-
# Indicates whether minor version patches are applied automatically.
|
|
7375
7536
|
#
|
|
7376
|
-
# This setting is for Aurora DB clusters and Multi-AZ DB clusters.
|
|
7377
7537
|
#
|
|
7378
|
-
#
|
|
7379
|
-
#
|
|
7538
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
7539
|
+
# @return [Types::ServerlessV2ScalingConfigurationInfo]
|
|
7380
7540
|
#
|
|
7541
|
+
# @!attribute [rw] serverless_v2_platform_version
|
|
7542
|
+
# The version of the Aurora Serverless V2 platform used by the DB
|
|
7543
|
+
# cluster. For more information, see [Using Aurora Serverless v2][1]
|
|
7544
|
+
# in the *Amazon Aurora User Guide*.
|
|
7381
7545
|
#
|
|
7382
7546
|
#
|
|
7383
|
-
#
|
|
7384
|
-
#
|
|
7547
|
+
#
|
|
7548
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
7549
|
+
# @return [String]
|
|
7385
7550
|
#
|
|
7386
7551
|
# @!attribute [rw] monitoring_interval
|
|
7387
7552
|
# The interval, in seconds, between points when Enhanced Monitoring
|
|
@@ -7441,46 +7606,6 @@ module Aws::RDS
|
|
|
7441
7606
|
# Default: `7` days
|
|
7442
7607
|
# @return [Integer]
|
|
7443
7608
|
#
|
|
7444
|
-
# @!attribute [rw] serverless_v2_scaling_configuration
|
|
7445
|
-
# The scaling configuration for an Aurora Serverless v2 DB cluster.
|
|
7446
|
-
#
|
|
7447
|
-
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
|
7448
|
-
# the *Amazon Aurora User Guide*.
|
|
7449
|
-
#
|
|
7450
|
-
#
|
|
7451
|
-
#
|
|
7452
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
7453
|
-
# @return [Types::ServerlessV2ScalingConfigurationInfo]
|
|
7454
|
-
#
|
|
7455
|
-
# @!attribute [rw] serverless_v2_platform_version
|
|
7456
|
-
# The version of the Aurora Serverless V2 platform used by the DB
|
|
7457
|
-
# cluster. For more information, see [Using Aurora Serverless v2][1]
|
|
7458
|
-
# in the *Amazon Aurora User Guide*.
|
|
7459
|
-
#
|
|
7460
|
-
#
|
|
7461
|
-
#
|
|
7462
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
7463
|
-
# @return [String]
|
|
7464
|
-
#
|
|
7465
|
-
# @!attribute [rw] network_type
|
|
7466
|
-
# The network type of the DB instance.
|
|
7467
|
-
#
|
|
7468
|
-
# The network type is determined by the `DBSubnetGroup` specified for
|
|
7469
|
-
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
|
7470
|
-
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
7471
|
-
#
|
|
7472
|
-
# For more information, see [ Working with a DB instance in a VPC][1]
|
|
7473
|
-
# in the *Amazon Aurora User Guide.*
|
|
7474
|
-
#
|
|
7475
|
-
# This setting is only for Aurora DB clusters.
|
|
7476
|
-
#
|
|
7477
|
-
# Valid Values: `IPV4 | DUAL`
|
|
7478
|
-
#
|
|
7479
|
-
#
|
|
7480
|
-
#
|
|
7481
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
7482
|
-
# @return [String]
|
|
7483
|
-
#
|
|
7484
7609
|
# @!attribute [rw] db_system_id
|
|
7485
7610
|
# Reserved for future use.
|
|
7486
7611
|
# @return [String]
|
|
@@ -7500,13 +7625,6 @@ module Aws::RDS
|
|
|
7500
7625
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/rds-secrets-manager.html
|
|
7501
7626
|
# @return [Types::MasterUserSecret]
|
|
7502
7627
|
#
|
|
7503
|
-
# @!attribute [rw] io_optimized_next_allowed_modification_time
|
|
7504
|
-
# The next time you can modify the DB cluster to use the
|
|
7505
|
-
# `aurora-iopt1` storage type.
|
|
7506
|
-
#
|
|
7507
|
-
# This setting is only for Aurora DB clusters.
|
|
7508
|
-
# @return [Time]
|
|
7509
|
-
#
|
|
7510
7628
|
# @!attribute [rw] local_write_forwarding_status
|
|
7511
7629
|
# Indicates whether an Aurora DB cluster has in-cluster write
|
|
7512
7630
|
# forwarding enabled, not enabled, requested, or is in the process of
|
|
@@ -7522,14 +7640,6 @@ module Aws::RDS
|
|
|
7522
7640
|
# The details for Aurora Limitless Database.
|
|
7523
7641
|
# @return [Types::LimitlessDatabase]
|
|
7524
7642
|
#
|
|
7525
|
-
# @!attribute [rw] storage_throughput
|
|
7526
|
-
# The storage throughput for the DB cluster. The throughput is
|
|
7527
|
-
# automatically set based on the IOPS that you provision, and is not
|
|
7528
|
-
# configurable.
|
|
7529
|
-
#
|
|
7530
|
-
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
|
7531
|
-
# @return [Integer]
|
|
7532
|
-
#
|
|
7533
7643
|
# @!attribute [rw] cluster_scalability_type
|
|
7534
7644
|
# The scalability mode of the Aurora DB cluster. When set to
|
|
7535
7645
|
# `limitless`, the cluster operates as an Aurora Limitless Database.
|
|
@@ -7569,7 +7679,6 @@ module Aws::RDS
|
|
|
7569
7679
|
:db_cluster_parameter_group,
|
|
7570
7680
|
:db_subnet_group,
|
|
7571
7681
|
:status,
|
|
7572
|
-
:automatic_restart_time,
|
|
7573
7682
|
:percent_progress,
|
|
7574
7683
|
:earliest_restorable_time,
|
|
7575
7684
|
:endpoint,
|
|
@@ -7584,6 +7693,7 @@ module Aws::RDS
|
|
|
7584
7693
|
:db_cluster_option_group_memberships,
|
|
7585
7694
|
:preferred_backup_window,
|
|
7586
7695
|
:preferred_maintenance_window,
|
|
7696
|
+
:upgrade_rollout_order,
|
|
7587
7697
|
:replication_source_identifier,
|
|
7588
7698
|
:read_replica_identifiers,
|
|
7589
7699
|
:status_infos,
|
|
@@ -7603,9 +7713,17 @@ module Aws::RDS
|
|
|
7603
7713
|
:backtrack_consumed_change_records,
|
|
7604
7714
|
:enabled_cloudwatch_logs_exports,
|
|
7605
7715
|
:capacity,
|
|
7716
|
+
:pending_modified_values,
|
|
7606
7717
|
:engine_mode,
|
|
7607
7718
|
:scaling_configuration_info,
|
|
7608
7719
|
:rds_custom_cluster_configuration,
|
|
7720
|
+
:db_cluster_instance_class,
|
|
7721
|
+
:storage_type,
|
|
7722
|
+
:iops,
|
|
7723
|
+
:storage_throughput,
|
|
7724
|
+
:io_optimized_next_allowed_modification_time,
|
|
7725
|
+
:publicly_accessible,
|
|
7726
|
+
:auto_minor_version_upgrade,
|
|
7609
7727
|
:deletion_protection,
|
|
7610
7728
|
:http_endpoint_enabled,
|
|
7611
7729
|
:activity_stream_mode,
|
|
@@ -7619,28 +7737,21 @@ module Aws::RDS
|
|
|
7619
7737
|
:global_cluster_identifier,
|
|
7620
7738
|
:global_write_forwarding_status,
|
|
7621
7739
|
:global_write_forwarding_requested,
|
|
7622
|
-
:
|
|
7623
|
-
:
|
|
7624
|
-
:
|
|
7625
|
-
:
|
|
7626
|
-
:publicly_accessible,
|
|
7627
|
-
:auto_minor_version_upgrade,
|
|
7740
|
+
:network_type,
|
|
7741
|
+
:automatic_restart_time,
|
|
7742
|
+
:serverless_v2_scaling_configuration,
|
|
7743
|
+
:serverless_v2_platform_version,
|
|
7628
7744
|
:monitoring_interval,
|
|
7629
7745
|
:monitoring_role_arn,
|
|
7630
7746
|
:database_insights_mode,
|
|
7631
7747
|
:performance_insights_enabled,
|
|
7632
7748
|
:performance_insights_kms_key_id,
|
|
7633
7749
|
:performance_insights_retention_period,
|
|
7634
|
-
:serverless_v2_scaling_configuration,
|
|
7635
|
-
:serverless_v2_platform_version,
|
|
7636
|
-
:network_type,
|
|
7637
7750
|
:db_system_id,
|
|
7638
7751
|
:master_user_secret,
|
|
7639
|
-
:io_optimized_next_allowed_modification_time,
|
|
7640
7752
|
:local_write_forwarding_status,
|
|
7641
7753
|
:aws_backup_recovery_point_arn,
|
|
7642
7754
|
:limitless_database,
|
|
7643
|
-
:storage_throughput,
|
|
7644
7755
|
:cluster_scalability_type,
|
|
7645
7756
|
:certificate_details,
|
|
7646
7757
|
:engine_lifecycle_support)
|
|
@@ -7779,11 +7890,6 @@ module Aws::RDS
|
|
|
7779
7890
|
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
|
7780
7891
|
# @return [Integer]
|
|
7781
7892
|
#
|
|
7782
|
-
# @!attribute [rw] aws_backup_recovery_point_arn
|
|
7783
|
-
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
|
7784
|
-
# Services Backup.
|
|
7785
|
-
# @return [String]
|
|
7786
|
-
#
|
|
7787
7893
|
# @!attribute [rw] storage_throughput
|
|
7788
7894
|
# The storage throughput for the automated backup. The throughput is
|
|
7789
7895
|
# automatically set based on the IOPS that you provision, and is not
|
|
@@ -7792,6 +7898,11 @@ module Aws::RDS
|
|
|
7792
7898
|
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
|
7793
7899
|
# @return [Integer]
|
|
7794
7900
|
#
|
|
7901
|
+
# @!attribute [rw] aws_backup_recovery_point_arn
|
|
7902
|
+
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
|
7903
|
+
# Services Backup.
|
|
7904
|
+
# @return [String]
|
|
7905
|
+
#
|
|
7795
7906
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBClusterAutomatedBackup AWS API Documentation
|
|
7796
7907
|
#
|
|
7797
7908
|
class DBClusterAutomatedBackup < Struct.new(
|
|
@@ -7818,8 +7929,8 @@ module Aws::RDS
|
|
|
7818
7929
|
:kms_key_id,
|
|
7819
7930
|
:storage_type,
|
|
7820
7931
|
:iops,
|
|
7821
|
-
:
|
|
7822
|
-
:
|
|
7932
|
+
:storage_throughput,
|
|
7933
|
+
:aws_backup_recovery_point_arn)
|
|
7823
7934
|
SENSITIVE = []
|
|
7824
7935
|
include Aws::Structure
|
|
7825
7936
|
end
|
|
@@ -8479,21 +8590,12 @@ module Aws::RDS
|
|
|
8479
8590
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
|
8480
8591
|
# @return [Array<Types::Tag>]
|
|
8481
8592
|
#
|
|
8482
|
-
# @!attribute [rw] db_system_id
|
|
8483
|
-
# Reserved for future use.
|
|
8484
|
-
# @return [String]
|
|
8485
|
-
#
|
|
8486
8593
|
# @!attribute [rw] storage_type
|
|
8487
8594
|
# The storage type associated with the DB cluster snapshot.
|
|
8488
8595
|
#
|
|
8489
8596
|
# This setting is only for Aurora DB clusters.
|
|
8490
8597
|
# @return [String]
|
|
8491
8598
|
#
|
|
8492
|
-
# @!attribute [rw] db_cluster_resource_id
|
|
8493
|
-
# The resource ID of the DB cluster that this DB cluster snapshot was
|
|
8494
|
-
# created from.
|
|
8495
|
-
# @return [String]
|
|
8496
|
-
#
|
|
8497
8599
|
# @!attribute [rw] storage_throughput
|
|
8498
8600
|
# The storage throughput for the DB cluster snapshot. The throughput
|
|
8499
8601
|
# is automatically set based on the IOPS that you provision, and is
|
|
@@ -8502,6 +8604,15 @@ module Aws::RDS
|
|
|
8502
8604
|
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
|
8503
8605
|
# @return [Integer]
|
|
8504
8606
|
#
|
|
8607
|
+
# @!attribute [rw] db_cluster_resource_id
|
|
8608
|
+
# The resource ID of the DB cluster that this DB cluster snapshot was
|
|
8609
|
+
# created from.
|
|
8610
|
+
# @return [String]
|
|
8611
|
+
#
|
|
8612
|
+
# @!attribute [rw] db_system_id
|
|
8613
|
+
# Reserved for future use.
|
|
8614
|
+
# @return [String]
|
|
8615
|
+
#
|
|
8505
8616
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBClusterSnapshot AWS API Documentation
|
|
8506
8617
|
#
|
|
8507
8618
|
class DBClusterSnapshot < Struct.new(
|
|
@@ -8527,10 +8638,10 @@ module Aws::RDS
|
|
|
8527
8638
|
:source_db_cluster_snapshot_arn,
|
|
8528
8639
|
:iam_database_authentication_enabled,
|
|
8529
8640
|
:tag_list,
|
|
8530
|
-
:db_system_id,
|
|
8531
8641
|
:storage_type,
|
|
8642
|
+
:storage_throughput,
|
|
8532
8643
|
:db_cluster_resource_id,
|
|
8533
|
-
:
|
|
8644
|
+
:db_system_id)
|
|
8534
8645
|
SENSITIVE = []
|
|
8535
8646
|
include Aws::Structure
|
|
8536
8647
|
end
|
|
@@ -8671,10 +8782,38 @@ module Aws::RDS
|
|
|
8671
8782
|
# The name of the database engine.
|
|
8672
8783
|
# @return [String]
|
|
8673
8784
|
#
|
|
8785
|
+
# @!attribute [rw] major_engine_version
|
|
8786
|
+
# The major engine version of the CEV.
|
|
8787
|
+
# @return [String]
|
|
8788
|
+
#
|
|
8674
8789
|
# @!attribute [rw] engine_version
|
|
8675
8790
|
# The version number of the database engine.
|
|
8676
8791
|
# @return [String]
|
|
8677
8792
|
#
|
|
8793
|
+
# @!attribute [rw] database_installation_files_s3_bucket_name
|
|
8794
|
+
# The name of the Amazon S3 bucket that contains your database
|
|
8795
|
+
# installation files.
|
|
8796
|
+
# @return [String]
|
|
8797
|
+
#
|
|
8798
|
+
# @!attribute [rw] database_installation_files_s3_prefix
|
|
8799
|
+
# The Amazon S3 directory that contains the database installation
|
|
8800
|
+
# files. If not specified, then no prefix is assumed.
|
|
8801
|
+
# @return [String]
|
|
8802
|
+
#
|
|
8803
|
+
# @!attribute [rw] custom_db_engine_version_manifest
|
|
8804
|
+
# JSON string that lists the installation files and parameters that
|
|
8805
|
+
# RDS Custom uses to create a custom engine version (CEV). RDS Custom
|
|
8806
|
+
# applies the patches in the order in which they're listed in the
|
|
8807
|
+
# manifest. You can set the Oracle home, Oracle base, and UNIX/Linux
|
|
8808
|
+
# user and group using the installation parameters. For more
|
|
8809
|
+
# information, see [JSON fields in the CEV manifest][1] in the *Amazon
|
|
8810
|
+
# RDS User Guide*.
|
|
8811
|
+
#
|
|
8812
|
+
#
|
|
8813
|
+
#
|
|
8814
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.preparing.html#custom-cev.preparing.manifest.fields
|
|
8815
|
+
# @return [String]
|
|
8816
|
+
#
|
|
8678
8817
|
# @!attribute [rw] db_parameter_group_family
|
|
8679
8818
|
# The name of the DB parameter group family for the database engine.
|
|
8680
8819
|
# @return [String]
|
|
@@ -8683,6 +8822,10 @@ module Aws::RDS
|
|
|
8683
8822
|
# The description of the database engine.
|
|
8684
8823
|
# @return [String]
|
|
8685
8824
|
#
|
|
8825
|
+
# @!attribute [rw] db_engine_version_arn
|
|
8826
|
+
# The ARN of the custom engine version.
|
|
8827
|
+
# @return [String]
|
|
8828
|
+
#
|
|
8686
8829
|
# @!attribute [rw] db_engine_version_description
|
|
8687
8830
|
# The description of the database engine version.
|
|
8688
8831
|
# @return [String]
|
|
@@ -8702,6 +8845,16 @@ module Aws::RDS
|
|
|
8702
8845
|
# the usage operation. Applicable for RDS Custom for SQL Server.
|
|
8703
8846
|
# @return [String]
|
|
8704
8847
|
#
|
|
8848
|
+
# @!attribute [rw] kms_key_id
|
|
8849
|
+
# The Amazon Web Services KMS key identifier for an encrypted CEV.
|
|
8850
|
+
# This parameter is required for RDS Custom, but optional for Amazon
|
|
8851
|
+
# RDS.
|
|
8852
|
+
# @return [String]
|
|
8853
|
+
#
|
|
8854
|
+
# @!attribute [rw] create_time
|
|
8855
|
+
# The creation time of the DB engine version.
|
|
8856
|
+
# @return [Time]
|
|
8857
|
+
#
|
|
8705
8858
|
# @!attribute [rw] supported_character_sets
|
|
8706
8859
|
# A list of the character sets supported by this engine for the
|
|
8707
8860
|
# `CharacterSetName` parameter of the `CreateDBInstance` operation.
|
|
@@ -8768,43 +8921,15 @@ module Aws::RDS
|
|
|
8768
8921
|
# `deprecated`.
|
|
8769
8922
|
# @return [String]
|
|
8770
8923
|
#
|
|
8771
|
-
# @!attribute [rw] supports_parallel_query
|
|
8772
|
-
# Indicates whether you can use Aurora parallel query with a specific
|
|
8773
|
-
# DB engine version.
|
|
8774
|
-
# @return [Boolean]
|
|
8775
|
-
#
|
|
8776
|
-
# @!attribute [rw] supports_global_databases
|
|
8777
|
-
# Indicates whether you can use Aurora global databases with a
|
|
8778
|
-
# specific DB engine version.
|
|
8779
|
-
# @return [Boolean]
|
|
8780
|
-
#
|
|
8781
|
-
# @!attribute [rw] major_engine_version
|
|
8782
|
-
# The major engine version of the CEV.
|
|
8783
|
-
# @return [String]
|
|
8784
|
-
#
|
|
8785
|
-
# @!attribute [rw] database_installation_files_s3_bucket_name
|
|
8786
|
-
# The name of the Amazon S3 bucket that contains your database
|
|
8787
|
-
# installation files.
|
|
8788
|
-
# @return [String]
|
|
8789
|
-
#
|
|
8790
|
-
# @!attribute [rw] database_installation_files_s3_prefix
|
|
8791
|
-
# The Amazon S3 directory that contains the database installation
|
|
8792
|
-
# files. If not specified, then no prefix is assumed.
|
|
8793
|
-
# @return [String]
|
|
8794
|
-
#
|
|
8795
|
-
# @!attribute [rw] db_engine_version_arn
|
|
8796
|
-
# The ARN of the custom engine version.
|
|
8797
|
-
# @return [String]
|
|
8798
|
-
#
|
|
8799
|
-
# @!attribute [rw] kms_key_id
|
|
8800
|
-
# The Amazon Web Services KMS key identifier for an encrypted CEV.
|
|
8801
|
-
# This parameter is required for RDS Custom, but optional for Amazon
|
|
8802
|
-
# RDS.
|
|
8803
|
-
# @return [String]
|
|
8924
|
+
# @!attribute [rw] supports_parallel_query
|
|
8925
|
+
# Indicates whether you can use Aurora parallel query with a specific
|
|
8926
|
+
# DB engine version.
|
|
8927
|
+
# @return [Boolean]
|
|
8804
8928
|
#
|
|
8805
|
-
# @!attribute [rw]
|
|
8806
|
-
#
|
|
8807
|
-
#
|
|
8929
|
+
# @!attribute [rw] supports_global_databases
|
|
8930
|
+
# Indicates whether you can use Aurora global databases with a
|
|
8931
|
+
# specific DB engine version.
|
|
8932
|
+
# @return [Boolean]
|
|
8808
8933
|
#
|
|
8809
8934
|
# @!attribute [rw] tag_list
|
|
8810
8935
|
# A list of tags.
|
|
@@ -8824,20 +8949,6 @@ module Aws::RDS
|
|
|
8824
8949
|
# PostgreSQL.
|
|
8825
8950
|
# @return [Boolean]
|
|
8826
8951
|
#
|
|
8827
|
-
# @!attribute [rw] custom_db_engine_version_manifest
|
|
8828
|
-
# JSON string that lists the installation files and parameters that
|
|
8829
|
-
# RDS Custom uses to create a custom engine version (CEV). RDS Custom
|
|
8830
|
-
# applies the patches in the order in which they're listed in the
|
|
8831
|
-
# manifest. You can set the Oracle home, Oracle base, and UNIX/Linux
|
|
8832
|
-
# user and group using the installation parameters. For more
|
|
8833
|
-
# information, see [JSON fields in the CEV manifest][1] in the *Amazon
|
|
8834
|
-
# RDS User Guide*.
|
|
8835
|
-
#
|
|
8836
|
-
#
|
|
8837
|
-
#
|
|
8838
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.preparing.html#custom-cev.preparing.manifest.fields
|
|
8839
|
-
# @return [String]
|
|
8840
|
-
#
|
|
8841
8952
|
# @!attribute [rw] supports_limitless_database
|
|
8842
8953
|
# Indicates whether the DB engine version supports Aurora Limitless
|
|
8843
8954
|
# Database.
|
|
@@ -8890,13 +9001,20 @@ module Aws::RDS
|
|
|
8890
9001
|
#
|
|
8891
9002
|
class DBEngineVersion < Struct.new(
|
|
8892
9003
|
:engine,
|
|
9004
|
+
:major_engine_version,
|
|
8893
9005
|
:engine_version,
|
|
9006
|
+
:database_installation_files_s3_bucket_name,
|
|
9007
|
+
:database_installation_files_s3_prefix,
|
|
9008
|
+
:custom_db_engine_version_manifest,
|
|
8894
9009
|
:db_parameter_group_family,
|
|
8895
9010
|
:db_engine_description,
|
|
9011
|
+
:db_engine_version_arn,
|
|
8896
9012
|
:db_engine_version_description,
|
|
8897
9013
|
:default_character_set,
|
|
8898
9014
|
:image,
|
|
8899
9015
|
:db_engine_media_type,
|
|
9016
|
+
:kms_key_id,
|
|
9017
|
+
:create_time,
|
|
8900
9018
|
:supported_character_sets,
|
|
8901
9019
|
:supported_nchar_character_sets,
|
|
8902
9020
|
:valid_upgrade_target,
|
|
@@ -8909,15 +9027,8 @@ module Aws::RDS
|
|
|
8909
9027
|
:status,
|
|
8910
9028
|
:supports_parallel_query,
|
|
8911
9029
|
:supports_global_databases,
|
|
8912
|
-
:major_engine_version,
|
|
8913
|
-
:database_installation_files_s3_bucket_name,
|
|
8914
|
-
:database_installation_files_s3_prefix,
|
|
8915
|
-
:db_engine_version_arn,
|
|
8916
|
-
:kms_key_id,
|
|
8917
|
-
:create_time,
|
|
8918
9030
|
:tag_list,
|
|
8919
9031
|
:supports_babelfish,
|
|
8920
|
-
:custom_db_engine_version_manifest,
|
|
8921
9032
|
:supports_limitless_database,
|
|
8922
9033
|
:supports_certificate_rotation_without_restart,
|
|
8923
9034
|
:supported_ca_certificate_identifiers,
|
|
@@ -8984,10 +9095,6 @@ module Aws::RDS
|
|
|
8984
9095
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/accessing-monitoring.html#Overview.DBInstance.Status
|
|
8985
9096
|
# @return [String]
|
|
8986
9097
|
#
|
|
8987
|
-
# @!attribute [rw] automatic_restart_time
|
|
8988
|
-
# The time when a stopped DB instance is restarted automatically.
|
|
8989
|
-
# @return [Time]
|
|
8990
|
-
#
|
|
8991
9098
|
# @!attribute [rw] master_username
|
|
8992
9099
|
# The master username for the DB instance.
|
|
8993
9100
|
# @return [String]
|
|
@@ -9055,6 +9162,19 @@ module Aws::RDS
|
|
|
9055
9162
|
# Universal Coordinated Time (UTC).
|
|
9056
9163
|
# @return [String]
|
|
9057
9164
|
#
|
|
9165
|
+
# @!attribute [rw] upgrade_rollout_order
|
|
9166
|
+
# This data type represents the order in which the instances are
|
|
9167
|
+
# upgraded.
|
|
9168
|
+
#
|
|
9169
|
+
# * \[first\] - Typically used for development or testing
|
|
9170
|
+
# environments.
|
|
9171
|
+
#
|
|
9172
|
+
# * \[second\] - Default order for resources not specifically
|
|
9173
|
+
# configured.
|
|
9174
|
+
#
|
|
9175
|
+
# * \[last\] - Usually reserved for production environments.
|
|
9176
|
+
# @return [String]
|
|
9177
|
+
#
|
|
9058
9178
|
# @!attribute [rw] pending_modified_values
|
|
9059
9179
|
# Information about pending changes to the DB instance. This
|
|
9060
9180
|
# information is returned only when there are pending changes.
|
|
@@ -9137,6 +9257,12 @@ module Aws::RDS
|
|
|
9137
9257
|
# instance.
|
|
9138
9258
|
# @return [Integer]
|
|
9139
9259
|
#
|
|
9260
|
+
# @!attribute [rw] storage_throughput
|
|
9261
|
+
# The storage throughput for the DB instance.
|
|
9262
|
+
#
|
|
9263
|
+
# This setting applies only to the `gp3` storage type.
|
|
9264
|
+
# @return [Integer]
|
|
9265
|
+
#
|
|
9140
9266
|
# @!attribute [rw] option_group_memberships
|
|
9141
9267
|
# The list of option group memberships for this DB instance.
|
|
9142
9268
|
# @return [Array<Types::OptionGroupMembership>]
|
|
@@ -9390,10 +9516,18 @@ module Aws::RDS
|
|
|
9390
9516
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
|
9391
9517
|
# @return [Array<Types::Tag>]
|
|
9392
9518
|
#
|
|
9393
|
-
# @!attribute [rw]
|
|
9394
|
-
# The
|
|
9395
|
-
# instance
|
|
9396
|
-
#
|
|
9519
|
+
# @!attribute [rw] automation_mode
|
|
9520
|
+
# The automation mode of the RDS Custom DB instance: `full` or `all
|
|
9521
|
+
# paused`. If `full`, the DB instance automates monitoring and
|
|
9522
|
+
# instance recovery. If `all paused`, the instance pauses automation
|
|
9523
|
+
# for the duration set by `--resume-full-automation-mode-minutes`.
|
|
9524
|
+
# @return [String]
|
|
9525
|
+
#
|
|
9526
|
+
# @!attribute [rw] resume_full_automation_mode_time
|
|
9527
|
+
# The number of minutes to pause the automation. When the time period
|
|
9528
|
+
# ends, RDS Custom resumes full automation. The minimum value is 60
|
|
9529
|
+
# (default). The maximum value is 1,440.
|
|
9530
|
+
# @return [Time]
|
|
9397
9531
|
#
|
|
9398
9532
|
# @!attribute [rw] customer_owned_ip_enabled
|
|
9399
9533
|
# Indicates whether a customer-owned IP address (CoIP) is enabled for
|
|
@@ -9418,9 +9552,23 @@ module Aws::RDS
|
|
|
9418
9552
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
|
9419
9553
|
# @return [Boolean]
|
|
9420
9554
|
#
|
|
9421
|
-
# @!attribute [rw]
|
|
9422
|
-
# The
|
|
9423
|
-
#
|
|
9555
|
+
# @!attribute [rw] network_type
|
|
9556
|
+
# The network type of the DB instance.
|
|
9557
|
+
#
|
|
9558
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
9559
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
|
9560
|
+
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
9561
|
+
#
|
|
9562
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
|
9563
|
+
# in the *Amazon RDS User Guide* and [ Working with a DB instance in a
|
|
9564
|
+
# VPC][2] in the *Amazon Aurora User Guide.*
|
|
9565
|
+
#
|
|
9566
|
+
# Valid Values: `IPV4 | DUAL`
|
|
9567
|
+
#
|
|
9568
|
+
#
|
|
9569
|
+
#
|
|
9570
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
9571
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
9424
9572
|
# @return [String]
|
|
9425
9573
|
#
|
|
9426
9574
|
# @!attribute [rw] activity_stream_status
|
|
@@ -9450,17 +9598,24 @@ module Aws::RDS
|
|
|
9450
9598
|
# database activity stream.
|
|
9451
9599
|
# @return [Boolean]
|
|
9452
9600
|
#
|
|
9453
|
-
# @!attribute [rw]
|
|
9454
|
-
# The
|
|
9455
|
-
#
|
|
9456
|
-
# instance recovery. If `all paused`, the instance pauses automation
|
|
9457
|
-
# for the duration set by `--resume-full-automation-mode-minutes`.
|
|
9601
|
+
# @!attribute [rw] aws_backup_recovery_point_arn
|
|
9602
|
+
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
|
9603
|
+
# Services Backup.
|
|
9458
9604
|
# @return [String]
|
|
9459
9605
|
#
|
|
9460
|
-
# @!attribute [rw]
|
|
9461
|
-
# The
|
|
9462
|
-
#
|
|
9463
|
-
#
|
|
9606
|
+
# @!attribute [rw] db_instance_automated_backups_replications
|
|
9607
|
+
# The list of replicated automated backups associated with the DB
|
|
9608
|
+
# instance.
|
|
9609
|
+
# @return [Array<Types::DBInstanceAutomatedBackupsReplication>]
|
|
9610
|
+
#
|
|
9611
|
+
# @!attribute [rw] backup_target
|
|
9612
|
+
# The location where automated backups and manual snapshots are
|
|
9613
|
+
# stored: Dedicated Local Zones, Amazon Web Services Outposts or the
|
|
9614
|
+
# Amazon Web Services Region.
|
|
9615
|
+
# @return [String]
|
|
9616
|
+
#
|
|
9617
|
+
# @!attribute [rw] automatic_restart_time
|
|
9618
|
+
# The time when a stopped DB instance is restarted automatically.
|
|
9464
9619
|
# @return [Time]
|
|
9465
9620
|
#
|
|
9466
9621
|
# @!attribute [rw] custom_iam_instance_profile
|
|
@@ -9484,40 +9639,13 @@ module Aws::RDS
|
|
|
9484
9639
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
|
9485
9640
|
# @return [String]
|
|
9486
9641
|
#
|
|
9487
|
-
# @!attribute [rw] backup_target
|
|
9488
|
-
# The location where automated backups and manual snapshots are
|
|
9489
|
-
# stored: Dedicated Local Zones, Amazon Web Services Outposts or the
|
|
9490
|
-
# Amazon Web Services Region.
|
|
9491
|
-
# @return [String]
|
|
9492
|
-
#
|
|
9493
|
-
# @!attribute [rw] network_type
|
|
9494
|
-
# The network type of the DB instance.
|
|
9495
|
-
#
|
|
9496
|
-
# The network type is determined by the `DBSubnetGroup` specified for
|
|
9497
|
-
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
|
9498
|
-
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
9499
|
-
#
|
|
9500
|
-
# For more information, see [ Working with a DB instance in a VPC][1]
|
|
9501
|
-
# in the *Amazon RDS User Guide* and [ Working with a DB instance in a
|
|
9502
|
-
# VPC][2] in the *Amazon Aurora User Guide.*
|
|
9503
|
-
#
|
|
9504
|
-
# Valid Values: `IPV4 | DUAL`
|
|
9505
|
-
#
|
|
9506
|
-
#
|
|
9507
|
-
#
|
|
9508
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
9509
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
9510
|
-
# @return [String]
|
|
9511
|
-
#
|
|
9512
9642
|
# @!attribute [rw] activity_stream_policy_status
|
|
9513
9643
|
# The status of the policy state of the activity stream.
|
|
9514
9644
|
# @return [String]
|
|
9515
9645
|
#
|
|
9516
|
-
# @!attribute [rw]
|
|
9517
|
-
# The
|
|
9518
|
-
#
|
|
9519
|
-
# This setting applies only to the `gp3` storage type.
|
|
9520
|
-
# @return [Integer]
|
|
9646
|
+
# @!attribute [rw] certificate_details
|
|
9647
|
+
# The details of the DB instance's server certificate.
|
|
9648
|
+
# @return [Types::CertificateDetails]
|
|
9521
9649
|
#
|
|
9522
9650
|
# @!attribute [rw] db_system_id
|
|
9523
9651
|
# The Oracle system ID (Oracle SID) for a container database (CDB).
|
|
@@ -9537,10 +9665,6 @@ module Aws::RDS
|
|
|
9537
9665
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-secrets-manager.html
|
|
9538
9666
|
# @return [Types::MasterUserSecret]
|
|
9539
9667
|
#
|
|
9540
|
-
# @!attribute [rw] certificate_details
|
|
9541
|
-
# The details of the DB instance's server certificate.
|
|
9542
|
-
# @return [Types::CertificateDetails]
|
|
9543
|
-
#
|
|
9544
9668
|
# @!attribute [rw] read_replica_source_db_cluster_identifier
|
|
9545
9669
|
# The identifier of the source DB cluster if this DB instance is a
|
|
9546
9670
|
# read replica.
|
|
@@ -9550,6 +9674,11 @@ module Aws::RDS
|
|
|
9550
9674
|
# The progress of the storage optimization operation as a percentage.
|
|
9551
9675
|
# @return [String]
|
|
9552
9676
|
#
|
|
9677
|
+
# @!attribute [rw] multi_tenant
|
|
9678
|
+
# Specifies whether the DB instance is in the multi-tenant
|
|
9679
|
+
# configuration (TRUE) or the single-tenant configuration (FALSE).
|
|
9680
|
+
# @return [Boolean]
|
|
9681
|
+
#
|
|
9553
9682
|
# @!attribute [rw] dedicated_log_volume
|
|
9554
9683
|
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
|
9555
9684
|
# enabled.
|
|
@@ -9567,11 +9696,6 @@ module Aws::RDS
|
|
|
9567
9696
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.UpgradeFileSystem
|
|
9568
9697
|
# @return [Boolean]
|
|
9569
9698
|
#
|
|
9570
|
-
# @!attribute [rw] multi_tenant
|
|
9571
|
-
# Specifies whether the DB instance is in the multi-tenant
|
|
9572
|
-
# configuration (TRUE) or the single-tenant configuration (FALSE).
|
|
9573
|
-
# @return [Boolean]
|
|
9574
|
-
#
|
|
9575
9699
|
# @!attribute [rw] engine_lifecycle_support
|
|
9576
9700
|
# The lifecycle type for the DB instance.
|
|
9577
9701
|
#
|
|
@@ -9585,7 +9709,6 @@ module Aws::RDS
|
|
|
9585
9709
|
:db_instance_class,
|
|
9586
9710
|
:engine,
|
|
9587
9711
|
:db_instance_status,
|
|
9588
|
-
:automatic_restart_time,
|
|
9589
9712
|
:master_username,
|
|
9590
9713
|
:db_name,
|
|
9591
9714
|
:endpoint,
|
|
@@ -9599,6 +9722,7 @@ module Aws::RDS
|
|
|
9599
9722
|
:availability_zone,
|
|
9600
9723
|
:db_subnet_group,
|
|
9601
9724
|
:preferred_maintenance_window,
|
|
9725
|
+
:upgrade_rollout_order,
|
|
9602
9726
|
:pending_modified_values,
|
|
9603
9727
|
:latest_restorable_time,
|
|
9604
9728
|
:multi_az,
|
|
@@ -9610,6 +9734,7 @@ module Aws::RDS
|
|
|
9610
9734
|
:replica_mode,
|
|
9611
9735
|
:license_model,
|
|
9612
9736
|
:iops,
|
|
9737
|
+
:storage_throughput,
|
|
9613
9738
|
:option_group_memberships,
|
|
9614
9739
|
:character_set_name,
|
|
9615
9740
|
:nchar_character_set_name,
|
|
@@ -9644,29 +9769,29 @@ module Aws::RDS
|
|
|
9644
9769
|
:listener_endpoint,
|
|
9645
9770
|
:max_allocated_storage,
|
|
9646
9771
|
:tag_list,
|
|
9647
|
-
:
|
|
9772
|
+
:automation_mode,
|
|
9773
|
+
:resume_full_automation_mode_time,
|
|
9648
9774
|
:customer_owned_ip_enabled,
|
|
9649
|
-
:
|
|
9775
|
+
:network_type,
|
|
9650
9776
|
:activity_stream_status,
|
|
9651
9777
|
:activity_stream_kms_key_id,
|
|
9652
9778
|
:activity_stream_kinesis_stream_name,
|
|
9653
9779
|
:activity_stream_mode,
|
|
9654
9780
|
:activity_stream_engine_native_audit_fields_included,
|
|
9655
|
-
:
|
|
9656
|
-
:
|
|
9657
|
-
:custom_iam_instance_profile,
|
|
9781
|
+
:aws_backup_recovery_point_arn,
|
|
9782
|
+
:db_instance_automated_backups_replications,
|
|
9658
9783
|
:backup_target,
|
|
9659
|
-
:
|
|
9784
|
+
:automatic_restart_time,
|
|
9785
|
+
:custom_iam_instance_profile,
|
|
9660
9786
|
:activity_stream_policy_status,
|
|
9661
|
-
:
|
|
9787
|
+
:certificate_details,
|
|
9662
9788
|
:db_system_id,
|
|
9663
9789
|
:master_user_secret,
|
|
9664
|
-
:certificate_details,
|
|
9665
9790
|
:read_replica_source_db_cluster_identifier,
|
|
9666
9791
|
:percent_progress,
|
|
9792
|
+
:multi_tenant,
|
|
9667
9793
|
:dedicated_log_volume,
|
|
9668
9794
|
:is_storage_config_upgrade_available,
|
|
9669
|
-
:multi_tenant,
|
|
9670
9795
|
:engine_lifecycle_support)
|
|
9671
9796
|
SENSITIVE = []
|
|
9672
9797
|
include Aws::Structure
|
|
@@ -9766,6 +9891,10 @@ module Aws::RDS
|
|
|
9766
9891
|
# The IOPS (I/O operations per second) value for the automated backup.
|
|
9767
9892
|
# @return [Integer]
|
|
9768
9893
|
#
|
|
9894
|
+
# @!attribute [rw] storage_throughput
|
|
9895
|
+
# The storage throughput for the automated backup.
|
|
9896
|
+
# @return [Integer]
|
|
9897
|
+
#
|
|
9769
9898
|
# @!attribute [rw] option_group_name
|
|
9770
9899
|
# The option group the automated backup is associated with. If
|
|
9771
9900
|
# omitted, the default option group for the engine specified is used.
|
|
@@ -9822,9 +9951,11 @@ module Aws::RDS
|
|
|
9822
9951
|
# Region.
|
|
9823
9952
|
# @return [String]
|
|
9824
9953
|
#
|
|
9825
|
-
# @!attribute [rw]
|
|
9826
|
-
#
|
|
9827
|
-
#
|
|
9954
|
+
# @!attribute [rw] multi_tenant
|
|
9955
|
+
# Specifies whether the automatic backup is for a DB instance in the
|
|
9956
|
+
# multi-tenant configuration (TRUE) or the single-tenant configuration
|
|
9957
|
+
# (FALSE).
|
|
9958
|
+
# @return [Boolean]
|
|
9828
9959
|
#
|
|
9829
9960
|
# @!attribute [rw] aws_backup_recovery_point_arn
|
|
9830
9961
|
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
|
@@ -9836,12 +9967,6 @@ module Aws::RDS
|
|
|
9836
9967
|
# enabled.
|
|
9837
9968
|
# @return [Boolean]
|
|
9838
9969
|
#
|
|
9839
|
-
# @!attribute [rw] multi_tenant
|
|
9840
|
-
# Specifies whether the automatic backup is for a DB instance in the
|
|
9841
|
-
# multi-tenant configuration (TRUE) or the single-tenant configuration
|
|
9842
|
-
# (FALSE).
|
|
9843
|
-
# @return [Boolean]
|
|
9844
|
-
#
|
|
9845
9970
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstanceAutomatedBackup AWS API Documentation
|
|
9846
9971
|
#
|
|
9847
9972
|
class DBInstanceAutomatedBackup < Struct.new(
|
|
@@ -9861,6 +9986,7 @@ module Aws::RDS
|
|
|
9861
9986
|
:engine_version,
|
|
9862
9987
|
:license_model,
|
|
9863
9988
|
:iops,
|
|
9989
|
+
:storage_throughput,
|
|
9864
9990
|
:option_group_name,
|
|
9865
9991
|
:tde_credential_arn,
|
|
9866
9992
|
:encrypted,
|
|
@@ -9872,10 +9998,9 @@ module Aws::RDS
|
|
|
9872
9998
|
:db_instance_automated_backups_arn,
|
|
9873
9999
|
:db_instance_automated_backups_replications,
|
|
9874
10000
|
:backup_target,
|
|
9875
|
-
:
|
|
10001
|
+
:multi_tenant,
|
|
9876
10002
|
:aws_backup_recovery_point_arn,
|
|
9877
|
-
:dedicated_log_volume
|
|
9878
|
-
:multi_tenant)
|
|
10003
|
+
:dedicated_log_volume)
|
|
9879
10004
|
SENSITIVE = []
|
|
9880
10005
|
include Aws::Structure
|
|
9881
10006
|
end
|
|
@@ -10299,6 +10424,14 @@ module Aws::RDS
|
|
|
10299
10424
|
# The EC2 subnet IDs for the proxy.
|
|
10300
10425
|
# @return [Array<String>]
|
|
10301
10426
|
#
|
|
10427
|
+
# @!attribute [rw] default_auth_scheme
|
|
10428
|
+
# The default authentication scheme that the proxy uses for client
|
|
10429
|
+
# connections to the proxy and connections from the proxy to the
|
|
10430
|
+
# underlying database. Valid values are `NONE` and `IAM_AUTH`. When
|
|
10431
|
+
# set to `IAM_AUTH`, the proxy uses end-to-end IAM authentication to
|
|
10432
|
+
# connect to the database.
|
|
10433
|
+
# @return [String]
|
|
10434
|
+
#
|
|
10302
10435
|
# @!attribute [rw] auth
|
|
10303
10436
|
# One or more data structures specifying the authorization mechanism
|
|
10304
10437
|
# to connect to the associated RDS DB instance or Aurora DB cluster.
|
|
@@ -10348,6 +10481,31 @@ module Aws::RDS
|
|
|
10348
10481
|
# The date and time when the proxy was last updated.
|
|
10349
10482
|
# @return [Time]
|
|
10350
10483
|
#
|
|
10484
|
+
# @!attribute [rw] endpoint_network_type
|
|
10485
|
+
# The network type of the DB proxy endpoint. The network type
|
|
10486
|
+
# determines the IP version that the proxy endpoint supports.
|
|
10487
|
+
#
|
|
10488
|
+
# Valid values:
|
|
10489
|
+
#
|
|
10490
|
+
# * `IPV4` - The proxy endpoint supports IPv4 only.
|
|
10491
|
+
#
|
|
10492
|
+
# * `IPV6` - The proxy endpoint supports IPv6 only.
|
|
10493
|
+
#
|
|
10494
|
+
# * `DUAL` - The proxy endpoint supports both IPv4 and IPv6.
|
|
10495
|
+
# @return [String]
|
|
10496
|
+
#
|
|
10497
|
+
# @!attribute [rw] target_connection_network_type
|
|
10498
|
+
# The network type that the proxy uses to connect to the target
|
|
10499
|
+
# database. The network type determines the IP version that the proxy
|
|
10500
|
+
# uses for connections to the database.
|
|
10501
|
+
#
|
|
10502
|
+
# Valid values:
|
|
10503
|
+
#
|
|
10504
|
+
# * `IPV4` - The proxy connects to the database using IPv4 only.
|
|
10505
|
+
#
|
|
10506
|
+
# * `IPV6` - The proxy connects to the database using IPv6 only.
|
|
10507
|
+
# @return [String]
|
|
10508
|
+
#
|
|
10351
10509
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBProxy AWS API Documentation
|
|
10352
10510
|
#
|
|
10353
10511
|
class DBProxy < Struct.new(
|
|
@@ -10358,6 +10516,7 @@ module Aws::RDS
|
|
|
10358
10516
|
:vpc_id,
|
|
10359
10517
|
:vpc_security_group_ids,
|
|
10360
10518
|
:vpc_subnet_ids,
|
|
10519
|
+
:default_auth_scheme,
|
|
10361
10520
|
:auth,
|
|
10362
10521
|
:role_arn,
|
|
10363
10522
|
:endpoint,
|
|
@@ -10365,7 +10524,9 @@ module Aws::RDS
|
|
|
10365
10524
|
:idle_client_timeout,
|
|
10366
10525
|
:debug_logging,
|
|
10367
10526
|
:created_date,
|
|
10368
|
-
:updated_date
|
|
10527
|
+
:updated_date,
|
|
10528
|
+
:endpoint_network_type,
|
|
10529
|
+
:target_connection_network_type)
|
|
10369
10530
|
SENSITIVE = []
|
|
10370
10531
|
include Aws::Structure
|
|
10371
10532
|
end
|
|
@@ -10444,6 +10605,19 @@ module Aws::RDS
|
|
|
10444
10605
|
# DB proxy can be either read/write or read-only.
|
|
10445
10606
|
# @return [Boolean]
|
|
10446
10607
|
#
|
|
10608
|
+
# @!attribute [rw] endpoint_network_type
|
|
10609
|
+
# The network type of the DB proxy endpoint. The network type
|
|
10610
|
+
# determines the IP version that the proxy endpoint supports.
|
|
10611
|
+
#
|
|
10612
|
+
# Valid values:
|
|
10613
|
+
#
|
|
10614
|
+
# * `IPV4` - The proxy endpoint supports IPv4 only.
|
|
10615
|
+
#
|
|
10616
|
+
# * `IPV6` - The proxy endpoint supports IPv6 only.
|
|
10617
|
+
#
|
|
10618
|
+
# * `DUAL` - The proxy endpoint supports both IPv4 and IPv6.
|
|
10619
|
+
# @return [String]
|
|
10620
|
+
#
|
|
10447
10621
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBProxyEndpoint AWS API Documentation
|
|
10448
10622
|
#
|
|
10449
10623
|
class DBProxyEndpoint < Struct.new(
|
|
@@ -10457,7 +10631,8 @@ module Aws::RDS
|
|
|
10457
10631
|
:endpoint,
|
|
10458
10632
|
:created_date,
|
|
10459
10633
|
:target_role,
|
|
10460
|
-
:is_default
|
|
10634
|
+
:is_default,
|
|
10635
|
+
:endpoint_network_type)
|
|
10461
10636
|
SENSITIVE = []
|
|
10462
10637
|
include Aws::Structure
|
|
10463
10638
|
end
|
|
@@ -11146,6 +11321,10 @@ module Aws::RDS
|
|
|
11146
11321
|
# the DB instance at the time of the snapshot.
|
|
11147
11322
|
# @return [Integer]
|
|
11148
11323
|
#
|
|
11324
|
+
# @!attribute [rw] storage_throughput
|
|
11325
|
+
# Specifies the storage throughput for the DB snapshot.
|
|
11326
|
+
# @return [Integer]
|
|
11327
|
+
#
|
|
11149
11328
|
# @!attribute [rw] option_group_name
|
|
11150
11329
|
# Provides the option group name for the DB snapshot.
|
|
11151
11330
|
# @return [String]
|
|
@@ -11226,6 +11405,11 @@ module Aws::RDS
|
|
|
11226
11405
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
|
11227
11406
|
# @return [Array<Types::Tag>]
|
|
11228
11407
|
#
|
|
11408
|
+
# @!attribute [rw] snapshot_target
|
|
11409
|
+
# Specifies where manual snapshots are stored: Dedicated Local Zones,
|
|
11410
|
+
# Amazon Web Services Outposts or the Amazon Web Services Region.
|
|
11411
|
+
# @return [String]
|
|
11412
|
+
#
|
|
11229
11413
|
# @!attribute [rw] original_snapshot_create_time
|
|
11230
11414
|
# Specifies the time of the CreateDBSnapshot operation in Coordinated
|
|
11231
11415
|
# Universal Time (UTC). Doesn't change when the snapshot is copied.
|
|
@@ -11239,19 +11423,10 @@ module Aws::RDS
|
|
|
11239
11423
|
# system time that the snapshot completed.
|
|
11240
11424
|
#
|
|
11241
11425
|
# If you back up a read replica, you can determine the replica lag by
|
|
11242
|
-
# comparing SnapshotDatabaseTime with originalSnapshotCreateTime. For
|
|
11243
|
-
# example, if originalSnapshotCreateTime is two hours later than
|
|
11244
|
-
# SnapshotDatabaseTime, then the replica lag is two hours.
|
|
11245
|
-
# @return [Time]
|
|
11246
|
-
#
|
|
11247
|
-
# @!attribute [rw] snapshot_target
|
|
11248
|
-
# Specifies where manual snapshots are stored: Dedicated Local Zones,
|
|
11249
|
-
# Amazon Web Services Outposts or the Amazon Web Services Region.
|
|
11250
|
-
# @return [String]
|
|
11251
|
-
#
|
|
11252
|
-
# @!attribute [rw] storage_throughput
|
|
11253
|
-
# Specifies the storage throughput for the DB snapshot.
|
|
11254
|
-
# @return [Integer]
|
|
11426
|
+
# comparing SnapshotDatabaseTime with originalSnapshotCreateTime. For
|
|
11427
|
+
# example, if originalSnapshotCreateTime is two hours later than
|
|
11428
|
+
# SnapshotDatabaseTime, then the replica lag is two hours.
|
|
11429
|
+
# @return [Time]
|
|
11255
11430
|
#
|
|
11256
11431
|
# @!attribute [rw] db_system_id
|
|
11257
11432
|
# The Oracle system identifier (SID), which is the name of the Oracle
|
|
@@ -11259,17 +11434,17 @@ module Aws::RDS
|
|
|
11259
11434
|
# is also the name of your CDB.
|
|
11260
11435
|
# @return [String]
|
|
11261
11436
|
#
|
|
11262
|
-
# @!attribute [rw] dedicated_log_volume
|
|
11263
|
-
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
|
11264
|
-
# enabled.
|
|
11265
|
-
# @return [Boolean]
|
|
11266
|
-
#
|
|
11267
11437
|
# @!attribute [rw] multi_tenant
|
|
11268
11438
|
# Indicates whether the snapshot is of a DB instance using the
|
|
11269
11439
|
# multi-tenant configuration (TRUE) or the single-tenant configuration
|
|
11270
11440
|
# (FALSE).
|
|
11271
11441
|
# @return [Boolean]
|
|
11272
11442
|
#
|
|
11443
|
+
# @!attribute [rw] dedicated_log_volume
|
|
11444
|
+
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
|
11445
|
+
# enabled.
|
|
11446
|
+
# @return [Boolean]
|
|
11447
|
+
#
|
|
11273
11448
|
# @!attribute [rw] snapshot_availability_zone
|
|
11274
11449
|
# Specifies the name of the Availability Zone where RDS stores the DB
|
|
11275
11450
|
# snapshot. This value is valid only for snapshots that RDS stores on
|
|
@@ -11294,6 +11469,7 @@ module Aws::RDS
|
|
|
11294
11469
|
:license_model,
|
|
11295
11470
|
:snapshot_type,
|
|
11296
11471
|
:iops,
|
|
11472
|
+
:storage_throughput,
|
|
11297
11473
|
:option_group_name,
|
|
11298
11474
|
:percent_progress,
|
|
11299
11475
|
:source_region,
|
|
@@ -11308,13 +11484,12 @@ module Aws::RDS
|
|
|
11308
11484
|
:processor_features,
|
|
11309
11485
|
:dbi_resource_id,
|
|
11310
11486
|
:tag_list,
|
|
11487
|
+
:snapshot_target,
|
|
11311
11488
|
:original_snapshot_create_time,
|
|
11312
11489
|
:snapshot_database_time,
|
|
11313
|
-
:snapshot_target,
|
|
11314
|
-
:storage_throughput,
|
|
11315
11490
|
:db_system_id,
|
|
11316
|
-
:dedicated_log_volume,
|
|
11317
11491
|
:multi_tenant,
|
|
11492
|
+
:dedicated_log_volume,
|
|
11318
11493
|
:snapshot_availability_zone)
|
|
11319
11494
|
SENSITIVE = []
|
|
11320
11495
|
include Aws::Structure
|
|
@@ -15782,7 +15957,7 @@ module Aws::RDS
|
|
|
15782
15957
|
:log_file_data,
|
|
15783
15958
|
:marker,
|
|
15784
15959
|
:additional_data_pending)
|
|
15785
|
-
SENSITIVE = []
|
|
15960
|
+
SENSITIVE = [:log_file_data]
|
|
15786
15961
|
include Aws::Structure
|
|
15787
15962
|
end
|
|
15788
15963
|
|
|
@@ -16900,15 +17075,6 @@ module Aws::RDS
|
|
|
16900
17075
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
|
16901
17076
|
# @return [Array<Types::Tag>]
|
|
16902
17077
|
#
|
|
16903
|
-
# @!attribute [rw] create_time
|
|
16904
|
-
# The time when the integration was created, in Universal Coordinated
|
|
16905
|
-
# Time (UTC).
|
|
16906
|
-
# @return [Time]
|
|
16907
|
-
#
|
|
16908
|
-
# @!attribute [rw] errors
|
|
16909
|
-
# Any errors associated with the integration.
|
|
16910
|
-
# @return [Array<Types::IntegrationError>]
|
|
16911
|
-
#
|
|
16912
17078
|
# @!attribute [rw] data_filter
|
|
16913
17079
|
# Data filters for the integration. These filters determine which
|
|
16914
17080
|
# tables from the source database are sent to the target Amazon
|
|
@@ -16919,6 +17085,15 @@ module Aws::RDS
|
|
|
16919
17085
|
# A description of the integration.
|
|
16920
17086
|
# @return [String]
|
|
16921
17087
|
#
|
|
17088
|
+
# @!attribute [rw] create_time
|
|
17089
|
+
# The time when the integration was created, in Universal Coordinated
|
|
17090
|
+
# Time (UTC).
|
|
17091
|
+
# @return [Time]
|
|
17092
|
+
#
|
|
17093
|
+
# @!attribute [rw] errors
|
|
17094
|
+
# Any errors associated with the integration.
|
|
17095
|
+
# @return [Array<Types::IntegrationError>]
|
|
17096
|
+
#
|
|
16922
17097
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/Integration AWS API Documentation
|
|
16923
17098
|
#
|
|
16924
17099
|
class Integration < Struct.new(
|
|
@@ -16930,10 +17105,10 @@ module Aws::RDS
|
|
|
16930
17105
|
:additional_encryption_context,
|
|
16931
17106
|
:status,
|
|
16932
17107
|
:tags,
|
|
16933
|
-
:create_time,
|
|
16934
|
-
:errors,
|
|
16935
17108
|
:data_filter,
|
|
16936
|
-
:description
|
|
17109
|
+
:description,
|
|
17110
|
+
:create_time,
|
|
17111
|
+
:errors)
|
|
16937
17112
|
SENSITIVE = []
|
|
16938
17113
|
include Aws::Structure
|
|
16939
17114
|
end
|
|
@@ -18131,6 +18306,37 @@ module Aws::RDS
|
|
|
18131
18306
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Upgrading.html#USER_UpgradeDBInstance.Upgrading.AutoMinorVersionUpgrades
|
|
18132
18307
|
# @return [Boolean]
|
|
18133
18308
|
#
|
|
18309
|
+
# @!attribute [rw] network_type
|
|
18310
|
+
# The network type of the DB cluster.
|
|
18311
|
+
#
|
|
18312
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
18313
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
|
18314
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
18315
|
+
#
|
|
18316
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
|
18317
|
+
# in the *Amazon Aurora User Guide.*
|
|
18318
|
+
#
|
|
18319
|
+
# Valid for Cluster Type: Aurora DB clusters only
|
|
18320
|
+
#
|
|
18321
|
+
# Valid Values: `IPV4 | DUAL`
|
|
18322
|
+
#
|
|
18323
|
+
#
|
|
18324
|
+
#
|
|
18325
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
18326
|
+
# @return [String]
|
|
18327
|
+
#
|
|
18328
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
|
18329
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
|
18330
|
+
# cluster.
|
|
18331
|
+
#
|
|
18332
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
|
18333
|
+
# the *Amazon Aurora User Guide*.
|
|
18334
|
+
#
|
|
18335
|
+
#
|
|
18336
|
+
#
|
|
18337
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
18338
|
+
# @return [Types::ServerlessV2ScalingConfiguration]
|
|
18339
|
+
#
|
|
18134
18340
|
# @!attribute [rw] monitoring_interval
|
|
18135
18341
|
# The interval, in seconds, between points when Enhanced Monitoring
|
|
18136
18342
|
# metrics are collected for the DB cluster. To turn off collecting
|
|
@@ -18171,8 +18377,9 @@ module Aws::RDS
|
|
|
18171
18377
|
# the `PerformanceInsightsEnabled` parameter to `true` and the
|
|
18172
18378
|
# `PerformanceInsightsRetentionPeriod` parameter to 465.
|
|
18173
18379
|
#
|
|
18174
|
-
# If you change the value from `advanced` to `standard`, you
|
|
18175
|
-
# the `PerformanceInsightsEnabled` parameter to `
|
|
18380
|
+
# If you change the value from `advanced` to `standard`, you can set
|
|
18381
|
+
# the `PerformanceInsightsEnabled` parameter to `true` to collect
|
|
18382
|
+
# detailed database counter and per-query metrics.
|
|
18176
18383
|
#
|
|
18177
18384
|
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
|
18178
18385
|
# @return [String]
|
|
@@ -18228,37 +18435,6 @@ module Aws::RDS
|
|
|
18228
18435
|
# Amazon RDS issues an error.
|
|
18229
18436
|
# @return [Integer]
|
|
18230
18437
|
#
|
|
18231
|
-
# @!attribute [rw] serverless_v2_scaling_configuration
|
|
18232
|
-
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
|
18233
|
-
# cluster.
|
|
18234
|
-
#
|
|
18235
|
-
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
|
18236
|
-
# the *Amazon Aurora User Guide*.
|
|
18237
|
-
#
|
|
18238
|
-
#
|
|
18239
|
-
#
|
|
18240
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
18241
|
-
# @return [Types::ServerlessV2ScalingConfiguration]
|
|
18242
|
-
#
|
|
18243
|
-
# @!attribute [rw] network_type
|
|
18244
|
-
# The network type of the DB cluster.
|
|
18245
|
-
#
|
|
18246
|
-
# The network type is determined by the `DBSubnetGroup` specified for
|
|
18247
|
-
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
|
18248
|
-
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
18249
|
-
#
|
|
18250
|
-
# For more information, see [ Working with a DB instance in a VPC][1]
|
|
18251
|
-
# in the *Amazon Aurora User Guide.*
|
|
18252
|
-
#
|
|
18253
|
-
# Valid for Cluster Type: Aurora DB clusters only
|
|
18254
|
-
#
|
|
18255
|
-
# Valid Values: `IPV4 | DUAL`
|
|
18256
|
-
#
|
|
18257
|
-
#
|
|
18258
|
-
#
|
|
18259
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
18260
|
-
# @return [String]
|
|
18261
|
-
#
|
|
18262
18438
|
# @!attribute [rw] manage_master_user_password
|
|
18263
18439
|
# Specifies whether to manage the master user password with Amazon Web
|
|
18264
18440
|
# Services Secrets Manager.
|
|
@@ -18315,6 +18491,14 @@ module Aws::RDS
|
|
|
18315
18491
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/rds-secrets-manager.html
|
|
18316
18492
|
# @return [Boolean]
|
|
18317
18493
|
#
|
|
18494
|
+
# @!attribute [rw] enable_local_write_forwarding
|
|
18495
|
+
# Specifies whether read replicas can forward write operations to the
|
|
18496
|
+
# writer DB instance in the DB cluster. By default, write operations
|
|
18497
|
+
# aren't allowed on reader DB instances.
|
|
18498
|
+
#
|
|
18499
|
+
# Valid for: Aurora DB clusters only
|
|
18500
|
+
# @return [Boolean]
|
|
18501
|
+
#
|
|
18318
18502
|
# @!attribute [rw] master_user_secret_kms_key_id
|
|
18319
18503
|
# The Amazon Web Services KMS key identifier to encrypt a secret that
|
|
18320
18504
|
# is automatically generated and managed in Amazon Web Services
|
|
@@ -18385,14 +18569,6 @@ module Aws::RDS
|
|
|
18385
18569
|
# ^
|
|
18386
18570
|
# @return [Boolean]
|
|
18387
18571
|
#
|
|
18388
|
-
# @!attribute [rw] enable_local_write_forwarding
|
|
18389
|
-
# Specifies whether read replicas can forward write operations to the
|
|
18390
|
-
# writer DB instance in the DB cluster. By default, write operations
|
|
18391
|
-
# aren't allowed on reader DB instances.
|
|
18392
|
-
#
|
|
18393
|
-
# Valid for: Aurora DB clusters only
|
|
18394
|
-
# @return [Boolean]
|
|
18395
|
-
#
|
|
18396
18572
|
# @!attribute [rw] aws_backup_recovery_point_arn
|
|
18397
18573
|
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
|
18398
18574
|
# Services Backup.
|
|
@@ -18425,6 +18601,24 @@ module Aws::RDS
|
|
|
18425
18601
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
|
18426
18602
|
# @return [String]
|
|
18427
18603
|
#
|
|
18604
|
+
# @!attribute [rw] master_user_authentication_type
|
|
18605
|
+
# Specifies the authentication type for the master user. With IAM
|
|
18606
|
+
# master user authentication, you can change the master DB user to use
|
|
18607
|
+
# IAM database authentication.
|
|
18608
|
+
#
|
|
18609
|
+
# You can specify one of the following values:
|
|
18610
|
+
#
|
|
18611
|
+
# * `password` - Use standard database authentication with a password.
|
|
18612
|
+
#
|
|
18613
|
+
# * `iam-db-auth` - Use IAM database authentication for the master
|
|
18614
|
+
# user.
|
|
18615
|
+
#
|
|
18616
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
|
18617
|
+
#
|
|
18618
|
+
# This option is only valid for RDS for PostgreSQL and Aurora
|
|
18619
|
+
# PostgreSQL engines.
|
|
18620
|
+
# @return [String]
|
|
18621
|
+
#
|
|
18428
18622
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterMessage AWS API Documentation
|
|
18429
18623
|
#
|
|
18430
18624
|
class ModifyDBClusterMessage < Struct.new(
|
|
@@ -18457,24 +18651,25 @@ module Aws::RDS
|
|
|
18457
18651
|
:storage_type,
|
|
18458
18652
|
:iops,
|
|
18459
18653
|
:auto_minor_version_upgrade,
|
|
18654
|
+
:network_type,
|
|
18655
|
+
:serverless_v2_scaling_configuration,
|
|
18460
18656
|
:monitoring_interval,
|
|
18461
18657
|
:monitoring_role_arn,
|
|
18462
18658
|
:database_insights_mode,
|
|
18463
18659
|
:enable_performance_insights,
|
|
18464
18660
|
:performance_insights_kms_key_id,
|
|
18465
18661
|
:performance_insights_retention_period,
|
|
18466
|
-
:serverless_v2_scaling_configuration,
|
|
18467
|
-
:network_type,
|
|
18468
18662
|
:manage_master_user_password,
|
|
18469
18663
|
:rotate_master_user_password,
|
|
18664
|
+
:enable_local_write_forwarding,
|
|
18470
18665
|
:master_user_secret_kms_key_id,
|
|
18471
18666
|
:engine_mode,
|
|
18472
18667
|
:allow_engine_mode_change,
|
|
18473
|
-
:enable_local_write_forwarding,
|
|
18474
18668
|
:aws_backup_recovery_point_arn,
|
|
18475
18669
|
:enable_limitless_database,
|
|
18476
|
-
:ca_certificate_identifier
|
|
18477
|
-
|
|
18670
|
+
:ca_certificate_identifier,
|
|
18671
|
+
:master_user_authentication_type)
|
|
18672
|
+
SENSITIVE = [:master_user_password]
|
|
18478
18673
|
include Aws::Structure
|
|
18479
18674
|
end
|
|
18480
18675
|
|
|
@@ -19095,6 +19290,15 @@ module Aws::RDS
|
|
|
19095
19290
|
# Default: Uses existing setting
|
|
19096
19291
|
# @return [Integer]
|
|
19097
19292
|
#
|
|
19293
|
+
# @!attribute [rw] storage_throughput
|
|
19294
|
+
# The storage throughput value for the DB instance.
|
|
19295
|
+
#
|
|
19296
|
+
# This setting applies only to the `gp3` storage type.
|
|
19297
|
+
#
|
|
19298
|
+
# This setting doesn't apply to Amazon Aurora or RDS Custom DB
|
|
19299
|
+
# instances.
|
|
19300
|
+
# @return [Integer]
|
|
19301
|
+
#
|
|
19098
19302
|
# @!attribute [rw] option_group_name
|
|
19099
19303
|
# The option group to associate the DB instance with.
|
|
19100
19304
|
#
|
|
@@ -19232,7 +19436,7 @@ module Aws::RDS
|
|
|
19232
19436
|
#
|
|
19233
19437
|
# * Must be in the distinguished name format.
|
|
19234
19438
|
#
|
|
19235
|
-
#
|
|
19439
|
+
# ^
|
|
19236
19440
|
#
|
|
19237
19441
|
# Example:
|
|
19238
19442
|
# `OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain`
|
|
@@ -19261,6 +19465,11 @@ module Aws::RDS
|
|
|
19261
19465
|
# Example: `123.124.125.126,234.235.236.237`
|
|
19262
19466
|
# @return [Array<String>]
|
|
19263
19467
|
#
|
|
19468
|
+
# @!attribute [rw] disable_domain
|
|
19469
|
+
# Specifies whether to remove the DB instance from the Active
|
|
19470
|
+
# Directory domain.
|
|
19471
|
+
# @return [Boolean]
|
|
19472
|
+
#
|
|
19264
19473
|
# @!attribute [rw] copy_tags_to_snapshot
|
|
19265
19474
|
# Specifies whether to copy all tags from the DB instance to snapshots
|
|
19266
19475
|
# of the DB instance. By default, tags aren't copied.
|
|
@@ -19372,11 +19581,6 @@ module Aws::RDS
|
|
|
19372
19581
|
# This setting doesn't apply to RDS Custom DB instances.
|
|
19373
19582
|
# @return [String]
|
|
19374
19583
|
#
|
|
19375
|
-
# @!attribute [rw] disable_domain
|
|
19376
|
-
# Specifies whether to remove the DB instance from the Active
|
|
19377
|
-
# Directory domain.
|
|
19378
|
-
# @return [Boolean]
|
|
19379
|
-
#
|
|
19380
19584
|
# @!attribute [rw] promotion_tier
|
|
19381
19585
|
# The order of priority in which an Aurora Replica is promoted to the
|
|
19382
19586
|
# primary instance after a failure of the existing primary instance.
|
|
@@ -19632,6 +19836,26 @@ module Aws::RDS
|
|
|
19632
19836
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
|
19633
19837
|
# @return [String]
|
|
19634
19838
|
#
|
|
19839
|
+
# @!attribute [rw] automation_mode
|
|
19840
|
+
# The automation mode of the RDS Custom DB instance. If `full`, the DB
|
|
19841
|
+
# instance automates monitoring and instance recovery. If `all
|
|
19842
|
+
# paused`, the instance pauses automation for the duration set by
|
|
19843
|
+
# `ResumeFullAutomationModeMinutes`.
|
|
19844
|
+
# @return [String]
|
|
19845
|
+
#
|
|
19846
|
+
# @!attribute [rw] resume_full_automation_mode_minutes
|
|
19847
|
+
# The number of minutes to pause the automation. When the time period
|
|
19848
|
+
# ends, RDS Custom resumes full automation.
|
|
19849
|
+
#
|
|
19850
|
+
# Default: `60`
|
|
19851
|
+
#
|
|
19852
|
+
# Constraints:
|
|
19853
|
+
#
|
|
19854
|
+
# * Must be at least 60.
|
|
19855
|
+
#
|
|
19856
|
+
# * Must be no more than 1,440.
|
|
19857
|
+
# @return [Integer]
|
|
19858
|
+
#
|
|
19635
19859
|
# @!attribute [rw] enable_customer_owned_ip
|
|
19636
19860
|
# Specifies whether to enable a customer-owned IP address (CoIP) for
|
|
19637
19861
|
# an RDS on Outposts DB instance.
|
|
@@ -19655,33 +19879,6 @@ module Aws::RDS
|
|
|
19655
19879
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
|
19656
19880
|
# @return [Boolean]
|
|
19657
19881
|
#
|
|
19658
|
-
# @!attribute [rw] aws_backup_recovery_point_arn
|
|
19659
|
-
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
|
19660
|
-
# Services Backup.
|
|
19661
|
-
#
|
|
19662
|
-
# This setting doesn't apply to RDS Custom DB instances.
|
|
19663
|
-
# @return [String]
|
|
19664
|
-
#
|
|
19665
|
-
# @!attribute [rw] automation_mode
|
|
19666
|
-
# The automation mode of the RDS Custom DB instance. If `full`, the DB
|
|
19667
|
-
# instance automates monitoring and instance recovery. If `all
|
|
19668
|
-
# paused`, the instance pauses automation for the duration set by
|
|
19669
|
-
# `ResumeFullAutomationModeMinutes`.
|
|
19670
|
-
# @return [String]
|
|
19671
|
-
#
|
|
19672
|
-
# @!attribute [rw] resume_full_automation_mode_minutes
|
|
19673
|
-
# The number of minutes to pause the automation. When the time period
|
|
19674
|
-
# ends, RDS Custom resumes full automation.
|
|
19675
|
-
#
|
|
19676
|
-
# Default: `60`
|
|
19677
|
-
#
|
|
19678
|
-
# Constraints:
|
|
19679
|
-
#
|
|
19680
|
-
# * Must be at least 60.
|
|
19681
|
-
#
|
|
19682
|
-
# * Must be no more than 1,440.
|
|
19683
|
-
# @return [Integer]
|
|
19684
|
-
#
|
|
19685
19882
|
# @!attribute [rw] network_type
|
|
19686
19883
|
# The network type of the DB instance.
|
|
19687
19884
|
#
|
|
@@ -19699,14 +19896,12 @@ module Aws::RDS
|
|
|
19699
19896
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
19700
19897
|
# @return [String]
|
|
19701
19898
|
#
|
|
19702
|
-
# @!attribute [rw]
|
|
19703
|
-
# The
|
|
19704
|
-
#
|
|
19705
|
-
# This setting applies only to the `gp3` storage type.
|
|
19899
|
+
# @!attribute [rw] aws_backup_recovery_point_arn
|
|
19900
|
+
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
|
19901
|
+
# Services Backup.
|
|
19706
19902
|
#
|
|
19707
|
-
# This setting doesn't apply to
|
|
19708
|
-
#
|
|
19709
|
-
# @return [Integer]
|
|
19903
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
|
19904
|
+
# @return [String]
|
|
19710
19905
|
#
|
|
19711
19906
|
# @!attribute [rw] manage_master_user_password
|
|
19712
19907
|
# Specifies whether to manage the master user password with Amazon Web
|
|
@@ -19800,6 +19995,29 @@ module Aws::RDS
|
|
|
19800
19995
|
# each Amazon Web Services Region.
|
|
19801
19996
|
# @return [String]
|
|
19802
19997
|
#
|
|
19998
|
+
# @!attribute [rw] multi_tenant
|
|
19999
|
+
# Specifies whether the to convert your DB instance from the
|
|
20000
|
+
# single-tenant configuration to the multi-tenant configuration. This
|
|
20001
|
+
# parameter is supported only for RDS for Oracle CDB instances.
|
|
20002
|
+
#
|
|
20003
|
+
# During the conversion, RDS creates an initial tenant database and
|
|
20004
|
+
# associates the DB name, master user name, character set, and
|
|
20005
|
+
# national character set metadata with this database. The tags
|
|
20006
|
+
# associated with the instance also propagate to the initial tenant
|
|
20007
|
+
# database. You can add more tenant databases to your DB instance by
|
|
20008
|
+
# using the `CreateTenantDatabase` operation.
|
|
20009
|
+
#
|
|
20010
|
+
# The conversion to the multi-tenant configuration is permanent and
|
|
20011
|
+
# irreversible, so you can't later convert back to the single-tenant
|
|
20012
|
+
# configuration. When you specify this parameter, you must also
|
|
20013
|
+
# specify `ApplyImmediately`.
|
|
20014
|
+
# @return [Boolean]
|
|
20015
|
+
#
|
|
20016
|
+
# @!attribute [rw] dedicated_log_volume
|
|
20017
|
+
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
|
20018
|
+
# enabled.
|
|
20019
|
+
# @return [Boolean]
|
|
20020
|
+
#
|
|
19803
20021
|
# @!attribute [rw] engine
|
|
19804
20022
|
# The target Oracle DB engine when you convert a non-CDB to a CDB.
|
|
19805
20023
|
# This intermediate step is necessary to upgrade an Oracle Database
|
|
@@ -19830,28 +20048,21 @@ module Aws::RDS
|
|
|
19830
20048
|
# `--option-group-name`.
|
|
19831
20049
|
# @return [String]
|
|
19832
20050
|
#
|
|
19833
|
-
# @!attribute [rw]
|
|
19834
|
-
#
|
|
19835
|
-
#
|
|
19836
|
-
#
|
|
20051
|
+
# @!attribute [rw] master_user_authentication_type
|
|
20052
|
+
# Specifies the authentication type for the master user. With IAM
|
|
20053
|
+
# master user authentication, you can change the master DB user to use
|
|
20054
|
+
# IAM database authentication.
|
|
19837
20055
|
#
|
|
19838
|
-
#
|
|
19839
|
-
# Specifies whether the to convert your DB instance from the
|
|
19840
|
-
# single-tenant configuration to the multi-tenant configuration. This
|
|
19841
|
-
# parameter is supported only for RDS for Oracle CDB instances.
|
|
20056
|
+
# You can specify one of the following values:
|
|
19842
20057
|
#
|
|
19843
|
-
#
|
|
19844
|
-
#
|
|
19845
|
-
#
|
|
19846
|
-
#
|
|
19847
|
-
# database. You can add more tenant databases to your DB instance by
|
|
19848
|
-
# using the `CreateTenantDatabase` operation.
|
|
20058
|
+
# * `password` - Use standard database authentication with a password.
|
|
20059
|
+
#
|
|
20060
|
+
# * `iam-db-auth` - Use IAM database authentication for the master
|
|
20061
|
+
# user.
|
|
19849
20062
|
#
|
|
19850
|
-
#
|
|
19851
|
-
#
|
|
19852
|
-
#
|
|
19853
|
-
# specify `ApplyImmediately`.
|
|
19854
|
-
# @return [Boolean]
|
|
20063
|
+
# This option is only valid for RDS for PostgreSQL and Aurora
|
|
20064
|
+
# PostgreSQL engines.
|
|
20065
|
+
# @return [String]
|
|
19855
20066
|
#
|
|
19856
20067
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstanceMessage AWS API Documentation
|
|
19857
20068
|
#
|
|
@@ -19874,6 +20085,7 @@ module Aws::RDS
|
|
|
19874
20085
|
:auto_minor_version_upgrade,
|
|
19875
20086
|
:license_model,
|
|
19876
20087
|
:iops,
|
|
20088
|
+
:storage_throughput,
|
|
19877
20089
|
:option_group_name,
|
|
19878
20090
|
:new_db_instance_identifier,
|
|
19879
20091
|
:storage_type,
|
|
@@ -19885,13 +20097,13 @@ module Aws::RDS
|
|
|
19885
20097
|
:domain_ou,
|
|
19886
20098
|
:domain_auth_secret_arn,
|
|
19887
20099
|
:domain_dns_ips,
|
|
20100
|
+
:disable_domain,
|
|
19888
20101
|
:copy_tags_to_snapshot,
|
|
19889
20102
|
:monitoring_interval,
|
|
19890
20103
|
:db_port_number,
|
|
19891
20104
|
:publicly_accessible,
|
|
19892
20105
|
:monitoring_role_arn,
|
|
19893
20106
|
:domain_iam_role_name,
|
|
19894
|
-
:disable_domain,
|
|
19895
20107
|
:promotion_tier,
|
|
19896
20108
|
:enable_iam_database_authentication,
|
|
19897
20109
|
:database_insights_mode,
|
|
@@ -19905,19 +20117,19 @@ module Aws::RDS
|
|
|
19905
20117
|
:max_allocated_storage,
|
|
19906
20118
|
:certificate_rotation_restart,
|
|
19907
20119
|
:replica_mode,
|
|
19908
|
-
:enable_customer_owned_ip,
|
|
19909
|
-
:aws_backup_recovery_point_arn,
|
|
19910
20120
|
:automation_mode,
|
|
19911
20121
|
:resume_full_automation_mode_minutes,
|
|
20122
|
+
:enable_customer_owned_ip,
|
|
19912
20123
|
:network_type,
|
|
19913
|
-
:
|
|
20124
|
+
:aws_backup_recovery_point_arn,
|
|
19914
20125
|
:manage_master_user_password,
|
|
19915
20126
|
:rotate_master_user_password,
|
|
19916
20127
|
:master_user_secret_kms_key_id,
|
|
19917
|
-
:
|
|
20128
|
+
:multi_tenant,
|
|
19918
20129
|
:dedicated_log_volume,
|
|
19919
|
-
:
|
|
19920
|
-
|
|
20130
|
+
:engine,
|
|
20131
|
+
:master_user_authentication_type)
|
|
20132
|
+
SENSITIVE = [:master_user_password, :tde_credential_password]
|
|
19921
20133
|
include Aws::Structure
|
|
19922
20134
|
end
|
|
19923
20135
|
|
|
@@ -20047,6 +20259,14 @@ module Aws::RDS
|
|
|
20047
20259
|
# it can't end with a hyphen or contain two consecutive hyphens.
|
|
20048
20260
|
# @return [String]
|
|
20049
20261
|
#
|
|
20262
|
+
# @!attribute [rw] default_auth_scheme
|
|
20263
|
+
# The default authentication scheme that the proxy uses for client
|
|
20264
|
+
# connections to the proxy and connections from the proxy to the
|
|
20265
|
+
# underlying database. Valid values are `NONE` and `IAM_AUTH`. When
|
|
20266
|
+
# set to `IAM_AUTH`, the proxy uses end-to-end IAM authentication to
|
|
20267
|
+
# connect to the database.
|
|
20268
|
+
# @return [String]
|
|
20269
|
+
#
|
|
20050
20270
|
# @!attribute [rw] auth
|
|
20051
20271
|
# The new authentication settings for the `DBProxy`.
|
|
20052
20272
|
# @return [Array<Types::UserAuthConfig>]
|
|
@@ -20087,6 +20307,7 @@ module Aws::RDS
|
|
|
20087
20307
|
class ModifyDBProxyRequest < Struct.new(
|
|
20088
20308
|
:db_proxy_name,
|
|
20089
20309
|
:new_db_proxy_name,
|
|
20310
|
+
:default_auth_scheme,
|
|
20090
20311
|
:auth,
|
|
20091
20312
|
:require_tls,
|
|
20092
20313
|
:idle_client_timeout,
|
|
@@ -21326,7 +21547,7 @@ module Aws::RDS
|
|
|
21326
21547
|
:allowed_values,
|
|
21327
21548
|
:is_modifiable,
|
|
21328
21549
|
:is_collection)
|
|
21329
|
-
SENSITIVE = []
|
|
21550
|
+
SENSITIVE = [:value]
|
|
21330
21551
|
include Aws::Structure
|
|
21331
21552
|
end
|
|
21332
21553
|
|
|
@@ -21403,6 +21624,10 @@ module Aws::RDS
|
|
|
21403
21624
|
# Indicates whether a DB instance supports provisioned IOPS.
|
|
21404
21625
|
# @return [Boolean]
|
|
21405
21626
|
#
|
|
21627
|
+
# @!attribute [rw] supports_storage_throughput
|
|
21628
|
+
# Indicates whether a DB instance supports storage throughput.
|
|
21629
|
+
# @return [Boolean]
|
|
21630
|
+
#
|
|
21406
21631
|
# @!attribute [rw] supports_enhanced_monitoring
|
|
21407
21632
|
# Indicates whether a DB instance supports Enhanced Monitoring at
|
|
21408
21633
|
# intervals from 1 to 60 seconds.
|
|
@@ -21441,6 +21666,24 @@ module Aws::RDS
|
|
|
21441
21666
|
# Maximum provisioned IOPS per GiB for a DB instance.
|
|
21442
21667
|
# @return [Float]
|
|
21443
21668
|
#
|
|
21669
|
+
# @!attribute [rw] min_storage_throughput_per_db_instance
|
|
21670
|
+
# Minimum storage throughput for a DB instance.
|
|
21671
|
+
# @return [Integer]
|
|
21672
|
+
#
|
|
21673
|
+
# @!attribute [rw] max_storage_throughput_per_db_instance
|
|
21674
|
+
# Maximum storage throughput for a DB instance.
|
|
21675
|
+
# @return [Integer]
|
|
21676
|
+
#
|
|
21677
|
+
# @!attribute [rw] min_storage_throughput_per_iops
|
|
21678
|
+
# Minimum storage throughput to provisioned IOPS ratio for a DB
|
|
21679
|
+
# instance.
|
|
21680
|
+
# @return [Float]
|
|
21681
|
+
#
|
|
21682
|
+
# @!attribute [rw] max_storage_throughput_per_iops
|
|
21683
|
+
# Maximum storage throughput to provisioned IOPS ratio for a DB
|
|
21684
|
+
# instance.
|
|
21685
|
+
# @return [Float]
|
|
21686
|
+
#
|
|
21444
21687
|
# @!attribute [rw] available_processor_features
|
|
21445
21688
|
# A list of the available processor features for the DB instance class
|
|
21446
21689
|
# of a DB instance.
|
|
@@ -21482,19 +21725,6 @@ module Aws::RDS
|
|
|
21482
21725
|
# specific combination of other DB engine attributes.
|
|
21483
21726
|
# @return [Boolean]
|
|
21484
21727
|
#
|
|
21485
|
-
# @!attribute [rw] supports_clusters
|
|
21486
|
-
# Indicates whether DB instances can be configured as a Multi-AZ DB
|
|
21487
|
-
# cluster.
|
|
21488
|
-
#
|
|
21489
|
-
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
|
21490
|
-
# deployments with two readable standby DB instances][1] in the
|
|
21491
|
-
# *Amazon RDS User Guide.*
|
|
21492
|
-
#
|
|
21493
|
-
#
|
|
21494
|
-
#
|
|
21495
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
|
21496
|
-
# @return [Boolean]
|
|
21497
|
-
#
|
|
21498
21728
|
# @!attribute [rw] supported_network_types
|
|
21499
21729
|
# The network types supported by the DB instance (`IPV4` or `DUAL`).
|
|
21500
21730
|
#
|
|
@@ -21509,27 +21739,18 @@ module Aws::RDS
|
|
|
21509
21739
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
21510
21740
|
# @return [Array<String>]
|
|
21511
21741
|
#
|
|
21512
|
-
# @!attribute [rw]
|
|
21513
|
-
# Indicates whether
|
|
21514
|
-
#
|
|
21742
|
+
# @!attribute [rw] supports_clusters
|
|
21743
|
+
# Indicates whether DB instances can be configured as a Multi-AZ DB
|
|
21744
|
+
# cluster.
|
|
21515
21745
|
#
|
|
21516
|
-
#
|
|
21517
|
-
#
|
|
21518
|
-
#
|
|
21746
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
|
21747
|
+
# deployments with two readable standby DB instances][1] in the
|
|
21748
|
+
# *Amazon RDS User Guide.*
|
|
21519
21749
|
#
|
|
21520
|
-
# @!attribute [rw] max_storage_throughput_per_db_instance
|
|
21521
|
-
# Maximum storage throughput for a DB instance.
|
|
21522
|
-
# @return [Integer]
|
|
21523
21750
|
#
|
|
21524
|
-
# @!attribute [rw] min_storage_throughput_per_iops
|
|
21525
|
-
# Minimum storage throughput to provisioned IOPS ratio for a DB
|
|
21526
|
-
# instance.
|
|
21527
|
-
# @return [Float]
|
|
21528
21751
|
#
|
|
21529
|
-
#
|
|
21530
|
-
#
|
|
21531
|
-
# instance.
|
|
21532
|
-
# @return [Float]
|
|
21752
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
|
21753
|
+
# @return [Boolean]
|
|
21533
21754
|
#
|
|
21534
21755
|
# @!attribute [rw] supports_dedicated_log_volume
|
|
21535
21756
|
# Indicates whether a DB instance supports using a dedicated log
|
|
@@ -21555,6 +21776,7 @@ module Aws::RDS
|
|
|
21555
21776
|
:supports_storage_encryption,
|
|
21556
21777
|
:storage_type,
|
|
21557
21778
|
:supports_iops,
|
|
21779
|
+
:supports_storage_throughput,
|
|
21558
21780
|
:supports_enhanced_monitoring,
|
|
21559
21781
|
:supports_iam_database_authentication,
|
|
21560
21782
|
:supports_performance_insights,
|
|
@@ -21564,6 +21786,10 @@ module Aws::RDS
|
|
|
21564
21786
|
:max_iops_per_db_instance,
|
|
21565
21787
|
:min_iops_per_gib,
|
|
21566
21788
|
:max_iops_per_gib,
|
|
21789
|
+
:min_storage_throughput_per_db_instance,
|
|
21790
|
+
:max_storage_throughput_per_db_instance,
|
|
21791
|
+
:min_storage_throughput_per_iops,
|
|
21792
|
+
:max_storage_throughput_per_iops,
|
|
21567
21793
|
:available_processor_features,
|
|
21568
21794
|
:supported_engine_modes,
|
|
21569
21795
|
:supports_storage_autoscaling,
|
|
@@ -21571,13 +21797,8 @@ module Aws::RDS
|
|
|
21571
21797
|
:outpost_capable,
|
|
21572
21798
|
:supported_activity_stream_modes,
|
|
21573
21799
|
:supports_global_databases,
|
|
21574
|
-
:supports_clusters,
|
|
21575
21800
|
:supported_network_types,
|
|
21576
|
-
:
|
|
21577
|
-
:min_storage_throughput_per_db_instance,
|
|
21578
|
-
:max_storage_throughput_per_db_instance,
|
|
21579
|
-
:min_storage_throughput_per_iops,
|
|
21580
|
-
:max_storage_throughput_per_iops,
|
|
21801
|
+
:supports_clusters,
|
|
21581
21802
|
:supports_dedicated_log_volume,
|
|
21582
21803
|
:supports_http_endpoint)
|
|
21583
21804
|
SENSITIVE = []
|
|
@@ -21869,6 +22090,10 @@ module Aws::RDS
|
|
|
21869
22090
|
# The Provisioned IOPS value for the DB instance.
|
|
21870
22091
|
# @return [Integer]
|
|
21871
22092
|
#
|
|
22093
|
+
# @!attribute [rw] storage_throughput
|
|
22094
|
+
# The storage throughput of the DB instance.
|
|
22095
|
+
# @return [Integer]
|
|
22096
|
+
#
|
|
21872
22097
|
# @!attribute [rw] db_instance_identifier
|
|
21873
22098
|
# The database identifier for the DB instance.
|
|
21874
22099
|
# @return [String]
|
|
@@ -21906,11 +22131,6 @@ module Aws::RDS
|
|
|
21906
22131
|
# DB instance class of the DB instance.
|
|
21907
22132
|
# @return [Array<Types::ProcessorFeature>]
|
|
21908
22133
|
#
|
|
21909
|
-
# @!attribute [rw] iam_database_authentication_enabled
|
|
21910
|
-
# Indicates whether mapping of Amazon Web Services Identity and Access
|
|
21911
|
-
# Management (IAM) accounts to database accounts is enabled.
|
|
21912
|
-
# @return [Boolean]
|
|
21913
|
-
#
|
|
21914
22134
|
# @!attribute [rw] automation_mode
|
|
21915
22135
|
# The automation mode of the RDS Custom DB instance: `full` or
|
|
21916
22136
|
# `all-paused`. If `full`, the DB instance automates monitoring and
|
|
@@ -21924,23 +22144,24 @@ module Aws::RDS
|
|
|
21924
22144
|
# (default). The maximum value is 1,440.
|
|
21925
22145
|
# @return [Time]
|
|
21926
22146
|
#
|
|
21927
|
-
# @!attribute [rw]
|
|
21928
|
-
#
|
|
21929
|
-
#
|
|
22147
|
+
# @!attribute [rw] multi_tenant
|
|
22148
|
+
# Indicates whether the DB instance will change to the multi-tenant
|
|
22149
|
+
# configuration (TRUE) or the single-tenant configuration (FALSE).
|
|
22150
|
+
# @return [Boolean]
|
|
21930
22151
|
#
|
|
21931
|
-
# @!attribute [rw]
|
|
21932
|
-
#
|
|
21933
|
-
#
|
|
22152
|
+
# @!attribute [rw] iam_database_authentication_enabled
|
|
22153
|
+
# Indicates whether mapping of Amazon Web Services Identity and Access
|
|
22154
|
+
# Management (IAM) accounts to database accounts is enabled.
|
|
22155
|
+
# @return [Boolean]
|
|
21934
22156
|
#
|
|
21935
22157
|
# @!attribute [rw] dedicated_log_volume
|
|
21936
22158
|
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
|
21937
22159
|
# enabled.>
|
|
21938
22160
|
# @return [Boolean]
|
|
21939
22161
|
#
|
|
21940
|
-
# @!attribute [rw]
|
|
21941
|
-
#
|
|
21942
|
-
#
|
|
21943
|
-
# @return [Boolean]
|
|
22162
|
+
# @!attribute [rw] engine
|
|
22163
|
+
# The database engine of the DB instance.
|
|
22164
|
+
# @return [String]
|
|
21944
22165
|
#
|
|
21945
22166
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PendingModifiedValues AWS API Documentation
|
|
21946
22167
|
#
|
|
@@ -21954,20 +22175,20 @@ module Aws::RDS
|
|
|
21954
22175
|
:engine_version,
|
|
21955
22176
|
:license_model,
|
|
21956
22177
|
:iops,
|
|
22178
|
+
:storage_throughput,
|
|
21957
22179
|
:db_instance_identifier,
|
|
21958
22180
|
:storage_type,
|
|
21959
22181
|
:ca_certificate_identifier,
|
|
21960
22182
|
:db_subnet_group_name,
|
|
21961
22183
|
:pending_cloudwatch_logs_exports,
|
|
21962
22184
|
:processor_features,
|
|
21963
|
-
:iam_database_authentication_enabled,
|
|
21964
22185
|
:automation_mode,
|
|
21965
22186
|
:resume_full_automation_mode_time,
|
|
21966
|
-
:
|
|
21967
|
-
:
|
|
22187
|
+
:multi_tenant,
|
|
22188
|
+
:iam_database_authentication_enabled,
|
|
21968
22189
|
:dedicated_log_volume,
|
|
21969
|
-
:
|
|
21970
|
-
SENSITIVE = []
|
|
22190
|
+
:engine)
|
|
22191
|
+
SENSITIVE = [:master_user_password]
|
|
21971
22192
|
include Aws::Structure
|
|
21972
22193
|
end
|
|
21973
22194
|
|
|
@@ -23557,17 +23778,15 @@ module Aws::RDS
|
|
|
23557
23778
|
# the Directory Service.
|
|
23558
23779
|
# @return [String]
|
|
23559
23780
|
#
|
|
23560
|
-
# @!attribute [rw]
|
|
23561
|
-
#
|
|
23562
|
-
# cluster.
|
|
23563
|
-
#
|
|
23564
|
-
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
|
23565
|
-
# the *Amazon Aurora User Guide*.
|
|
23781
|
+
# @!attribute [rw] storage_type
|
|
23782
|
+
# Specifies the storage type to be associated with the DB cluster.
|
|
23566
23783
|
#
|
|
23784
|
+
# Valid Values: `aurora`, `aurora-iopt1`
|
|
23567
23785
|
#
|
|
23786
|
+
# Default: `aurora`
|
|
23568
23787
|
#
|
|
23569
|
-
#
|
|
23570
|
-
# @return [
|
|
23788
|
+
# Valid for: Aurora DB clusters only
|
|
23789
|
+
# @return [String]
|
|
23571
23790
|
#
|
|
23572
23791
|
# @!attribute [rw] network_type
|
|
23573
23792
|
# The network type of the DB cluster.
|
|
@@ -23590,6 +23809,18 @@ module Aws::RDS
|
|
|
23590
23809
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
23591
23810
|
# @return [String]
|
|
23592
23811
|
#
|
|
23812
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
|
23813
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
|
23814
|
+
# cluster.
|
|
23815
|
+
#
|
|
23816
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
|
23817
|
+
# the *Amazon Aurora User Guide*.
|
|
23818
|
+
#
|
|
23819
|
+
#
|
|
23820
|
+
#
|
|
23821
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
23822
|
+
# @return [Types::ServerlessV2ScalingConfiguration]
|
|
23823
|
+
#
|
|
23593
23824
|
# @!attribute [rw] manage_master_user_password
|
|
23594
23825
|
# Specifies whether to manage the master user password with Amazon Web
|
|
23595
23826
|
# Services Secrets Manager.
|
|
@@ -23636,16 +23867,6 @@ module Aws::RDS
|
|
|
23636
23867
|
# each Amazon Web Services Region.
|
|
23637
23868
|
# @return [String]
|
|
23638
23869
|
#
|
|
23639
|
-
# @!attribute [rw] storage_type
|
|
23640
|
-
# Specifies the storage type to be associated with the DB cluster.
|
|
23641
|
-
#
|
|
23642
|
-
# Valid Values: `aurora`, `aurora-iopt1`
|
|
23643
|
-
#
|
|
23644
|
-
# Default: `aurora`
|
|
23645
|
-
#
|
|
23646
|
-
# Valid for: Aurora DB clusters only
|
|
23647
|
-
# @return [String]
|
|
23648
|
-
#
|
|
23649
23870
|
# @!attribute [rw] engine_lifecycle_support
|
|
23650
23871
|
# The life cycle type for this DB cluster.
|
|
23651
23872
|
#
|
|
@@ -23719,13 +23940,13 @@ module Aws::RDS
|
|
|
23719
23940
|
:copy_tags_to_snapshot,
|
|
23720
23941
|
:domain,
|
|
23721
23942
|
:domain_iam_role_name,
|
|
23722
|
-
:
|
|
23943
|
+
:storage_type,
|
|
23723
23944
|
:network_type,
|
|
23945
|
+
:serverless_v2_scaling_configuration,
|
|
23724
23946
|
:manage_master_user_password,
|
|
23725
23947
|
:master_user_secret_kms_key_id,
|
|
23726
|
-
:storage_type,
|
|
23727
23948
|
:engine_lifecycle_support)
|
|
23728
|
-
SENSITIVE = []
|
|
23949
|
+
SENSITIVE = [:master_user_password]
|
|
23729
23950
|
include Aws::Structure
|
|
23730
23951
|
end
|
|
23731
23952
|
|
|
@@ -24189,18 +24410,6 @@ module Aws::RDS
|
|
|
24189
24410
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
24190
24411
|
# @return [Boolean]
|
|
24191
24412
|
#
|
|
24192
|
-
# @!attribute [rw] serverless_v2_scaling_configuration
|
|
24193
|
-
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
|
24194
|
-
# cluster.
|
|
24195
|
-
#
|
|
24196
|
-
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
|
24197
|
-
# the *Amazon Aurora User Guide*.
|
|
24198
|
-
#
|
|
24199
|
-
#
|
|
24200
|
-
#
|
|
24201
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
24202
|
-
# @return [Types::ServerlessV2ScalingConfiguration]
|
|
24203
|
-
#
|
|
24204
24413
|
# @!attribute [rw] network_type
|
|
24205
24414
|
# The network type of the DB cluster.
|
|
24206
24415
|
#
|
|
@@ -24224,6 +24433,18 @@ module Aws::RDS
|
|
|
24224
24433
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
24225
24434
|
# @return [String]
|
|
24226
24435
|
#
|
|
24436
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
|
24437
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
|
24438
|
+
# cluster.
|
|
24439
|
+
#
|
|
24440
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
|
24441
|
+
# the *Amazon Aurora User Guide*.
|
|
24442
|
+
#
|
|
24443
|
+
#
|
|
24444
|
+
#
|
|
24445
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
24446
|
+
# @return [Types::ServerlessV2ScalingConfiguration]
|
|
24447
|
+
#
|
|
24227
24448
|
# @!attribute [rw] rds_custom_cluster_configuration
|
|
24228
24449
|
# Reserved for future use.
|
|
24229
24450
|
# @return [Types::RdsCustomClusterConfiguration]
|
|
@@ -24356,8 +24577,8 @@ module Aws::RDS
|
|
|
24356
24577
|
:storage_type,
|
|
24357
24578
|
:iops,
|
|
24358
24579
|
:publicly_accessible,
|
|
24359
|
-
:serverless_v2_scaling_configuration,
|
|
24360
24580
|
:network_type,
|
|
24581
|
+
:serverless_v2_scaling_configuration,
|
|
24361
24582
|
:rds_custom_cluster_configuration,
|
|
24362
24583
|
:monitoring_interval,
|
|
24363
24584
|
:monitoring_role_arn,
|
|
@@ -24696,26 +24917,6 @@ module Aws::RDS
|
|
|
24696
24917
|
# Valid for: Aurora DB clusters only
|
|
24697
24918
|
# @return [String]
|
|
24698
24919
|
#
|
|
24699
|
-
# @!attribute [rw] scaling_configuration
|
|
24700
|
-
# For DB clusters in `serverless` DB engine mode, the scaling
|
|
24701
|
-
# properties of the DB cluster.
|
|
24702
|
-
#
|
|
24703
|
-
# Valid for: Aurora DB clusters only
|
|
24704
|
-
# @return [Types::ScalingConfiguration]
|
|
24705
|
-
#
|
|
24706
|
-
# @!attribute [rw] engine_mode
|
|
24707
|
-
# The engine mode of the new cluster. Specify `provisioned` or
|
|
24708
|
-
# `serverless`, depending on the type of the cluster you are creating.
|
|
24709
|
-
# You can create an Aurora Serverless v1 clone from a provisioned
|
|
24710
|
-
# cluster, or a provisioned clone from an Aurora Serverless v1
|
|
24711
|
-
# cluster. To create a clone that is an Aurora Serverless v1 cluster,
|
|
24712
|
-
# the original cluster must be an Aurora Serverless v1 cluster or an
|
|
24713
|
-
# encrypted provisioned cluster. To create a full copy that is an
|
|
24714
|
-
# Aurora Serverless v1 cluster, specify the engine mode `serverless`.
|
|
24715
|
-
#
|
|
24716
|
-
# Valid for: Aurora DB clusters only
|
|
24717
|
-
# @return [String]
|
|
24718
|
-
#
|
|
24719
24920
|
# @!attribute [rw] db_cluster_instance_class
|
|
24720
24921
|
# The compute and memory capacity of the each DB instance in the
|
|
24721
24922
|
# Multi-AZ DB cluster, for example db.m6gd.xlarge. Not all DB instance
|
|
@@ -24802,43 +25003,63 @@ module Aws::RDS
|
|
|
24802
25003
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
|
24803
25004
|
# @return [Integer]
|
|
24804
25005
|
#
|
|
24805
|
-
# @!attribute [rw]
|
|
24806
|
-
#
|
|
24807
|
-
# cluster.
|
|
25006
|
+
# @!attribute [rw] network_type
|
|
25007
|
+
# The network type of the DB cluster.
|
|
24808
25008
|
#
|
|
24809
|
-
#
|
|
24810
|
-
# the *Amazon Aurora User Guide*.
|
|
25009
|
+
# Valid Values:
|
|
24811
25010
|
#
|
|
25011
|
+
# * `IPV4`
|
|
24812
25012
|
#
|
|
25013
|
+
# * `DUAL`
|
|
24813
25014
|
#
|
|
24814
|
-
#
|
|
24815
|
-
#
|
|
25015
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
25016
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
|
25017
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
24816
25018
|
#
|
|
24817
|
-
#
|
|
24818
|
-
#
|
|
25019
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
|
25020
|
+
# in the *Amazon Aurora User Guide.*
|
|
24819
25021
|
#
|
|
24820
|
-
# Valid
|
|
25022
|
+
# Valid for: Aurora DB clusters only
|
|
25023
|
+
#
|
|
25024
|
+
#
|
|
25025
|
+
#
|
|
25026
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
25027
|
+
# @return [String]
|
|
25028
|
+
#
|
|
25029
|
+
# @!attribute [rw] source_db_cluster_resource_id
|
|
25030
|
+
# The resource ID of the source DB cluster from which to restore.
|
|
25031
|
+
# @return [String]
|
|
25032
|
+
#
|
|
25033
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
|
25034
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
|
25035
|
+
# cluster.
|
|
25036
|
+
#
|
|
25037
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
|
25038
|
+
# the *Amazon Aurora User Guide*.
|
|
24821
25039
|
#
|
|
24822
|
-
# * `IPV4`
|
|
24823
25040
|
#
|
|
24824
|
-
# * `DUAL`
|
|
24825
25041
|
#
|
|
24826
|
-
#
|
|
24827
|
-
#
|
|
24828
|
-
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
25042
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
25043
|
+
# @return [Types::ServerlessV2ScalingConfiguration]
|
|
24829
25044
|
#
|
|
24830
|
-
#
|
|
24831
|
-
# in
|
|
25045
|
+
# @!attribute [rw] scaling_configuration
|
|
25046
|
+
# For DB clusters in `serverless` DB engine mode, the scaling
|
|
25047
|
+
# properties of the DB cluster.
|
|
24832
25048
|
#
|
|
24833
25049
|
# Valid for: Aurora DB clusters only
|
|
25050
|
+
# @return [Types::ScalingConfiguration]
|
|
24834
25051
|
#
|
|
25052
|
+
# @!attribute [rw] engine_mode
|
|
25053
|
+
# The engine mode of the new cluster. Specify `provisioned` or
|
|
25054
|
+
# `serverless`, depending on the type of the cluster you are creating.
|
|
25055
|
+
# You can create an Aurora Serverless v1 clone from a provisioned
|
|
25056
|
+
# cluster, or a provisioned clone from an Aurora Serverless v1
|
|
25057
|
+
# cluster. To create a clone that is an Aurora Serverless v1 cluster,
|
|
25058
|
+
# the original cluster must be an Aurora Serverless v1 cluster or an
|
|
25059
|
+
# encrypted provisioned cluster. To create a full copy that is an
|
|
25060
|
+
# Aurora Serverless v1 cluster, specify the engine mode `serverless`.
|
|
24835
25061
|
#
|
|
24836
|
-
#
|
|
24837
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
24838
|
-
# @return [String]
|
|
24839
|
-
#
|
|
24840
|
-
# @!attribute [rw] source_db_cluster_resource_id
|
|
24841
|
-
# The resource ID of the source DB cluster from which to restore.
|
|
25062
|
+
# Valid for: Aurora DB clusters only
|
|
24842
25063
|
# @return [String]
|
|
24843
25064
|
#
|
|
24844
25065
|
# @!attribute [rw] rds_custom_cluster_configuration
|
|
@@ -24966,15 +25187,15 @@ module Aws::RDS
|
|
|
24966
25187
|
:copy_tags_to_snapshot,
|
|
24967
25188
|
:domain,
|
|
24968
25189
|
:domain_iam_role_name,
|
|
24969
|
-
:scaling_configuration,
|
|
24970
|
-
:engine_mode,
|
|
24971
25190
|
:db_cluster_instance_class,
|
|
24972
25191
|
:storage_type,
|
|
24973
25192
|
:publicly_accessible,
|
|
24974
25193
|
:iops,
|
|
24975
|
-
:serverless_v2_scaling_configuration,
|
|
24976
25194
|
:network_type,
|
|
24977
25195
|
:source_db_cluster_resource_id,
|
|
25196
|
+
:serverless_v2_scaling_configuration,
|
|
25197
|
+
:scaling_configuration,
|
|
25198
|
+
:engine_mode,
|
|
24978
25199
|
:rds_custom_cluster_configuration,
|
|
24979
25200
|
:monitoring_interval,
|
|
24980
25201
|
:monitoring_role_arn,
|
|
@@ -25247,6 +25468,12 @@ module Aws::RDS
|
|
|
25247
25468
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
|
25248
25469
|
# @return [Integer]
|
|
25249
25470
|
#
|
|
25471
|
+
# @!attribute [rw] storage_throughput
|
|
25472
|
+
# Specifies the storage throughput value for the DB instance.
|
|
25473
|
+
#
|
|
25474
|
+
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
|
25475
|
+
# @return [Integer]
|
|
25476
|
+
#
|
|
25250
25477
|
# @!attribute [rw] option_group_name
|
|
25251
25478
|
# The name of the option group to be used for the restored DB
|
|
25252
25479
|
# instance.
|
|
@@ -25503,27 +25730,25 @@ module Aws::RDS
|
|
|
25503
25730
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
|
25504
25731
|
# @return [Boolean]
|
|
25505
25732
|
#
|
|
25506
|
-
# @!attribute [rw]
|
|
25507
|
-
# The
|
|
25508
|
-
# instance of an RDS Custom DB instance. The instance profile must
|
|
25509
|
-
# meet the following requirements:
|
|
25733
|
+
# @!attribute [rw] network_type
|
|
25734
|
+
# The network type of the DB instance.
|
|
25510
25735
|
#
|
|
25511
|
-
#
|
|
25736
|
+
# Valid Values:
|
|
25512
25737
|
#
|
|
25513
|
-
# *
|
|
25514
|
-
# to assume.
|
|
25738
|
+
# * `IPV4`
|
|
25515
25739
|
#
|
|
25516
|
-
# *
|
|
25517
|
-
# start with the prefix `AWSRDSCustom`.
|
|
25740
|
+
# * `DUAL`
|
|
25518
25741
|
#
|
|
25519
|
-
#
|
|
25520
|
-
#
|
|
25742
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
25743
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
|
25744
|
+
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
25521
25745
|
#
|
|
25522
|
-
#
|
|
25746
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
|
25747
|
+
# in the *Amazon RDS User Guide.*
|
|
25523
25748
|
#
|
|
25524
25749
|
#
|
|
25525
25750
|
#
|
|
25526
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
|
25751
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
25527
25752
|
# @return [String]
|
|
25528
25753
|
#
|
|
25529
25754
|
# @!attribute [rw] backup_target
|
|
@@ -25542,31 +25767,41 @@ module Aws::RDS
|
|
|
25542
25767
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
|
25543
25768
|
# @return [String]
|
|
25544
25769
|
#
|
|
25545
|
-
# @!attribute [rw]
|
|
25546
|
-
# The
|
|
25770
|
+
# @!attribute [rw] custom_iam_instance_profile
|
|
25771
|
+
# The instance profile associated with the underlying Amazon EC2
|
|
25772
|
+
# instance of an RDS Custom DB instance. The instance profile must
|
|
25773
|
+
# meet the following requirements:
|
|
25547
25774
|
#
|
|
25548
|
-
#
|
|
25775
|
+
# * The profile must exist in your account.
|
|
25549
25776
|
#
|
|
25550
|
-
# *
|
|
25777
|
+
# * The profile must have an IAM role that Amazon EC2 has permissions
|
|
25778
|
+
# to assume.
|
|
25551
25779
|
#
|
|
25552
|
-
# *
|
|
25780
|
+
# * The instance profile name and the associated IAM role name must
|
|
25781
|
+
# start with the prefix `AWSRDSCustom`.
|
|
25553
25782
|
#
|
|
25554
|
-
#
|
|
25555
|
-
#
|
|
25556
|
-
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
25783
|
+
# For the list of permissions required for the IAM role, see [
|
|
25784
|
+
# Configure IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
|
25557
25785
|
#
|
|
25558
|
-
#
|
|
25559
|
-
# in the *Amazon RDS User Guide.*
|
|
25786
|
+
# This setting is required for RDS Custom.
|
|
25560
25787
|
#
|
|
25561
25788
|
#
|
|
25562
25789
|
#
|
|
25563
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
|
25790
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
|
25564
25791
|
# @return [String]
|
|
25565
25792
|
#
|
|
25566
|
-
# @!attribute [rw]
|
|
25567
|
-
#
|
|
25793
|
+
# @!attribute [rw] allocated_storage
|
|
25794
|
+
# The amount of storage (in gibibytes) to allocate initially for the
|
|
25795
|
+
# DB instance. Follow the allocation rules specified in
|
|
25796
|
+
# CreateDBInstance.
|
|
25568
25797
|
#
|
|
25569
|
-
# This setting
|
|
25798
|
+
# This setting isn't valid for RDS for SQL Server.
|
|
25799
|
+
#
|
|
25800
|
+
# <note markdown="1"> Be sure to allocate enough storage for your new DB instance so that
|
|
25801
|
+
# the restore operation can succeed. You can also allocate additional
|
|
25802
|
+
# storage for future growth.
|
|
25803
|
+
#
|
|
25804
|
+
# </note>
|
|
25570
25805
|
# @return [Integer]
|
|
25571
25806
|
#
|
|
25572
25807
|
# @!attribute [rw] db_cluster_snapshot_identifier
|
|
@@ -25595,20 +25830,6 @@ module Aws::RDS
|
|
|
25595
25830
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
|
25596
25831
|
# @return [String]
|
|
25597
25832
|
#
|
|
25598
|
-
# @!attribute [rw] allocated_storage
|
|
25599
|
-
# The amount of storage (in gibibytes) to allocate initially for the
|
|
25600
|
-
# DB instance. Follow the allocation rules specified in
|
|
25601
|
-
# CreateDBInstance.
|
|
25602
|
-
#
|
|
25603
|
-
# This setting isn't valid for RDS for SQL Server.
|
|
25604
|
-
#
|
|
25605
|
-
# <note markdown="1"> Be sure to allocate enough storage for your new DB instance so that
|
|
25606
|
-
# the restore operation can succeed. You can also allocate additional
|
|
25607
|
-
# storage for future growth.
|
|
25608
|
-
#
|
|
25609
|
-
# </note>
|
|
25610
|
-
# @return [Integer]
|
|
25611
|
-
#
|
|
25612
25833
|
# @!attribute [rw] dedicated_log_volume
|
|
25613
25834
|
# Specifies whether to enable a dedicated log volume (DLV) for the DB
|
|
25614
25835
|
# instance.
|
|
@@ -25724,6 +25945,7 @@ module Aws::RDS
|
|
|
25724
25945
|
:db_name,
|
|
25725
25946
|
:engine,
|
|
25726
25947
|
:iops,
|
|
25948
|
+
:storage_throughput,
|
|
25727
25949
|
:option_group_name,
|
|
25728
25950
|
:tags,
|
|
25729
25951
|
:storage_type,
|
|
@@ -25744,18 +25966,17 @@ module Aws::RDS
|
|
|
25744
25966
|
:db_parameter_group_name,
|
|
25745
25967
|
:deletion_protection,
|
|
25746
25968
|
:enable_customer_owned_ip,
|
|
25747
|
-
:custom_iam_instance_profile,
|
|
25748
|
-
:backup_target,
|
|
25749
25969
|
:network_type,
|
|
25750
|
-
:
|
|
25751
|
-
:
|
|
25970
|
+
:backup_target,
|
|
25971
|
+
:custom_iam_instance_profile,
|
|
25752
25972
|
:allocated_storage,
|
|
25973
|
+
:db_cluster_snapshot_identifier,
|
|
25753
25974
|
:dedicated_log_volume,
|
|
25754
25975
|
:ca_certificate_identifier,
|
|
25755
25976
|
:engine_lifecycle_support,
|
|
25756
25977
|
:manage_master_user_password,
|
|
25757
25978
|
:master_user_secret_kms_key_id)
|
|
25758
|
-
SENSITIVE = []
|
|
25979
|
+
SENSITIVE = [:tde_credential_password]
|
|
25759
25980
|
include Aws::Structure
|
|
25760
25981
|
end
|
|
25761
25982
|
|
|
@@ -26021,6 +26242,12 @@ module Aws::RDS
|
|
|
26021
26242
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
|
26022
26243
|
# @return [Integer]
|
|
26023
26244
|
#
|
|
26245
|
+
# @!attribute [rw] storage_throughput
|
|
26246
|
+
# Specifies the storage throughput value for the DB instance.
|
|
26247
|
+
#
|
|
26248
|
+
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
|
26249
|
+
# @return [Integer]
|
|
26250
|
+
#
|
|
26024
26251
|
# @!attribute [rw] option_group_name
|
|
26025
26252
|
# The name of the option group to associate with this DB instance. If
|
|
26026
26253
|
# this argument is omitted, the default option group for the specified
|
|
@@ -26293,12 +26520,6 @@ module Aws::RDS
|
|
|
26293
26520
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
26294
26521
|
# @return [String]
|
|
26295
26522
|
#
|
|
26296
|
-
# @!attribute [rw] storage_throughput
|
|
26297
|
-
# Specifies the storage throughput value for the DB instance.
|
|
26298
|
-
#
|
|
26299
|
-
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
|
26300
|
-
# @return [Integer]
|
|
26301
|
-
#
|
|
26302
26523
|
# @!attribute [rw] manage_master_user_password
|
|
26303
26524
|
# Specifies whether to manage the master user password with Amazon Web
|
|
26304
26525
|
# Services Secrets Manager.
|
|
@@ -26423,6 +26644,7 @@ module Aws::RDS
|
|
|
26423
26644
|
:auto_minor_version_upgrade,
|
|
26424
26645
|
:license_model,
|
|
26425
26646
|
:iops,
|
|
26647
|
+
:storage_throughput,
|
|
26426
26648
|
:option_group_name,
|
|
26427
26649
|
:publicly_accessible,
|
|
26428
26650
|
:tags,
|
|
@@ -26448,13 +26670,12 @@ module Aws::RDS
|
|
|
26448
26670
|
:deletion_protection,
|
|
26449
26671
|
:max_allocated_storage,
|
|
26450
26672
|
:network_type,
|
|
26451
|
-
:storage_throughput,
|
|
26452
26673
|
:manage_master_user_password,
|
|
26453
26674
|
:master_user_secret_kms_key_id,
|
|
26454
26675
|
:dedicated_log_volume,
|
|
26455
26676
|
:ca_certificate_identifier,
|
|
26456
26677
|
:engine_lifecycle_support)
|
|
26457
|
-
SENSITIVE = []
|
|
26678
|
+
SENSITIVE = [:master_user_password]
|
|
26458
26679
|
include Aws::Structure
|
|
26459
26680
|
end
|
|
26460
26681
|
|
|
@@ -26730,6 +26951,12 @@ module Aws::RDS
|
|
|
26730
26951
|
# ^
|
|
26731
26952
|
# @return [Integer]
|
|
26732
26953
|
#
|
|
26954
|
+
# @!attribute [rw] storage_throughput
|
|
26955
|
+
# The storage throughput value for the DB instance.
|
|
26956
|
+
#
|
|
26957
|
+
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
|
26958
|
+
# @return [Integer]
|
|
26959
|
+
#
|
|
26733
26960
|
# @!attribute [rw] option_group_name
|
|
26734
26961
|
# The name of the option group to use for the restored DB instance.
|
|
26735
26962
|
#
|
|
@@ -26970,14 +27197,6 @@ module Aws::RDS
|
|
|
26970
27197
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
|
26971
27198
|
# @return [Integer]
|
|
26972
27199
|
#
|
|
26973
|
-
# @!attribute [rw] source_db_instance_automated_backups_arn
|
|
26974
|
-
# The Amazon Resource Name (ARN) of the replicated automated backups
|
|
26975
|
-
# from which to restore, for example,
|
|
26976
|
-
# `arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE`.
|
|
26977
|
-
#
|
|
26978
|
-
# This setting doesn't apply to RDS Custom.
|
|
26979
|
-
# @return [String]
|
|
26980
|
-
#
|
|
26981
27200
|
# @!attribute [rw] enable_customer_owned_ip
|
|
26982
27201
|
# Specifies whether to enable a customer-owned IP address (CoIP) for
|
|
26983
27202
|
# an RDS on Outposts DB instance.
|
|
@@ -27003,27 +27222,33 @@ module Aws::RDS
|
|
|
27003
27222
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
|
27004
27223
|
# @return [Boolean]
|
|
27005
27224
|
#
|
|
27006
|
-
# @!attribute [rw]
|
|
27007
|
-
# The
|
|
27008
|
-
# instance of an RDS Custom DB instance. The instance profile must
|
|
27009
|
-
# meet the following requirements:
|
|
27225
|
+
# @!attribute [rw] network_type
|
|
27226
|
+
# The network type of the DB instance.
|
|
27010
27227
|
#
|
|
27011
|
-
#
|
|
27228
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
27229
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
|
27230
|
+
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
27012
27231
|
#
|
|
27013
|
-
#
|
|
27014
|
-
#
|
|
27232
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
|
27233
|
+
# in the *Amazon RDS User Guide.*
|
|
27015
27234
|
#
|
|
27016
|
-
#
|
|
27017
|
-
# start with the prefix `AWSRDSCustom`.
|
|
27235
|
+
# Valid Values:
|
|
27018
27236
|
#
|
|
27019
|
-
#
|
|
27020
|
-
# Configure IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
|
27237
|
+
# * `IPV4`
|
|
27021
27238
|
#
|
|
27022
|
-
#
|
|
27239
|
+
# * `DUAL`
|
|
27023
27240
|
#
|
|
27024
27241
|
#
|
|
27025
27242
|
#
|
|
27026
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
|
27243
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
27244
|
+
# @return [String]
|
|
27245
|
+
#
|
|
27246
|
+
# @!attribute [rw] source_db_instance_automated_backups_arn
|
|
27247
|
+
# The Amazon Resource Name (ARN) of the replicated automated backups
|
|
27248
|
+
# from which to restore, for example,
|
|
27249
|
+
# `arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE`.
|
|
27250
|
+
#
|
|
27251
|
+
# This setting doesn't apply to RDS Custom.
|
|
27027
27252
|
# @return [String]
|
|
27028
27253
|
#
|
|
27029
27254
|
# @!attribute [rw] backup_target
|
|
@@ -27048,33 +27273,29 @@ module Aws::RDS
|
|
|
27048
27273
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
|
27049
27274
|
# @return [String]
|
|
27050
27275
|
#
|
|
27051
|
-
# @!attribute [rw]
|
|
27052
|
-
# The
|
|
27276
|
+
# @!attribute [rw] custom_iam_instance_profile
|
|
27277
|
+
# The instance profile associated with the underlying Amazon EC2
|
|
27278
|
+
# instance of an RDS Custom DB instance. The instance profile must
|
|
27279
|
+
# meet the following requirements:
|
|
27053
27280
|
#
|
|
27054
|
-
# The
|
|
27055
|
-
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
|
27056
|
-
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
27281
|
+
# * The profile must exist in your account.
|
|
27057
27282
|
#
|
|
27058
|
-
#
|
|
27059
|
-
#
|
|
27283
|
+
# * The profile must have an IAM role that Amazon EC2 has permissions
|
|
27284
|
+
# to assume.
|
|
27060
27285
|
#
|
|
27061
|
-
#
|
|
27286
|
+
# * The instance profile name and the associated IAM role name must
|
|
27287
|
+
# start with the prefix `AWSRDSCustom`.
|
|
27062
27288
|
#
|
|
27063
|
-
#
|
|
27289
|
+
# For the list of permissions required for the IAM role, see [
|
|
27290
|
+
# Configure IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
|
27064
27291
|
#
|
|
27065
|
-
#
|
|
27292
|
+
# This setting is required for RDS Custom.
|
|
27066
27293
|
#
|
|
27067
27294
|
#
|
|
27068
27295
|
#
|
|
27069
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
|
27296
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
|
27070
27297
|
# @return [String]
|
|
27071
27298
|
#
|
|
27072
|
-
# @!attribute [rw] storage_throughput
|
|
27073
|
-
# The storage throughput value for the DB instance.
|
|
27074
|
-
#
|
|
27075
|
-
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
|
27076
|
-
# @return [Integer]
|
|
27077
|
-
#
|
|
27078
27299
|
# @!attribute [rw] allocated_storage
|
|
27079
27300
|
# The amount of storage (in gibibytes) to allocate initially for the
|
|
27080
27301
|
# DB instance. Follow the allocation rules specified in
|
|
@@ -27206,6 +27427,7 @@ module Aws::RDS
|
|
|
27206
27427
|
:db_name,
|
|
27207
27428
|
:engine,
|
|
27208
27429
|
:iops,
|
|
27430
|
+
:storage_throughput,
|
|
27209
27431
|
:option_group_name,
|
|
27210
27432
|
:copy_tags_to_snapshot,
|
|
27211
27433
|
:tags,
|
|
@@ -27227,19 +27449,18 @@ module Aws::RDS
|
|
|
27227
27449
|
:deletion_protection,
|
|
27228
27450
|
:source_dbi_resource_id,
|
|
27229
27451
|
:max_allocated_storage,
|
|
27230
|
-
:source_db_instance_automated_backups_arn,
|
|
27231
27452
|
:enable_customer_owned_ip,
|
|
27232
|
-
:custom_iam_instance_profile,
|
|
27233
|
-
:backup_target,
|
|
27234
27453
|
:network_type,
|
|
27235
|
-
:
|
|
27454
|
+
:source_db_instance_automated_backups_arn,
|
|
27455
|
+
:backup_target,
|
|
27456
|
+
:custom_iam_instance_profile,
|
|
27236
27457
|
:allocated_storage,
|
|
27237
27458
|
:dedicated_log_volume,
|
|
27238
27459
|
:ca_certificate_identifier,
|
|
27239
27460
|
:engine_lifecycle_support,
|
|
27240
27461
|
:manage_master_user_password,
|
|
27241
27462
|
:master_user_secret_kms_key_id)
|
|
27242
|
-
SENSITIVE = []
|
|
27463
|
+
SENSITIVE = [:tde_credential_password]
|
|
27243
27464
|
include Aws::Structure
|
|
27244
27465
|
end
|
|
27245
27466
|
|
|
@@ -27819,17 +28040,17 @@ module Aws::RDS
|
|
|
27819
28040
|
# The mode of the database activity stream.
|
|
27820
28041
|
# @return [String]
|
|
27821
28042
|
#
|
|
28043
|
+
# @!attribute [rw] engine_native_audit_fields_included
|
|
28044
|
+
# Indicates whether engine-native audit fields are included in the
|
|
28045
|
+
# database activity stream.
|
|
28046
|
+
# @return [Boolean]
|
|
28047
|
+
#
|
|
27822
28048
|
# @!attribute [rw] apply_immediately
|
|
27823
28049
|
# Indicates whether or not the database activity stream will start as
|
|
27824
28050
|
# soon as possible, regardless of the maintenance window for the
|
|
27825
28051
|
# database.
|
|
27826
28052
|
# @return [Boolean]
|
|
27827
28053
|
#
|
|
27828
|
-
# @!attribute [rw] engine_native_audit_fields_included
|
|
27829
|
-
# Indicates whether engine-native audit fields are included in the
|
|
27830
|
-
# database activity stream.
|
|
27831
|
-
# @return [Boolean]
|
|
27832
|
-
#
|
|
27833
28054
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartActivityStreamResponse AWS API Documentation
|
|
27834
28055
|
#
|
|
27835
28056
|
class StartActivityStreamResponse < Struct.new(
|
|
@@ -27837,8 +28058,8 @@ module Aws::RDS
|
|
|
27837
28058
|
:kinesis_stream_name,
|
|
27838
28059
|
:status,
|
|
27839
28060
|
:mode,
|
|
27840
|
-
:
|
|
27841
|
-
:
|
|
28061
|
+
:engine_native_audit_fields_included,
|
|
28062
|
+
:apply_immediately)
|
|
27842
28063
|
SENSITIVE = []
|
|
27843
28064
|
include Aws::Structure
|
|
27844
28065
|
end
|
|
@@ -27958,7 +28179,7 @@ module Aws::RDS
|
|
|
27958
28179
|
:kms_key_id,
|
|
27959
28180
|
:pre_signed_url,
|
|
27960
28181
|
:source_region)
|
|
27961
|
-
SENSITIVE = []
|
|
28182
|
+
SENSITIVE = [:pre_signed_url]
|
|
27962
28183
|
include Aws::Structure
|
|
27963
28184
|
end
|
|
27964
28185
|
|
|
@@ -29108,11 +29329,6 @@ module Aws::RDS
|
|
|
29108
29329
|
# be between 3 and 10 times storage.
|
|
29109
29330
|
# @return [Array<Types::DoubleRange>]
|
|
29110
29331
|
#
|
|
29111
|
-
# @!attribute [rw] supports_storage_autoscaling
|
|
29112
|
-
# Indicates whether or not Amazon RDS can automatically scale storage
|
|
29113
|
-
# for DB instances that use the new instance class.
|
|
29114
|
-
# @return [Boolean]
|
|
29115
|
-
#
|
|
29116
29332
|
# @!attribute [rw] provisioned_storage_throughput
|
|
29117
29333
|
# The valid range of provisioned storage throughput. For example,
|
|
29118
29334
|
# 500-4,000 mebibytes per second (MiBps).
|
|
@@ -29123,6 +29339,11 @@ module Aws::RDS
|
|
|
29123
29339
|
# For example, 0-0.25.
|
|
29124
29340
|
# @return [Array<Types::DoubleRange>]
|
|
29125
29341
|
#
|
|
29342
|
+
# @!attribute [rw] supports_storage_autoscaling
|
|
29343
|
+
# Indicates whether or not Amazon RDS can automatically scale storage
|
|
29344
|
+
# for DB instances that use the new instance class.
|
|
29345
|
+
# @return [Boolean]
|
|
29346
|
+
#
|
|
29126
29347
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ValidStorageOptions AWS API Documentation
|
|
29127
29348
|
#
|
|
29128
29349
|
class ValidStorageOptions < Struct.new(
|
|
@@ -29130,13 +29351,22 @@ module Aws::RDS
|
|
|
29130
29351
|
:storage_size,
|
|
29131
29352
|
:provisioned_iops,
|
|
29132
29353
|
:iops_to_storage_ratio,
|
|
29133
|
-
:supports_storage_autoscaling,
|
|
29134
29354
|
:provisioned_storage_throughput,
|
|
29135
|
-
:storage_throughput_to_iops_ratio
|
|
29355
|
+
:storage_throughput_to_iops_ratio,
|
|
29356
|
+
:supports_storage_autoscaling)
|
|
29136
29357
|
SENSITIVE = []
|
|
29137
29358
|
include Aws::Structure
|
|
29138
29359
|
end
|
|
29139
29360
|
|
|
29361
|
+
# The operation violates VPC encryption control settings. Make sure that
|
|
29362
|
+
# your DB instance type supports the Nitro encryption-in-transit
|
|
29363
|
+
# capability, or modify your VPC's encryption controls to not enforce
|
|
29364
|
+
# encryption-in-transit.
|
|
29365
|
+
#
|
|
29366
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/VpcEncryptionControlViolationException AWS API Documentation
|
|
29367
|
+
#
|
|
29368
|
+
class VpcEncryptionControlViolationException < Aws::EmptyStructure; end
|
|
29369
|
+
|
|
29140
29370
|
# This data type is used as a response element for queries on VPC
|
|
29141
29371
|
# security group membership.
|
|
29142
29372
|
#
|