aws-sdk-rds 1.293.0 → 1.295.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +1368 -1389
- data/lib/aws-sdk-rds/client_api.rb +202 -158
- data/lib/aws-sdk-rds/db_cluster.rb +340 -349
- 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 +300 -309
- 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/option_group.rb +1 -1
- data/lib/aws-sdk-rds/resource.rb +210 -228
- data/lib/aws-sdk-rds/types.rb +1040 -1061
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +100 -100
- data/sig/db_cluster.rbs +65 -65
- data/sig/db_cluster_snapshot.rbs +6 -6
- data/sig/db_engine_version.rbs +21 -21
- data/sig/db_instance.rbs +44 -44
- data/sig/db_snapshot.rbs +14 -14
- data/sig/event.rbs +1 -1
- data/sig/resource.rbs +21 -21
- data/sig/types.rbs +120 -120
- metadata +1 -1
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.
|
@@ -3241,6 +3229,12 @@ module Aws::RDS
|
|
3241
3229
|
:engine_mode,
|
3242
3230
|
:scaling_configuration,
|
3243
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,
|
3244
3238
|
:deletion_protection,
|
3245
3239
|
:global_cluster_identifier,
|
3246
3240
|
:enable_http_endpoint,
|
@@ -3248,12 +3242,8 @@ module Aws::RDS
|
|
3248
3242
|
:domain,
|
3249
3243
|
:domain_iam_role_name,
|
3250
3244
|
:enable_global_write_forwarding,
|
3251
|
-
:
|
3252
|
-
:
|
3253
|
-
:storage_type,
|
3254
|
-
:iops,
|
3255
|
-
:publicly_accessible,
|
3256
|
-
:auto_minor_version_upgrade,
|
3245
|
+
:network_type,
|
3246
|
+
:serverless_v2_scaling_configuration,
|
3257
3247
|
:monitoring_interval,
|
3258
3248
|
:monitoring_role_arn,
|
3259
3249
|
:database_insights_mode,
|
@@ -3261,18 +3251,16 @@ module Aws::RDS
|
|
3261
3251
|
:performance_insights_kms_key_id,
|
3262
3252
|
:performance_insights_retention_period,
|
3263
3253
|
:enable_limitless_database,
|
3264
|
-
:serverless_v2_scaling_configuration,
|
3265
|
-
:network_type,
|
3266
3254
|
:cluster_scalability_type,
|
3267
3255
|
:db_system_id,
|
3268
3256
|
:manage_master_user_password,
|
3269
|
-
:master_user_secret_kms_key_id,
|
3270
3257
|
:enable_local_write_forwarding,
|
3258
|
+
:master_user_secret_kms_key_id,
|
3271
3259
|
:ca_certificate_identifier,
|
3272
3260
|
:engine_lifecycle_support,
|
3273
3261
|
:master_user_authentication_type,
|
3274
3262
|
:source_region)
|
3275
|
-
SENSITIVE = []
|
3263
|
+
SENSITIVE = [:master_user_password, :pre_signed_url]
|
3276
3264
|
include Aws::Structure
|
3277
3265
|
end
|
3278
3266
|
|
@@ -4192,6 +4180,16 @@ module Aws::RDS
|
|
4192
4180
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html
|
4193
4181
|
# @return [Integer]
|
4194
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
|
+
#
|
4195
4193
|
# @!attribute [rw] option_group_name
|
4196
4194
|
# The option group to associate the DB instance with.
|
4197
4195
|
#
|
@@ -4228,36 +4226,27 @@ module Aws::RDS
|
|
4228
4226
|
#
|
4229
4227
|
# When the DB instance is publicly accessible and you connect from
|
4230
4228
|
# outside of the DB instance's virtual private cloud (VPC), its
|
4231
|
-
#
|
4229
|
+
# domain name system (DNS) endpoint resolves to the public IP address.
|
4232
4230
|
# When you connect from within the same VPC as the DB instance, the
|
4233
4231
|
# endpoint resolves to the private IP address. Access to the DB
|
4234
|
-
# instance is
|
4235
|
-
# That public access is not permitted if the security group assigned
|
4236
|
-
# to the DB instance doesn't permit it.
|
4232
|
+
# instance is controlled by its security group settings.
|
4237
4233
|
#
|
4238
4234
|
# When the DB instance isn't publicly accessible, it is an internal
|
4239
4235
|
# DB instance with a DNS name that resolves to a private IP address.
|
4240
4236
|
#
|
4241
|
-
#
|
4242
|
-
# `
|
4243
|
-
#
|
4244
|
-
# If `DBSubnetGroupName` isn't specified, and `PubliclyAccessible`
|
4245
|
-
# isn't specified, the following applies:
|
4246
|
-
#
|
4247
|
-
# * If the default VPC in the target Region doesn’t have an internet
|
4248
|
-
# 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.
|
4249
4239
|
#
|
4250
|
-
#
|
4251
|
-
#
|
4252
|
-
#
|
4253
|
-
# If `DBSubnetGroupName` is specified, and `PubliclyAccessible` isn't
|
4254
|
-
# specified, the following applies:
|
4240
|
+
# If `DBSubnetGroup` isn't specified, `PubliclyAccessible` defaults
|
4241
|
+
# to `false` for Aurora instances and `true` for non-Aurora instances.
|
4255
4242
|
#
|
4256
|
-
#
|
4257
|
-
#
|
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`.
|
4258
4246
|
#
|
4259
|
-
#
|
4260
|
-
#
|
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.
|
4261
4250
|
# @return [Boolean]
|
4262
4251
|
#
|
4263
4252
|
# @!attribute [rw] tags
|
@@ -4665,28 +4654,21 @@ module Aws::RDS
|
|
4665
4654
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
4666
4655
|
# @return [Boolean]
|
4667
4656
|
#
|
4668
|
-
# @!attribute [rw]
|
4669
|
-
# The
|
4670
|
-
# instance of an RDS Custom DB instance.
|
4671
|
-
#
|
4672
|
-
# This setting is required for RDS Custom.
|
4673
|
-
#
|
4674
|
-
# Constraints:
|
4675
|
-
#
|
4676
|
-
# * The profile must exist in your account.
|
4657
|
+
# @!attribute [rw] network_type
|
4658
|
+
# The network type of the DB instance.
|
4677
4659
|
#
|
4678
|
-
#
|
4679
|
-
#
|
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`).
|
4680
4663
|
#
|
4681
|
-
#
|
4682
|
-
#
|
4664
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
4665
|
+
# in the *Amazon RDS User Guide.*
|
4683
4666
|
#
|
4684
|
-
#
|
4685
|
-
# Configure IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
4667
|
+
# Valid Values: `IPV4 | DUAL`
|
4686
4668
|
#
|
4687
4669
|
#
|
4688
4670
|
#
|
4689
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
4671
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
4690
4672
|
# @return [String]
|
4691
4673
|
#
|
4692
4674
|
# @!attribute [rw] backup_target
|
@@ -4710,32 +4692,55 @@ module Aws::RDS
|
|
4710
4692
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
4711
4693
|
# @return [String]
|
4712
4694
|
#
|
4713
|
-
# @!attribute [rw]
|
4714
|
-
# The
|
4715
|
-
#
|
4716
|
-
# The network type is determined by the `DBSubnetGroup` specified for
|
4717
|
-
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
4718
|
-
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
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.
|
4719
4698
|
#
|
4720
|
-
#
|
4721
|
-
# in the *Amazon RDS User Guide.*
|
4699
|
+
# This setting is required for RDS Custom.
|
4722
4700
|
#
|
4723
|
-
#
|
4701
|
+
# Constraints:
|
4724
4702
|
#
|
4703
|
+
# * The profile must exist in your account.
|
4725
4704
|
#
|
4705
|
+
# * The profile must have an IAM role that Amazon EC2 has permissions
|
4706
|
+
# to assume.
|
4726
4707
|
#
|
4727
|
-
#
|
4728
|
-
#
|
4708
|
+
# * The instance profile name and the associated IAM role name must
|
4709
|
+
# start with the prefix `AWSRDSCustom`.
|
4729
4710
|
#
|
4730
|
-
#
|
4731
|
-
#
|
4732
|
-
# the DB instance.
|
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*.
|
4733
4713
|
#
|
4734
|
-
# This setting applies only to the `gp3` storage type.
|
4735
4714
|
#
|
4736
|
-
#
|
4737
|
-
#
|
4738
|
-
# @return [
|
4715
|
+
#
|
4716
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
4717
|
+
# @return [String]
|
4718
|
+
#
|
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]
|
4727
|
+
#
|
4728
|
+
# @!attribute [rw] ca_certificate_identifier
|
4729
|
+
# The CA certificate identifier to use for the DB instance's server
|
4730
|
+
# certificate.
|
4731
|
+
#
|
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]
|
4739
4744
|
#
|
4740
4745
|
# @!attribute [rw] manage_master_user_password
|
4741
4746
|
# Specifies whether to manage the master user password with Amazon Web
|
@@ -4780,37 +4785,6 @@ module Aws::RDS
|
|
4780
4785
|
# each Amazon Web Services Region.
|
4781
4786
|
# @return [String]
|
4782
4787
|
#
|
4783
|
-
# @!attribute [rw] ca_certificate_identifier
|
4784
|
-
# The CA certificate identifier to use for the DB instance's server
|
4785
|
-
# certificate.
|
4786
|
-
#
|
4787
|
-
# This setting doesn't apply to RDS Custom DB instances.
|
4788
|
-
#
|
4789
|
-
# For more information, see [Using SSL/TLS to encrypt a connection to
|
4790
|
-
# a DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS
|
4791
|
-
# to encrypt a connection to a DB cluster][2] in the *Amazon Aurora
|
4792
|
-
# User Guide*.
|
4793
|
-
#
|
4794
|
-
#
|
4795
|
-
#
|
4796
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
4797
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
4798
|
-
# @return [String]
|
4799
|
-
#
|
4800
|
-
# @!attribute [rw] db_system_id
|
4801
|
-
# The Oracle system identifier (SID), which is the name of the Oracle
|
4802
|
-
# database instance that manages your database files. In this context,
|
4803
|
-
# the term "Oracle database instance" refers exclusively to the
|
4804
|
-
# system global area (SGA) and Oracle background processes. If you
|
4805
|
-
# don't specify a SID, the value defaults to `RDSCDB`. The Oracle SID
|
4806
|
-
# is also the name of your CDB.
|
4807
|
-
# @return [String]
|
4808
|
-
#
|
4809
|
-
# @!attribute [rw] dedicated_log_volume
|
4810
|
-
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
4811
|
-
# enabled.
|
4812
|
-
# @return [Boolean]
|
4813
|
-
#
|
4814
4788
|
# @!attribute [rw] multi_tenant
|
4815
4789
|
# Specifies whether to use the multi-tenant configuration or the
|
4816
4790
|
# single-tenant configuration (default). This parameter only applies
|
@@ -4828,6 +4802,11 @@ module Aws::RDS
|
|
4828
4802
|
# single-tenant configuration.
|
4829
4803
|
# @return [Boolean]
|
4830
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
|
+
#
|
4831
4810
|
# @!attribute [rw] engine_lifecycle_support
|
4832
4811
|
# The life cycle type for this DB instance.
|
4833
4812
|
#
|
@@ -4902,6 +4881,7 @@ module Aws::RDS
|
|
4902
4881
|
:auto_minor_version_upgrade,
|
4903
4882
|
:license_model,
|
4904
4883
|
:iops,
|
4884
|
+
:storage_throughput,
|
4905
4885
|
:option_group_name,
|
4906
4886
|
:character_set_name,
|
4907
4887
|
:nchar_character_set_name,
|
@@ -4934,19 +4914,18 @@ module Aws::RDS
|
|
4934
4914
|
:deletion_protection,
|
4935
4915
|
:max_allocated_storage,
|
4936
4916
|
:enable_customer_owned_ip,
|
4937
|
-
:custom_iam_instance_profile,
|
4938
|
-
:backup_target,
|
4939
4917
|
:network_type,
|
4940
|
-
:
|
4918
|
+
:backup_target,
|
4919
|
+
:custom_iam_instance_profile,
|
4920
|
+
:db_system_id,
|
4921
|
+
:ca_certificate_identifier,
|
4941
4922
|
:manage_master_user_password,
|
4942
4923
|
:master_user_secret_kms_key_id,
|
4943
|
-
:ca_certificate_identifier,
|
4944
|
-
:db_system_id,
|
4945
|
-
:dedicated_log_volume,
|
4946
4924
|
:multi_tenant,
|
4925
|
+
:dedicated_log_volume,
|
4947
4926
|
:engine_lifecycle_support,
|
4948
4927
|
:master_user_authentication_type)
|
4949
|
-
SENSITIVE = []
|
4928
|
+
SENSITIVE = [:master_user_password, :tde_credential_password]
|
4950
4929
|
include Aws::Structure
|
4951
4930
|
end
|
4952
4931
|
|
@@ -5066,6 +5045,13 @@ module Aws::RDS
|
|
5066
5045
|
# to initially allocate for the DB instance.
|
5067
5046
|
# @return [Integer]
|
5068
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
|
+
#
|
5069
5055
|
# @!attribute [rw] option_group_name
|
5070
5056
|
# The option group to associate the DB instance with. If not
|
5071
5057
|
# specified, RDS uses the option group associated with the source DB
|
@@ -5573,41 +5559,28 @@ module Aws::RDS
|
|
5573
5559
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
5574
5560
|
# @return [String]
|
5575
5561
|
#
|
5576
|
-
# @!attribute [rw]
|
5577
|
-
#
|
5578
|
-
#
|
5579
|
-
#
|
5580
|
-
# For more information about this setting, including limitations that
|
5581
|
-
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
5582
|
-
# storage autoscaling][1] in the *Amazon RDS User Guide*.
|
5583
|
-
#
|
5584
|
-
#
|
5585
|
-
#
|
5586
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
5587
|
-
# @return [Integer]
|
5588
|
-
#
|
5589
|
-
# @!attribute [rw] custom_iam_instance_profile
|
5590
|
-
# The instance profile associated with the underlying Amazon EC2
|
5591
|
-
# instance of an RDS Custom DB instance. The instance profile must
|
5592
|
-
# meet the following requirements:
|
5593
|
-
#
|
5594
|
-
# * The profile must exist in your account.
|
5595
|
-
#
|
5596
|
-
# * The profile must have an IAM role that Amazon EC2 has permissions
|
5597
|
-
# 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.
|
5598
5565
|
#
|
5599
|
-
# *
|
5600
|
-
#
|
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.
|
5601
5571
|
#
|
5602
|
-
# For
|
5603
|
-
#
|
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*.
|
5604
5575
|
#
|
5605
|
-
#
|
5576
|
+
# For more information about CoIPs, see [Customer-owned IP
|
5577
|
+
# addresses][2] in the *Amazon Web Services Outposts User Guide*.
|
5606
5578
|
#
|
5607
5579
|
#
|
5608
5580
|
#
|
5609
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
5610
|
-
#
|
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]
|
5611
5584
|
#
|
5612
5585
|
# @!attribute [rw] network_type
|
5613
5586
|
# The network type of the DB instance.
|
@@ -5630,35 +5603,18 @@ module Aws::RDS
|
|
5630
5603
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
5631
5604
|
# @return [String]
|
5632
5605
|
#
|
5633
|
-
# @!attribute [rw]
|
5634
|
-
#
|
5635
|
-
#
|
5636
|
-
# This setting doesn't apply to RDS Custom or Amazon Aurora DB
|
5637
|
-
# instances.
|
5638
|
-
# @return [Integer]
|
5639
|
-
#
|
5640
|
-
# @!attribute [rw] enable_customer_owned_ip
|
5641
|
-
# Specifies whether to enable a customer-owned IP address (CoIP) for
|
5642
|
-
# an RDS on Outposts read replica.
|
5643
|
-
#
|
5644
|
-
# A *CoIP* provides local or external connectivity to resources in
|
5645
|
-
# your Outpost subnets through your on-premises network. For some use
|
5646
|
-
# cases, a CoIP can provide lower latency for connections to the read
|
5647
|
-
# replica from outside of its virtual private cloud (VPC) on your
|
5648
|
-
# local network.
|
5649
|
-
#
|
5650
|
-
# For more information about RDS on Outposts, see [Working with Amazon
|
5651
|
-
# RDS on Amazon Web Services Outposts][1] in the *Amazon RDS User
|
5652
|
-
# 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.
|
5653
5609
|
#
|
5654
|
-
# For more information about
|
5655
|
-
#
|
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*.
|
5656
5613
|
#
|
5657
5614
|
#
|
5658
5615
|
#
|
5659
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
5660
|
-
# [
|
5661
|
-
# @return [Boolean]
|
5616
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
5617
|
+
# @return [Integer]
|
5662
5618
|
#
|
5663
5619
|
# @!attribute [rw] backup_target
|
5664
5620
|
# The location where RDS stores automated backups and manual
|
@@ -5671,6 +5627,29 @@ module Aws::RDS
|
|
5671
5627
|
# * `region` for Amazon Web Services Region
|
5672
5628
|
# @return [String]
|
5673
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
|
+
#
|
5674
5653
|
# @!attribute [rw] allocated_storage
|
5675
5654
|
# The amount of storage (in gibibytes) to allocate initially for the
|
5676
5655
|
# read replica. Follow the allocation rules specified in
|
@@ -5749,6 +5728,7 @@ module Aws::RDS
|
|
5749
5728
|
:multi_az,
|
5750
5729
|
:auto_minor_version_upgrade,
|
5751
5730
|
:iops,
|
5731
|
+
:storage_throughput,
|
5752
5732
|
:option_group_name,
|
5753
5733
|
:db_parameter_group_name,
|
5754
5734
|
:publicly_accessible,
|
@@ -5777,19 +5757,18 @@ module Aws::RDS
|
|
5777
5757
|
:domain_auth_secret_arn,
|
5778
5758
|
:domain_dns_ips,
|
5779
5759
|
:replica_mode,
|
5780
|
-
:max_allocated_storage,
|
5781
|
-
:custom_iam_instance_profile,
|
5782
|
-
:network_type,
|
5783
|
-
:storage_throughput,
|
5784
5760
|
:enable_customer_owned_ip,
|
5761
|
+
:network_type,
|
5762
|
+
:max_allocated_storage,
|
5785
5763
|
:backup_target,
|
5764
|
+
:custom_iam_instance_profile,
|
5786
5765
|
:allocated_storage,
|
5787
5766
|
:source_db_cluster_identifier,
|
5788
5767
|
:dedicated_log_volume,
|
5789
5768
|
:upgrade_storage_config,
|
5790
5769
|
:ca_certificate_identifier,
|
5791
5770
|
:source_region)
|
5792
|
-
SENSITIVE = []
|
5771
|
+
SENSITIVE = [:pre_signed_url]
|
5793
5772
|
include Aws::Structure
|
5794
5773
|
end
|
5795
5774
|
|
@@ -7126,10 +7105,6 @@ module Aws::RDS
|
|
7126
7105
|
# The current state of this DB cluster.
|
7127
7106
|
# @return [String]
|
7128
7107
|
#
|
7129
|
-
# @!attribute [rw] automatic_restart_time
|
7130
|
-
# The time when a stopped DB cluster is restarted automatically.
|
7131
|
-
# @return [Time]
|
7132
|
-
#
|
7133
7108
|
# @!attribute [rw] percent_progress
|
7134
7109
|
# The progress of the operation as a percentage.
|
7135
7110
|
# @return [String]
|
@@ -7325,6 +7300,12 @@ module Aws::RDS
|
|
7325
7300
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html
|
7326
7301
|
# @return [Integer]
|
7327
7302
|
#
|
7303
|
+
# @!attribute [rw] pending_modified_values
|
7304
|
+
# Information about pending changes to the DB cluster. This
|
7305
|
+
# information is returned only when there are pending changes.
|
7306
|
+
# Specific changes are identified by subelements.
|
7307
|
+
# @return [Types::ClusterPendingModifiedValues]
|
7308
|
+
#
|
7328
7309
|
# @!attribute [rw] engine_mode
|
7329
7310
|
# The DB engine mode of the DB cluster, either `provisioned` or
|
7330
7311
|
# `serverless`.
|
@@ -7352,34 +7333,99 @@ module Aws::RDS
|
|
7352
7333
|
# Reserved for future use.
|
7353
7334
|
# @return [Types::RdsCustomClusterConfiguration]
|
7354
7335
|
#
|
7355
|
-
# @!attribute [rw]
|
7356
|
-
#
|
7357
|
-
#
|
7358
|
-
# @return [Boolean]
|
7336
|
+
# @!attribute [rw] db_cluster_instance_class
|
7337
|
+
# The name of the compute and memory capacity class of the DB
|
7338
|
+
# instance.
|
7359
7339
|
#
|
7360
|
-
#
|
7361
|
-
#
|
7362
|
-
# cluster.
|
7340
|
+
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
7341
|
+
# @return [String]
|
7363
7342
|
#
|
7364
|
-
#
|
7365
|
-
#
|
7366
|
-
#
|
7367
|
-
# console with the RDS query editor.
|
7343
|
+
# @!attribute [rw] storage_type
|
7344
|
+
# The storage type associated with the DB cluster.
|
7345
|
+
# @return [String]
|
7368
7346
|
#
|
7369
|
-
#
|
7370
|
-
#
|
7347
|
+
# @!attribute [rw] iops
|
7348
|
+
# The Provisioned IOPS (I/O operations per second) value.
|
7371
7349
|
#
|
7350
|
+
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
7351
|
+
# @return [Integer]
|
7372
7352
|
#
|
7353
|
+
# @!attribute [rw] storage_throughput
|
7354
|
+
# The storage throughput for the DB cluster. The throughput is
|
7355
|
+
# automatically set based on the IOPS that you provision, and is not
|
7356
|
+
# configurable.
|
7373
7357
|
#
|
7374
|
-
#
|
7375
|
-
# @return [
|
7358
|
+
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
7359
|
+
# @return [Integer]
|
7376
7360
|
#
|
7377
|
-
# @!attribute [rw]
|
7378
|
-
# The
|
7379
|
-
#
|
7380
|
-
#
|
7381
|
-
#
|
7382
|
-
# @return [
|
7361
|
+
# @!attribute [rw] io_optimized_next_allowed_modification_time
|
7362
|
+
# The next time you can modify the DB cluster to use the
|
7363
|
+
# `aurora-iopt1` storage type.
|
7364
|
+
#
|
7365
|
+
# This setting is only for Aurora DB clusters.
|
7366
|
+
# @return [Time]
|
7367
|
+
#
|
7368
|
+
# @!attribute [rw] publicly_accessible
|
7369
|
+
# Indicates whether the DB cluster is publicly accessible.
|
7370
|
+
#
|
7371
|
+
# When the DB cluster is publicly accessible and you connect from
|
7372
|
+
# outside of the DB cluster's virtual private cloud (VPC), its Domain
|
7373
|
+
# Name System (DNS) endpoint resolves to the public IP address. When
|
7374
|
+
# you connect from within the same VPC as the DB cluster, the endpoint
|
7375
|
+
# resolves to the private IP address. Access to the DB cluster is
|
7376
|
+
# ultimately controlled by the security group it uses. That public
|
7377
|
+
# access isn't permitted if the security group assigned to the DB
|
7378
|
+
# cluster doesn't permit it.
|
7379
|
+
#
|
7380
|
+
# When the DB cluster isn't publicly accessible, it is an internal DB
|
7381
|
+
# cluster with a DNS name that resolves to a private IP address.
|
7382
|
+
#
|
7383
|
+
# For more information, see CreateDBCluster.
|
7384
|
+
#
|
7385
|
+
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
7386
|
+
# @return [Boolean]
|
7387
|
+
#
|
7388
|
+
# @!attribute [rw] auto_minor_version_upgrade
|
7389
|
+
# Indicates whether minor version patches are applied automatically.
|
7390
|
+
#
|
7391
|
+
# This setting is for Aurora DB clusters and Multi-AZ DB clusters.
|
7392
|
+
#
|
7393
|
+
# For more information about automatic minor version upgrades, see
|
7394
|
+
# [Automatically upgrading the minor engine version][1].
|
7395
|
+
#
|
7396
|
+
#
|
7397
|
+
#
|
7398
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Upgrading.html#USER_UpgradeDBInstance.Upgrading.AutoMinorVersionUpgrades
|
7399
|
+
# @return [Boolean]
|
7400
|
+
#
|
7401
|
+
# @!attribute [rw] deletion_protection
|
7402
|
+
# Indicates whether the DB cluster has deletion protection enabled.
|
7403
|
+
# The database can't be deleted when deletion protection is enabled.
|
7404
|
+
# @return [Boolean]
|
7405
|
+
#
|
7406
|
+
# @!attribute [rw] http_endpoint_enabled
|
7407
|
+
# Indicates whether the HTTP endpoint is enabled for an Aurora DB
|
7408
|
+
# cluster.
|
7409
|
+
#
|
7410
|
+
# When enabled, the HTTP endpoint provides a connectionless web
|
7411
|
+
# service API (RDS Data API) for running SQL queries on the DB
|
7412
|
+
# cluster. You can also query your database from inside the RDS
|
7413
|
+
# console with the RDS query editor.
|
7414
|
+
#
|
7415
|
+
# For more information, see [Using RDS Data API][1] in the *Amazon
|
7416
|
+
# Aurora User Guide*.
|
7417
|
+
#
|
7418
|
+
#
|
7419
|
+
#
|
7420
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html
|
7421
|
+
# @return [Boolean]
|
7422
|
+
#
|
7423
|
+
# @!attribute [rw] activity_stream_mode
|
7424
|
+
# The mode of the database activity stream. Database events such as a
|
7425
|
+
# change or access generate an activity stream event. The database
|
7426
|
+
# session can handle these events either synchronously or
|
7427
|
+
# asynchronously.
|
7428
|
+
# @return [String]
|
7383
7429
|
#
|
7384
7430
|
# @!attribute [rw] activity_stream_status
|
7385
7431
|
# The status of the database activity stream.
|
@@ -7445,61 +7491,49 @@ module Aws::RDS
|
|
7445
7491
|
# forwarding feature for this cluster.
|
7446
7492
|
# @return [Boolean]
|
7447
7493
|
#
|
7448
|
-
# @!attribute [rw]
|
7449
|
-
#
|
7450
|
-
# information is returned only when there are pending changes.
|
7451
|
-
# Specific changes are identified by subelements.
|
7452
|
-
# @return [Types::ClusterPendingModifiedValues]
|
7494
|
+
# @!attribute [rw] network_type
|
7495
|
+
# The network type of the DB instance.
|
7453
7496
|
#
|
7454
|
-
#
|
7455
|
-
#
|
7456
|
-
#
|
7497
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
7498
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
7499
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
7457
7500
|
#
|
7458
|
-
#
|
7459
|
-
#
|
7501
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
7502
|
+
# in the *Amazon Aurora User Guide.*
|
7460
7503
|
#
|
7461
|
-
#
|
7462
|
-
# The storage type associated with the DB cluster.
|
7463
|
-
# @return [String]
|
7504
|
+
# This setting is only for Aurora DB clusters.
|
7464
7505
|
#
|
7465
|
-
#
|
7466
|
-
# The Provisioned IOPS (I/O operations per second) value.
|
7506
|
+
# Valid Values: `IPV4 | DUAL`
|
7467
7507
|
#
|
7468
|
-
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
7469
|
-
# @return [Integer]
|
7470
7508
|
#
|
7471
|
-
# @!attribute [rw] publicly_accessible
|
7472
|
-
# Indicates whether the DB cluster is publicly accessible.
|
7473
7509
|
#
|
7474
|
-
#
|
7475
|
-
#
|
7476
|
-
# Name System (DNS) endpoint resolves to the public IP address. When
|
7477
|
-
# you connect from within the same VPC as the DB cluster, the endpoint
|
7478
|
-
# resolves to the private IP address. Access to the DB cluster is
|
7479
|
-
# ultimately controlled by the security group it uses. That public
|
7480
|
-
# access isn't permitted if the security group assigned to the DB
|
7481
|
-
# cluster doesn't permit it.
|
7510
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
7511
|
+
# @return [String]
|
7482
7512
|
#
|
7483
|
-
#
|
7484
|
-
#
|
7513
|
+
# @!attribute [rw] automatic_restart_time
|
7514
|
+
# The time when a stopped DB cluster is restarted automatically.
|
7515
|
+
# @return [Time]
|
7485
7516
|
#
|
7486
|
-
#
|
7517
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
7518
|
+
# The scaling configuration for an Aurora Serverless v2 DB cluster.
|
7487
7519
|
#
|
7488
|
-
#
|
7489
|
-
#
|
7520
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
7521
|
+
# the *Amazon Aurora User Guide*.
|
7490
7522
|
#
|
7491
|
-
# @!attribute [rw] auto_minor_version_upgrade
|
7492
|
-
# Indicates whether minor version patches are applied automatically.
|
7493
7523
|
#
|
7494
|
-
# This setting is for Aurora DB clusters and Multi-AZ DB clusters.
|
7495
7524
|
#
|
7496
|
-
#
|
7497
|
-
#
|
7525
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
7526
|
+
# @return [Types::ServerlessV2ScalingConfigurationInfo]
|
7498
7527
|
#
|
7528
|
+
# @!attribute [rw] serverless_v2_platform_version
|
7529
|
+
# The version of the Aurora Serverless V2 platform used by the DB
|
7530
|
+
# cluster. For more information, see [Using Aurora Serverless v2][1]
|
7531
|
+
# in the *Amazon Aurora User Guide*.
|
7499
7532
|
#
|
7500
7533
|
#
|
7501
|
-
#
|
7502
|
-
#
|
7534
|
+
#
|
7535
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
7536
|
+
# @return [String]
|
7503
7537
|
#
|
7504
7538
|
# @!attribute [rw] monitoring_interval
|
7505
7539
|
# The interval, in seconds, between points when Enhanced Monitoring
|
@@ -7559,46 +7593,6 @@ module Aws::RDS
|
|
7559
7593
|
# Default: `7` days
|
7560
7594
|
# @return [Integer]
|
7561
7595
|
#
|
7562
|
-
# @!attribute [rw] serverless_v2_scaling_configuration
|
7563
|
-
# The scaling configuration for an Aurora Serverless v2 DB cluster.
|
7564
|
-
#
|
7565
|
-
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
7566
|
-
# the *Amazon Aurora User Guide*.
|
7567
|
-
#
|
7568
|
-
#
|
7569
|
-
#
|
7570
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
7571
|
-
# @return [Types::ServerlessV2ScalingConfigurationInfo]
|
7572
|
-
#
|
7573
|
-
# @!attribute [rw] serverless_v2_platform_version
|
7574
|
-
# The version of the Aurora Serverless V2 platform used by the DB
|
7575
|
-
# cluster. For more information, see [Using Aurora Serverless v2][1]
|
7576
|
-
# in the *Amazon Aurora User Guide*.
|
7577
|
-
#
|
7578
|
-
#
|
7579
|
-
#
|
7580
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
7581
|
-
# @return [String]
|
7582
|
-
#
|
7583
|
-
# @!attribute [rw] network_type
|
7584
|
-
# The network type of the DB instance.
|
7585
|
-
#
|
7586
|
-
# The network type is determined by the `DBSubnetGroup` specified for
|
7587
|
-
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
7588
|
-
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
7589
|
-
#
|
7590
|
-
# For more information, see [ Working with a DB instance in a VPC][1]
|
7591
|
-
# in the *Amazon Aurora User Guide.*
|
7592
|
-
#
|
7593
|
-
# This setting is only for Aurora DB clusters.
|
7594
|
-
#
|
7595
|
-
# Valid Values: `IPV4 | DUAL`
|
7596
|
-
#
|
7597
|
-
#
|
7598
|
-
#
|
7599
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
7600
|
-
# @return [String]
|
7601
|
-
#
|
7602
7596
|
# @!attribute [rw] db_system_id
|
7603
7597
|
# Reserved for future use.
|
7604
7598
|
# @return [String]
|
@@ -7618,13 +7612,6 @@ module Aws::RDS
|
|
7618
7612
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/rds-secrets-manager.html
|
7619
7613
|
# @return [Types::MasterUserSecret]
|
7620
7614
|
#
|
7621
|
-
# @!attribute [rw] io_optimized_next_allowed_modification_time
|
7622
|
-
# The next time you can modify the DB cluster to use the
|
7623
|
-
# `aurora-iopt1` storage type.
|
7624
|
-
#
|
7625
|
-
# This setting is only for Aurora DB clusters.
|
7626
|
-
# @return [Time]
|
7627
|
-
#
|
7628
7615
|
# @!attribute [rw] local_write_forwarding_status
|
7629
7616
|
# Indicates whether an Aurora DB cluster has in-cluster write
|
7630
7617
|
# forwarding enabled, not enabled, requested, or is in the process of
|
@@ -7640,14 +7627,6 @@ module Aws::RDS
|
|
7640
7627
|
# The details for Aurora Limitless Database.
|
7641
7628
|
# @return [Types::LimitlessDatabase]
|
7642
7629
|
#
|
7643
|
-
# @!attribute [rw] storage_throughput
|
7644
|
-
# The storage throughput for the DB cluster. The throughput is
|
7645
|
-
# automatically set based on the IOPS that you provision, and is not
|
7646
|
-
# configurable.
|
7647
|
-
#
|
7648
|
-
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
7649
|
-
# @return [Integer]
|
7650
|
-
#
|
7651
7630
|
# @!attribute [rw] cluster_scalability_type
|
7652
7631
|
# The scalability mode of the Aurora DB cluster. When set to
|
7653
7632
|
# `limitless`, the cluster operates as an Aurora Limitless Database.
|
@@ -7687,7 +7666,6 @@ module Aws::RDS
|
|
7687
7666
|
:db_cluster_parameter_group,
|
7688
7667
|
:db_subnet_group,
|
7689
7668
|
:status,
|
7690
|
-
:automatic_restart_time,
|
7691
7669
|
:percent_progress,
|
7692
7670
|
:earliest_restorable_time,
|
7693
7671
|
:endpoint,
|
@@ -7721,9 +7699,17 @@ module Aws::RDS
|
|
7721
7699
|
:backtrack_consumed_change_records,
|
7722
7700
|
:enabled_cloudwatch_logs_exports,
|
7723
7701
|
:capacity,
|
7702
|
+
:pending_modified_values,
|
7724
7703
|
:engine_mode,
|
7725
7704
|
:scaling_configuration_info,
|
7726
7705
|
:rds_custom_cluster_configuration,
|
7706
|
+
:db_cluster_instance_class,
|
7707
|
+
:storage_type,
|
7708
|
+
:iops,
|
7709
|
+
:storage_throughput,
|
7710
|
+
:io_optimized_next_allowed_modification_time,
|
7711
|
+
:publicly_accessible,
|
7712
|
+
:auto_minor_version_upgrade,
|
7727
7713
|
:deletion_protection,
|
7728
7714
|
:http_endpoint_enabled,
|
7729
7715
|
:activity_stream_mode,
|
@@ -7737,28 +7723,21 @@ module Aws::RDS
|
|
7737
7723
|
:global_cluster_identifier,
|
7738
7724
|
:global_write_forwarding_status,
|
7739
7725
|
:global_write_forwarding_requested,
|
7740
|
-
:
|
7741
|
-
:
|
7742
|
-
:
|
7743
|
-
:
|
7744
|
-
:publicly_accessible,
|
7745
|
-
:auto_minor_version_upgrade,
|
7726
|
+
:network_type,
|
7727
|
+
:automatic_restart_time,
|
7728
|
+
:serverless_v2_scaling_configuration,
|
7729
|
+
:serverless_v2_platform_version,
|
7746
7730
|
:monitoring_interval,
|
7747
7731
|
:monitoring_role_arn,
|
7748
7732
|
:database_insights_mode,
|
7749
7733
|
:performance_insights_enabled,
|
7750
7734
|
:performance_insights_kms_key_id,
|
7751
7735
|
:performance_insights_retention_period,
|
7752
|
-
:serverless_v2_scaling_configuration,
|
7753
|
-
:serverless_v2_platform_version,
|
7754
|
-
:network_type,
|
7755
7736
|
:db_system_id,
|
7756
7737
|
:master_user_secret,
|
7757
|
-
:io_optimized_next_allowed_modification_time,
|
7758
7738
|
:local_write_forwarding_status,
|
7759
7739
|
:aws_backup_recovery_point_arn,
|
7760
7740
|
:limitless_database,
|
7761
|
-
:storage_throughput,
|
7762
7741
|
:cluster_scalability_type,
|
7763
7742
|
:certificate_details,
|
7764
7743
|
:engine_lifecycle_support)
|
@@ -7897,11 +7876,6 @@ module Aws::RDS
|
|
7897
7876
|
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
7898
7877
|
# @return [Integer]
|
7899
7878
|
#
|
7900
|
-
# @!attribute [rw] aws_backup_recovery_point_arn
|
7901
|
-
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
7902
|
-
# Services Backup.
|
7903
|
-
# @return [String]
|
7904
|
-
#
|
7905
7879
|
# @!attribute [rw] storage_throughput
|
7906
7880
|
# The storage throughput for the automated backup. The throughput is
|
7907
7881
|
# automatically set based on the IOPS that you provision, and is not
|
@@ -7910,6 +7884,11 @@ module Aws::RDS
|
|
7910
7884
|
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
7911
7885
|
# @return [Integer]
|
7912
7886
|
#
|
7887
|
+
# @!attribute [rw] aws_backup_recovery_point_arn
|
7888
|
+
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
7889
|
+
# Services Backup.
|
7890
|
+
# @return [String]
|
7891
|
+
#
|
7913
7892
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBClusterAutomatedBackup AWS API Documentation
|
7914
7893
|
#
|
7915
7894
|
class DBClusterAutomatedBackup < Struct.new(
|
@@ -7936,8 +7915,8 @@ module Aws::RDS
|
|
7936
7915
|
:kms_key_id,
|
7937
7916
|
:storage_type,
|
7938
7917
|
:iops,
|
7939
|
-
:
|
7940
|
-
:
|
7918
|
+
:storage_throughput,
|
7919
|
+
:aws_backup_recovery_point_arn)
|
7941
7920
|
SENSITIVE = []
|
7942
7921
|
include Aws::Structure
|
7943
7922
|
end
|
@@ -8597,21 +8576,12 @@ module Aws::RDS
|
|
8597
8576
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
8598
8577
|
# @return [Array<Types::Tag>]
|
8599
8578
|
#
|
8600
|
-
# @!attribute [rw] db_system_id
|
8601
|
-
# Reserved for future use.
|
8602
|
-
# @return [String]
|
8603
|
-
#
|
8604
8579
|
# @!attribute [rw] storage_type
|
8605
8580
|
# The storage type associated with the DB cluster snapshot.
|
8606
8581
|
#
|
8607
8582
|
# This setting is only for Aurora DB clusters.
|
8608
8583
|
# @return [String]
|
8609
8584
|
#
|
8610
|
-
# @!attribute [rw] db_cluster_resource_id
|
8611
|
-
# The resource ID of the DB cluster that this DB cluster snapshot was
|
8612
|
-
# created from.
|
8613
|
-
# @return [String]
|
8614
|
-
#
|
8615
8585
|
# @!attribute [rw] storage_throughput
|
8616
8586
|
# The storage throughput for the DB cluster snapshot. The throughput
|
8617
8587
|
# is automatically set based on the IOPS that you provision, and is
|
@@ -8620,6 +8590,15 @@ module Aws::RDS
|
|
8620
8590
|
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
8621
8591
|
# @return [Integer]
|
8622
8592
|
#
|
8593
|
+
# @!attribute [rw] db_cluster_resource_id
|
8594
|
+
# The resource ID of the DB cluster that this DB cluster snapshot was
|
8595
|
+
# created from.
|
8596
|
+
# @return [String]
|
8597
|
+
#
|
8598
|
+
# @!attribute [rw] db_system_id
|
8599
|
+
# Reserved for future use.
|
8600
|
+
# @return [String]
|
8601
|
+
#
|
8623
8602
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBClusterSnapshot AWS API Documentation
|
8624
8603
|
#
|
8625
8604
|
class DBClusterSnapshot < Struct.new(
|
@@ -8645,10 +8624,10 @@ module Aws::RDS
|
|
8645
8624
|
:source_db_cluster_snapshot_arn,
|
8646
8625
|
:iam_database_authentication_enabled,
|
8647
8626
|
:tag_list,
|
8648
|
-
:db_system_id,
|
8649
8627
|
:storage_type,
|
8628
|
+
:storage_throughput,
|
8650
8629
|
:db_cluster_resource_id,
|
8651
|
-
:
|
8630
|
+
:db_system_id)
|
8652
8631
|
SENSITIVE = []
|
8653
8632
|
include Aws::Structure
|
8654
8633
|
end
|
@@ -8789,10 +8768,38 @@ module Aws::RDS
|
|
8789
8768
|
# The name of the database engine.
|
8790
8769
|
# @return [String]
|
8791
8770
|
#
|
8771
|
+
# @!attribute [rw] major_engine_version
|
8772
|
+
# The major engine version of the CEV.
|
8773
|
+
# @return [String]
|
8774
|
+
#
|
8792
8775
|
# @!attribute [rw] engine_version
|
8793
8776
|
# The version number of the database engine.
|
8794
8777
|
# @return [String]
|
8795
8778
|
#
|
8779
|
+
# @!attribute [rw] database_installation_files_s3_bucket_name
|
8780
|
+
# The name of the Amazon S3 bucket that contains your database
|
8781
|
+
# installation files.
|
8782
|
+
# @return [String]
|
8783
|
+
#
|
8784
|
+
# @!attribute [rw] database_installation_files_s3_prefix
|
8785
|
+
# The Amazon S3 directory that contains the database installation
|
8786
|
+
# files. If not specified, then no prefix is assumed.
|
8787
|
+
# @return [String]
|
8788
|
+
#
|
8789
|
+
# @!attribute [rw] custom_db_engine_version_manifest
|
8790
|
+
# JSON string that lists the installation files and parameters that
|
8791
|
+
# RDS Custom uses to create a custom engine version (CEV). RDS Custom
|
8792
|
+
# applies the patches in the order in which they're listed in the
|
8793
|
+
# manifest. You can set the Oracle home, Oracle base, and UNIX/Linux
|
8794
|
+
# user and group using the installation parameters. For more
|
8795
|
+
# information, see [JSON fields in the CEV manifest][1] in the *Amazon
|
8796
|
+
# RDS User Guide*.
|
8797
|
+
#
|
8798
|
+
#
|
8799
|
+
#
|
8800
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.preparing.html#custom-cev.preparing.manifest.fields
|
8801
|
+
# @return [String]
|
8802
|
+
#
|
8796
8803
|
# @!attribute [rw] db_parameter_group_family
|
8797
8804
|
# The name of the DB parameter group family for the database engine.
|
8798
8805
|
# @return [String]
|
@@ -8801,6 +8808,10 @@ module Aws::RDS
|
|
8801
8808
|
# The description of the database engine.
|
8802
8809
|
# @return [String]
|
8803
8810
|
#
|
8811
|
+
# @!attribute [rw] db_engine_version_arn
|
8812
|
+
# The ARN of the custom engine version.
|
8813
|
+
# @return [String]
|
8814
|
+
#
|
8804
8815
|
# @!attribute [rw] db_engine_version_description
|
8805
8816
|
# The description of the database engine version.
|
8806
8817
|
# @return [String]
|
@@ -8820,6 +8831,16 @@ module Aws::RDS
|
|
8820
8831
|
# the usage operation. Applicable for RDS Custom for SQL Server.
|
8821
8832
|
# @return [String]
|
8822
8833
|
#
|
8834
|
+
# @!attribute [rw] kms_key_id
|
8835
|
+
# The Amazon Web Services KMS key identifier for an encrypted CEV.
|
8836
|
+
# This parameter is required for RDS Custom, but optional for Amazon
|
8837
|
+
# RDS.
|
8838
|
+
# @return [String]
|
8839
|
+
#
|
8840
|
+
# @!attribute [rw] create_time
|
8841
|
+
# The creation time of the DB engine version.
|
8842
|
+
# @return [Time]
|
8843
|
+
#
|
8823
8844
|
# @!attribute [rw] supported_character_sets
|
8824
8845
|
# A list of the character sets supported by this engine for the
|
8825
8846
|
# `CharacterSetName` parameter of the `CreateDBInstance` operation.
|
@@ -8896,34 +8917,6 @@ module Aws::RDS
|
|
8896
8917
|
# specific DB engine version.
|
8897
8918
|
# @return [Boolean]
|
8898
8919
|
#
|
8899
|
-
# @!attribute [rw] major_engine_version
|
8900
|
-
# The major engine version of the CEV.
|
8901
|
-
# @return [String]
|
8902
|
-
#
|
8903
|
-
# @!attribute [rw] database_installation_files_s3_bucket_name
|
8904
|
-
# The name of the Amazon S3 bucket that contains your database
|
8905
|
-
# installation files.
|
8906
|
-
# @return [String]
|
8907
|
-
#
|
8908
|
-
# @!attribute [rw] database_installation_files_s3_prefix
|
8909
|
-
# The Amazon S3 directory that contains the database installation
|
8910
|
-
# files. If not specified, then no prefix is assumed.
|
8911
|
-
# @return [String]
|
8912
|
-
#
|
8913
|
-
# @!attribute [rw] db_engine_version_arn
|
8914
|
-
# The ARN of the custom engine version.
|
8915
|
-
# @return [String]
|
8916
|
-
#
|
8917
|
-
# @!attribute [rw] kms_key_id
|
8918
|
-
# The Amazon Web Services KMS key identifier for an encrypted CEV.
|
8919
|
-
# This parameter is required for RDS Custom, but optional for Amazon
|
8920
|
-
# RDS.
|
8921
|
-
# @return [String]
|
8922
|
-
#
|
8923
|
-
# @!attribute [rw] create_time
|
8924
|
-
# The creation time of the DB engine version.
|
8925
|
-
# @return [Time]
|
8926
|
-
#
|
8927
8920
|
# @!attribute [rw] tag_list
|
8928
8921
|
# A list of tags.
|
8929
8922
|
#
|
@@ -8942,20 +8935,6 @@ module Aws::RDS
|
|
8942
8935
|
# PostgreSQL.
|
8943
8936
|
# @return [Boolean]
|
8944
8937
|
#
|
8945
|
-
# @!attribute [rw] custom_db_engine_version_manifest
|
8946
|
-
# JSON string that lists the installation files and parameters that
|
8947
|
-
# RDS Custom uses to create a custom engine version (CEV). RDS Custom
|
8948
|
-
# applies the patches in the order in which they're listed in the
|
8949
|
-
# manifest. You can set the Oracle home, Oracle base, and UNIX/Linux
|
8950
|
-
# user and group using the installation parameters. For more
|
8951
|
-
# information, see [JSON fields in the CEV manifest][1] in the *Amazon
|
8952
|
-
# RDS User Guide*.
|
8953
|
-
#
|
8954
|
-
#
|
8955
|
-
#
|
8956
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.preparing.html#custom-cev.preparing.manifest.fields
|
8957
|
-
# @return [String]
|
8958
|
-
#
|
8959
8938
|
# @!attribute [rw] supports_limitless_database
|
8960
8939
|
# Indicates whether the DB engine version supports Aurora Limitless
|
8961
8940
|
# Database.
|
@@ -9008,13 +8987,20 @@ module Aws::RDS
|
|
9008
8987
|
#
|
9009
8988
|
class DBEngineVersion < Struct.new(
|
9010
8989
|
:engine,
|
8990
|
+
:major_engine_version,
|
9011
8991
|
:engine_version,
|
8992
|
+
:database_installation_files_s3_bucket_name,
|
8993
|
+
:database_installation_files_s3_prefix,
|
8994
|
+
:custom_db_engine_version_manifest,
|
9012
8995
|
:db_parameter_group_family,
|
9013
8996
|
:db_engine_description,
|
8997
|
+
:db_engine_version_arn,
|
9014
8998
|
:db_engine_version_description,
|
9015
8999
|
:default_character_set,
|
9016
9000
|
:image,
|
9017
9001
|
:db_engine_media_type,
|
9002
|
+
:kms_key_id,
|
9003
|
+
:create_time,
|
9018
9004
|
:supported_character_sets,
|
9019
9005
|
:supported_nchar_character_sets,
|
9020
9006
|
:valid_upgrade_target,
|
@@ -9027,15 +9013,8 @@ module Aws::RDS
|
|
9027
9013
|
:status,
|
9028
9014
|
:supports_parallel_query,
|
9029
9015
|
:supports_global_databases,
|
9030
|
-
:major_engine_version,
|
9031
|
-
:database_installation_files_s3_bucket_name,
|
9032
|
-
:database_installation_files_s3_prefix,
|
9033
|
-
:db_engine_version_arn,
|
9034
|
-
:kms_key_id,
|
9035
|
-
:create_time,
|
9036
9016
|
:tag_list,
|
9037
9017
|
:supports_babelfish,
|
9038
|
-
:custom_db_engine_version_manifest,
|
9039
9018
|
:supports_limitless_database,
|
9040
9019
|
:supports_certificate_rotation_without_restart,
|
9041
9020
|
:supported_ca_certificate_identifiers,
|
@@ -9102,10 +9081,6 @@ module Aws::RDS
|
|
9102
9081
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/accessing-monitoring.html#Overview.DBInstance.Status
|
9103
9082
|
# @return [String]
|
9104
9083
|
#
|
9105
|
-
# @!attribute [rw] automatic_restart_time
|
9106
|
-
# The time when a stopped DB instance is restarted automatically.
|
9107
|
-
# @return [Time]
|
9108
|
-
#
|
9109
9084
|
# @!attribute [rw] master_username
|
9110
9085
|
# The master username for the DB instance.
|
9111
9086
|
# @return [String]
|
@@ -9255,6 +9230,12 @@ module Aws::RDS
|
|
9255
9230
|
# instance.
|
9256
9231
|
# @return [Integer]
|
9257
9232
|
#
|
9233
|
+
# @!attribute [rw] storage_throughput
|
9234
|
+
# The storage throughput for the DB instance.
|
9235
|
+
#
|
9236
|
+
# This setting applies only to the `gp3` storage type.
|
9237
|
+
# @return [Integer]
|
9238
|
+
#
|
9258
9239
|
# @!attribute [rw] option_group_memberships
|
9259
9240
|
# The list of option group memberships for this DB instance.
|
9260
9241
|
# @return [Array<Types::OptionGroupMembership>]
|
@@ -9508,10 +9489,18 @@ module Aws::RDS
|
|
9508
9489
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
9509
9490
|
# @return [Array<Types::Tag>]
|
9510
9491
|
#
|
9511
|
-
# @!attribute [rw]
|
9512
|
-
# The
|
9513
|
-
# instance
|
9514
|
-
#
|
9492
|
+
# @!attribute [rw] automation_mode
|
9493
|
+
# The automation mode of the RDS Custom DB instance: `full` or `all
|
9494
|
+
# paused`. If `full`, the DB instance automates monitoring and
|
9495
|
+
# instance recovery. If `all paused`, the instance pauses automation
|
9496
|
+
# for the duration set by `--resume-full-automation-mode-minutes`.
|
9497
|
+
# @return [String]
|
9498
|
+
#
|
9499
|
+
# @!attribute [rw] resume_full_automation_mode_time
|
9500
|
+
# The number of minutes to pause the automation. When the time period
|
9501
|
+
# ends, RDS Custom resumes full automation. The minimum value is 60
|
9502
|
+
# (default). The maximum value is 1,440.
|
9503
|
+
# @return [Time]
|
9515
9504
|
#
|
9516
9505
|
# @!attribute [rw] customer_owned_ip_enabled
|
9517
9506
|
# Indicates whether a customer-owned IP address (CoIP) is enabled for
|
@@ -9536,9 +9525,23 @@ module Aws::RDS
|
|
9536
9525
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
9537
9526
|
# @return [Boolean]
|
9538
9527
|
#
|
9539
|
-
# @!attribute [rw]
|
9540
|
-
# The
|
9541
|
-
#
|
9528
|
+
# @!attribute [rw] network_type
|
9529
|
+
# The network type of the DB instance.
|
9530
|
+
#
|
9531
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
9532
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
9533
|
+
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
9534
|
+
#
|
9535
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
9536
|
+
# in the *Amazon RDS User Guide* and [ Working with a DB instance in a
|
9537
|
+
# VPC][2] in the *Amazon Aurora User Guide.*
|
9538
|
+
#
|
9539
|
+
# Valid Values: `IPV4 | DUAL`
|
9540
|
+
#
|
9541
|
+
#
|
9542
|
+
#
|
9543
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
9544
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
9542
9545
|
# @return [String]
|
9543
9546
|
#
|
9544
9547
|
# @!attribute [rw] activity_stream_status
|
@@ -9568,17 +9571,24 @@ module Aws::RDS
|
|
9568
9571
|
# database activity stream.
|
9569
9572
|
# @return [Boolean]
|
9570
9573
|
#
|
9571
|
-
# @!attribute [rw]
|
9572
|
-
# The
|
9573
|
-
#
|
9574
|
-
# instance recovery. If `all paused`, the instance pauses automation
|
9575
|
-
# for the duration set by `--resume-full-automation-mode-minutes`.
|
9574
|
+
# @!attribute [rw] aws_backup_recovery_point_arn
|
9575
|
+
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
9576
|
+
# Services Backup.
|
9576
9577
|
# @return [String]
|
9577
9578
|
#
|
9578
|
-
# @!attribute [rw]
|
9579
|
-
# The
|
9580
|
-
#
|
9581
|
-
#
|
9579
|
+
# @!attribute [rw] db_instance_automated_backups_replications
|
9580
|
+
# The list of replicated automated backups associated with the DB
|
9581
|
+
# instance.
|
9582
|
+
# @return [Array<Types::DBInstanceAutomatedBackupsReplication>]
|
9583
|
+
#
|
9584
|
+
# @!attribute [rw] backup_target
|
9585
|
+
# The location where automated backups and manual snapshots are
|
9586
|
+
# stored: Dedicated Local Zones, Amazon Web Services Outposts or the
|
9587
|
+
# Amazon Web Services Region.
|
9588
|
+
# @return [String]
|
9589
|
+
#
|
9590
|
+
# @!attribute [rw] automatic_restart_time
|
9591
|
+
# The time when a stopped DB instance is restarted automatically.
|
9582
9592
|
# @return [Time]
|
9583
9593
|
#
|
9584
9594
|
# @!attribute [rw] custom_iam_instance_profile
|
@@ -9602,40 +9612,13 @@ module Aws::RDS
|
|
9602
9612
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
9603
9613
|
# @return [String]
|
9604
9614
|
#
|
9605
|
-
# @!attribute [rw] backup_target
|
9606
|
-
# The location where automated backups and manual snapshots are
|
9607
|
-
# stored: Dedicated Local Zones, Amazon Web Services Outposts or the
|
9608
|
-
# Amazon Web Services Region.
|
9609
|
-
# @return [String]
|
9610
|
-
#
|
9611
|
-
# @!attribute [rw] network_type
|
9612
|
-
# The network type of the DB instance.
|
9613
|
-
#
|
9614
|
-
# The network type is determined by the `DBSubnetGroup` specified for
|
9615
|
-
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
9616
|
-
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
9617
|
-
#
|
9618
|
-
# For more information, see [ Working with a DB instance in a VPC][1]
|
9619
|
-
# in the *Amazon RDS User Guide* and [ Working with a DB instance in a
|
9620
|
-
# VPC][2] in the *Amazon Aurora User Guide.*
|
9621
|
-
#
|
9622
|
-
# Valid Values: `IPV4 | DUAL`
|
9623
|
-
#
|
9624
|
-
#
|
9625
|
-
#
|
9626
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
9627
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
9628
|
-
# @return [String]
|
9629
|
-
#
|
9630
9615
|
# @!attribute [rw] activity_stream_policy_status
|
9631
9616
|
# The status of the policy state of the activity stream.
|
9632
9617
|
# @return [String]
|
9633
9618
|
#
|
9634
|
-
# @!attribute [rw]
|
9635
|
-
# The
|
9636
|
-
#
|
9637
|
-
# This setting applies only to the `gp3` storage type.
|
9638
|
-
# @return [Integer]
|
9619
|
+
# @!attribute [rw] certificate_details
|
9620
|
+
# The details of the DB instance's server certificate.
|
9621
|
+
# @return [Types::CertificateDetails]
|
9639
9622
|
#
|
9640
9623
|
# @!attribute [rw] db_system_id
|
9641
9624
|
# The Oracle system ID (Oracle SID) for a container database (CDB).
|
@@ -9655,10 +9638,6 @@ module Aws::RDS
|
|
9655
9638
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-secrets-manager.html
|
9656
9639
|
# @return [Types::MasterUserSecret]
|
9657
9640
|
#
|
9658
|
-
# @!attribute [rw] certificate_details
|
9659
|
-
# The details of the DB instance's server certificate.
|
9660
|
-
# @return [Types::CertificateDetails]
|
9661
|
-
#
|
9662
9641
|
# @!attribute [rw] read_replica_source_db_cluster_identifier
|
9663
9642
|
# The identifier of the source DB cluster if this DB instance is a
|
9664
9643
|
# read replica.
|
@@ -9668,6 +9647,11 @@ module Aws::RDS
|
|
9668
9647
|
# The progress of the storage optimization operation as a percentage.
|
9669
9648
|
# @return [String]
|
9670
9649
|
#
|
9650
|
+
# @!attribute [rw] multi_tenant
|
9651
|
+
# Specifies whether the DB instance is in the multi-tenant
|
9652
|
+
# configuration (TRUE) or the single-tenant configuration (FALSE).
|
9653
|
+
# @return [Boolean]
|
9654
|
+
#
|
9671
9655
|
# @!attribute [rw] dedicated_log_volume
|
9672
9656
|
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
9673
9657
|
# enabled.
|
@@ -9685,11 +9669,6 @@ module Aws::RDS
|
|
9685
9669
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.UpgradeFileSystem
|
9686
9670
|
# @return [Boolean]
|
9687
9671
|
#
|
9688
|
-
# @!attribute [rw] multi_tenant
|
9689
|
-
# Specifies whether the DB instance is in the multi-tenant
|
9690
|
-
# configuration (TRUE) or the single-tenant configuration (FALSE).
|
9691
|
-
# @return [Boolean]
|
9692
|
-
#
|
9693
9672
|
# @!attribute [rw] engine_lifecycle_support
|
9694
9673
|
# The lifecycle type for the DB instance.
|
9695
9674
|
#
|
@@ -9703,7 +9682,6 @@ module Aws::RDS
|
|
9703
9682
|
:db_instance_class,
|
9704
9683
|
:engine,
|
9705
9684
|
:db_instance_status,
|
9706
|
-
:automatic_restart_time,
|
9707
9685
|
:master_username,
|
9708
9686
|
:db_name,
|
9709
9687
|
:endpoint,
|
@@ -9728,6 +9706,7 @@ module Aws::RDS
|
|
9728
9706
|
:replica_mode,
|
9729
9707
|
:license_model,
|
9730
9708
|
:iops,
|
9709
|
+
:storage_throughput,
|
9731
9710
|
:option_group_memberships,
|
9732
9711
|
:character_set_name,
|
9733
9712
|
:nchar_character_set_name,
|
@@ -9762,29 +9741,29 @@ module Aws::RDS
|
|
9762
9741
|
:listener_endpoint,
|
9763
9742
|
:max_allocated_storage,
|
9764
9743
|
:tag_list,
|
9765
|
-
:
|
9744
|
+
:automation_mode,
|
9745
|
+
:resume_full_automation_mode_time,
|
9766
9746
|
:customer_owned_ip_enabled,
|
9767
|
-
:
|
9747
|
+
:network_type,
|
9768
9748
|
:activity_stream_status,
|
9769
9749
|
:activity_stream_kms_key_id,
|
9770
9750
|
:activity_stream_kinesis_stream_name,
|
9771
9751
|
:activity_stream_mode,
|
9772
9752
|
:activity_stream_engine_native_audit_fields_included,
|
9773
|
-
:
|
9774
|
-
:
|
9775
|
-
:custom_iam_instance_profile,
|
9753
|
+
:aws_backup_recovery_point_arn,
|
9754
|
+
:db_instance_automated_backups_replications,
|
9776
9755
|
:backup_target,
|
9777
|
-
:
|
9756
|
+
:automatic_restart_time,
|
9757
|
+
:custom_iam_instance_profile,
|
9778
9758
|
:activity_stream_policy_status,
|
9779
|
-
:
|
9759
|
+
:certificate_details,
|
9780
9760
|
:db_system_id,
|
9781
9761
|
:master_user_secret,
|
9782
|
-
:certificate_details,
|
9783
9762
|
:read_replica_source_db_cluster_identifier,
|
9784
9763
|
:percent_progress,
|
9764
|
+
:multi_tenant,
|
9785
9765
|
:dedicated_log_volume,
|
9786
9766
|
:is_storage_config_upgrade_available,
|
9787
|
-
:multi_tenant,
|
9788
9767
|
:engine_lifecycle_support)
|
9789
9768
|
SENSITIVE = []
|
9790
9769
|
include Aws::Structure
|
@@ -9884,6 +9863,10 @@ module Aws::RDS
|
|
9884
9863
|
# The IOPS (I/O operations per second) value for the automated backup.
|
9885
9864
|
# @return [Integer]
|
9886
9865
|
#
|
9866
|
+
# @!attribute [rw] storage_throughput
|
9867
|
+
# The storage throughput for the automated backup.
|
9868
|
+
# @return [Integer]
|
9869
|
+
#
|
9887
9870
|
# @!attribute [rw] option_group_name
|
9888
9871
|
# The option group the automated backup is associated with. If
|
9889
9872
|
# omitted, the default option group for the engine specified is used.
|
@@ -9940,9 +9923,11 @@ module Aws::RDS
|
|
9940
9923
|
# Region.
|
9941
9924
|
# @return [String]
|
9942
9925
|
#
|
9943
|
-
# @!attribute [rw]
|
9944
|
-
#
|
9945
|
-
#
|
9926
|
+
# @!attribute [rw] multi_tenant
|
9927
|
+
# Specifies whether the automatic backup is for a DB instance in the
|
9928
|
+
# multi-tenant configuration (TRUE) or the single-tenant configuration
|
9929
|
+
# (FALSE).
|
9930
|
+
# @return [Boolean]
|
9946
9931
|
#
|
9947
9932
|
# @!attribute [rw] aws_backup_recovery_point_arn
|
9948
9933
|
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
@@ -9954,12 +9939,6 @@ module Aws::RDS
|
|
9954
9939
|
# enabled.
|
9955
9940
|
# @return [Boolean]
|
9956
9941
|
#
|
9957
|
-
# @!attribute [rw] multi_tenant
|
9958
|
-
# Specifies whether the automatic backup is for a DB instance in the
|
9959
|
-
# multi-tenant configuration (TRUE) or the single-tenant configuration
|
9960
|
-
# (FALSE).
|
9961
|
-
# @return [Boolean]
|
9962
|
-
#
|
9963
9942
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstanceAutomatedBackup AWS API Documentation
|
9964
9943
|
#
|
9965
9944
|
class DBInstanceAutomatedBackup < Struct.new(
|
@@ -9979,6 +9958,7 @@ module Aws::RDS
|
|
9979
9958
|
:engine_version,
|
9980
9959
|
:license_model,
|
9981
9960
|
:iops,
|
9961
|
+
:storage_throughput,
|
9982
9962
|
:option_group_name,
|
9983
9963
|
:tde_credential_arn,
|
9984
9964
|
:encrypted,
|
@@ -9990,10 +9970,9 @@ module Aws::RDS
|
|
9990
9970
|
:db_instance_automated_backups_arn,
|
9991
9971
|
:db_instance_automated_backups_replications,
|
9992
9972
|
:backup_target,
|
9993
|
-
:
|
9973
|
+
:multi_tenant,
|
9994
9974
|
:aws_backup_recovery_point_arn,
|
9995
|
-
:dedicated_log_volume
|
9996
|
-
:multi_tenant)
|
9975
|
+
:dedicated_log_volume)
|
9997
9976
|
SENSITIVE = []
|
9998
9977
|
include Aws::Structure
|
9999
9978
|
end
|
@@ -11314,6 +11293,10 @@ module Aws::RDS
|
|
11314
11293
|
# the DB instance at the time of the snapshot.
|
11315
11294
|
# @return [Integer]
|
11316
11295
|
#
|
11296
|
+
# @!attribute [rw] storage_throughput
|
11297
|
+
# Specifies the storage throughput for the DB snapshot.
|
11298
|
+
# @return [Integer]
|
11299
|
+
#
|
11317
11300
|
# @!attribute [rw] option_group_name
|
11318
11301
|
# Provides the option group name for the DB snapshot.
|
11319
11302
|
# @return [String]
|
@@ -11394,6 +11377,11 @@ module Aws::RDS
|
|
11394
11377
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
11395
11378
|
# @return [Array<Types::Tag>]
|
11396
11379
|
#
|
11380
|
+
# @!attribute [rw] snapshot_target
|
11381
|
+
# Specifies where manual snapshots are stored: Dedicated Local Zones,
|
11382
|
+
# Amazon Web Services Outposts or the Amazon Web Services Region.
|
11383
|
+
# @return [String]
|
11384
|
+
#
|
11397
11385
|
# @!attribute [rw] original_snapshot_create_time
|
11398
11386
|
# Specifies the time of the CreateDBSnapshot operation in Coordinated
|
11399
11387
|
# Universal Time (UTC). Doesn't change when the snapshot is copied.
|
@@ -11412,32 +11400,23 @@ module Aws::RDS
|
|
11412
11400
|
# SnapshotDatabaseTime, then the replica lag is two hours.
|
11413
11401
|
# @return [Time]
|
11414
11402
|
#
|
11415
|
-
# @!attribute [rw] snapshot_target
|
11416
|
-
# Specifies where manual snapshots are stored: Dedicated Local Zones,
|
11417
|
-
# Amazon Web Services Outposts or the Amazon Web Services Region.
|
11418
|
-
# @return [String]
|
11419
|
-
#
|
11420
|
-
# @!attribute [rw] storage_throughput
|
11421
|
-
# Specifies the storage throughput for the DB snapshot.
|
11422
|
-
# @return [Integer]
|
11423
|
-
#
|
11424
11403
|
# @!attribute [rw] db_system_id
|
11425
11404
|
# The Oracle system identifier (SID), which is the name of the Oracle
|
11426
11405
|
# database instance that manages your database files. The Oracle SID
|
11427
11406
|
# is also the name of your CDB.
|
11428
11407
|
# @return [String]
|
11429
11408
|
#
|
11430
|
-
# @!attribute [rw] dedicated_log_volume
|
11431
|
-
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
11432
|
-
# enabled.
|
11433
|
-
# @return [Boolean]
|
11434
|
-
#
|
11435
11409
|
# @!attribute [rw] multi_tenant
|
11436
11410
|
# Indicates whether the snapshot is of a DB instance using the
|
11437
11411
|
# multi-tenant configuration (TRUE) or the single-tenant configuration
|
11438
11412
|
# (FALSE).
|
11439
11413
|
# @return [Boolean]
|
11440
11414
|
#
|
11415
|
+
# @!attribute [rw] dedicated_log_volume
|
11416
|
+
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
11417
|
+
# enabled.
|
11418
|
+
# @return [Boolean]
|
11419
|
+
#
|
11441
11420
|
# @!attribute [rw] snapshot_availability_zone
|
11442
11421
|
# Specifies the name of the Availability Zone where RDS stores the DB
|
11443
11422
|
# snapshot. This value is valid only for snapshots that RDS stores on
|
@@ -11462,6 +11441,7 @@ module Aws::RDS
|
|
11462
11441
|
:license_model,
|
11463
11442
|
:snapshot_type,
|
11464
11443
|
:iops,
|
11444
|
+
:storage_throughput,
|
11465
11445
|
:option_group_name,
|
11466
11446
|
:percent_progress,
|
11467
11447
|
:source_region,
|
@@ -11476,13 +11456,12 @@ module Aws::RDS
|
|
11476
11456
|
:processor_features,
|
11477
11457
|
:dbi_resource_id,
|
11478
11458
|
:tag_list,
|
11459
|
+
:snapshot_target,
|
11479
11460
|
:original_snapshot_create_time,
|
11480
11461
|
:snapshot_database_time,
|
11481
|
-
:snapshot_target,
|
11482
|
-
:storage_throughput,
|
11483
11462
|
:db_system_id,
|
11484
|
-
:dedicated_log_volume,
|
11485
11463
|
:multi_tenant,
|
11464
|
+
:dedicated_log_volume,
|
11486
11465
|
:snapshot_availability_zone)
|
11487
11466
|
SENSITIVE = []
|
11488
11467
|
include Aws::Structure
|
@@ -15950,7 +15929,7 @@ module Aws::RDS
|
|
15950
15929
|
:log_file_data,
|
15951
15930
|
:marker,
|
15952
15931
|
:additional_data_pending)
|
15953
|
-
SENSITIVE = []
|
15932
|
+
SENSITIVE = [:log_file_data]
|
15954
15933
|
include Aws::Structure
|
15955
15934
|
end
|
15956
15935
|
|
@@ -17068,15 +17047,6 @@ module Aws::RDS
|
|
17068
17047
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
17069
17048
|
# @return [Array<Types::Tag>]
|
17070
17049
|
#
|
17071
|
-
# @!attribute [rw] create_time
|
17072
|
-
# The time when the integration was created, in Universal Coordinated
|
17073
|
-
# Time (UTC).
|
17074
|
-
# @return [Time]
|
17075
|
-
#
|
17076
|
-
# @!attribute [rw] errors
|
17077
|
-
# Any errors associated with the integration.
|
17078
|
-
# @return [Array<Types::IntegrationError>]
|
17079
|
-
#
|
17080
17050
|
# @!attribute [rw] data_filter
|
17081
17051
|
# Data filters for the integration. These filters determine which
|
17082
17052
|
# tables from the source database are sent to the target Amazon
|
@@ -17087,6 +17057,15 @@ module Aws::RDS
|
|
17087
17057
|
# A description of the integration.
|
17088
17058
|
# @return [String]
|
17089
17059
|
#
|
17060
|
+
# @!attribute [rw] create_time
|
17061
|
+
# The time when the integration was created, in Universal Coordinated
|
17062
|
+
# Time (UTC).
|
17063
|
+
# @return [Time]
|
17064
|
+
#
|
17065
|
+
# @!attribute [rw] errors
|
17066
|
+
# Any errors associated with the integration.
|
17067
|
+
# @return [Array<Types::IntegrationError>]
|
17068
|
+
#
|
17090
17069
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/Integration AWS API Documentation
|
17091
17070
|
#
|
17092
17071
|
class Integration < Struct.new(
|
@@ -17098,10 +17077,10 @@ module Aws::RDS
|
|
17098
17077
|
:additional_encryption_context,
|
17099
17078
|
:status,
|
17100
17079
|
:tags,
|
17101
|
-
:create_time,
|
17102
|
-
:errors,
|
17103
17080
|
:data_filter,
|
17104
|
-
:description
|
17081
|
+
:description,
|
17082
|
+
:create_time,
|
17083
|
+
:errors)
|
17105
17084
|
SENSITIVE = []
|
17106
17085
|
include Aws::Structure
|
17107
17086
|
end
|
@@ -18299,6 +18278,37 @@ module Aws::RDS
|
|
18299
18278
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Upgrading.html#USER_UpgradeDBInstance.Upgrading.AutoMinorVersionUpgrades
|
18300
18279
|
# @return [Boolean]
|
18301
18280
|
#
|
18281
|
+
# @!attribute [rw] network_type
|
18282
|
+
# The network type of the DB cluster.
|
18283
|
+
#
|
18284
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
18285
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
18286
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
18287
|
+
#
|
18288
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
18289
|
+
# in the *Amazon Aurora User Guide.*
|
18290
|
+
#
|
18291
|
+
# Valid for Cluster Type: Aurora DB clusters only
|
18292
|
+
#
|
18293
|
+
# Valid Values: `IPV4 | DUAL`
|
18294
|
+
#
|
18295
|
+
#
|
18296
|
+
#
|
18297
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
18298
|
+
# @return [String]
|
18299
|
+
#
|
18300
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
18301
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
18302
|
+
# cluster.
|
18303
|
+
#
|
18304
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
18305
|
+
# the *Amazon Aurora User Guide*.
|
18306
|
+
#
|
18307
|
+
#
|
18308
|
+
#
|
18309
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
18310
|
+
# @return [Types::ServerlessV2ScalingConfiguration]
|
18311
|
+
#
|
18302
18312
|
# @!attribute [rw] monitoring_interval
|
18303
18313
|
# The interval, in seconds, between points when Enhanced Monitoring
|
18304
18314
|
# metrics are collected for the DB cluster. To turn off collecting
|
@@ -18397,37 +18407,6 @@ module Aws::RDS
|
|
18397
18407
|
# Amazon RDS issues an error.
|
18398
18408
|
# @return [Integer]
|
18399
18409
|
#
|
18400
|
-
# @!attribute [rw] serverless_v2_scaling_configuration
|
18401
|
-
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
18402
|
-
# cluster.
|
18403
|
-
#
|
18404
|
-
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
18405
|
-
# the *Amazon Aurora User Guide*.
|
18406
|
-
#
|
18407
|
-
#
|
18408
|
-
#
|
18409
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
18410
|
-
# @return [Types::ServerlessV2ScalingConfiguration]
|
18411
|
-
#
|
18412
|
-
# @!attribute [rw] network_type
|
18413
|
-
# The network type of the DB cluster.
|
18414
|
-
#
|
18415
|
-
# The network type is determined by the `DBSubnetGroup` specified for
|
18416
|
-
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
18417
|
-
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
18418
|
-
#
|
18419
|
-
# For more information, see [ Working with a DB instance in a VPC][1]
|
18420
|
-
# in the *Amazon Aurora User Guide.*
|
18421
|
-
#
|
18422
|
-
# Valid for Cluster Type: Aurora DB clusters only
|
18423
|
-
#
|
18424
|
-
# Valid Values: `IPV4 | DUAL`
|
18425
|
-
#
|
18426
|
-
#
|
18427
|
-
#
|
18428
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
18429
|
-
# @return [String]
|
18430
|
-
#
|
18431
18410
|
# @!attribute [rw] manage_master_user_password
|
18432
18411
|
# Specifies whether to manage the master user password with Amazon Web
|
18433
18412
|
# Services Secrets Manager.
|
@@ -18484,6 +18463,14 @@ module Aws::RDS
|
|
18484
18463
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/rds-secrets-manager.html
|
18485
18464
|
# @return [Boolean]
|
18486
18465
|
#
|
18466
|
+
# @!attribute [rw] enable_local_write_forwarding
|
18467
|
+
# Specifies whether read replicas can forward write operations to the
|
18468
|
+
# writer DB instance in the DB cluster. By default, write operations
|
18469
|
+
# aren't allowed on reader DB instances.
|
18470
|
+
#
|
18471
|
+
# Valid for: Aurora DB clusters only
|
18472
|
+
# @return [Boolean]
|
18473
|
+
#
|
18487
18474
|
# @!attribute [rw] master_user_secret_kms_key_id
|
18488
18475
|
# The Amazon Web Services KMS key identifier to encrypt a secret that
|
18489
18476
|
# is automatically generated and managed in Amazon Web Services
|
@@ -18554,14 +18541,6 @@ module Aws::RDS
|
|
18554
18541
|
# ^
|
18555
18542
|
# @return [Boolean]
|
18556
18543
|
#
|
18557
|
-
# @!attribute [rw] enable_local_write_forwarding
|
18558
|
-
# Specifies whether read replicas can forward write operations to the
|
18559
|
-
# writer DB instance in the DB cluster. By default, write operations
|
18560
|
-
# aren't allowed on reader DB instances.
|
18561
|
-
#
|
18562
|
-
# Valid for: Aurora DB clusters only
|
18563
|
-
# @return [Boolean]
|
18564
|
-
#
|
18565
18544
|
# @!attribute [rw] aws_backup_recovery_point_arn
|
18566
18545
|
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
18567
18546
|
# Services Backup.
|
@@ -18644,25 +18623,25 @@ module Aws::RDS
|
|
18644
18623
|
:storage_type,
|
18645
18624
|
:iops,
|
18646
18625
|
:auto_minor_version_upgrade,
|
18626
|
+
:network_type,
|
18627
|
+
:serverless_v2_scaling_configuration,
|
18647
18628
|
:monitoring_interval,
|
18648
18629
|
:monitoring_role_arn,
|
18649
18630
|
:database_insights_mode,
|
18650
18631
|
:enable_performance_insights,
|
18651
18632
|
:performance_insights_kms_key_id,
|
18652
18633
|
:performance_insights_retention_period,
|
18653
|
-
:serverless_v2_scaling_configuration,
|
18654
|
-
:network_type,
|
18655
18634
|
:manage_master_user_password,
|
18656
18635
|
:rotate_master_user_password,
|
18636
|
+
:enable_local_write_forwarding,
|
18657
18637
|
:master_user_secret_kms_key_id,
|
18658
18638
|
:engine_mode,
|
18659
18639
|
:allow_engine_mode_change,
|
18660
|
-
:enable_local_write_forwarding,
|
18661
18640
|
:aws_backup_recovery_point_arn,
|
18662
18641
|
:enable_limitless_database,
|
18663
18642
|
:ca_certificate_identifier,
|
18664
18643
|
:master_user_authentication_type)
|
18665
|
-
SENSITIVE = []
|
18644
|
+
SENSITIVE = [:master_user_password]
|
18666
18645
|
include Aws::Structure
|
18667
18646
|
end
|
18668
18647
|
|
@@ -19283,6 +19262,15 @@ module Aws::RDS
|
|
19283
19262
|
# Default: Uses existing setting
|
19284
19263
|
# @return [Integer]
|
19285
19264
|
#
|
19265
|
+
# @!attribute [rw] storage_throughput
|
19266
|
+
# The storage throughput value for the DB instance.
|
19267
|
+
#
|
19268
|
+
# This setting applies only to the `gp3` storage type.
|
19269
|
+
#
|
19270
|
+
# This setting doesn't apply to Amazon Aurora or RDS Custom DB
|
19271
|
+
# instances.
|
19272
|
+
# @return [Integer]
|
19273
|
+
#
|
19286
19274
|
# @!attribute [rw] option_group_name
|
19287
19275
|
# The option group to associate the DB instance with.
|
19288
19276
|
#
|
@@ -19420,7 +19408,7 @@ module Aws::RDS
|
|
19420
19408
|
#
|
19421
19409
|
# * Must be in the distinguished name format.
|
19422
19410
|
#
|
19423
|
-
#
|
19411
|
+
# ^
|
19424
19412
|
#
|
19425
19413
|
# Example:
|
19426
19414
|
# `OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain`
|
@@ -19449,6 +19437,11 @@ module Aws::RDS
|
|
19449
19437
|
# Example: `123.124.125.126,234.235.236.237`
|
19450
19438
|
# @return [Array<String>]
|
19451
19439
|
#
|
19440
|
+
# @!attribute [rw] disable_domain
|
19441
|
+
# Specifies whether to remove the DB instance from the Active
|
19442
|
+
# Directory domain.
|
19443
|
+
# @return [Boolean]
|
19444
|
+
#
|
19452
19445
|
# @!attribute [rw] copy_tags_to_snapshot
|
19453
19446
|
# Specifies whether to copy all tags from the DB instance to snapshots
|
19454
19447
|
# of the DB instance. By default, tags aren't copied.
|
@@ -19560,11 +19553,6 @@ module Aws::RDS
|
|
19560
19553
|
# This setting doesn't apply to RDS Custom DB instances.
|
19561
19554
|
# @return [String]
|
19562
19555
|
#
|
19563
|
-
# @!attribute [rw] disable_domain
|
19564
|
-
# Specifies whether to remove the DB instance from the Active
|
19565
|
-
# Directory domain.
|
19566
|
-
# @return [Boolean]
|
19567
|
-
#
|
19568
19556
|
# @!attribute [rw] promotion_tier
|
19569
19557
|
# The order of priority in which an Aurora Replica is promoted to the
|
19570
19558
|
# primary instance after a failure of the existing primary instance.
|
@@ -19820,6 +19808,26 @@ module Aws::RDS
|
|
19820
19808
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
19821
19809
|
# @return [String]
|
19822
19810
|
#
|
19811
|
+
# @!attribute [rw] automation_mode
|
19812
|
+
# The automation mode of the RDS Custom DB instance. If `full`, the DB
|
19813
|
+
# instance automates monitoring and instance recovery. If `all
|
19814
|
+
# paused`, the instance pauses automation for the duration set by
|
19815
|
+
# `ResumeFullAutomationModeMinutes`.
|
19816
|
+
# @return [String]
|
19817
|
+
#
|
19818
|
+
# @!attribute [rw] resume_full_automation_mode_minutes
|
19819
|
+
# The number of minutes to pause the automation. When the time period
|
19820
|
+
# ends, RDS Custom resumes full automation.
|
19821
|
+
#
|
19822
|
+
# Default: `60`
|
19823
|
+
#
|
19824
|
+
# Constraints:
|
19825
|
+
#
|
19826
|
+
# * Must be at least 60.
|
19827
|
+
#
|
19828
|
+
# * Must be no more than 1,440.
|
19829
|
+
# @return [Integer]
|
19830
|
+
#
|
19823
19831
|
# @!attribute [rw] enable_customer_owned_ip
|
19824
19832
|
# Specifies whether to enable a customer-owned IP address (CoIP) for
|
19825
19833
|
# an RDS on Outposts DB instance.
|
@@ -19843,33 +19851,6 @@ module Aws::RDS
|
|
19843
19851
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
19844
19852
|
# @return [Boolean]
|
19845
19853
|
#
|
19846
|
-
# @!attribute [rw] aws_backup_recovery_point_arn
|
19847
|
-
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
19848
|
-
# Services Backup.
|
19849
|
-
#
|
19850
|
-
# This setting doesn't apply to RDS Custom DB instances.
|
19851
|
-
# @return [String]
|
19852
|
-
#
|
19853
|
-
# @!attribute [rw] automation_mode
|
19854
|
-
# The automation mode of the RDS Custom DB instance. If `full`, the DB
|
19855
|
-
# instance automates monitoring and instance recovery. If `all
|
19856
|
-
# paused`, the instance pauses automation for the duration set by
|
19857
|
-
# `ResumeFullAutomationModeMinutes`.
|
19858
|
-
# @return [String]
|
19859
|
-
#
|
19860
|
-
# @!attribute [rw] resume_full_automation_mode_minutes
|
19861
|
-
# The number of minutes to pause the automation. When the time period
|
19862
|
-
# ends, RDS Custom resumes full automation.
|
19863
|
-
#
|
19864
|
-
# Default: `60`
|
19865
|
-
#
|
19866
|
-
# Constraints:
|
19867
|
-
#
|
19868
|
-
# * Must be at least 60.
|
19869
|
-
#
|
19870
|
-
# * Must be no more than 1,440.
|
19871
|
-
# @return [Integer]
|
19872
|
-
#
|
19873
19854
|
# @!attribute [rw] network_type
|
19874
19855
|
# The network type of the DB instance.
|
19875
19856
|
#
|
@@ -19887,14 +19868,12 @@ module Aws::RDS
|
|
19887
19868
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
19888
19869
|
# @return [String]
|
19889
19870
|
#
|
19890
|
-
# @!attribute [rw]
|
19891
|
-
# The
|
19892
|
-
#
|
19893
|
-
# This setting applies only to the `gp3` storage type.
|
19871
|
+
# @!attribute [rw] aws_backup_recovery_point_arn
|
19872
|
+
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
19873
|
+
# Services Backup.
|
19894
19874
|
#
|
19895
|
-
# This setting doesn't apply to
|
19896
|
-
#
|
19897
|
-
# @return [Integer]
|
19875
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
19876
|
+
# @return [String]
|
19898
19877
|
#
|
19899
19878
|
# @!attribute [rw] manage_master_user_password
|
19900
19879
|
# Specifies whether to manage the master user password with Amazon Web
|
@@ -19983,10 +19962,33 @@ module Aws::RDS
|
|
19983
19962
|
# different Amazon Web Services account, specify the key ARN or alias
|
19984
19963
|
# ARN.
|
19985
19964
|
#
|
19986
|
-
# There is a default KMS key for your Amazon Web Services account.
|
19987
|
-
# Your Amazon Web Services account has a different default KMS key for
|
19988
|
-
# each Amazon Web Services Region.
|
19989
|
-
# @return [String]
|
19965
|
+
# There is a default KMS key for your Amazon Web Services account.
|
19966
|
+
# Your Amazon Web Services account has a different default KMS key for
|
19967
|
+
# each Amazon Web Services Region.
|
19968
|
+
# @return [String]
|
19969
|
+
#
|
19970
|
+
# @!attribute [rw] multi_tenant
|
19971
|
+
# Specifies whether the to convert your DB instance from the
|
19972
|
+
# single-tenant configuration to the multi-tenant configuration. This
|
19973
|
+
# parameter is supported only for RDS for Oracle CDB instances.
|
19974
|
+
#
|
19975
|
+
# During the conversion, RDS creates an initial tenant database and
|
19976
|
+
# associates the DB name, master user name, character set, and
|
19977
|
+
# national character set metadata with this database. The tags
|
19978
|
+
# associated with the instance also propagate to the initial tenant
|
19979
|
+
# database. You can add more tenant databases to your DB instance by
|
19980
|
+
# using the `CreateTenantDatabase` operation.
|
19981
|
+
#
|
19982
|
+
# The conversion to the multi-tenant configuration is permanent and
|
19983
|
+
# irreversible, so you can't later convert back to the single-tenant
|
19984
|
+
# configuration. When you specify this parameter, you must also
|
19985
|
+
# specify `ApplyImmediately`.
|
19986
|
+
# @return [Boolean]
|
19987
|
+
#
|
19988
|
+
# @!attribute [rw] dedicated_log_volume
|
19989
|
+
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
19990
|
+
# enabled.
|
19991
|
+
# @return [Boolean]
|
19990
19992
|
#
|
19991
19993
|
# @!attribute [rw] engine
|
19992
19994
|
# The target Oracle DB engine when you convert a non-CDB to a CDB.
|
@@ -20018,29 +20020,6 @@ module Aws::RDS
|
|
20018
20020
|
# `--option-group-name`.
|
20019
20021
|
# @return [String]
|
20020
20022
|
#
|
20021
|
-
# @!attribute [rw] dedicated_log_volume
|
20022
|
-
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
20023
|
-
# enabled.
|
20024
|
-
# @return [Boolean]
|
20025
|
-
#
|
20026
|
-
# @!attribute [rw] multi_tenant
|
20027
|
-
# Specifies whether the to convert your DB instance from the
|
20028
|
-
# single-tenant configuration to the multi-tenant configuration. This
|
20029
|
-
# parameter is supported only for RDS for Oracle CDB instances.
|
20030
|
-
#
|
20031
|
-
# During the conversion, RDS creates an initial tenant database and
|
20032
|
-
# associates the DB name, master user name, character set, and
|
20033
|
-
# national character set metadata with this database. The tags
|
20034
|
-
# associated with the instance also propagate to the initial tenant
|
20035
|
-
# database. You can add more tenant databases to your DB instance by
|
20036
|
-
# using the `CreateTenantDatabase` operation.
|
20037
|
-
#
|
20038
|
-
# The conversion to the multi-tenant configuration is permanent and
|
20039
|
-
# irreversible, so you can't later convert back to the single-tenant
|
20040
|
-
# configuration. When you specify this parameter, you must also
|
20041
|
-
# specify `ApplyImmediately`.
|
20042
|
-
# @return [Boolean]
|
20043
|
-
#
|
20044
20023
|
# @!attribute [rw] master_user_authentication_type
|
20045
20024
|
# Specifies the authentication type for the master user. With IAM
|
20046
20025
|
# master user authentication, you can change the master DB user to use
|
@@ -20078,6 +20057,7 @@ module Aws::RDS
|
|
20078
20057
|
:auto_minor_version_upgrade,
|
20079
20058
|
:license_model,
|
20080
20059
|
:iops,
|
20060
|
+
:storage_throughput,
|
20081
20061
|
:option_group_name,
|
20082
20062
|
:new_db_instance_identifier,
|
20083
20063
|
:storage_type,
|
@@ -20089,13 +20069,13 @@ module Aws::RDS
|
|
20089
20069
|
:domain_ou,
|
20090
20070
|
:domain_auth_secret_arn,
|
20091
20071
|
:domain_dns_ips,
|
20072
|
+
:disable_domain,
|
20092
20073
|
:copy_tags_to_snapshot,
|
20093
20074
|
:monitoring_interval,
|
20094
20075
|
:db_port_number,
|
20095
20076
|
:publicly_accessible,
|
20096
20077
|
:monitoring_role_arn,
|
20097
20078
|
:domain_iam_role_name,
|
20098
|
-
:disable_domain,
|
20099
20079
|
:promotion_tier,
|
20100
20080
|
:enable_iam_database_authentication,
|
20101
20081
|
:database_insights_mode,
|
@@ -20109,20 +20089,19 @@ module Aws::RDS
|
|
20109
20089
|
:max_allocated_storage,
|
20110
20090
|
:certificate_rotation_restart,
|
20111
20091
|
:replica_mode,
|
20112
|
-
:enable_customer_owned_ip,
|
20113
|
-
:aws_backup_recovery_point_arn,
|
20114
20092
|
:automation_mode,
|
20115
20093
|
:resume_full_automation_mode_minutes,
|
20094
|
+
:enable_customer_owned_ip,
|
20116
20095
|
:network_type,
|
20117
|
-
:
|
20096
|
+
:aws_backup_recovery_point_arn,
|
20118
20097
|
:manage_master_user_password,
|
20119
20098
|
:rotate_master_user_password,
|
20120
20099
|
:master_user_secret_kms_key_id,
|
20121
|
-
:engine,
|
20122
|
-
:dedicated_log_volume,
|
20123
20100
|
:multi_tenant,
|
20101
|
+
:dedicated_log_volume,
|
20102
|
+
:engine,
|
20124
20103
|
:master_user_authentication_type)
|
20125
|
-
SENSITIVE = []
|
20104
|
+
SENSITIVE = [:master_user_password, :tde_credential_password]
|
20126
20105
|
include Aws::Structure
|
20127
20106
|
end
|
20128
20107
|
|
@@ -21540,7 +21519,7 @@ module Aws::RDS
|
|
21540
21519
|
:allowed_values,
|
21541
21520
|
:is_modifiable,
|
21542
21521
|
:is_collection)
|
21543
|
-
SENSITIVE = []
|
21522
|
+
SENSITIVE = [:value]
|
21544
21523
|
include Aws::Structure
|
21545
21524
|
end
|
21546
21525
|
|
@@ -21617,6 +21596,10 @@ module Aws::RDS
|
|
21617
21596
|
# Indicates whether a DB instance supports provisioned IOPS.
|
21618
21597
|
# @return [Boolean]
|
21619
21598
|
#
|
21599
|
+
# @!attribute [rw] supports_storage_throughput
|
21600
|
+
# Indicates whether a DB instance supports storage throughput.
|
21601
|
+
# @return [Boolean]
|
21602
|
+
#
|
21620
21603
|
# @!attribute [rw] supports_enhanced_monitoring
|
21621
21604
|
# Indicates whether a DB instance supports Enhanced Monitoring at
|
21622
21605
|
# intervals from 1 to 60 seconds.
|
@@ -21655,6 +21638,24 @@ module Aws::RDS
|
|
21655
21638
|
# Maximum provisioned IOPS per GiB for a DB instance.
|
21656
21639
|
# @return [Float]
|
21657
21640
|
#
|
21641
|
+
# @!attribute [rw] min_storage_throughput_per_db_instance
|
21642
|
+
# Minimum storage throughput for a DB instance.
|
21643
|
+
# @return [Integer]
|
21644
|
+
#
|
21645
|
+
# @!attribute [rw] max_storage_throughput_per_db_instance
|
21646
|
+
# Maximum storage throughput for a DB instance.
|
21647
|
+
# @return [Integer]
|
21648
|
+
#
|
21649
|
+
# @!attribute [rw] min_storage_throughput_per_iops
|
21650
|
+
# Minimum storage throughput to provisioned IOPS ratio for a DB
|
21651
|
+
# instance.
|
21652
|
+
# @return [Float]
|
21653
|
+
#
|
21654
|
+
# @!attribute [rw] max_storage_throughput_per_iops
|
21655
|
+
# Maximum storage throughput to provisioned IOPS ratio for a DB
|
21656
|
+
# instance.
|
21657
|
+
# @return [Float]
|
21658
|
+
#
|
21658
21659
|
# @!attribute [rw] available_processor_features
|
21659
21660
|
# A list of the available processor features for the DB instance class
|
21660
21661
|
# of a DB instance.
|
@@ -21696,19 +21697,6 @@ module Aws::RDS
|
|
21696
21697
|
# specific combination of other DB engine attributes.
|
21697
21698
|
# @return [Boolean]
|
21698
21699
|
#
|
21699
|
-
# @!attribute [rw] supports_clusters
|
21700
|
-
# Indicates whether DB instances can be configured as a Multi-AZ DB
|
21701
|
-
# cluster.
|
21702
|
-
#
|
21703
|
-
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
21704
|
-
# deployments with two readable standby DB instances][1] in the
|
21705
|
-
# *Amazon RDS User Guide.*
|
21706
|
-
#
|
21707
|
-
#
|
21708
|
-
#
|
21709
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
21710
|
-
# @return [Boolean]
|
21711
|
-
#
|
21712
21700
|
# @!attribute [rw] supported_network_types
|
21713
21701
|
# The network types supported by the DB instance (`IPV4` or `DUAL`).
|
21714
21702
|
#
|
@@ -21723,27 +21711,18 @@ module Aws::RDS
|
|
21723
21711
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
21724
21712
|
# @return [Array<String>]
|
21725
21713
|
#
|
21726
|
-
# @!attribute [rw]
|
21727
|
-
# Indicates whether
|
21728
|
-
#
|
21714
|
+
# @!attribute [rw] supports_clusters
|
21715
|
+
# Indicates whether DB instances can be configured as a Multi-AZ DB
|
21716
|
+
# cluster.
|
21729
21717
|
#
|
21730
|
-
#
|
21731
|
-
#
|
21732
|
-
#
|
21718
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
21719
|
+
# deployments with two readable standby DB instances][1] in the
|
21720
|
+
# *Amazon RDS User Guide.*
|
21733
21721
|
#
|
21734
|
-
# @!attribute [rw] max_storage_throughput_per_db_instance
|
21735
|
-
# Maximum storage throughput for a DB instance.
|
21736
|
-
# @return [Integer]
|
21737
21722
|
#
|
21738
|
-
# @!attribute [rw] min_storage_throughput_per_iops
|
21739
|
-
# Minimum storage throughput to provisioned IOPS ratio for a DB
|
21740
|
-
# instance.
|
21741
|
-
# @return [Float]
|
21742
21723
|
#
|
21743
|
-
#
|
21744
|
-
#
|
21745
|
-
# instance.
|
21746
|
-
# @return [Float]
|
21724
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
21725
|
+
# @return [Boolean]
|
21747
21726
|
#
|
21748
21727
|
# @!attribute [rw] supports_dedicated_log_volume
|
21749
21728
|
# Indicates whether a DB instance supports using a dedicated log
|
@@ -21769,6 +21748,7 @@ module Aws::RDS
|
|
21769
21748
|
:supports_storage_encryption,
|
21770
21749
|
:storage_type,
|
21771
21750
|
:supports_iops,
|
21751
|
+
:supports_storage_throughput,
|
21772
21752
|
:supports_enhanced_monitoring,
|
21773
21753
|
:supports_iam_database_authentication,
|
21774
21754
|
:supports_performance_insights,
|
@@ -21778,6 +21758,10 @@ module Aws::RDS
|
|
21778
21758
|
:max_iops_per_db_instance,
|
21779
21759
|
:min_iops_per_gib,
|
21780
21760
|
:max_iops_per_gib,
|
21761
|
+
:min_storage_throughput_per_db_instance,
|
21762
|
+
:max_storage_throughput_per_db_instance,
|
21763
|
+
:min_storage_throughput_per_iops,
|
21764
|
+
:max_storage_throughput_per_iops,
|
21781
21765
|
:available_processor_features,
|
21782
21766
|
:supported_engine_modes,
|
21783
21767
|
:supports_storage_autoscaling,
|
@@ -21785,13 +21769,8 @@ module Aws::RDS
|
|
21785
21769
|
:outpost_capable,
|
21786
21770
|
:supported_activity_stream_modes,
|
21787
21771
|
:supports_global_databases,
|
21788
|
-
:supports_clusters,
|
21789
21772
|
:supported_network_types,
|
21790
|
-
:
|
21791
|
-
:min_storage_throughput_per_db_instance,
|
21792
|
-
:max_storage_throughput_per_db_instance,
|
21793
|
-
:min_storage_throughput_per_iops,
|
21794
|
-
:max_storage_throughput_per_iops,
|
21773
|
+
:supports_clusters,
|
21795
21774
|
:supports_dedicated_log_volume,
|
21796
21775
|
:supports_http_endpoint)
|
21797
21776
|
SENSITIVE = []
|
@@ -22083,6 +22062,10 @@ module Aws::RDS
|
|
22083
22062
|
# The Provisioned IOPS value for the DB instance.
|
22084
22063
|
# @return [Integer]
|
22085
22064
|
#
|
22065
|
+
# @!attribute [rw] storage_throughput
|
22066
|
+
# The storage throughput of the DB instance.
|
22067
|
+
# @return [Integer]
|
22068
|
+
#
|
22086
22069
|
# @!attribute [rw] db_instance_identifier
|
22087
22070
|
# The database identifier for the DB instance.
|
22088
22071
|
# @return [String]
|
@@ -22120,11 +22103,6 @@ module Aws::RDS
|
|
22120
22103
|
# DB instance class of the DB instance.
|
22121
22104
|
# @return [Array<Types::ProcessorFeature>]
|
22122
22105
|
#
|
22123
|
-
# @!attribute [rw] iam_database_authentication_enabled
|
22124
|
-
# Indicates whether mapping of Amazon Web Services Identity and Access
|
22125
|
-
# Management (IAM) accounts to database accounts is enabled.
|
22126
|
-
# @return [Boolean]
|
22127
|
-
#
|
22128
22106
|
# @!attribute [rw] automation_mode
|
22129
22107
|
# The automation mode of the RDS Custom DB instance: `full` or
|
22130
22108
|
# `all-paused`. If `full`, the DB instance automates monitoring and
|
@@ -22138,23 +22116,24 @@ module Aws::RDS
|
|
22138
22116
|
# (default). The maximum value is 1,440.
|
22139
22117
|
# @return [Time]
|
22140
22118
|
#
|
22141
|
-
# @!attribute [rw]
|
22142
|
-
#
|
22143
|
-
#
|
22119
|
+
# @!attribute [rw] multi_tenant
|
22120
|
+
# Indicates whether the DB instance will change to the multi-tenant
|
22121
|
+
# configuration (TRUE) or the single-tenant configuration (FALSE).
|
22122
|
+
# @return [Boolean]
|
22144
22123
|
#
|
22145
|
-
# @!attribute [rw]
|
22146
|
-
#
|
22147
|
-
#
|
22124
|
+
# @!attribute [rw] iam_database_authentication_enabled
|
22125
|
+
# Indicates whether mapping of Amazon Web Services Identity and Access
|
22126
|
+
# Management (IAM) accounts to database accounts is enabled.
|
22127
|
+
# @return [Boolean]
|
22148
22128
|
#
|
22149
22129
|
# @!attribute [rw] dedicated_log_volume
|
22150
22130
|
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
22151
22131
|
# enabled.>
|
22152
22132
|
# @return [Boolean]
|
22153
22133
|
#
|
22154
|
-
# @!attribute [rw]
|
22155
|
-
#
|
22156
|
-
#
|
22157
|
-
# @return [Boolean]
|
22134
|
+
# @!attribute [rw] engine
|
22135
|
+
# The database engine of the DB instance.
|
22136
|
+
# @return [String]
|
22158
22137
|
#
|
22159
22138
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PendingModifiedValues AWS API Documentation
|
22160
22139
|
#
|
@@ -22168,20 +22147,20 @@ module Aws::RDS
|
|
22168
22147
|
:engine_version,
|
22169
22148
|
:license_model,
|
22170
22149
|
:iops,
|
22150
|
+
:storage_throughput,
|
22171
22151
|
:db_instance_identifier,
|
22172
22152
|
:storage_type,
|
22173
22153
|
:ca_certificate_identifier,
|
22174
22154
|
:db_subnet_group_name,
|
22175
22155
|
:pending_cloudwatch_logs_exports,
|
22176
22156
|
:processor_features,
|
22177
|
-
:iam_database_authentication_enabled,
|
22178
22157
|
:automation_mode,
|
22179
22158
|
:resume_full_automation_mode_time,
|
22180
|
-
:
|
22181
|
-
:
|
22159
|
+
:multi_tenant,
|
22160
|
+
:iam_database_authentication_enabled,
|
22182
22161
|
:dedicated_log_volume,
|
22183
|
-
:
|
22184
|
-
SENSITIVE = []
|
22162
|
+
:engine)
|
22163
|
+
SENSITIVE = [:master_user_password]
|
22185
22164
|
include Aws::Structure
|
22186
22165
|
end
|
22187
22166
|
|
@@ -23771,17 +23750,15 @@ module Aws::RDS
|
|
23771
23750
|
# the Directory Service.
|
23772
23751
|
# @return [String]
|
23773
23752
|
#
|
23774
|
-
# @!attribute [rw]
|
23775
|
-
#
|
23776
|
-
# cluster.
|
23777
|
-
#
|
23778
|
-
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
23779
|
-
# the *Amazon Aurora User Guide*.
|
23753
|
+
# @!attribute [rw] storage_type
|
23754
|
+
# Specifies the storage type to be associated with the DB cluster.
|
23780
23755
|
#
|
23756
|
+
# Valid Values: `aurora`, `aurora-iopt1`
|
23781
23757
|
#
|
23758
|
+
# Default: `aurora`
|
23782
23759
|
#
|
23783
|
-
#
|
23784
|
-
# @return [
|
23760
|
+
# Valid for: Aurora DB clusters only
|
23761
|
+
# @return [String]
|
23785
23762
|
#
|
23786
23763
|
# @!attribute [rw] network_type
|
23787
23764
|
# The network type of the DB cluster.
|
@@ -23804,6 +23781,18 @@ module Aws::RDS
|
|
23804
23781
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
23805
23782
|
# @return [String]
|
23806
23783
|
#
|
23784
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
23785
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
23786
|
+
# cluster.
|
23787
|
+
#
|
23788
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
23789
|
+
# the *Amazon Aurora User Guide*.
|
23790
|
+
#
|
23791
|
+
#
|
23792
|
+
#
|
23793
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
23794
|
+
# @return [Types::ServerlessV2ScalingConfiguration]
|
23795
|
+
#
|
23807
23796
|
# @!attribute [rw] manage_master_user_password
|
23808
23797
|
# Specifies whether to manage the master user password with Amazon Web
|
23809
23798
|
# Services Secrets Manager.
|
@@ -23850,16 +23839,6 @@ module Aws::RDS
|
|
23850
23839
|
# each Amazon Web Services Region.
|
23851
23840
|
# @return [String]
|
23852
23841
|
#
|
23853
|
-
# @!attribute [rw] storage_type
|
23854
|
-
# Specifies the storage type to be associated with the DB cluster.
|
23855
|
-
#
|
23856
|
-
# Valid Values: `aurora`, `aurora-iopt1`
|
23857
|
-
#
|
23858
|
-
# Default: `aurora`
|
23859
|
-
#
|
23860
|
-
# Valid for: Aurora DB clusters only
|
23861
|
-
# @return [String]
|
23862
|
-
#
|
23863
23842
|
# @!attribute [rw] engine_lifecycle_support
|
23864
23843
|
# The life cycle type for this DB cluster.
|
23865
23844
|
#
|
@@ -23933,13 +23912,13 @@ module Aws::RDS
|
|
23933
23912
|
:copy_tags_to_snapshot,
|
23934
23913
|
:domain,
|
23935
23914
|
:domain_iam_role_name,
|
23936
|
-
:
|
23915
|
+
:storage_type,
|
23937
23916
|
:network_type,
|
23917
|
+
:serverless_v2_scaling_configuration,
|
23938
23918
|
:manage_master_user_password,
|
23939
23919
|
:master_user_secret_kms_key_id,
|
23940
|
-
:storage_type,
|
23941
23920
|
:engine_lifecycle_support)
|
23942
|
-
SENSITIVE = []
|
23921
|
+
SENSITIVE = [:master_user_password]
|
23943
23922
|
include Aws::Structure
|
23944
23923
|
end
|
23945
23924
|
|
@@ -24403,18 +24382,6 @@ module Aws::RDS
|
|
24403
24382
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
24404
24383
|
# @return [Boolean]
|
24405
24384
|
#
|
24406
|
-
# @!attribute [rw] serverless_v2_scaling_configuration
|
24407
|
-
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
24408
|
-
# cluster.
|
24409
|
-
#
|
24410
|
-
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
24411
|
-
# the *Amazon Aurora User Guide*.
|
24412
|
-
#
|
24413
|
-
#
|
24414
|
-
#
|
24415
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
24416
|
-
# @return [Types::ServerlessV2ScalingConfiguration]
|
24417
|
-
#
|
24418
24385
|
# @!attribute [rw] network_type
|
24419
24386
|
# The network type of the DB cluster.
|
24420
24387
|
#
|
@@ -24438,6 +24405,18 @@ module Aws::RDS
|
|
24438
24405
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
24439
24406
|
# @return [String]
|
24440
24407
|
#
|
24408
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
24409
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
24410
|
+
# cluster.
|
24411
|
+
#
|
24412
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
24413
|
+
# the *Amazon Aurora User Guide*.
|
24414
|
+
#
|
24415
|
+
#
|
24416
|
+
#
|
24417
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
24418
|
+
# @return [Types::ServerlessV2ScalingConfiguration]
|
24419
|
+
#
|
24441
24420
|
# @!attribute [rw] rds_custom_cluster_configuration
|
24442
24421
|
# Reserved for future use.
|
24443
24422
|
# @return [Types::RdsCustomClusterConfiguration]
|
@@ -24570,8 +24549,8 @@ module Aws::RDS
|
|
24570
24549
|
:storage_type,
|
24571
24550
|
:iops,
|
24572
24551
|
:publicly_accessible,
|
24573
|
-
:serverless_v2_scaling_configuration,
|
24574
24552
|
:network_type,
|
24553
|
+
:serverless_v2_scaling_configuration,
|
24575
24554
|
:rds_custom_cluster_configuration,
|
24576
24555
|
:monitoring_interval,
|
24577
24556
|
:monitoring_role_arn,
|
@@ -24910,26 +24889,6 @@ module Aws::RDS
|
|
24910
24889
|
# Valid for: Aurora DB clusters only
|
24911
24890
|
# @return [String]
|
24912
24891
|
#
|
24913
|
-
# @!attribute [rw] scaling_configuration
|
24914
|
-
# For DB clusters in `serverless` DB engine mode, the scaling
|
24915
|
-
# properties of the DB cluster.
|
24916
|
-
#
|
24917
|
-
# Valid for: Aurora DB clusters only
|
24918
|
-
# @return [Types::ScalingConfiguration]
|
24919
|
-
#
|
24920
|
-
# @!attribute [rw] engine_mode
|
24921
|
-
# The engine mode of the new cluster. Specify `provisioned` or
|
24922
|
-
# `serverless`, depending on the type of the cluster you are creating.
|
24923
|
-
# You can create an Aurora Serverless v1 clone from a provisioned
|
24924
|
-
# cluster, or a provisioned clone from an Aurora Serverless v1
|
24925
|
-
# cluster. To create a clone that is an Aurora Serverless v1 cluster,
|
24926
|
-
# the original cluster must be an Aurora Serverless v1 cluster or an
|
24927
|
-
# encrypted provisioned cluster. To create a full copy that is an
|
24928
|
-
# Aurora Serverless v1 cluster, specify the engine mode `serverless`.
|
24929
|
-
#
|
24930
|
-
# Valid for: Aurora DB clusters only
|
24931
|
-
# @return [String]
|
24932
|
-
#
|
24933
24892
|
# @!attribute [rw] db_cluster_instance_class
|
24934
24893
|
# The compute and memory capacity of the each DB instance in the
|
24935
24894
|
# Multi-AZ DB cluster, for example db.m6gd.xlarge. Not all DB instance
|
@@ -25016,18 +24975,6 @@ module Aws::RDS
|
|
25016
24975
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
25017
24976
|
# @return [Integer]
|
25018
24977
|
#
|
25019
|
-
# @!attribute [rw] serverless_v2_scaling_configuration
|
25020
|
-
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
25021
|
-
# cluster.
|
25022
|
-
#
|
25023
|
-
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
25024
|
-
# the *Amazon Aurora User Guide*.
|
25025
|
-
#
|
25026
|
-
#
|
25027
|
-
#
|
25028
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
25029
|
-
# @return [Types::ServerlessV2ScalingConfiguration]
|
25030
|
-
#
|
25031
24978
|
# @!attribute [rw] network_type
|
25032
24979
|
# The network type of the DB cluster.
|
25033
24980
|
#
|
@@ -25055,6 +25002,38 @@ module Aws::RDS
|
|
25055
25002
|
# The resource ID of the source DB cluster from which to restore.
|
25056
25003
|
# @return [String]
|
25057
25004
|
#
|
25005
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
25006
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
25007
|
+
# cluster.
|
25008
|
+
#
|
25009
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
25010
|
+
# the *Amazon Aurora User Guide*.
|
25011
|
+
#
|
25012
|
+
#
|
25013
|
+
#
|
25014
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
25015
|
+
# @return [Types::ServerlessV2ScalingConfiguration]
|
25016
|
+
#
|
25017
|
+
# @!attribute [rw] scaling_configuration
|
25018
|
+
# For DB clusters in `serverless` DB engine mode, the scaling
|
25019
|
+
# properties of the DB cluster.
|
25020
|
+
#
|
25021
|
+
# Valid for: Aurora DB clusters only
|
25022
|
+
# @return [Types::ScalingConfiguration]
|
25023
|
+
#
|
25024
|
+
# @!attribute [rw] engine_mode
|
25025
|
+
# The engine mode of the new cluster. Specify `provisioned` or
|
25026
|
+
# `serverless`, depending on the type of the cluster you are creating.
|
25027
|
+
# You can create an Aurora Serverless v1 clone from a provisioned
|
25028
|
+
# cluster, or a provisioned clone from an Aurora Serverless v1
|
25029
|
+
# cluster. To create a clone that is an Aurora Serverless v1 cluster,
|
25030
|
+
# the original cluster must be an Aurora Serverless v1 cluster or an
|
25031
|
+
# encrypted provisioned cluster. To create a full copy that is an
|
25032
|
+
# Aurora Serverless v1 cluster, specify the engine mode `serverless`.
|
25033
|
+
#
|
25034
|
+
# Valid for: Aurora DB clusters only
|
25035
|
+
# @return [String]
|
25036
|
+
#
|
25058
25037
|
# @!attribute [rw] rds_custom_cluster_configuration
|
25059
25038
|
# Reserved for future use.
|
25060
25039
|
# @return [Types::RdsCustomClusterConfiguration]
|
@@ -25180,15 +25159,15 @@ module Aws::RDS
|
|
25180
25159
|
:copy_tags_to_snapshot,
|
25181
25160
|
:domain,
|
25182
25161
|
:domain_iam_role_name,
|
25183
|
-
:scaling_configuration,
|
25184
|
-
:engine_mode,
|
25185
25162
|
:db_cluster_instance_class,
|
25186
25163
|
:storage_type,
|
25187
25164
|
:publicly_accessible,
|
25188
25165
|
:iops,
|
25189
|
-
:serverless_v2_scaling_configuration,
|
25190
25166
|
:network_type,
|
25191
25167
|
:source_db_cluster_resource_id,
|
25168
|
+
:serverless_v2_scaling_configuration,
|
25169
|
+
:scaling_configuration,
|
25170
|
+
:engine_mode,
|
25192
25171
|
:rds_custom_cluster_configuration,
|
25193
25172
|
:monitoring_interval,
|
25194
25173
|
:monitoring_role_arn,
|
@@ -25461,6 +25440,12 @@ module Aws::RDS
|
|
25461
25440
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
25462
25441
|
# @return [Integer]
|
25463
25442
|
#
|
25443
|
+
# @!attribute [rw] storage_throughput
|
25444
|
+
# Specifies the storage throughput value for the DB instance.
|
25445
|
+
#
|
25446
|
+
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
25447
|
+
# @return [Integer]
|
25448
|
+
#
|
25464
25449
|
# @!attribute [rw] option_group_name
|
25465
25450
|
# The name of the option group to be used for the restored DB
|
25466
25451
|
# instance.
|
@@ -25717,27 +25702,25 @@ module Aws::RDS
|
|
25717
25702
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
25718
25703
|
# @return [Boolean]
|
25719
25704
|
#
|
25720
|
-
# @!attribute [rw]
|
25721
|
-
# The
|
25722
|
-
# instance of an RDS Custom DB instance. The instance profile must
|
25723
|
-
# meet the following requirements:
|
25705
|
+
# @!attribute [rw] network_type
|
25706
|
+
# The network type of the DB instance.
|
25724
25707
|
#
|
25725
|
-
#
|
25708
|
+
# Valid Values:
|
25726
25709
|
#
|
25727
|
-
# *
|
25728
|
-
# to assume.
|
25710
|
+
# * `IPV4`
|
25729
25711
|
#
|
25730
|
-
# *
|
25731
|
-
# start with the prefix `AWSRDSCustom`.
|
25712
|
+
# * `DUAL`
|
25732
25713
|
#
|
25733
|
-
#
|
25734
|
-
#
|
25714
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
25715
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
25716
|
+
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
25735
25717
|
#
|
25736
|
-
#
|
25718
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
25719
|
+
# in the *Amazon RDS User Guide.*
|
25737
25720
|
#
|
25738
25721
|
#
|
25739
25722
|
#
|
25740
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
25723
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
25741
25724
|
# @return [String]
|
25742
25725
|
#
|
25743
25726
|
# @!attribute [rw] backup_target
|
@@ -25756,31 +25739,41 @@ module Aws::RDS
|
|
25756
25739
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
25757
25740
|
# @return [String]
|
25758
25741
|
#
|
25759
|
-
# @!attribute [rw]
|
25760
|
-
# The
|
25742
|
+
# @!attribute [rw] custom_iam_instance_profile
|
25743
|
+
# The instance profile associated with the underlying Amazon EC2
|
25744
|
+
# instance of an RDS Custom DB instance. The instance profile must
|
25745
|
+
# meet the following requirements:
|
25761
25746
|
#
|
25762
|
-
#
|
25747
|
+
# * The profile must exist in your account.
|
25763
25748
|
#
|
25764
|
-
# *
|
25749
|
+
# * The profile must have an IAM role that Amazon EC2 has permissions
|
25750
|
+
# to assume.
|
25765
25751
|
#
|
25766
|
-
# *
|
25752
|
+
# * The instance profile name and the associated IAM role name must
|
25753
|
+
# start with the prefix `AWSRDSCustom`.
|
25767
25754
|
#
|
25768
|
-
#
|
25769
|
-
#
|
25770
|
-
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
25755
|
+
# For the list of permissions required for the IAM role, see [
|
25756
|
+
# Configure IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
25771
25757
|
#
|
25772
|
-
#
|
25773
|
-
# in the *Amazon RDS User Guide.*
|
25758
|
+
# This setting is required for RDS Custom.
|
25774
25759
|
#
|
25775
25760
|
#
|
25776
25761
|
#
|
25777
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
25762
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
25778
25763
|
# @return [String]
|
25779
25764
|
#
|
25780
|
-
# @!attribute [rw]
|
25781
|
-
#
|
25765
|
+
# @!attribute [rw] allocated_storage
|
25766
|
+
# The amount of storage (in gibibytes) to allocate initially for the
|
25767
|
+
# DB instance. Follow the allocation rules specified in
|
25768
|
+
# CreateDBInstance.
|
25782
25769
|
#
|
25783
|
-
# This setting
|
25770
|
+
# This setting isn't valid for RDS for SQL Server.
|
25771
|
+
#
|
25772
|
+
# <note markdown="1"> Be sure to allocate enough storage for your new DB instance so that
|
25773
|
+
# the restore operation can succeed. You can also allocate additional
|
25774
|
+
# storage for future growth.
|
25775
|
+
#
|
25776
|
+
# </note>
|
25784
25777
|
# @return [Integer]
|
25785
25778
|
#
|
25786
25779
|
# @!attribute [rw] db_cluster_snapshot_identifier
|
@@ -25809,20 +25802,6 @@ module Aws::RDS
|
|
25809
25802
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
25810
25803
|
# @return [String]
|
25811
25804
|
#
|
25812
|
-
# @!attribute [rw] allocated_storage
|
25813
|
-
# The amount of storage (in gibibytes) to allocate initially for the
|
25814
|
-
# DB instance. Follow the allocation rules specified in
|
25815
|
-
# CreateDBInstance.
|
25816
|
-
#
|
25817
|
-
# This setting isn't valid for RDS for SQL Server.
|
25818
|
-
#
|
25819
|
-
# <note markdown="1"> Be sure to allocate enough storage for your new DB instance so that
|
25820
|
-
# the restore operation can succeed. You can also allocate additional
|
25821
|
-
# storage for future growth.
|
25822
|
-
#
|
25823
|
-
# </note>
|
25824
|
-
# @return [Integer]
|
25825
|
-
#
|
25826
25805
|
# @!attribute [rw] dedicated_log_volume
|
25827
25806
|
# Specifies whether to enable a dedicated log volume (DLV) for the DB
|
25828
25807
|
# instance.
|
@@ -25938,6 +25917,7 @@ module Aws::RDS
|
|
25938
25917
|
:db_name,
|
25939
25918
|
:engine,
|
25940
25919
|
:iops,
|
25920
|
+
:storage_throughput,
|
25941
25921
|
:option_group_name,
|
25942
25922
|
:tags,
|
25943
25923
|
:storage_type,
|
@@ -25958,18 +25938,17 @@ module Aws::RDS
|
|
25958
25938
|
:db_parameter_group_name,
|
25959
25939
|
:deletion_protection,
|
25960
25940
|
:enable_customer_owned_ip,
|
25961
|
-
:custom_iam_instance_profile,
|
25962
|
-
:backup_target,
|
25963
25941
|
:network_type,
|
25964
|
-
:
|
25965
|
-
:
|
25942
|
+
:backup_target,
|
25943
|
+
:custom_iam_instance_profile,
|
25966
25944
|
:allocated_storage,
|
25945
|
+
:db_cluster_snapshot_identifier,
|
25967
25946
|
:dedicated_log_volume,
|
25968
25947
|
:ca_certificate_identifier,
|
25969
25948
|
:engine_lifecycle_support,
|
25970
25949
|
:manage_master_user_password,
|
25971
25950
|
:master_user_secret_kms_key_id)
|
25972
|
-
SENSITIVE = []
|
25951
|
+
SENSITIVE = [:tde_credential_password]
|
25973
25952
|
include Aws::Structure
|
25974
25953
|
end
|
25975
25954
|
|
@@ -26235,6 +26214,12 @@ module Aws::RDS
|
|
26235
26214
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
26236
26215
|
# @return [Integer]
|
26237
26216
|
#
|
26217
|
+
# @!attribute [rw] storage_throughput
|
26218
|
+
# Specifies the storage throughput value for the DB instance.
|
26219
|
+
#
|
26220
|
+
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
26221
|
+
# @return [Integer]
|
26222
|
+
#
|
26238
26223
|
# @!attribute [rw] option_group_name
|
26239
26224
|
# The name of the option group to associate with this DB instance. If
|
26240
26225
|
# this argument is omitted, the default option group for the specified
|
@@ -26507,12 +26492,6 @@ module Aws::RDS
|
|
26507
26492
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
26508
26493
|
# @return [String]
|
26509
26494
|
#
|
26510
|
-
# @!attribute [rw] storage_throughput
|
26511
|
-
# Specifies the storage throughput value for the DB instance.
|
26512
|
-
#
|
26513
|
-
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
26514
|
-
# @return [Integer]
|
26515
|
-
#
|
26516
26495
|
# @!attribute [rw] manage_master_user_password
|
26517
26496
|
# Specifies whether to manage the master user password with Amazon Web
|
26518
26497
|
# Services Secrets Manager.
|
@@ -26637,6 +26616,7 @@ module Aws::RDS
|
|
26637
26616
|
:auto_minor_version_upgrade,
|
26638
26617
|
:license_model,
|
26639
26618
|
:iops,
|
26619
|
+
:storage_throughput,
|
26640
26620
|
:option_group_name,
|
26641
26621
|
:publicly_accessible,
|
26642
26622
|
:tags,
|
@@ -26662,13 +26642,12 @@ module Aws::RDS
|
|
26662
26642
|
:deletion_protection,
|
26663
26643
|
:max_allocated_storage,
|
26664
26644
|
:network_type,
|
26665
|
-
:storage_throughput,
|
26666
26645
|
:manage_master_user_password,
|
26667
26646
|
:master_user_secret_kms_key_id,
|
26668
26647
|
:dedicated_log_volume,
|
26669
26648
|
:ca_certificate_identifier,
|
26670
26649
|
:engine_lifecycle_support)
|
26671
|
-
SENSITIVE = []
|
26650
|
+
SENSITIVE = [:master_user_password]
|
26672
26651
|
include Aws::Structure
|
26673
26652
|
end
|
26674
26653
|
|
@@ -26944,6 +26923,12 @@ module Aws::RDS
|
|
26944
26923
|
# ^
|
26945
26924
|
# @return [Integer]
|
26946
26925
|
#
|
26926
|
+
# @!attribute [rw] storage_throughput
|
26927
|
+
# The storage throughput value for the DB instance.
|
26928
|
+
#
|
26929
|
+
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
26930
|
+
# @return [Integer]
|
26931
|
+
#
|
26947
26932
|
# @!attribute [rw] option_group_name
|
26948
26933
|
# The name of the option group to use for the restored DB instance.
|
26949
26934
|
#
|
@@ -27184,14 +27169,6 @@ module Aws::RDS
|
|
27184
27169
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
27185
27170
|
# @return [Integer]
|
27186
27171
|
#
|
27187
|
-
# @!attribute [rw] source_db_instance_automated_backups_arn
|
27188
|
-
# The Amazon Resource Name (ARN) of the replicated automated backups
|
27189
|
-
# from which to restore, for example,
|
27190
|
-
# `arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE`.
|
27191
|
-
#
|
27192
|
-
# This setting doesn't apply to RDS Custom.
|
27193
|
-
# @return [String]
|
27194
|
-
#
|
27195
27172
|
# @!attribute [rw] enable_customer_owned_ip
|
27196
27173
|
# Specifies whether to enable a customer-owned IP address (CoIP) for
|
27197
27174
|
# an RDS on Outposts DB instance.
|
@@ -27217,27 +27194,33 @@ module Aws::RDS
|
|
27217
27194
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
27218
27195
|
# @return [Boolean]
|
27219
27196
|
#
|
27220
|
-
# @!attribute [rw]
|
27221
|
-
# The
|
27222
|
-
# instance of an RDS Custom DB instance. The instance profile must
|
27223
|
-
# meet the following requirements:
|
27197
|
+
# @!attribute [rw] network_type
|
27198
|
+
# The network type of the DB instance.
|
27224
27199
|
#
|
27225
|
-
#
|
27200
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
27201
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
27202
|
+
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
27226
27203
|
#
|
27227
|
-
#
|
27228
|
-
#
|
27204
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
27205
|
+
# in the *Amazon RDS User Guide.*
|
27229
27206
|
#
|
27230
|
-
#
|
27231
|
-
# start with the prefix `AWSRDSCustom`.
|
27207
|
+
# Valid Values:
|
27232
27208
|
#
|
27233
|
-
#
|
27234
|
-
# Configure IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
27209
|
+
# * `IPV4`
|
27235
27210
|
#
|
27236
|
-
#
|
27211
|
+
# * `DUAL`
|
27237
27212
|
#
|
27238
27213
|
#
|
27239
27214
|
#
|
27240
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
27215
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
27216
|
+
# @return [String]
|
27217
|
+
#
|
27218
|
+
# @!attribute [rw] source_db_instance_automated_backups_arn
|
27219
|
+
# The Amazon Resource Name (ARN) of the replicated automated backups
|
27220
|
+
# from which to restore, for example,
|
27221
|
+
# `arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE`.
|
27222
|
+
#
|
27223
|
+
# This setting doesn't apply to RDS Custom.
|
27241
27224
|
# @return [String]
|
27242
27225
|
#
|
27243
27226
|
# @!attribute [rw] backup_target
|
@@ -27262,33 +27245,29 @@ module Aws::RDS
|
|
27262
27245
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
27263
27246
|
# @return [String]
|
27264
27247
|
#
|
27265
|
-
# @!attribute [rw]
|
27266
|
-
# The
|
27248
|
+
# @!attribute [rw] custom_iam_instance_profile
|
27249
|
+
# The instance profile associated with the underlying Amazon EC2
|
27250
|
+
# instance of an RDS Custom DB instance. The instance profile must
|
27251
|
+
# meet the following requirements:
|
27267
27252
|
#
|
27268
|
-
# The
|
27269
|
-
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
27270
|
-
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
27253
|
+
# * The profile must exist in your account.
|
27271
27254
|
#
|
27272
|
-
#
|
27273
|
-
#
|
27255
|
+
# * The profile must have an IAM role that Amazon EC2 has permissions
|
27256
|
+
# to assume.
|
27274
27257
|
#
|
27275
|
-
#
|
27258
|
+
# * The instance profile name and the associated IAM role name must
|
27259
|
+
# start with the prefix `AWSRDSCustom`.
|
27276
27260
|
#
|
27277
|
-
#
|
27261
|
+
# For the list of permissions required for the IAM role, see [
|
27262
|
+
# Configure IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
27278
27263
|
#
|
27279
|
-
#
|
27264
|
+
# This setting is required for RDS Custom.
|
27280
27265
|
#
|
27281
27266
|
#
|
27282
27267
|
#
|
27283
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
27268
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
27284
27269
|
# @return [String]
|
27285
27270
|
#
|
27286
|
-
# @!attribute [rw] storage_throughput
|
27287
|
-
# The storage throughput value for the DB instance.
|
27288
|
-
#
|
27289
|
-
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
27290
|
-
# @return [Integer]
|
27291
|
-
#
|
27292
27271
|
# @!attribute [rw] allocated_storage
|
27293
27272
|
# The amount of storage (in gibibytes) to allocate initially for the
|
27294
27273
|
# DB instance. Follow the allocation rules specified in
|
@@ -27420,6 +27399,7 @@ module Aws::RDS
|
|
27420
27399
|
:db_name,
|
27421
27400
|
:engine,
|
27422
27401
|
:iops,
|
27402
|
+
:storage_throughput,
|
27423
27403
|
:option_group_name,
|
27424
27404
|
:copy_tags_to_snapshot,
|
27425
27405
|
:tags,
|
@@ -27441,19 +27421,18 @@ module Aws::RDS
|
|
27441
27421
|
:deletion_protection,
|
27442
27422
|
:source_dbi_resource_id,
|
27443
27423
|
:max_allocated_storage,
|
27444
|
-
:source_db_instance_automated_backups_arn,
|
27445
27424
|
:enable_customer_owned_ip,
|
27446
|
-
:custom_iam_instance_profile,
|
27447
|
-
:backup_target,
|
27448
27425
|
:network_type,
|
27449
|
-
:
|
27426
|
+
:source_db_instance_automated_backups_arn,
|
27427
|
+
:backup_target,
|
27428
|
+
:custom_iam_instance_profile,
|
27450
27429
|
:allocated_storage,
|
27451
27430
|
:dedicated_log_volume,
|
27452
27431
|
:ca_certificate_identifier,
|
27453
27432
|
:engine_lifecycle_support,
|
27454
27433
|
:manage_master_user_password,
|
27455
27434
|
:master_user_secret_kms_key_id)
|
27456
|
-
SENSITIVE = []
|
27435
|
+
SENSITIVE = [:tde_credential_password]
|
27457
27436
|
include Aws::Structure
|
27458
27437
|
end
|
27459
27438
|
|
@@ -28033,17 +28012,17 @@ module Aws::RDS
|
|
28033
28012
|
# The mode of the database activity stream.
|
28034
28013
|
# @return [String]
|
28035
28014
|
#
|
28015
|
+
# @!attribute [rw] engine_native_audit_fields_included
|
28016
|
+
# Indicates whether engine-native audit fields are included in the
|
28017
|
+
# database activity stream.
|
28018
|
+
# @return [Boolean]
|
28019
|
+
#
|
28036
28020
|
# @!attribute [rw] apply_immediately
|
28037
28021
|
# Indicates whether or not the database activity stream will start as
|
28038
28022
|
# soon as possible, regardless of the maintenance window for the
|
28039
28023
|
# database.
|
28040
28024
|
# @return [Boolean]
|
28041
28025
|
#
|
28042
|
-
# @!attribute [rw] engine_native_audit_fields_included
|
28043
|
-
# Indicates whether engine-native audit fields are included in the
|
28044
|
-
# database activity stream.
|
28045
|
-
# @return [Boolean]
|
28046
|
-
#
|
28047
28026
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartActivityStreamResponse AWS API Documentation
|
28048
28027
|
#
|
28049
28028
|
class StartActivityStreamResponse < Struct.new(
|
@@ -28051,8 +28030,8 @@ module Aws::RDS
|
|
28051
28030
|
:kinesis_stream_name,
|
28052
28031
|
:status,
|
28053
28032
|
:mode,
|
28054
|
-
:
|
28055
|
-
:
|
28033
|
+
:engine_native_audit_fields_included,
|
28034
|
+
:apply_immediately)
|
28056
28035
|
SENSITIVE = []
|
28057
28036
|
include Aws::Structure
|
28058
28037
|
end
|
@@ -28172,7 +28151,7 @@ module Aws::RDS
|
|
28172
28151
|
:kms_key_id,
|
28173
28152
|
:pre_signed_url,
|
28174
28153
|
:source_region)
|
28175
|
-
SENSITIVE = []
|
28154
|
+
SENSITIVE = [:pre_signed_url]
|
28176
28155
|
include Aws::Structure
|
28177
28156
|
end
|
28178
28157
|
|
@@ -29322,11 +29301,6 @@ module Aws::RDS
|
|
29322
29301
|
# be between 3 and 10 times storage.
|
29323
29302
|
# @return [Array<Types::DoubleRange>]
|
29324
29303
|
#
|
29325
|
-
# @!attribute [rw] supports_storage_autoscaling
|
29326
|
-
# Indicates whether or not Amazon RDS can automatically scale storage
|
29327
|
-
# for DB instances that use the new instance class.
|
29328
|
-
# @return [Boolean]
|
29329
|
-
#
|
29330
29304
|
# @!attribute [rw] provisioned_storage_throughput
|
29331
29305
|
# The valid range of provisioned storage throughput. For example,
|
29332
29306
|
# 500-4,000 mebibytes per second (MiBps).
|
@@ -29337,6 +29311,11 @@ module Aws::RDS
|
|
29337
29311
|
# For example, 0-0.25.
|
29338
29312
|
# @return [Array<Types::DoubleRange>]
|
29339
29313
|
#
|
29314
|
+
# @!attribute [rw] supports_storage_autoscaling
|
29315
|
+
# Indicates whether or not Amazon RDS can automatically scale storage
|
29316
|
+
# for DB instances that use the new instance class.
|
29317
|
+
# @return [Boolean]
|
29318
|
+
#
|
29340
29319
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ValidStorageOptions AWS API Documentation
|
29341
29320
|
#
|
29342
29321
|
class ValidStorageOptions < Struct.new(
|
@@ -29344,9 +29323,9 @@ module Aws::RDS
|
|
29344
29323
|
:storage_size,
|
29345
29324
|
:provisioned_iops,
|
29346
29325
|
:iops_to_storage_ratio,
|
29347
|
-
:supports_storage_autoscaling,
|
29348
29326
|
:provisioned_storage_throughput,
|
29349
|
-
:storage_throughput_to_iops_ratio
|
29327
|
+
:storage_throughput_to_iops_ratio,
|
29328
|
+
:supports_storage_autoscaling)
|
29350
29329
|
SENSITIVE = []
|
29351
29330
|
include Aws::Structure
|
29352
29331
|
end
|