aws-sdk-rds 1.290.0 → 1.294.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +1518 -1355
- data/lib/aws-sdk-rds/client_api.rb +220 -159
- data/lib/aws-sdk-rds/customizations.rb +0 -1
- data/lib/aws-sdk-rds/db_cluster.rb +374 -341
- 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 +317 -289
- 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/option_group.rb +1 -1
- data/lib/aws-sdk-rds/resource.rb +212 -182
- data/lib/aws-sdk-rds/types.rb +1228 -1017
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +114 -105
- data/sig/db_cluster.rbs +68 -66
- data/sig/db_cluster_snapshot.rbs +6 -6
- data/sig/db_engine_version.rbs +21 -21
- data/sig/db_instance.rbs +47 -45
- data/sig/db_snapshot.rbs +14 -14
- data/sig/event.rbs +1 -1
- data/sig/resource.rbs +24 -22
- data/sig/types.rbs +133 -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
|
@@ -2925,110 +2841,105 @@ module Aws::RDS
|
|
2925
2841
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Upgrading.html#USER_UpgradeDBInstance.Upgrading.AutoMinorVersionUpgrades
|
2926
2842
|
# @return [Boolean]
|
2927
2843
|
#
|
2928
|
-
# @!attribute [rw]
|
2929
|
-
#
|
2930
|
-
#
|
2931
|
-
#
|
2932
|
-
#
|
2933
|
-
# If `MonitoringRoleArn` is specified, also set `MonitoringInterval`
|
2934
|
-
# to a value other than `0`.
|
2844
|
+
# @!attribute [rw] deletion_protection
|
2845
|
+
# Specifies whether the DB cluster has deletion protection enabled.
|
2846
|
+
# The database can't be deleted when deletion protection is enabled.
|
2847
|
+
# By default, deletion protection isn't enabled.
|
2935
2848
|
#
|
2936
2849
|
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
2850
|
+
# @return [Boolean]
|
2937
2851
|
#
|
2938
|
-
#
|
2939
|
-
#
|
2940
|
-
#
|
2941
|
-
# @return [Integer]
|
2942
|
-
#
|
2943
|
-
# @!attribute [rw] monitoring_role_arn
|
2944
|
-
# The Amazon Resource Name (ARN) for the IAM role that permits RDS to
|
2945
|
-
# send Enhanced Monitoring metrics to Amazon CloudWatch Logs. An
|
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*.
|
2949
|
-
#
|
2950
|
-
# If `MonitoringInterval` is set to a value other than `0`, supply a
|
2951
|
-
# `MonitoringRoleArn` value.
|
2852
|
+
# @!attribute [rw] global_cluster_identifier
|
2853
|
+
# The global cluster ID of an Aurora cluster that becomes the primary
|
2854
|
+
# cluster in the new global database cluster.
|
2952
2855
|
#
|
2953
|
-
# Valid for Cluster Type: Aurora DB clusters
|
2856
|
+
# Valid for Cluster Type: Aurora DB clusters only
|
2857
|
+
# @return [String]
|
2954
2858
|
#
|
2859
|
+
# @!attribute [rw] enable_http_endpoint
|
2860
|
+
# Specifies whether to enable the HTTP endpoint for the DB cluster. By
|
2861
|
+
# default, the HTTP endpoint isn't enabled.
|
2955
2862
|
#
|
2863
|
+
# When enabled, the HTTP endpoint provides a connectionless web
|
2864
|
+
# service API (RDS Data API) for running SQL queries on the DB
|
2865
|
+
# cluster. You can also query your database from inside the RDS
|
2866
|
+
# console with the RDS query editor.
|
2956
2867
|
#
|
2957
|
-
# [1]
|
2958
|
-
#
|
2868
|
+
# For more information, see [Using RDS Data API][1] in the *Amazon
|
2869
|
+
# Aurora User Guide*.
|
2959
2870
|
#
|
2960
|
-
#
|
2961
|
-
# The mode of Database Insights to enable for the DB cluster.
|
2871
|
+
# Valid for Cluster Type: Aurora DB clusters only
|
2962
2872
|
#
|
2963
|
-
# If you set this value to `advanced`, you must also set the
|
2964
|
-
# `PerformanceInsightsEnabled` parameter to `true` and the
|
2965
|
-
# `PerformanceInsightsRetentionPeriod` parameter to 465.
|
2966
2873
|
#
|
2967
|
-
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
2968
|
-
# @return [String]
|
2969
2874
|
#
|
2970
|
-
#
|
2971
|
-
#
|
2972
|
-
# cluster.
|
2875
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html
|
2876
|
+
# @return [Boolean]
|
2973
2877
|
#
|
2974
|
-
#
|
2975
|
-
# the
|
2878
|
+
# @!attribute [rw] copy_tags_to_snapshot
|
2879
|
+
# Specifies whether to copy all tags from the DB cluster to snapshots
|
2880
|
+
# of the DB cluster. The default is not to copy them.
|
2976
2881
|
#
|
2977
2882
|
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
2883
|
+
# @return [Boolean]
|
2978
2884
|
#
|
2885
|
+
# @!attribute [rw] domain
|
2886
|
+
# The Active Directory directory ID to create the DB cluster in.
|
2979
2887
|
#
|
2888
|
+
# For Amazon Aurora DB clusters, Amazon RDS can use Kerberos
|
2889
|
+
# authentication to authenticate users that connect to the DB cluster.
|
2980
2890
|
#
|
2981
|
-
# [1]
|
2982
|
-
#
|
2891
|
+
# For more information, see [Kerberos authentication][1] in the
|
2892
|
+
# *Amazon Aurora User Guide*.
|
2983
2893
|
#
|
2984
|
-
#
|
2985
|
-
# The Amazon Web Services KMS key identifier for encryption of
|
2986
|
-
# Performance Insights data.
|
2894
|
+
# Valid for Cluster Type: Aurora DB clusters only
|
2987
2895
|
#
|
2988
|
-
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
2989
|
-
# alias ARN, or alias name for the KMS key.
|
2990
2896
|
#
|
2991
|
-
# If you don't specify a value for `PerformanceInsightsKMSKeyId`,
|
2992
|
-
# then Amazon RDS uses your default KMS key. There is a default KMS
|
2993
|
-
# key for your Amazon Web Services account. Your Amazon Web Services
|
2994
|
-
# account has a different default KMS key for each Amazon Web Services
|
2995
|
-
# Region.
|
2996
2897
|
#
|
2997
|
-
#
|
2898
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/kerberos-authentication.html
|
2998
2899
|
# @return [String]
|
2999
2900
|
#
|
3000
|
-
# @!attribute [rw]
|
3001
|
-
# The
|
2901
|
+
# @!attribute [rw] domain_iam_role_name
|
2902
|
+
# The name of the IAM role to use when making API calls to the
|
2903
|
+
# Directory Service.
|
3002
2904
|
#
|
3003
|
-
# Valid for Cluster Type: Aurora DB clusters
|
2905
|
+
# Valid for Cluster Type: Aurora DB clusters only
|
2906
|
+
# @return [String]
|
3004
2907
|
#
|
3005
|
-
#
|
2908
|
+
# @!attribute [rw] enable_global_write_forwarding
|
2909
|
+
# Specifies whether to enable this DB cluster to forward write
|
2910
|
+
# operations to the primary cluster of a global cluster (Aurora global
|
2911
|
+
# database). By default, write operations are not allowed on Aurora DB
|
2912
|
+
# clusters that are secondary clusters in an Aurora global database.
|
3006
2913
|
#
|
3007
|
-
#
|
2914
|
+
# You can set this value only on Aurora DB clusters that are members
|
2915
|
+
# of an Aurora global database. With this parameter enabled, a
|
2916
|
+
# secondary cluster can forward writes to the current primary cluster,
|
2917
|
+
# and the resulting changes are replicated back to this cluster. For
|
2918
|
+
# the primary DB cluster of an Aurora global database, this value is
|
2919
|
+
# used immediately if the primary is demoted by a global cluster API
|
2920
|
+
# operation, but it does nothing until then.
|
3008
2921
|
#
|
3009
|
-
#
|
3010
|
-
#
|
3011
|
-
# (19 months * 31)
|
2922
|
+
# Valid for Cluster Type: Aurora DB clusters only
|
2923
|
+
# @return [Boolean]
|
3012
2924
|
#
|
3013
|
-
#
|
2925
|
+
# @!attribute [rw] network_type
|
2926
|
+
# The network type of the DB cluster.
|
3014
2927
|
#
|
3015
|
-
#
|
2928
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
2929
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
2930
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
3016
2931
|
#
|
3017
|
-
#
|
3018
|
-
# Amazon
|
3019
|
-
# @return [Integer]
|
2932
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
2933
|
+
# in the *Amazon Aurora User Guide.*
|
3020
2934
|
#
|
3021
|
-
#
|
3022
|
-
# Specifies whether to enable Aurora Limitless Database. You must
|
3023
|
-
# enable Aurora Limitless Database to create a DB shard group.
|
2935
|
+
# Valid for Cluster Type: Aurora DB clusters only
|
3024
2936
|
#
|
3025
|
-
# Valid
|
2937
|
+
# Valid Values: `IPV4 | DUAL`
|
3026
2938
|
#
|
3027
|
-
# <note markdown="1"> This setting is no longer used. Instead use the
|
3028
|
-
# `ClusterScalabilityType` setting.
|
3029
2939
|
#
|
3030
|
-
#
|
3031
|
-
#
|
2940
|
+
#
|
2941
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
2942
|
+
# @return [String]
|
3032
2943
|
#
|
3033
2944
|
# @!attribute [rw] serverless_v2_scaling_configuration
|
3034
2945
|
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
@@ -3042,25 +2953,111 @@ module Aws::RDS
|
|
3042
2953
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
3043
2954
|
# @return [Types::ServerlessV2ScalingConfiguration]
|
3044
2955
|
#
|
3045
|
-
# @!attribute [rw]
|
3046
|
-
# The
|
2956
|
+
# @!attribute [rw] monitoring_interval
|
2957
|
+
# The interval, in seconds, between points when Enhanced Monitoring
|
2958
|
+
# metrics are collected for the DB cluster. To turn off collecting
|
2959
|
+
# Enhanced Monitoring metrics, specify `0`.
|
3047
2960
|
#
|
3048
|
-
#
|
3049
|
-
#
|
3050
|
-
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
2961
|
+
# If `MonitoringRoleArn` is specified, also set `MonitoringInterval`
|
2962
|
+
# to a value other than `0`.
|
3051
2963
|
#
|
3052
|
-
#
|
3053
|
-
# in the *Amazon Aurora User Guide.*
|
2964
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
3054
2965
|
#
|
3055
|
-
# Valid
|
2966
|
+
# Valid Values: `0 | 1 | 5 | 10 | 15 | 30 | 60`
|
3056
2967
|
#
|
3057
|
-
#
|
2968
|
+
# Default: `0`
|
2969
|
+
# @return [Integer]
|
2970
|
+
#
|
2971
|
+
# @!attribute [rw] monitoring_role_arn
|
2972
|
+
# The Amazon Resource Name (ARN) for the IAM role that permits RDS to
|
2973
|
+
# send Enhanced Monitoring metrics to Amazon CloudWatch Logs. An
|
2974
|
+
# example is `arn:aws:iam:123456789012:role/emaccess`. For information
|
2975
|
+
# on creating a monitoring role, see [Setting up and enabling Enhanced
|
2976
|
+
# Monitoring][1] in the *Amazon RDS User Guide*.
|
3058
2977
|
#
|
2978
|
+
# If `MonitoringInterval` is set to a value other than `0`, supply a
|
2979
|
+
# `MonitoringRoleArn` value.
|
3059
2980
|
#
|
2981
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
3060
2982
|
#
|
3061
|
-
#
|
2983
|
+
#
|
2984
|
+
#
|
2985
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.OS.html#USER_Monitoring.OS.Enabling
|
2986
|
+
# @return [String]
|
2987
|
+
#
|
2988
|
+
# @!attribute [rw] database_insights_mode
|
2989
|
+
# The mode of Database Insights to enable for the DB cluster.
|
2990
|
+
#
|
2991
|
+
# If you set this value to `advanced`, you must also set the
|
2992
|
+
# `PerformanceInsightsEnabled` parameter to `true` and the
|
2993
|
+
# `PerformanceInsightsRetentionPeriod` parameter to 465.
|
2994
|
+
#
|
2995
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
2996
|
+
# @return [String]
|
2997
|
+
#
|
2998
|
+
# @!attribute [rw] enable_performance_insights
|
2999
|
+
# Specifies whether to turn on Performance Insights for the DB
|
3000
|
+
# cluster.
|
3001
|
+
#
|
3002
|
+
# For more information, see [ Using Amazon Performance Insights][1] in
|
3003
|
+
# the *Amazon RDS User Guide*.
|
3004
|
+
#
|
3005
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
3006
|
+
#
|
3007
|
+
#
|
3008
|
+
#
|
3009
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html
|
3010
|
+
# @return [Boolean]
|
3011
|
+
#
|
3012
|
+
# @!attribute [rw] performance_insights_kms_key_id
|
3013
|
+
# The Amazon Web Services KMS key identifier for encryption of
|
3014
|
+
# Performance Insights data.
|
3015
|
+
#
|
3016
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
3017
|
+
# alias ARN, or alias name for the KMS key.
|
3018
|
+
#
|
3019
|
+
# If you don't specify a value for `PerformanceInsightsKMSKeyId`,
|
3020
|
+
# then Amazon RDS uses your default KMS key. There is a default KMS
|
3021
|
+
# key for your Amazon Web Services account. Your Amazon Web Services
|
3022
|
+
# account has a different default KMS key for each Amazon Web Services
|
3023
|
+
# Region.
|
3024
|
+
#
|
3025
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
3062
3026
|
# @return [String]
|
3063
3027
|
#
|
3028
|
+
# @!attribute [rw] performance_insights_retention_period
|
3029
|
+
# The number of days to retain Performance Insights data.
|
3030
|
+
#
|
3031
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
3032
|
+
#
|
3033
|
+
# Valid Values:
|
3034
|
+
#
|
3035
|
+
# * `7`
|
3036
|
+
#
|
3037
|
+
# * *month* * 31, where *month* is a number of months from 1-23.
|
3038
|
+
# Examples: `93` (3 months * 31), `341` (11 months * 31), `589`
|
3039
|
+
# (19 months * 31)
|
3040
|
+
#
|
3041
|
+
# * `731`
|
3042
|
+
#
|
3043
|
+
# Default: `7` days
|
3044
|
+
#
|
3045
|
+
# If you specify a retention period that isn't valid, such as `94`,
|
3046
|
+
# Amazon RDS issues an error.
|
3047
|
+
# @return [Integer]
|
3048
|
+
#
|
3049
|
+
# @!attribute [rw] enable_limitless_database
|
3050
|
+
# Specifies whether to enable Aurora Limitless Database. You must
|
3051
|
+
# enable Aurora Limitless Database to create a DB shard group.
|
3052
|
+
#
|
3053
|
+
# Valid for: Aurora DB clusters only
|
3054
|
+
#
|
3055
|
+
# <note markdown="1"> This setting is no longer used. Instead use the
|
3056
|
+
# `ClusterScalabilityType` setting.
|
3057
|
+
#
|
3058
|
+
# </note>
|
3059
|
+
# @return [Boolean]
|
3060
|
+
#
|
3064
3061
|
# @!attribute [rw] cluster_scalability_type
|
3065
3062
|
# Specifies the scalability mode of the Aurora DB cluster. When set to
|
3066
3063
|
# `limitless`, the cluster operates as an Aurora Limitless Database.
|
@@ -3102,6 +3099,14 @@ module Aws::RDS
|
|
3102
3099
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/rds-secrets-manager.html
|
3103
3100
|
# @return [Boolean]
|
3104
3101
|
#
|
3102
|
+
# @!attribute [rw] enable_local_write_forwarding
|
3103
|
+
# Specifies whether read replicas can forward write operations to the
|
3104
|
+
# writer DB instance in the DB cluster. By default, write operations
|
3105
|
+
# aren't allowed on reader DB instances.
|
3106
|
+
#
|
3107
|
+
# Valid for: Aurora DB clusters only
|
3108
|
+
# @return [Boolean]
|
3109
|
+
#
|
3105
3110
|
# @!attribute [rw] master_user_secret_kms_key_id
|
3106
3111
|
# The Amazon Web Services KMS key identifier to encrypt a secret that
|
3107
3112
|
# is automatically generated and managed in Amazon Web Services
|
@@ -3128,14 +3133,6 @@ module Aws::RDS
|
|
3128
3133
|
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
3129
3134
|
# @return [String]
|
3130
3135
|
#
|
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
3136
|
# @!attribute [rw] ca_certificate_identifier
|
3140
3137
|
# The CA certificate identifier to use for the DB cluster's server
|
3141
3138
|
# certificate.
|
@@ -3188,6 +3185,24 @@ module Aws::RDS
|
|
3188
3185
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
3189
3186
|
# @return [String]
|
3190
3187
|
#
|
3188
|
+
# @!attribute [rw] master_user_authentication_type
|
3189
|
+
# Specifies the authentication type for the master user. With IAM
|
3190
|
+
# master user authentication, you can configure the master DB user
|
3191
|
+
# with IAM database authentication when you create a DB cluster.
|
3192
|
+
#
|
3193
|
+
# You can specify one of the following values:
|
3194
|
+
#
|
3195
|
+
# * `password` - Use standard database authentication with a password.
|
3196
|
+
#
|
3197
|
+
# * `iam-db-auth` - Use IAM database authentication for the master
|
3198
|
+
# user.
|
3199
|
+
#
|
3200
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
3201
|
+
#
|
3202
|
+
# This option is only valid for RDS for PostgreSQL and Aurora
|
3203
|
+
# PostgreSQL engines.
|
3204
|
+
# @return [String]
|
3205
|
+
#
|
3191
3206
|
# @!attribute [rw] source_region
|
3192
3207
|
# The source region of the snapshot. This is only needed when the
|
3193
3208
|
# shapshot is encrypted and in a different region.
|
@@ -3223,6 +3238,12 @@ module Aws::RDS
|
|
3223
3238
|
:engine_mode,
|
3224
3239
|
:scaling_configuration,
|
3225
3240
|
:rds_custom_cluster_configuration,
|
3241
|
+
:db_cluster_instance_class,
|
3242
|
+
:allocated_storage,
|
3243
|
+
:storage_type,
|
3244
|
+
:iops,
|
3245
|
+
:publicly_accessible,
|
3246
|
+
:auto_minor_version_upgrade,
|
3226
3247
|
:deletion_protection,
|
3227
3248
|
:global_cluster_identifier,
|
3228
3249
|
:enable_http_endpoint,
|
@@ -3230,12 +3251,8 @@ module Aws::RDS
|
|
3230
3251
|
:domain,
|
3231
3252
|
:domain_iam_role_name,
|
3232
3253
|
:enable_global_write_forwarding,
|
3233
|
-
:
|
3234
|
-
:
|
3235
|
-
:storage_type,
|
3236
|
-
:iops,
|
3237
|
-
:publicly_accessible,
|
3238
|
-
:auto_minor_version_upgrade,
|
3254
|
+
:network_type,
|
3255
|
+
:serverless_v2_scaling_configuration,
|
3239
3256
|
:monitoring_interval,
|
3240
3257
|
:monitoring_role_arn,
|
3241
3258
|
:database_insights_mode,
|
@@ -3243,17 +3260,16 @@ module Aws::RDS
|
|
3243
3260
|
:performance_insights_kms_key_id,
|
3244
3261
|
:performance_insights_retention_period,
|
3245
3262
|
:enable_limitless_database,
|
3246
|
-
:serverless_v2_scaling_configuration,
|
3247
|
-
:network_type,
|
3248
3263
|
:cluster_scalability_type,
|
3249
3264
|
:db_system_id,
|
3250
3265
|
:manage_master_user_password,
|
3251
|
-
:master_user_secret_kms_key_id,
|
3252
3266
|
:enable_local_write_forwarding,
|
3267
|
+
:master_user_secret_kms_key_id,
|
3253
3268
|
:ca_certificate_identifier,
|
3254
3269
|
:engine_lifecycle_support,
|
3270
|
+
:master_user_authentication_type,
|
3255
3271
|
:source_region)
|
3256
|
-
SENSITIVE = []
|
3272
|
+
SENSITIVE = [:master_user_password, :pre_signed_url]
|
3257
3273
|
include Aws::Structure
|
3258
3274
|
end
|
3259
3275
|
|
@@ -4173,6 +4189,16 @@ module Aws::RDS
|
|
4173
4189
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html
|
4174
4190
|
# @return [Integer]
|
4175
4191
|
#
|
4192
|
+
# @!attribute [rw] storage_throughput
|
4193
|
+
# The storage throughput value, in mebibyte per second (MiBps), for
|
4194
|
+
# the DB instance.
|
4195
|
+
#
|
4196
|
+
# This setting applies only to the `gp3` storage type.
|
4197
|
+
#
|
4198
|
+
# This setting doesn't apply to Amazon Aurora or RDS Custom DB
|
4199
|
+
# instances.
|
4200
|
+
# @return [Integer]
|
4201
|
+
#
|
4176
4202
|
# @!attribute [rw] option_group_name
|
4177
4203
|
# The option group to associate the DB instance with.
|
4178
4204
|
#
|
@@ -4646,28 +4672,21 @@ module Aws::RDS
|
|
4646
4672
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
4647
4673
|
# @return [Boolean]
|
4648
4674
|
#
|
4649
|
-
# @!attribute [rw]
|
4650
|
-
# The
|
4651
|
-
# instance of an RDS Custom DB instance.
|
4652
|
-
#
|
4653
|
-
# This setting is required for RDS Custom.
|
4654
|
-
#
|
4655
|
-
# Constraints:
|
4656
|
-
#
|
4657
|
-
# * The profile must exist in your account.
|
4675
|
+
# @!attribute [rw] network_type
|
4676
|
+
# The network type of the DB instance.
|
4658
4677
|
#
|
4659
|
-
#
|
4660
|
-
#
|
4678
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
4679
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
4680
|
+
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
4661
4681
|
#
|
4662
|
-
#
|
4663
|
-
#
|
4682
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
4683
|
+
# in the *Amazon RDS User Guide.*
|
4664
4684
|
#
|
4665
|
-
#
|
4666
|
-
# Configure IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
4685
|
+
# Valid Values: `IPV4 | DUAL`
|
4667
4686
|
#
|
4668
4687
|
#
|
4669
4688
|
#
|
4670
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
4689
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
4671
4690
|
# @return [String]
|
4672
4691
|
#
|
4673
4692
|
# @!attribute [rw] backup_target
|
@@ -4691,36 +4710,59 @@ module Aws::RDS
|
|
4691
4710
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
4692
4711
|
# @return [String]
|
4693
4712
|
#
|
4694
|
-
# @!attribute [rw]
|
4695
|
-
# The
|
4713
|
+
# @!attribute [rw] custom_iam_instance_profile
|
4714
|
+
# The instance profile associated with the underlying Amazon EC2
|
4715
|
+
# instance of an RDS Custom DB instance.
|
4696
4716
|
#
|
4697
|
-
#
|
4698
|
-
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
4699
|
-
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
4717
|
+
# This setting is required for RDS Custom.
|
4700
4718
|
#
|
4701
|
-
#
|
4702
|
-
# in the *Amazon RDS User Guide.*
|
4719
|
+
# Constraints:
|
4703
4720
|
#
|
4704
|
-
#
|
4721
|
+
# * The profile must exist in your account.
|
4705
4722
|
#
|
4723
|
+
# * The profile must have an IAM role that Amazon EC2 has permissions
|
4724
|
+
# to assume.
|
4706
4725
|
#
|
4726
|
+
# * The instance profile name and the associated IAM role name must
|
4727
|
+
# start with the prefix `AWSRDSCustom`.
|
4707
4728
|
#
|
4708
|
-
# [
|
4709
|
-
#
|
4729
|
+
# For the list of permissions required for the IAM role, see [
|
4730
|
+
# Configure IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
4710
4731
|
#
|
4711
|
-
# @!attribute [rw] storage_throughput
|
4712
|
-
# The storage throughput value, in mebibyte per second (MiBps), for
|
4713
|
-
# the DB instance.
|
4714
4732
|
#
|
4715
|
-
# This setting applies only to the `gp3` storage type.
|
4716
4733
|
#
|
4717
|
-
#
|
4718
|
-
#
|
4719
|
-
# @return [Integer]
|
4734
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
4735
|
+
# @return [String]
|
4720
4736
|
#
|
4721
|
-
# @!attribute [rw]
|
4722
|
-
#
|
4723
|
-
#
|
4737
|
+
# @!attribute [rw] db_system_id
|
4738
|
+
# The Oracle system identifier (SID), which is the name of the Oracle
|
4739
|
+
# database instance that manages your database files. In this context,
|
4740
|
+
# the term "Oracle database instance" refers exclusively to the
|
4741
|
+
# system global area (SGA) and Oracle background processes. If you
|
4742
|
+
# don't specify a SID, the value defaults to `RDSCDB`. The Oracle SID
|
4743
|
+
# is also the name of your CDB.
|
4744
|
+
# @return [String]
|
4745
|
+
#
|
4746
|
+
# @!attribute [rw] ca_certificate_identifier
|
4747
|
+
# The CA certificate identifier to use for the DB instance's server
|
4748
|
+
# certificate.
|
4749
|
+
#
|
4750
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
4751
|
+
#
|
4752
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to
|
4753
|
+
# a DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS
|
4754
|
+
# to encrypt a connection to a DB cluster][2] in the *Amazon Aurora
|
4755
|
+
# User Guide*.
|
4756
|
+
#
|
4757
|
+
#
|
4758
|
+
#
|
4759
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
4760
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
4761
|
+
# @return [String]
|
4762
|
+
#
|
4763
|
+
# @!attribute [rw] manage_master_user_password
|
4764
|
+
# Specifies whether to manage the master user password with Amazon Web
|
4765
|
+
# Services Secrets Manager.
|
4724
4766
|
#
|
4725
4767
|
# For more information, see [Password management with Amazon Web
|
4726
4768
|
# Services Secrets Manager][1] in the *Amazon RDS User Guide.*
|
@@ -4761,37 +4803,6 @@ module Aws::RDS
|
|
4761
4803
|
# each Amazon Web Services Region.
|
4762
4804
|
# @return [String]
|
4763
4805
|
#
|
4764
|
-
# @!attribute [rw] ca_certificate_identifier
|
4765
|
-
# The CA certificate identifier to use for the DB instance's server
|
4766
|
-
# certificate.
|
4767
|
-
#
|
4768
|
-
# This setting doesn't apply to RDS Custom DB instances.
|
4769
|
-
#
|
4770
|
-
# For more information, see [Using SSL/TLS to encrypt a connection to
|
4771
|
-
# a DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS
|
4772
|
-
# to encrypt a connection to a DB cluster][2] in the *Amazon Aurora
|
4773
|
-
# User Guide*.
|
4774
|
-
#
|
4775
|
-
#
|
4776
|
-
#
|
4777
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
4778
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
4779
|
-
# @return [String]
|
4780
|
-
#
|
4781
|
-
# @!attribute [rw] db_system_id
|
4782
|
-
# The Oracle system identifier (SID), which is the name of the Oracle
|
4783
|
-
# database instance that manages your database files. In this context,
|
4784
|
-
# the term "Oracle database instance" refers exclusively to the
|
4785
|
-
# system global area (SGA) and Oracle background processes. If you
|
4786
|
-
# don't specify a SID, the value defaults to `RDSCDB`. The Oracle SID
|
4787
|
-
# is also the name of your CDB.
|
4788
|
-
# @return [String]
|
4789
|
-
#
|
4790
|
-
# @!attribute [rw] dedicated_log_volume
|
4791
|
-
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
4792
|
-
# enabled.
|
4793
|
-
# @return [Boolean]
|
4794
|
-
#
|
4795
4806
|
# @!attribute [rw] multi_tenant
|
4796
4807
|
# Specifies whether to use the multi-tenant configuration or the
|
4797
4808
|
# single-tenant configuration (default). This parameter only applies
|
@@ -4809,6 +4820,11 @@ module Aws::RDS
|
|
4809
4820
|
# single-tenant configuration.
|
4810
4821
|
# @return [Boolean]
|
4811
4822
|
#
|
4823
|
+
# @!attribute [rw] dedicated_log_volume
|
4824
|
+
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
4825
|
+
# enabled.
|
4826
|
+
# @return [Boolean]
|
4827
|
+
#
|
4812
4828
|
# @!attribute [rw] engine_lifecycle_support
|
4813
4829
|
# The life cycle type for this DB instance.
|
4814
4830
|
#
|
@@ -4843,6 +4859,22 @@ module Aws::RDS
|
|
4843
4859
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
4844
4860
|
# @return [String]
|
4845
4861
|
#
|
4862
|
+
# @!attribute [rw] master_user_authentication_type
|
4863
|
+
# Specifies the authentication type for the master user. With IAM
|
4864
|
+
# master user authentication, you can configure the master DB user
|
4865
|
+
# with IAM database authentication when you create a DB instance.
|
4866
|
+
#
|
4867
|
+
# You can specify one of the following values:
|
4868
|
+
#
|
4869
|
+
# * `password` - Use standard database authentication with a password.
|
4870
|
+
#
|
4871
|
+
# * `iam-db-auth` - Use IAM database authentication for the master
|
4872
|
+
# user.
|
4873
|
+
#
|
4874
|
+
# This option is only valid for RDS for PostgreSQL and Aurora
|
4875
|
+
# PostgreSQL engines.
|
4876
|
+
# @return [String]
|
4877
|
+
#
|
4846
4878
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceMessage AWS API Documentation
|
4847
4879
|
#
|
4848
4880
|
class CreateDBInstanceMessage < Struct.new(
|
@@ -4867,6 +4899,7 @@ module Aws::RDS
|
|
4867
4899
|
:auto_minor_version_upgrade,
|
4868
4900
|
:license_model,
|
4869
4901
|
:iops,
|
4902
|
+
:storage_throughput,
|
4870
4903
|
:option_group_name,
|
4871
4904
|
:character_set_name,
|
4872
4905
|
:nchar_character_set_name,
|
@@ -4899,18 +4932,18 @@ module Aws::RDS
|
|
4899
4932
|
:deletion_protection,
|
4900
4933
|
:max_allocated_storage,
|
4901
4934
|
:enable_customer_owned_ip,
|
4902
|
-
:custom_iam_instance_profile,
|
4903
|
-
:backup_target,
|
4904
4935
|
:network_type,
|
4905
|
-
:
|
4936
|
+
:backup_target,
|
4937
|
+
:custom_iam_instance_profile,
|
4938
|
+
:db_system_id,
|
4939
|
+
:ca_certificate_identifier,
|
4906
4940
|
:manage_master_user_password,
|
4907
4941
|
:master_user_secret_kms_key_id,
|
4908
|
-
:ca_certificate_identifier,
|
4909
|
-
:db_system_id,
|
4910
|
-
:dedicated_log_volume,
|
4911
4942
|
:multi_tenant,
|
4912
|
-
:
|
4913
|
-
|
4943
|
+
:dedicated_log_volume,
|
4944
|
+
:engine_lifecycle_support,
|
4945
|
+
:master_user_authentication_type)
|
4946
|
+
SENSITIVE = [:master_user_password, :tde_credential_password]
|
4914
4947
|
include Aws::Structure
|
4915
4948
|
end
|
4916
4949
|
|
@@ -5030,6 +5063,13 @@ module Aws::RDS
|
|
5030
5063
|
# to initially allocate for the DB instance.
|
5031
5064
|
# @return [Integer]
|
5032
5065
|
#
|
5066
|
+
# @!attribute [rw] storage_throughput
|
5067
|
+
# Specifies the storage throughput value for the read replica.
|
5068
|
+
#
|
5069
|
+
# This setting doesn't apply to RDS Custom or Amazon Aurora DB
|
5070
|
+
# instances.
|
5071
|
+
# @return [Integer]
|
5072
|
+
#
|
5033
5073
|
# @!attribute [rw] option_group_name
|
5034
5074
|
# The option group to associate the DB instance with. If not
|
5035
5075
|
# specified, RDS uses the option group associated with the source DB
|
@@ -5537,41 +5577,28 @@ module Aws::RDS
|
|
5537
5577
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
5538
5578
|
# @return [String]
|
5539
5579
|
#
|
5540
|
-
# @!attribute [rw]
|
5541
|
-
#
|
5542
|
-
#
|
5543
|
-
#
|
5544
|
-
# For more information about this setting, including limitations that
|
5545
|
-
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
5546
|
-
# storage autoscaling][1] in the *Amazon RDS User Guide*.
|
5547
|
-
#
|
5548
|
-
#
|
5549
|
-
#
|
5550
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
5551
|
-
# @return [Integer]
|
5552
|
-
#
|
5553
|
-
# @!attribute [rw] custom_iam_instance_profile
|
5554
|
-
# The instance profile associated with the underlying Amazon EC2
|
5555
|
-
# instance of an RDS Custom DB instance. The instance profile must
|
5556
|
-
# meet the following requirements:
|
5557
|
-
#
|
5558
|
-
# * The profile must exist in your account.
|
5559
|
-
#
|
5560
|
-
# * The profile must have an IAM role that Amazon EC2 has permissions
|
5561
|
-
# to assume.
|
5580
|
+
# @!attribute [rw] enable_customer_owned_ip
|
5581
|
+
# Specifies whether to enable a customer-owned IP address (CoIP) for
|
5582
|
+
# an RDS on Outposts read replica.
|
5562
5583
|
#
|
5563
|
-
# *
|
5564
|
-
#
|
5584
|
+
# A *CoIP* provides local or external connectivity to resources in
|
5585
|
+
# your Outpost subnets through your on-premises network. For some use
|
5586
|
+
# cases, a CoIP can provide lower latency for connections to the read
|
5587
|
+
# replica from outside of its virtual private cloud (VPC) on your
|
5588
|
+
# local network.
|
5565
5589
|
#
|
5566
|
-
# For
|
5567
|
-
#
|
5590
|
+
# For more information about RDS on Outposts, see [Working with Amazon
|
5591
|
+
# RDS on Amazon Web Services Outposts][1] in the *Amazon RDS User
|
5592
|
+
# Guide*.
|
5568
5593
|
#
|
5569
|
-
#
|
5594
|
+
# For more information about CoIPs, see [Customer-owned IP
|
5595
|
+
# addresses][2] in the *Amazon Web Services Outposts User Guide*.
|
5570
5596
|
#
|
5571
5597
|
#
|
5572
5598
|
#
|
5573
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
5574
|
-
#
|
5599
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
5600
|
+
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
5601
|
+
# @return [Boolean]
|
5575
5602
|
#
|
5576
5603
|
# @!attribute [rw] network_type
|
5577
5604
|
# The network type of the DB instance.
|
@@ -5594,35 +5621,18 @@ module Aws::RDS
|
|
5594
5621
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
5595
5622
|
# @return [String]
|
5596
5623
|
#
|
5597
|
-
# @!attribute [rw]
|
5598
|
-
#
|
5599
|
-
#
|
5600
|
-
# This setting doesn't apply to RDS Custom or Amazon Aurora DB
|
5601
|
-
# instances.
|
5602
|
-
# @return [Integer]
|
5603
|
-
#
|
5604
|
-
# @!attribute [rw] enable_customer_owned_ip
|
5605
|
-
# Specifies whether to enable a customer-owned IP address (CoIP) for
|
5606
|
-
# an RDS on Outposts read replica.
|
5607
|
-
#
|
5608
|
-
# A *CoIP* provides local or external connectivity to resources in
|
5609
|
-
# your Outpost subnets through your on-premises network. For some use
|
5610
|
-
# cases, a CoIP can provide lower latency for connections to the read
|
5611
|
-
# replica from outside of its virtual private cloud (VPC) on your
|
5612
|
-
# local network.
|
5613
|
-
#
|
5614
|
-
# For more information about RDS on Outposts, see [Working with Amazon
|
5615
|
-
# RDS on Amazon Web Services Outposts][1] in the *Amazon RDS User
|
5616
|
-
# Guide*.
|
5624
|
+
# @!attribute [rw] max_allocated_storage
|
5625
|
+
# The upper limit in gibibytes (GiB) to which Amazon RDS can
|
5626
|
+
# automatically scale the storage of the DB instance.
|
5617
5627
|
#
|
5618
|
-
# For more information about
|
5619
|
-
#
|
5628
|
+
# For more information about this setting, including limitations that
|
5629
|
+
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
5630
|
+
# storage autoscaling][1] in the *Amazon RDS User Guide*.
|
5620
5631
|
#
|
5621
5632
|
#
|
5622
5633
|
#
|
5623
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
5624
|
-
# [
|
5625
|
-
# @return [Boolean]
|
5634
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
5635
|
+
# @return [Integer]
|
5626
5636
|
#
|
5627
5637
|
# @!attribute [rw] backup_target
|
5628
5638
|
# The location where RDS stores automated backups and manual
|
@@ -5635,6 +5645,29 @@ module Aws::RDS
|
|
5635
5645
|
# * `region` for Amazon Web Services Region
|
5636
5646
|
# @return [String]
|
5637
5647
|
#
|
5648
|
+
# @!attribute [rw] custom_iam_instance_profile
|
5649
|
+
# The instance profile associated with the underlying Amazon EC2
|
5650
|
+
# instance of an RDS Custom DB instance. The instance profile must
|
5651
|
+
# meet the following requirements:
|
5652
|
+
#
|
5653
|
+
# * The profile must exist in your account.
|
5654
|
+
#
|
5655
|
+
# * The profile must have an IAM role that Amazon EC2 has permissions
|
5656
|
+
# to assume.
|
5657
|
+
#
|
5658
|
+
# * The instance profile name and the associated IAM role name must
|
5659
|
+
# start with the prefix `AWSRDSCustom`.
|
5660
|
+
#
|
5661
|
+
# For the list of permissions required for the IAM role, see [
|
5662
|
+
# Configure IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
5663
|
+
#
|
5664
|
+
# This setting is required for RDS Custom DB instances.
|
5665
|
+
#
|
5666
|
+
#
|
5667
|
+
#
|
5668
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
5669
|
+
# @return [String]
|
5670
|
+
#
|
5638
5671
|
# @!attribute [rw] allocated_storage
|
5639
5672
|
# The amount of storage (in gibibytes) to allocate initially for the
|
5640
5673
|
# read replica. Follow the allocation rules specified in
|
@@ -5713,6 +5746,7 @@ module Aws::RDS
|
|
5713
5746
|
:multi_az,
|
5714
5747
|
:auto_minor_version_upgrade,
|
5715
5748
|
:iops,
|
5749
|
+
:storage_throughput,
|
5716
5750
|
:option_group_name,
|
5717
5751
|
:db_parameter_group_name,
|
5718
5752
|
:publicly_accessible,
|
@@ -5741,19 +5775,18 @@ module Aws::RDS
|
|
5741
5775
|
:domain_auth_secret_arn,
|
5742
5776
|
:domain_dns_ips,
|
5743
5777
|
:replica_mode,
|
5744
|
-
:max_allocated_storage,
|
5745
|
-
:custom_iam_instance_profile,
|
5746
|
-
:network_type,
|
5747
|
-
:storage_throughput,
|
5748
5778
|
:enable_customer_owned_ip,
|
5779
|
+
:network_type,
|
5780
|
+
:max_allocated_storage,
|
5749
5781
|
:backup_target,
|
5782
|
+
:custom_iam_instance_profile,
|
5750
5783
|
:allocated_storage,
|
5751
5784
|
:source_db_cluster_identifier,
|
5752
5785
|
:dedicated_log_volume,
|
5753
5786
|
:upgrade_storage_config,
|
5754
5787
|
:ca_certificate_identifier,
|
5755
5788
|
:source_region)
|
5756
|
-
SENSITIVE = []
|
5789
|
+
SENSITIVE = [:pre_signed_url]
|
5757
5790
|
include Aws::Structure
|
5758
5791
|
end
|
5759
5792
|
|
@@ -5942,6 +5975,29 @@ module Aws::RDS
|
|
5942
5975
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
5943
5976
|
# @return [Array<Types::Tag>]
|
5944
5977
|
#
|
5978
|
+
# @!attribute [rw] endpoint_network_type
|
5979
|
+
# The network type of the DB proxy endpoint. The network type
|
5980
|
+
# determines the IP version that the proxy endpoint supports.
|
5981
|
+
#
|
5982
|
+
# Valid values:
|
5983
|
+
#
|
5984
|
+
# * `IPV4` - The proxy endpoint supports IPv4 only.
|
5985
|
+
#
|
5986
|
+
# * `IPV6` - The proxy endpoint supports IPv6 only.
|
5987
|
+
#
|
5988
|
+
# * `DUAL` - The proxy endpoint supports both IPv4 and IPv6.
|
5989
|
+
#
|
5990
|
+
# Default: `IPV4`
|
5991
|
+
#
|
5992
|
+
# Constraints:
|
5993
|
+
#
|
5994
|
+
# * If you specify `IPV6` or `DUAL`, the VPC and all subnets must have
|
5995
|
+
# an IPv6 CIDR block.
|
5996
|
+
#
|
5997
|
+
# * If you specify `IPV6` or `DUAL`, the VPC tenancy cannot be
|
5998
|
+
# `dedicated`.
|
5999
|
+
# @return [String]
|
6000
|
+
#
|
5945
6001
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBProxyEndpointRequest AWS API Documentation
|
5946
6002
|
#
|
5947
6003
|
class CreateDBProxyEndpointRequest < Struct.new(
|
@@ -5950,7 +6006,8 @@ module Aws::RDS
|
|
5950
6006
|
:vpc_subnet_ids,
|
5951
6007
|
:vpc_security_group_ids,
|
5952
6008
|
:target_role,
|
5953
|
-
:tags
|
6009
|
+
:tags,
|
6010
|
+
:endpoint_network_type)
|
5954
6011
|
SENSITIVE = []
|
5955
6012
|
include Aws::Structure
|
5956
6013
|
end
|
@@ -5988,6 +6045,16 @@ module Aws::RDS
|
|
5988
6045
|
# `SQLSERVER`.
|
5989
6046
|
# @return [String]
|
5990
6047
|
#
|
6048
|
+
# @!attribute [rw] default_auth_scheme
|
6049
|
+
# The default authentication scheme that the proxy uses for client
|
6050
|
+
# connections to the proxy and connections from the proxy to the
|
6051
|
+
# underlying database. Valid values are `NONE` and `IAM_AUTH`. When
|
6052
|
+
# set to `IAM_AUTH`, the proxy uses end-to-end IAM authentication to
|
6053
|
+
# connect to the database. If you don't specify `DefaultAuthScheme`
|
6054
|
+
# or specify this parameter as `NONE`, you must specify the `Auth`
|
6055
|
+
# option.
|
6056
|
+
# @return [String]
|
6057
|
+
#
|
5991
6058
|
# @!attribute [rw] auth
|
5992
6059
|
# The authorization mechanism that the proxy uses.
|
5993
6060
|
# @return [Array<Types::UserAuthConfig>]
|
@@ -6031,11 +6098,57 @@ module Aws::RDS
|
|
6031
6098
|
# your choosing with the proxy.
|
6032
6099
|
# @return [Array<Types::Tag>]
|
6033
6100
|
#
|
6101
|
+
# @!attribute [rw] endpoint_network_type
|
6102
|
+
# The network type of the DB proxy endpoint. The network type
|
6103
|
+
# determines the IP version that the proxy endpoint supports.
|
6104
|
+
#
|
6105
|
+
# Valid values:
|
6106
|
+
#
|
6107
|
+
# * `IPV4` - The proxy endpoint supports IPv4 only.
|
6108
|
+
#
|
6109
|
+
# * `IPV6` - The proxy endpoint supports IPv6 only.
|
6110
|
+
#
|
6111
|
+
# * `DUAL` - The proxy endpoint supports both IPv4 and IPv6.
|
6112
|
+
#
|
6113
|
+
# Default: `IPV4`
|
6114
|
+
#
|
6115
|
+
# Constraints:
|
6116
|
+
#
|
6117
|
+
# * If you specify `IPV6` or `DUAL`, the VPC and all subnets must have
|
6118
|
+
# an IPv6 CIDR block.
|
6119
|
+
#
|
6120
|
+
# * If you specify `IPV6` or `DUAL`, the VPC tenancy cannot be
|
6121
|
+
# `dedicated`.
|
6122
|
+
# @return [String]
|
6123
|
+
#
|
6124
|
+
# @!attribute [rw] target_connection_network_type
|
6125
|
+
# The network type that the proxy uses to connect to the target
|
6126
|
+
# database. The network type determines the IP version that the proxy
|
6127
|
+
# uses for connections to the database.
|
6128
|
+
#
|
6129
|
+
# Valid values:
|
6130
|
+
#
|
6131
|
+
# * `IPV4` - The proxy connects to the database using IPv4 only.
|
6132
|
+
#
|
6133
|
+
# * `IPV6` - The proxy connects to the database using IPv6 only.
|
6134
|
+
#
|
6135
|
+
# Default: `IPV4`
|
6136
|
+
#
|
6137
|
+
# Constraints:
|
6138
|
+
#
|
6139
|
+
# * If you specify `IPV6`, the database must support dual-stack mode.
|
6140
|
+
# RDS doesn't support IPv6-only databases.
|
6141
|
+
#
|
6142
|
+
# * All targets registered with the proxy must be compatible with the
|
6143
|
+
# specified network type.
|
6144
|
+
# @return [String]
|
6145
|
+
#
|
6034
6146
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBProxyRequest AWS API Documentation
|
6035
6147
|
#
|
6036
6148
|
class CreateDBProxyRequest < Struct.new(
|
6037
6149
|
:db_proxy_name,
|
6038
6150
|
:engine_family,
|
6151
|
+
:default_auth_scheme,
|
6039
6152
|
:auth,
|
6040
6153
|
:role_arn,
|
6041
6154
|
:vpc_subnet_ids,
|
@@ -6043,7 +6156,9 @@ module Aws::RDS
|
|
6043
6156
|
:require_tls,
|
6044
6157
|
:idle_client_timeout,
|
6045
6158
|
:debug_logging,
|
6046
|
-
:tags
|
6159
|
+
:tags,
|
6160
|
+
:endpoint_network_type,
|
6161
|
+
:target_connection_network_type)
|
6047
6162
|
SENSITIVE = []
|
6048
6163
|
include Aws::Structure
|
6049
6164
|
end
|
@@ -7008,10 +7123,6 @@ module Aws::RDS
|
|
7008
7123
|
# The current state of this DB cluster.
|
7009
7124
|
# @return [String]
|
7010
7125
|
#
|
7011
|
-
# @!attribute [rw] automatic_restart_time
|
7012
|
-
# The time when a stopped DB cluster is restarted automatically.
|
7013
|
-
# @return [Time]
|
7014
|
-
#
|
7015
7126
|
# @!attribute [rw] percent_progress
|
7016
7127
|
# The progress of the operation as a percentage.
|
7017
7128
|
# @return [String]
|
@@ -7207,6 +7318,12 @@ module Aws::RDS
|
|
7207
7318
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html
|
7208
7319
|
# @return [Integer]
|
7209
7320
|
#
|
7321
|
+
# @!attribute [rw] pending_modified_values
|
7322
|
+
# Information about pending changes to the DB cluster. This
|
7323
|
+
# information is returned only when there are pending changes.
|
7324
|
+
# Specific changes are identified by subelements.
|
7325
|
+
# @return [Types::ClusterPendingModifiedValues]
|
7326
|
+
#
|
7210
7327
|
# @!attribute [rw] engine_mode
|
7211
7328
|
# The DB engine mode of the DB cluster, either `provisioned` or
|
7212
7329
|
# `serverless`.
|
@@ -7234,7 +7351,72 @@ module Aws::RDS
|
|
7234
7351
|
# Reserved for future use.
|
7235
7352
|
# @return [Types::RdsCustomClusterConfiguration]
|
7236
7353
|
#
|
7237
|
-
# @!attribute [rw]
|
7354
|
+
# @!attribute [rw] db_cluster_instance_class
|
7355
|
+
# The name of the compute and memory capacity class of the DB
|
7356
|
+
# instance.
|
7357
|
+
#
|
7358
|
+
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
7359
|
+
# @return [String]
|
7360
|
+
#
|
7361
|
+
# @!attribute [rw] storage_type
|
7362
|
+
# The storage type associated with the DB cluster.
|
7363
|
+
# @return [String]
|
7364
|
+
#
|
7365
|
+
# @!attribute [rw] iops
|
7366
|
+
# The Provisioned IOPS (I/O operations per second) value.
|
7367
|
+
#
|
7368
|
+
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
7369
|
+
# @return [Integer]
|
7370
|
+
#
|
7371
|
+
# @!attribute [rw] storage_throughput
|
7372
|
+
# The storage throughput for the DB cluster. The throughput is
|
7373
|
+
# automatically set based on the IOPS that you provision, and is not
|
7374
|
+
# configurable.
|
7375
|
+
#
|
7376
|
+
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
7377
|
+
# @return [Integer]
|
7378
|
+
#
|
7379
|
+
# @!attribute [rw] io_optimized_next_allowed_modification_time
|
7380
|
+
# The next time you can modify the DB cluster to use the
|
7381
|
+
# `aurora-iopt1` storage type.
|
7382
|
+
#
|
7383
|
+
# This setting is only for Aurora DB clusters.
|
7384
|
+
# @return [Time]
|
7385
|
+
#
|
7386
|
+
# @!attribute [rw] publicly_accessible
|
7387
|
+
# Indicates whether the DB cluster is publicly accessible.
|
7388
|
+
#
|
7389
|
+
# When the DB cluster is publicly accessible and you connect from
|
7390
|
+
# outside of the DB cluster's virtual private cloud (VPC), its Domain
|
7391
|
+
# Name System (DNS) endpoint resolves to the public IP address. When
|
7392
|
+
# you connect from within the same VPC as the DB cluster, the endpoint
|
7393
|
+
# resolves to the private IP address. Access to the DB cluster is
|
7394
|
+
# ultimately controlled by the security group it uses. That public
|
7395
|
+
# access isn't permitted if the security group assigned to the DB
|
7396
|
+
# cluster doesn't permit it.
|
7397
|
+
#
|
7398
|
+
# When the DB cluster isn't publicly accessible, it is an internal DB
|
7399
|
+
# cluster with a DNS name that resolves to a private IP address.
|
7400
|
+
#
|
7401
|
+
# For more information, see CreateDBCluster.
|
7402
|
+
#
|
7403
|
+
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
7404
|
+
# @return [Boolean]
|
7405
|
+
#
|
7406
|
+
# @!attribute [rw] auto_minor_version_upgrade
|
7407
|
+
# Indicates whether minor version patches are applied automatically.
|
7408
|
+
#
|
7409
|
+
# This setting is for Aurora DB clusters and Multi-AZ DB clusters.
|
7410
|
+
#
|
7411
|
+
# For more information about automatic minor version upgrades, see
|
7412
|
+
# [Automatically upgrading the minor engine version][1].
|
7413
|
+
#
|
7414
|
+
#
|
7415
|
+
#
|
7416
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Upgrading.html#USER_UpgradeDBInstance.Upgrading.AutoMinorVersionUpgrades
|
7417
|
+
# @return [Boolean]
|
7418
|
+
#
|
7419
|
+
# @!attribute [rw] deletion_protection
|
7238
7420
|
# Indicates whether the DB cluster has deletion protection enabled.
|
7239
7421
|
# The database can't be deleted when deletion protection is enabled.
|
7240
7422
|
# @return [Boolean]
|
@@ -7327,61 +7509,49 @@ module Aws::RDS
|
|
7327
7509
|
# forwarding feature for this cluster.
|
7328
7510
|
# @return [Boolean]
|
7329
7511
|
#
|
7330
|
-
# @!attribute [rw]
|
7331
|
-
#
|
7332
|
-
# information is returned only when there are pending changes.
|
7333
|
-
# Specific changes are identified by subelements.
|
7334
|
-
# @return [Types::ClusterPendingModifiedValues]
|
7512
|
+
# @!attribute [rw] network_type
|
7513
|
+
# The network type of the DB instance.
|
7335
7514
|
#
|
7336
|
-
#
|
7337
|
-
#
|
7338
|
-
#
|
7515
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
7516
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
7517
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
7339
7518
|
#
|
7340
|
-
#
|
7341
|
-
#
|
7519
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
7520
|
+
# in the *Amazon Aurora User Guide.*
|
7342
7521
|
#
|
7343
|
-
#
|
7344
|
-
# The storage type associated with the DB cluster.
|
7345
|
-
# @return [String]
|
7522
|
+
# This setting is only for Aurora DB clusters.
|
7346
7523
|
#
|
7347
|
-
#
|
7348
|
-
# The Provisioned IOPS (I/O operations per second) value.
|
7524
|
+
# Valid Values: `IPV4 | DUAL`
|
7349
7525
|
#
|
7350
|
-
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
7351
|
-
# @return [Integer]
|
7352
7526
|
#
|
7353
|
-
# @!attribute [rw] publicly_accessible
|
7354
|
-
# Indicates whether the DB cluster is publicly accessible.
|
7355
7527
|
#
|
7356
|
-
#
|
7357
|
-
#
|
7358
|
-
# Name System (DNS) endpoint resolves to the public IP address. When
|
7359
|
-
# you connect from within the same VPC as the DB cluster, the endpoint
|
7360
|
-
# resolves to the private IP address. Access to the DB cluster is
|
7361
|
-
# ultimately controlled by the security group it uses. That public
|
7362
|
-
# access isn't permitted if the security group assigned to the DB
|
7363
|
-
# cluster doesn't permit it.
|
7528
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
7529
|
+
# @return [String]
|
7364
7530
|
#
|
7365
|
-
#
|
7366
|
-
#
|
7531
|
+
# @!attribute [rw] automatic_restart_time
|
7532
|
+
# The time when a stopped DB cluster is restarted automatically.
|
7533
|
+
# @return [Time]
|
7367
7534
|
#
|
7368
|
-
#
|
7535
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
7536
|
+
# The scaling configuration for an Aurora Serverless v2 DB cluster.
|
7369
7537
|
#
|
7370
|
-
#
|
7371
|
-
#
|
7538
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
7539
|
+
# the *Amazon Aurora User Guide*.
|
7372
7540
|
#
|
7373
|
-
# @!attribute [rw] auto_minor_version_upgrade
|
7374
|
-
# Indicates whether minor version patches are applied automatically.
|
7375
7541
|
#
|
7376
|
-
# This setting is for Aurora DB clusters and Multi-AZ DB clusters.
|
7377
7542
|
#
|
7378
|
-
#
|
7379
|
-
#
|
7543
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
7544
|
+
# @return [Types::ServerlessV2ScalingConfigurationInfo]
|
7380
7545
|
#
|
7546
|
+
# @!attribute [rw] serverless_v2_platform_version
|
7547
|
+
# The version of the Aurora Serverless V2 platform used by the DB
|
7548
|
+
# cluster. For more information, see [Using Aurora Serverless v2][1]
|
7549
|
+
# in the *Amazon Aurora User Guide*.
|
7381
7550
|
#
|
7382
7551
|
#
|
7383
|
-
#
|
7384
|
-
#
|
7552
|
+
#
|
7553
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
7554
|
+
# @return [String]
|
7385
7555
|
#
|
7386
7556
|
# @!attribute [rw] monitoring_interval
|
7387
7557
|
# The interval, in seconds, between points when Enhanced Monitoring
|
@@ -7441,46 +7611,6 @@ module Aws::RDS
|
|
7441
7611
|
# Default: `7` days
|
7442
7612
|
# @return [Integer]
|
7443
7613
|
#
|
7444
|
-
# @!attribute [rw] serverless_v2_scaling_configuration
|
7445
|
-
# The scaling configuration for an Aurora Serverless v2 DB cluster.
|
7446
|
-
#
|
7447
|
-
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
7448
|
-
# the *Amazon Aurora User Guide*.
|
7449
|
-
#
|
7450
|
-
#
|
7451
|
-
#
|
7452
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
7453
|
-
# @return [Types::ServerlessV2ScalingConfigurationInfo]
|
7454
|
-
#
|
7455
|
-
# @!attribute [rw] serverless_v2_platform_version
|
7456
|
-
# The version of the Aurora Serverless V2 platform used by the DB
|
7457
|
-
# cluster. For more information, see [Using Aurora Serverless v2][1]
|
7458
|
-
# in the *Amazon Aurora User Guide*.
|
7459
|
-
#
|
7460
|
-
#
|
7461
|
-
#
|
7462
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
7463
|
-
# @return [String]
|
7464
|
-
#
|
7465
|
-
# @!attribute [rw] network_type
|
7466
|
-
# The network type of the DB instance.
|
7467
|
-
#
|
7468
|
-
# The network type is determined by the `DBSubnetGroup` specified for
|
7469
|
-
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
7470
|
-
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
7471
|
-
#
|
7472
|
-
# For more information, see [ Working with a DB instance in a VPC][1]
|
7473
|
-
# in the *Amazon Aurora User Guide.*
|
7474
|
-
#
|
7475
|
-
# This setting is only for Aurora DB clusters.
|
7476
|
-
#
|
7477
|
-
# Valid Values: `IPV4 | DUAL`
|
7478
|
-
#
|
7479
|
-
#
|
7480
|
-
#
|
7481
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
7482
|
-
# @return [String]
|
7483
|
-
#
|
7484
7614
|
# @!attribute [rw] db_system_id
|
7485
7615
|
# Reserved for future use.
|
7486
7616
|
# @return [String]
|
@@ -7500,13 +7630,6 @@ module Aws::RDS
|
|
7500
7630
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/rds-secrets-manager.html
|
7501
7631
|
# @return [Types::MasterUserSecret]
|
7502
7632
|
#
|
7503
|
-
# @!attribute [rw] io_optimized_next_allowed_modification_time
|
7504
|
-
# The next time you can modify the DB cluster to use the
|
7505
|
-
# `aurora-iopt1` storage type.
|
7506
|
-
#
|
7507
|
-
# This setting is only for Aurora DB clusters.
|
7508
|
-
# @return [Time]
|
7509
|
-
#
|
7510
7633
|
# @!attribute [rw] local_write_forwarding_status
|
7511
7634
|
# Indicates whether an Aurora DB cluster has in-cluster write
|
7512
7635
|
# forwarding enabled, not enabled, requested, or is in the process of
|
@@ -7522,14 +7645,6 @@ module Aws::RDS
|
|
7522
7645
|
# The details for Aurora Limitless Database.
|
7523
7646
|
# @return [Types::LimitlessDatabase]
|
7524
7647
|
#
|
7525
|
-
# @!attribute [rw] storage_throughput
|
7526
|
-
# The storage throughput for the DB cluster. The throughput is
|
7527
|
-
# automatically set based on the IOPS that you provision, and is not
|
7528
|
-
# configurable.
|
7529
|
-
#
|
7530
|
-
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
7531
|
-
# @return [Integer]
|
7532
|
-
#
|
7533
7648
|
# @!attribute [rw] cluster_scalability_type
|
7534
7649
|
# The scalability mode of the Aurora DB cluster. When set to
|
7535
7650
|
# `limitless`, the cluster operates as an Aurora Limitless Database.
|
@@ -7569,7 +7684,6 @@ module Aws::RDS
|
|
7569
7684
|
:db_cluster_parameter_group,
|
7570
7685
|
:db_subnet_group,
|
7571
7686
|
:status,
|
7572
|
-
:automatic_restart_time,
|
7573
7687
|
:percent_progress,
|
7574
7688
|
:earliest_restorable_time,
|
7575
7689
|
:endpoint,
|
@@ -7603,9 +7717,17 @@ module Aws::RDS
|
|
7603
7717
|
:backtrack_consumed_change_records,
|
7604
7718
|
:enabled_cloudwatch_logs_exports,
|
7605
7719
|
:capacity,
|
7720
|
+
:pending_modified_values,
|
7606
7721
|
:engine_mode,
|
7607
7722
|
:scaling_configuration_info,
|
7608
7723
|
:rds_custom_cluster_configuration,
|
7724
|
+
:db_cluster_instance_class,
|
7725
|
+
:storage_type,
|
7726
|
+
:iops,
|
7727
|
+
:storage_throughput,
|
7728
|
+
:io_optimized_next_allowed_modification_time,
|
7729
|
+
:publicly_accessible,
|
7730
|
+
:auto_minor_version_upgrade,
|
7609
7731
|
:deletion_protection,
|
7610
7732
|
:http_endpoint_enabled,
|
7611
7733
|
:activity_stream_mode,
|
@@ -7619,28 +7741,21 @@ module Aws::RDS
|
|
7619
7741
|
:global_cluster_identifier,
|
7620
7742
|
:global_write_forwarding_status,
|
7621
7743
|
:global_write_forwarding_requested,
|
7622
|
-
:
|
7623
|
-
:
|
7624
|
-
:
|
7625
|
-
:
|
7626
|
-
:publicly_accessible,
|
7627
|
-
:auto_minor_version_upgrade,
|
7744
|
+
:network_type,
|
7745
|
+
:automatic_restart_time,
|
7746
|
+
:serverless_v2_scaling_configuration,
|
7747
|
+
:serverless_v2_platform_version,
|
7628
7748
|
:monitoring_interval,
|
7629
7749
|
:monitoring_role_arn,
|
7630
7750
|
:database_insights_mode,
|
7631
7751
|
:performance_insights_enabled,
|
7632
7752
|
:performance_insights_kms_key_id,
|
7633
7753
|
:performance_insights_retention_period,
|
7634
|
-
:serverless_v2_scaling_configuration,
|
7635
|
-
:serverless_v2_platform_version,
|
7636
|
-
:network_type,
|
7637
7754
|
:db_system_id,
|
7638
7755
|
:master_user_secret,
|
7639
|
-
:io_optimized_next_allowed_modification_time,
|
7640
7756
|
:local_write_forwarding_status,
|
7641
7757
|
:aws_backup_recovery_point_arn,
|
7642
7758
|
:limitless_database,
|
7643
|
-
:storage_throughput,
|
7644
7759
|
:cluster_scalability_type,
|
7645
7760
|
:certificate_details,
|
7646
7761
|
:engine_lifecycle_support)
|
@@ -7779,11 +7894,6 @@ module Aws::RDS
|
|
7779
7894
|
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
7780
7895
|
# @return [Integer]
|
7781
7896
|
#
|
7782
|
-
# @!attribute [rw] aws_backup_recovery_point_arn
|
7783
|
-
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
7784
|
-
# Services Backup.
|
7785
|
-
# @return [String]
|
7786
|
-
#
|
7787
7897
|
# @!attribute [rw] storage_throughput
|
7788
7898
|
# The storage throughput for the automated backup. The throughput is
|
7789
7899
|
# automatically set based on the IOPS that you provision, and is not
|
@@ -7792,6 +7902,11 @@ module Aws::RDS
|
|
7792
7902
|
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
7793
7903
|
# @return [Integer]
|
7794
7904
|
#
|
7905
|
+
# @!attribute [rw] aws_backup_recovery_point_arn
|
7906
|
+
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
7907
|
+
# Services Backup.
|
7908
|
+
# @return [String]
|
7909
|
+
#
|
7795
7910
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBClusterAutomatedBackup AWS API Documentation
|
7796
7911
|
#
|
7797
7912
|
class DBClusterAutomatedBackup < Struct.new(
|
@@ -7818,8 +7933,8 @@ module Aws::RDS
|
|
7818
7933
|
:kms_key_id,
|
7819
7934
|
:storage_type,
|
7820
7935
|
:iops,
|
7821
|
-
:
|
7822
|
-
:
|
7936
|
+
:storage_throughput,
|
7937
|
+
:aws_backup_recovery_point_arn)
|
7823
7938
|
SENSITIVE = []
|
7824
7939
|
include Aws::Structure
|
7825
7940
|
end
|
@@ -8479,21 +8594,12 @@ module Aws::RDS
|
|
8479
8594
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
8480
8595
|
# @return [Array<Types::Tag>]
|
8481
8596
|
#
|
8482
|
-
# @!attribute [rw] db_system_id
|
8483
|
-
# Reserved for future use.
|
8484
|
-
# @return [String]
|
8485
|
-
#
|
8486
8597
|
# @!attribute [rw] storage_type
|
8487
8598
|
# The storage type associated with the DB cluster snapshot.
|
8488
8599
|
#
|
8489
8600
|
# This setting is only for Aurora DB clusters.
|
8490
8601
|
# @return [String]
|
8491
8602
|
#
|
8492
|
-
# @!attribute [rw] db_cluster_resource_id
|
8493
|
-
# The resource ID of the DB cluster that this DB cluster snapshot was
|
8494
|
-
# created from.
|
8495
|
-
# @return [String]
|
8496
|
-
#
|
8497
8603
|
# @!attribute [rw] storage_throughput
|
8498
8604
|
# The storage throughput for the DB cluster snapshot. The throughput
|
8499
8605
|
# is automatically set based on the IOPS that you provision, and is
|
@@ -8502,6 +8608,15 @@ module Aws::RDS
|
|
8502
8608
|
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
8503
8609
|
# @return [Integer]
|
8504
8610
|
#
|
8611
|
+
# @!attribute [rw] db_cluster_resource_id
|
8612
|
+
# The resource ID of the DB cluster that this DB cluster snapshot was
|
8613
|
+
# created from.
|
8614
|
+
# @return [String]
|
8615
|
+
#
|
8616
|
+
# @!attribute [rw] db_system_id
|
8617
|
+
# Reserved for future use.
|
8618
|
+
# @return [String]
|
8619
|
+
#
|
8505
8620
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBClusterSnapshot AWS API Documentation
|
8506
8621
|
#
|
8507
8622
|
class DBClusterSnapshot < Struct.new(
|
@@ -8527,10 +8642,10 @@ module Aws::RDS
|
|
8527
8642
|
:source_db_cluster_snapshot_arn,
|
8528
8643
|
:iam_database_authentication_enabled,
|
8529
8644
|
:tag_list,
|
8530
|
-
:db_system_id,
|
8531
8645
|
:storage_type,
|
8646
|
+
:storage_throughput,
|
8532
8647
|
:db_cluster_resource_id,
|
8533
|
-
:
|
8648
|
+
:db_system_id)
|
8534
8649
|
SENSITIVE = []
|
8535
8650
|
include Aws::Structure
|
8536
8651
|
end
|
@@ -8667,12 +8782,40 @@ module Aws::RDS
|
|
8667
8782
|
# This data type is used as a response element in the action
|
8668
8783
|
# `DescribeDBEngineVersions`.
|
8669
8784
|
#
|
8670
|
-
# @!attribute [rw] engine
|
8671
|
-
# The name of the database engine.
|
8672
|
-
# @return [String]
|
8785
|
+
# @!attribute [rw] engine
|
8786
|
+
# The name of the database engine.
|
8787
|
+
# @return [String]
|
8788
|
+
#
|
8789
|
+
# @!attribute [rw] major_engine_version
|
8790
|
+
# The major engine version of the CEV.
|
8791
|
+
# @return [String]
|
8792
|
+
#
|
8793
|
+
# @!attribute [rw] engine_version
|
8794
|
+
# The version number of the database engine.
|
8795
|
+
# @return [String]
|
8796
|
+
#
|
8797
|
+
# @!attribute [rw] database_installation_files_s3_bucket_name
|
8798
|
+
# The name of the Amazon S3 bucket that contains your database
|
8799
|
+
# installation files.
|
8800
|
+
# @return [String]
|
8801
|
+
#
|
8802
|
+
# @!attribute [rw] database_installation_files_s3_prefix
|
8803
|
+
# The Amazon S3 directory that contains the database installation
|
8804
|
+
# files. If not specified, then no prefix is assumed.
|
8805
|
+
# @return [String]
|
8806
|
+
#
|
8807
|
+
# @!attribute [rw] custom_db_engine_version_manifest
|
8808
|
+
# JSON string that lists the installation files and parameters that
|
8809
|
+
# RDS Custom uses to create a custom engine version (CEV). RDS Custom
|
8810
|
+
# applies the patches in the order in which they're listed in the
|
8811
|
+
# manifest. You can set the Oracle home, Oracle base, and UNIX/Linux
|
8812
|
+
# user and group using the installation parameters. For more
|
8813
|
+
# information, see [JSON fields in the CEV manifest][1] in the *Amazon
|
8814
|
+
# RDS User Guide*.
|
8815
|
+
#
|
8816
|
+
#
|
8673
8817
|
#
|
8674
|
-
#
|
8675
|
-
# The version number of the database engine.
|
8818
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.preparing.html#custom-cev.preparing.manifest.fields
|
8676
8819
|
# @return [String]
|
8677
8820
|
#
|
8678
8821
|
# @!attribute [rw] db_parameter_group_family
|
@@ -8683,6 +8826,10 @@ module Aws::RDS
|
|
8683
8826
|
# The description of the database engine.
|
8684
8827
|
# @return [String]
|
8685
8828
|
#
|
8829
|
+
# @!attribute [rw] db_engine_version_arn
|
8830
|
+
# The ARN of the custom engine version.
|
8831
|
+
# @return [String]
|
8832
|
+
#
|
8686
8833
|
# @!attribute [rw] db_engine_version_description
|
8687
8834
|
# The description of the database engine version.
|
8688
8835
|
# @return [String]
|
@@ -8702,6 +8849,16 @@ module Aws::RDS
|
|
8702
8849
|
# the usage operation. Applicable for RDS Custom for SQL Server.
|
8703
8850
|
# @return [String]
|
8704
8851
|
#
|
8852
|
+
# @!attribute [rw] kms_key_id
|
8853
|
+
# The Amazon Web Services KMS key identifier for an encrypted CEV.
|
8854
|
+
# This parameter is required for RDS Custom, but optional for Amazon
|
8855
|
+
# RDS.
|
8856
|
+
# @return [String]
|
8857
|
+
#
|
8858
|
+
# @!attribute [rw] create_time
|
8859
|
+
# The creation time of the DB engine version.
|
8860
|
+
# @return [Time]
|
8861
|
+
#
|
8705
8862
|
# @!attribute [rw] supported_character_sets
|
8706
8863
|
# A list of the character sets supported by this engine for the
|
8707
8864
|
# `CharacterSetName` parameter of the `CreateDBInstance` operation.
|
@@ -8778,34 +8935,6 @@ module Aws::RDS
|
|
8778
8935
|
# specific DB engine version.
|
8779
8936
|
# @return [Boolean]
|
8780
8937
|
#
|
8781
|
-
# @!attribute [rw] major_engine_version
|
8782
|
-
# The major engine version of the CEV.
|
8783
|
-
# @return [String]
|
8784
|
-
#
|
8785
|
-
# @!attribute [rw] database_installation_files_s3_bucket_name
|
8786
|
-
# The name of the Amazon S3 bucket that contains your database
|
8787
|
-
# installation files.
|
8788
|
-
# @return [String]
|
8789
|
-
#
|
8790
|
-
# @!attribute [rw] database_installation_files_s3_prefix
|
8791
|
-
# The Amazon S3 directory that contains the database installation
|
8792
|
-
# files. If not specified, then no prefix is assumed.
|
8793
|
-
# @return [String]
|
8794
|
-
#
|
8795
|
-
# @!attribute [rw] db_engine_version_arn
|
8796
|
-
# The ARN of the custom engine version.
|
8797
|
-
# @return [String]
|
8798
|
-
#
|
8799
|
-
# @!attribute [rw] kms_key_id
|
8800
|
-
# The Amazon Web Services KMS key identifier for an encrypted CEV.
|
8801
|
-
# This parameter is required for RDS Custom, but optional for Amazon
|
8802
|
-
# RDS.
|
8803
|
-
# @return [String]
|
8804
|
-
#
|
8805
|
-
# @!attribute [rw] create_time
|
8806
|
-
# The creation time of the DB engine version.
|
8807
|
-
# @return [Time]
|
8808
|
-
#
|
8809
8938
|
# @!attribute [rw] tag_list
|
8810
8939
|
# A list of tags.
|
8811
8940
|
#
|
@@ -8824,20 +8953,6 @@ module Aws::RDS
|
|
8824
8953
|
# PostgreSQL.
|
8825
8954
|
# @return [Boolean]
|
8826
8955
|
#
|
8827
|
-
# @!attribute [rw] custom_db_engine_version_manifest
|
8828
|
-
# JSON string that lists the installation files and parameters that
|
8829
|
-
# RDS Custom uses to create a custom engine version (CEV). RDS Custom
|
8830
|
-
# applies the patches in the order in which they're listed in the
|
8831
|
-
# manifest. You can set the Oracle home, Oracle base, and UNIX/Linux
|
8832
|
-
# user and group using the installation parameters. For more
|
8833
|
-
# information, see [JSON fields in the CEV manifest][1] in the *Amazon
|
8834
|
-
# RDS User Guide*.
|
8835
|
-
#
|
8836
|
-
#
|
8837
|
-
#
|
8838
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.preparing.html#custom-cev.preparing.manifest.fields
|
8839
|
-
# @return [String]
|
8840
|
-
#
|
8841
8956
|
# @!attribute [rw] supports_limitless_database
|
8842
8957
|
# Indicates whether the DB engine version supports Aurora Limitless
|
8843
8958
|
# Database.
|
@@ -8890,13 +9005,20 @@ module Aws::RDS
|
|
8890
9005
|
#
|
8891
9006
|
class DBEngineVersion < Struct.new(
|
8892
9007
|
:engine,
|
9008
|
+
:major_engine_version,
|
8893
9009
|
:engine_version,
|
9010
|
+
:database_installation_files_s3_bucket_name,
|
9011
|
+
:database_installation_files_s3_prefix,
|
9012
|
+
:custom_db_engine_version_manifest,
|
8894
9013
|
:db_parameter_group_family,
|
8895
9014
|
:db_engine_description,
|
9015
|
+
:db_engine_version_arn,
|
8896
9016
|
:db_engine_version_description,
|
8897
9017
|
:default_character_set,
|
8898
9018
|
:image,
|
8899
9019
|
:db_engine_media_type,
|
9020
|
+
:kms_key_id,
|
9021
|
+
:create_time,
|
8900
9022
|
:supported_character_sets,
|
8901
9023
|
:supported_nchar_character_sets,
|
8902
9024
|
:valid_upgrade_target,
|
@@ -8909,15 +9031,8 @@ module Aws::RDS
|
|
8909
9031
|
:status,
|
8910
9032
|
:supports_parallel_query,
|
8911
9033
|
:supports_global_databases,
|
8912
|
-
:major_engine_version,
|
8913
|
-
:database_installation_files_s3_bucket_name,
|
8914
|
-
:database_installation_files_s3_prefix,
|
8915
|
-
:db_engine_version_arn,
|
8916
|
-
:kms_key_id,
|
8917
|
-
:create_time,
|
8918
9034
|
:tag_list,
|
8919
9035
|
:supports_babelfish,
|
8920
|
-
:custom_db_engine_version_manifest,
|
8921
9036
|
:supports_limitless_database,
|
8922
9037
|
:supports_certificate_rotation_without_restart,
|
8923
9038
|
:supported_ca_certificate_identifiers,
|
@@ -8984,10 +9099,6 @@ module Aws::RDS
|
|
8984
9099
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/accessing-monitoring.html#Overview.DBInstance.Status
|
8985
9100
|
# @return [String]
|
8986
9101
|
#
|
8987
|
-
# @!attribute [rw] automatic_restart_time
|
8988
|
-
# The time when a stopped DB instance is restarted automatically.
|
8989
|
-
# @return [Time]
|
8990
|
-
#
|
8991
9102
|
# @!attribute [rw] master_username
|
8992
9103
|
# The master username for the DB instance.
|
8993
9104
|
# @return [String]
|
@@ -9137,6 +9248,12 @@ module Aws::RDS
|
|
9137
9248
|
# instance.
|
9138
9249
|
# @return [Integer]
|
9139
9250
|
#
|
9251
|
+
# @!attribute [rw] storage_throughput
|
9252
|
+
# The storage throughput for the DB instance.
|
9253
|
+
#
|
9254
|
+
# This setting applies only to the `gp3` storage type.
|
9255
|
+
# @return [Integer]
|
9256
|
+
#
|
9140
9257
|
# @!attribute [rw] option_group_memberships
|
9141
9258
|
# The list of option group memberships for this DB instance.
|
9142
9259
|
# @return [Array<Types::OptionGroupMembership>]
|
@@ -9390,10 +9507,18 @@ module Aws::RDS
|
|
9390
9507
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
9391
9508
|
# @return [Array<Types::Tag>]
|
9392
9509
|
#
|
9393
|
-
# @!attribute [rw]
|
9394
|
-
# The
|
9395
|
-
# instance
|
9396
|
-
#
|
9510
|
+
# @!attribute [rw] automation_mode
|
9511
|
+
# The automation mode of the RDS Custom DB instance: `full` or `all
|
9512
|
+
# paused`. If `full`, the DB instance automates monitoring and
|
9513
|
+
# instance recovery. If `all paused`, the instance pauses automation
|
9514
|
+
# for the duration set by `--resume-full-automation-mode-minutes`.
|
9515
|
+
# @return [String]
|
9516
|
+
#
|
9517
|
+
# @!attribute [rw] resume_full_automation_mode_time
|
9518
|
+
# The number of minutes to pause the automation. When the time period
|
9519
|
+
# ends, RDS Custom resumes full automation. The minimum value is 60
|
9520
|
+
# (default). The maximum value is 1,440.
|
9521
|
+
# @return [Time]
|
9397
9522
|
#
|
9398
9523
|
# @!attribute [rw] customer_owned_ip_enabled
|
9399
9524
|
# Indicates whether a customer-owned IP address (CoIP) is enabled for
|
@@ -9418,9 +9543,23 @@ module Aws::RDS
|
|
9418
9543
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
9419
9544
|
# @return [Boolean]
|
9420
9545
|
#
|
9421
|
-
# @!attribute [rw]
|
9422
|
-
# The
|
9423
|
-
#
|
9546
|
+
# @!attribute [rw] network_type
|
9547
|
+
# The network type of the DB instance.
|
9548
|
+
#
|
9549
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
9550
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
9551
|
+
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
9552
|
+
#
|
9553
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
9554
|
+
# in the *Amazon RDS User Guide* and [ Working with a DB instance in a
|
9555
|
+
# VPC][2] in the *Amazon Aurora User Guide.*
|
9556
|
+
#
|
9557
|
+
# Valid Values: `IPV4 | DUAL`
|
9558
|
+
#
|
9559
|
+
#
|
9560
|
+
#
|
9561
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
9562
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
9424
9563
|
# @return [String]
|
9425
9564
|
#
|
9426
9565
|
# @!attribute [rw] activity_stream_status
|
@@ -9450,17 +9589,24 @@ module Aws::RDS
|
|
9450
9589
|
# database activity stream.
|
9451
9590
|
# @return [Boolean]
|
9452
9591
|
#
|
9453
|
-
# @!attribute [rw]
|
9454
|
-
# The
|
9455
|
-
#
|
9456
|
-
# instance recovery. If `all paused`, the instance pauses automation
|
9457
|
-
# for the duration set by `--resume-full-automation-mode-minutes`.
|
9592
|
+
# @!attribute [rw] aws_backup_recovery_point_arn
|
9593
|
+
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
9594
|
+
# Services Backup.
|
9458
9595
|
# @return [String]
|
9459
9596
|
#
|
9460
|
-
# @!attribute [rw]
|
9461
|
-
# The
|
9462
|
-
#
|
9463
|
-
#
|
9597
|
+
# @!attribute [rw] db_instance_automated_backups_replications
|
9598
|
+
# The list of replicated automated backups associated with the DB
|
9599
|
+
# instance.
|
9600
|
+
# @return [Array<Types::DBInstanceAutomatedBackupsReplication>]
|
9601
|
+
#
|
9602
|
+
# @!attribute [rw] backup_target
|
9603
|
+
# The location where automated backups and manual snapshots are
|
9604
|
+
# stored: Dedicated Local Zones, Amazon Web Services Outposts or the
|
9605
|
+
# Amazon Web Services Region.
|
9606
|
+
# @return [String]
|
9607
|
+
#
|
9608
|
+
# @!attribute [rw] automatic_restart_time
|
9609
|
+
# The time when a stopped DB instance is restarted automatically.
|
9464
9610
|
# @return [Time]
|
9465
9611
|
#
|
9466
9612
|
# @!attribute [rw] custom_iam_instance_profile
|
@@ -9484,40 +9630,13 @@ module Aws::RDS
|
|
9484
9630
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
9485
9631
|
# @return [String]
|
9486
9632
|
#
|
9487
|
-
# @!attribute [rw] backup_target
|
9488
|
-
# The location where automated backups and manual snapshots are
|
9489
|
-
# stored: Dedicated Local Zones, Amazon Web Services Outposts or the
|
9490
|
-
# Amazon Web Services Region.
|
9491
|
-
# @return [String]
|
9492
|
-
#
|
9493
|
-
# @!attribute [rw] network_type
|
9494
|
-
# The network type of the DB instance.
|
9495
|
-
#
|
9496
|
-
# The network type is determined by the `DBSubnetGroup` specified for
|
9497
|
-
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
9498
|
-
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
9499
|
-
#
|
9500
|
-
# For more information, see [ Working with a DB instance in a VPC][1]
|
9501
|
-
# in the *Amazon RDS User Guide* and [ Working with a DB instance in a
|
9502
|
-
# VPC][2] in the *Amazon Aurora User Guide.*
|
9503
|
-
#
|
9504
|
-
# Valid Values: `IPV4 | DUAL`
|
9505
|
-
#
|
9506
|
-
#
|
9507
|
-
#
|
9508
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
9509
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
9510
|
-
# @return [String]
|
9511
|
-
#
|
9512
9633
|
# @!attribute [rw] activity_stream_policy_status
|
9513
9634
|
# The status of the policy state of the activity stream.
|
9514
9635
|
# @return [String]
|
9515
9636
|
#
|
9516
|
-
# @!attribute [rw]
|
9517
|
-
# The
|
9518
|
-
#
|
9519
|
-
# This setting applies only to the `gp3` storage type.
|
9520
|
-
# @return [Integer]
|
9637
|
+
# @!attribute [rw] certificate_details
|
9638
|
+
# The details of the DB instance's server certificate.
|
9639
|
+
# @return [Types::CertificateDetails]
|
9521
9640
|
#
|
9522
9641
|
# @!attribute [rw] db_system_id
|
9523
9642
|
# The Oracle system ID (Oracle SID) for a container database (CDB).
|
@@ -9537,10 +9656,6 @@ module Aws::RDS
|
|
9537
9656
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-secrets-manager.html
|
9538
9657
|
# @return [Types::MasterUserSecret]
|
9539
9658
|
#
|
9540
|
-
# @!attribute [rw] certificate_details
|
9541
|
-
# The details of the DB instance's server certificate.
|
9542
|
-
# @return [Types::CertificateDetails]
|
9543
|
-
#
|
9544
9659
|
# @!attribute [rw] read_replica_source_db_cluster_identifier
|
9545
9660
|
# The identifier of the source DB cluster if this DB instance is a
|
9546
9661
|
# read replica.
|
@@ -9550,6 +9665,11 @@ module Aws::RDS
|
|
9550
9665
|
# The progress of the storage optimization operation as a percentage.
|
9551
9666
|
# @return [String]
|
9552
9667
|
#
|
9668
|
+
# @!attribute [rw] multi_tenant
|
9669
|
+
# Specifies whether the DB instance is in the multi-tenant
|
9670
|
+
# configuration (TRUE) or the single-tenant configuration (FALSE).
|
9671
|
+
# @return [Boolean]
|
9672
|
+
#
|
9553
9673
|
# @!attribute [rw] dedicated_log_volume
|
9554
9674
|
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
9555
9675
|
# enabled.
|
@@ -9567,11 +9687,6 @@ module Aws::RDS
|
|
9567
9687
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.UpgradeFileSystem
|
9568
9688
|
# @return [Boolean]
|
9569
9689
|
#
|
9570
|
-
# @!attribute [rw] multi_tenant
|
9571
|
-
# Specifies whether the DB instance is in the multi-tenant
|
9572
|
-
# configuration (TRUE) or the single-tenant configuration (FALSE).
|
9573
|
-
# @return [Boolean]
|
9574
|
-
#
|
9575
9690
|
# @!attribute [rw] engine_lifecycle_support
|
9576
9691
|
# The lifecycle type for the DB instance.
|
9577
9692
|
#
|
@@ -9585,7 +9700,6 @@ module Aws::RDS
|
|
9585
9700
|
:db_instance_class,
|
9586
9701
|
:engine,
|
9587
9702
|
:db_instance_status,
|
9588
|
-
:automatic_restart_time,
|
9589
9703
|
:master_username,
|
9590
9704
|
:db_name,
|
9591
9705
|
:endpoint,
|
@@ -9610,6 +9724,7 @@ module Aws::RDS
|
|
9610
9724
|
:replica_mode,
|
9611
9725
|
:license_model,
|
9612
9726
|
:iops,
|
9727
|
+
:storage_throughput,
|
9613
9728
|
:option_group_memberships,
|
9614
9729
|
:character_set_name,
|
9615
9730
|
:nchar_character_set_name,
|
@@ -9644,29 +9759,29 @@ module Aws::RDS
|
|
9644
9759
|
:listener_endpoint,
|
9645
9760
|
:max_allocated_storage,
|
9646
9761
|
:tag_list,
|
9647
|
-
:
|
9762
|
+
:automation_mode,
|
9763
|
+
:resume_full_automation_mode_time,
|
9648
9764
|
:customer_owned_ip_enabled,
|
9649
|
-
:
|
9765
|
+
:network_type,
|
9650
9766
|
:activity_stream_status,
|
9651
9767
|
:activity_stream_kms_key_id,
|
9652
9768
|
:activity_stream_kinesis_stream_name,
|
9653
9769
|
:activity_stream_mode,
|
9654
9770
|
:activity_stream_engine_native_audit_fields_included,
|
9655
|
-
:
|
9656
|
-
:
|
9657
|
-
:custom_iam_instance_profile,
|
9771
|
+
:aws_backup_recovery_point_arn,
|
9772
|
+
:db_instance_automated_backups_replications,
|
9658
9773
|
:backup_target,
|
9659
|
-
:
|
9774
|
+
:automatic_restart_time,
|
9775
|
+
:custom_iam_instance_profile,
|
9660
9776
|
:activity_stream_policy_status,
|
9661
|
-
:
|
9777
|
+
:certificate_details,
|
9662
9778
|
:db_system_id,
|
9663
9779
|
:master_user_secret,
|
9664
|
-
:certificate_details,
|
9665
9780
|
:read_replica_source_db_cluster_identifier,
|
9666
9781
|
:percent_progress,
|
9782
|
+
:multi_tenant,
|
9667
9783
|
:dedicated_log_volume,
|
9668
9784
|
:is_storage_config_upgrade_available,
|
9669
|
-
:multi_tenant,
|
9670
9785
|
:engine_lifecycle_support)
|
9671
9786
|
SENSITIVE = []
|
9672
9787
|
include Aws::Structure
|
@@ -9766,6 +9881,10 @@ module Aws::RDS
|
|
9766
9881
|
# The IOPS (I/O operations per second) value for the automated backup.
|
9767
9882
|
# @return [Integer]
|
9768
9883
|
#
|
9884
|
+
# @!attribute [rw] storage_throughput
|
9885
|
+
# The storage throughput for the automated backup.
|
9886
|
+
# @return [Integer]
|
9887
|
+
#
|
9769
9888
|
# @!attribute [rw] option_group_name
|
9770
9889
|
# The option group the automated backup is associated with. If
|
9771
9890
|
# omitted, the default option group for the engine specified is used.
|
@@ -9822,9 +9941,11 @@ module Aws::RDS
|
|
9822
9941
|
# Region.
|
9823
9942
|
# @return [String]
|
9824
9943
|
#
|
9825
|
-
# @!attribute [rw]
|
9826
|
-
#
|
9827
|
-
#
|
9944
|
+
# @!attribute [rw] multi_tenant
|
9945
|
+
# Specifies whether the automatic backup is for a DB instance in the
|
9946
|
+
# multi-tenant configuration (TRUE) or the single-tenant configuration
|
9947
|
+
# (FALSE).
|
9948
|
+
# @return [Boolean]
|
9828
9949
|
#
|
9829
9950
|
# @!attribute [rw] aws_backup_recovery_point_arn
|
9830
9951
|
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
@@ -9836,12 +9957,6 @@ module Aws::RDS
|
|
9836
9957
|
# enabled.
|
9837
9958
|
# @return [Boolean]
|
9838
9959
|
#
|
9839
|
-
# @!attribute [rw] multi_tenant
|
9840
|
-
# Specifies whether the automatic backup is for a DB instance in the
|
9841
|
-
# multi-tenant configuration (TRUE) or the single-tenant configuration
|
9842
|
-
# (FALSE).
|
9843
|
-
# @return [Boolean]
|
9844
|
-
#
|
9845
9960
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstanceAutomatedBackup AWS API Documentation
|
9846
9961
|
#
|
9847
9962
|
class DBInstanceAutomatedBackup < Struct.new(
|
@@ -9861,6 +9976,7 @@ module Aws::RDS
|
|
9861
9976
|
:engine_version,
|
9862
9977
|
:license_model,
|
9863
9978
|
:iops,
|
9979
|
+
:storage_throughput,
|
9864
9980
|
:option_group_name,
|
9865
9981
|
:tde_credential_arn,
|
9866
9982
|
:encrypted,
|
@@ -9872,10 +9988,9 @@ module Aws::RDS
|
|
9872
9988
|
:db_instance_automated_backups_arn,
|
9873
9989
|
:db_instance_automated_backups_replications,
|
9874
9990
|
:backup_target,
|
9875
|
-
:
|
9991
|
+
:multi_tenant,
|
9876
9992
|
:aws_backup_recovery_point_arn,
|
9877
|
-
:dedicated_log_volume
|
9878
|
-
:multi_tenant)
|
9993
|
+
:dedicated_log_volume)
|
9879
9994
|
SENSITIVE = []
|
9880
9995
|
include Aws::Structure
|
9881
9996
|
end
|
@@ -10299,6 +10414,14 @@ module Aws::RDS
|
|
10299
10414
|
# The EC2 subnet IDs for the proxy.
|
10300
10415
|
# @return [Array<String>]
|
10301
10416
|
#
|
10417
|
+
# @!attribute [rw] default_auth_scheme
|
10418
|
+
# The default authentication scheme that the proxy uses for client
|
10419
|
+
# connections to the proxy and connections from the proxy to the
|
10420
|
+
# underlying database. Valid values are `NONE` and `IAM_AUTH`. When
|
10421
|
+
# set to `IAM_AUTH`, the proxy uses end-to-end IAM authentication to
|
10422
|
+
# connect to the database.
|
10423
|
+
# @return [String]
|
10424
|
+
#
|
10302
10425
|
# @!attribute [rw] auth
|
10303
10426
|
# One or more data structures specifying the authorization mechanism
|
10304
10427
|
# to connect to the associated RDS DB instance or Aurora DB cluster.
|
@@ -10348,6 +10471,31 @@ module Aws::RDS
|
|
10348
10471
|
# The date and time when the proxy was last updated.
|
10349
10472
|
# @return [Time]
|
10350
10473
|
#
|
10474
|
+
# @!attribute [rw] endpoint_network_type
|
10475
|
+
# The network type of the DB proxy endpoint. The network type
|
10476
|
+
# determines the IP version that the proxy endpoint supports.
|
10477
|
+
#
|
10478
|
+
# Valid values:
|
10479
|
+
#
|
10480
|
+
# * `IPV4` - The proxy endpoint supports IPv4 only.
|
10481
|
+
#
|
10482
|
+
# * `IPV6` - The proxy endpoint supports IPv6 only.
|
10483
|
+
#
|
10484
|
+
# * `DUAL` - The proxy endpoint supports both IPv4 and IPv6.
|
10485
|
+
# @return [String]
|
10486
|
+
#
|
10487
|
+
# @!attribute [rw] target_connection_network_type
|
10488
|
+
# The network type that the proxy uses to connect to the target
|
10489
|
+
# database. The network type determines the IP version that the proxy
|
10490
|
+
# uses for connections to the database.
|
10491
|
+
#
|
10492
|
+
# Valid values:
|
10493
|
+
#
|
10494
|
+
# * `IPV4` - The proxy connects to the database using IPv4 only.
|
10495
|
+
#
|
10496
|
+
# * `IPV6` - The proxy connects to the database using IPv6 only.
|
10497
|
+
# @return [String]
|
10498
|
+
#
|
10351
10499
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBProxy AWS API Documentation
|
10352
10500
|
#
|
10353
10501
|
class DBProxy < Struct.new(
|
@@ -10358,6 +10506,7 @@ module Aws::RDS
|
|
10358
10506
|
:vpc_id,
|
10359
10507
|
:vpc_security_group_ids,
|
10360
10508
|
:vpc_subnet_ids,
|
10509
|
+
:default_auth_scheme,
|
10361
10510
|
:auth,
|
10362
10511
|
:role_arn,
|
10363
10512
|
:endpoint,
|
@@ -10365,7 +10514,9 @@ module Aws::RDS
|
|
10365
10514
|
:idle_client_timeout,
|
10366
10515
|
:debug_logging,
|
10367
10516
|
:created_date,
|
10368
|
-
:updated_date
|
10517
|
+
:updated_date,
|
10518
|
+
:endpoint_network_type,
|
10519
|
+
:target_connection_network_type)
|
10369
10520
|
SENSITIVE = []
|
10370
10521
|
include Aws::Structure
|
10371
10522
|
end
|
@@ -10444,6 +10595,19 @@ module Aws::RDS
|
|
10444
10595
|
# DB proxy can be either read/write or read-only.
|
10445
10596
|
# @return [Boolean]
|
10446
10597
|
#
|
10598
|
+
# @!attribute [rw] endpoint_network_type
|
10599
|
+
# The network type of the DB proxy endpoint. The network type
|
10600
|
+
# determines the IP version that the proxy endpoint supports.
|
10601
|
+
#
|
10602
|
+
# Valid values:
|
10603
|
+
#
|
10604
|
+
# * `IPV4` - The proxy endpoint supports IPv4 only.
|
10605
|
+
#
|
10606
|
+
# * `IPV6` - The proxy endpoint supports IPv6 only.
|
10607
|
+
#
|
10608
|
+
# * `DUAL` - The proxy endpoint supports both IPv4 and IPv6.
|
10609
|
+
# @return [String]
|
10610
|
+
#
|
10447
10611
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBProxyEndpoint AWS API Documentation
|
10448
10612
|
#
|
10449
10613
|
class DBProxyEndpoint < Struct.new(
|
@@ -10457,7 +10621,8 @@ module Aws::RDS
|
|
10457
10621
|
:endpoint,
|
10458
10622
|
:created_date,
|
10459
10623
|
:target_role,
|
10460
|
-
:is_default
|
10624
|
+
:is_default,
|
10625
|
+
:endpoint_network_type)
|
10461
10626
|
SENSITIVE = []
|
10462
10627
|
include Aws::Structure
|
10463
10628
|
end
|
@@ -11146,6 +11311,10 @@ module Aws::RDS
|
|
11146
11311
|
# the DB instance at the time of the snapshot.
|
11147
11312
|
# @return [Integer]
|
11148
11313
|
#
|
11314
|
+
# @!attribute [rw] storage_throughput
|
11315
|
+
# Specifies the storage throughput for the DB snapshot.
|
11316
|
+
# @return [Integer]
|
11317
|
+
#
|
11149
11318
|
# @!attribute [rw] option_group_name
|
11150
11319
|
# Provides the option group name for the DB snapshot.
|
11151
11320
|
# @return [String]
|
@@ -11226,6 +11395,11 @@ module Aws::RDS
|
|
11226
11395
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
11227
11396
|
# @return [Array<Types::Tag>]
|
11228
11397
|
#
|
11398
|
+
# @!attribute [rw] snapshot_target
|
11399
|
+
# Specifies where manual snapshots are stored: Dedicated Local Zones,
|
11400
|
+
# Amazon Web Services Outposts or the Amazon Web Services Region.
|
11401
|
+
# @return [String]
|
11402
|
+
#
|
11229
11403
|
# @!attribute [rw] original_snapshot_create_time
|
11230
11404
|
# Specifies the time of the CreateDBSnapshot operation in Coordinated
|
11231
11405
|
# Universal Time (UTC). Doesn't change when the snapshot is copied.
|
@@ -11244,32 +11418,23 @@ module Aws::RDS
|
|
11244
11418
|
# SnapshotDatabaseTime, then the replica lag is two hours.
|
11245
11419
|
# @return [Time]
|
11246
11420
|
#
|
11247
|
-
# @!attribute [rw] snapshot_target
|
11248
|
-
# Specifies where manual snapshots are stored: Dedicated Local Zones,
|
11249
|
-
# Amazon Web Services Outposts or the Amazon Web Services Region.
|
11250
|
-
# @return [String]
|
11251
|
-
#
|
11252
|
-
# @!attribute [rw] storage_throughput
|
11253
|
-
# Specifies the storage throughput for the DB snapshot.
|
11254
|
-
# @return [Integer]
|
11255
|
-
#
|
11256
11421
|
# @!attribute [rw] db_system_id
|
11257
11422
|
# The Oracle system identifier (SID), which is the name of the Oracle
|
11258
11423
|
# database instance that manages your database files. The Oracle SID
|
11259
11424
|
# is also the name of your CDB.
|
11260
11425
|
# @return [String]
|
11261
11426
|
#
|
11262
|
-
# @!attribute [rw] dedicated_log_volume
|
11263
|
-
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
11264
|
-
# enabled.
|
11265
|
-
# @return [Boolean]
|
11266
|
-
#
|
11267
11427
|
# @!attribute [rw] multi_tenant
|
11268
11428
|
# Indicates whether the snapshot is of a DB instance using the
|
11269
11429
|
# multi-tenant configuration (TRUE) or the single-tenant configuration
|
11270
11430
|
# (FALSE).
|
11271
11431
|
# @return [Boolean]
|
11272
11432
|
#
|
11433
|
+
# @!attribute [rw] dedicated_log_volume
|
11434
|
+
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
11435
|
+
# enabled.
|
11436
|
+
# @return [Boolean]
|
11437
|
+
#
|
11273
11438
|
# @!attribute [rw] snapshot_availability_zone
|
11274
11439
|
# Specifies the name of the Availability Zone where RDS stores the DB
|
11275
11440
|
# snapshot. This value is valid only for snapshots that RDS stores on
|
@@ -11294,6 +11459,7 @@ module Aws::RDS
|
|
11294
11459
|
:license_model,
|
11295
11460
|
:snapshot_type,
|
11296
11461
|
:iops,
|
11462
|
+
:storage_throughput,
|
11297
11463
|
:option_group_name,
|
11298
11464
|
:percent_progress,
|
11299
11465
|
:source_region,
|
@@ -11308,13 +11474,12 @@ module Aws::RDS
|
|
11308
11474
|
:processor_features,
|
11309
11475
|
:dbi_resource_id,
|
11310
11476
|
:tag_list,
|
11477
|
+
:snapshot_target,
|
11311
11478
|
:original_snapshot_create_time,
|
11312
11479
|
:snapshot_database_time,
|
11313
|
-
:snapshot_target,
|
11314
|
-
:storage_throughput,
|
11315
11480
|
:db_system_id,
|
11316
|
-
:dedicated_log_volume,
|
11317
11481
|
:multi_tenant,
|
11482
|
+
:dedicated_log_volume,
|
11318
11483
|
:snapshot_availability_zone)
|
11319
11484
|
SENSITIVE = []
|
11320
11485
|
include Aws::Structure
|
@@ -15782,7 +15947,7 @@ module Aws::RDS
|
|
15782
15947
|
:log_file_data,
|
15783
15948
|
:marker,
|
15784
15949
|
:additional_data_pending)
|
15785
|
-
SENSITIVE = []
|
15950
|
+
SENSITIVE = [:log_file_data]
|
15786
15951
|
include Aws::Structure
|
15787
15952
|
end
|
15788
15953
|
|
@@ -16900,15 +17065,6 @@ module Aws::RDS
|
|
16900
17065
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
16901
17066
|
# @return [Array<Types::Tag>]
|
16902
17067
|
#
|
16903
|
-
# @!attribute [rw] create_time
|
16904
|
-
# The time when the integration was created, in Universal Coordinated
|
16905
|
-
# Time (UTC).
|
16906
|
-
# @return [Time]
|
16907
|
-
#
|
16908
|
-
# @!attribute [rw] errors
|
16909
|
-
# Any errors associated with the integration.
|
16910
|
-
# @return [Array<Types::IntegrationError>]
|
16911
|
-
#
|
16912
17068
|
# @!attribute [rw] data_filter
|
16913
17069
|
# Data filters for the integration. These filters determine which
|
16914
17070
|
# tables from the source database are sent to the target Amazon
|
@@ -16919,6 +17075,15 @@ module Aws::RDS
|
|
16919
17075
|
# A description of the integration.
|
16920
17076
|
# @return [String]
|
16921
17077
|
#
|
17078
|
+
# @!attribute [rw] create_time
|
17079
|
+
# The time when the integration was created, in Universal Coordinated
|
17080
|
+
# Time (UTC).
|
17081
|
+
# @return [Time]
|
17082
|
+
#
|
17083
|
+
# @!attribute [rw] errors
|
17084
|
+
# Any errors associated with the integration.
|
17085
|
+
# @return [Array<Types::IntegrationError>]
|
17086
|
+
#
|
16922
17087
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/Integration AWS API Documentation
|
16923
17088
|
#
|
16924
17089
|
class Integration < Struct.new(
|
@@ -16930,10 +17095,10 @@ module Aws::RDS
|
|
16930
17095
|
:additional_encryption_context,
|
16931
17096
|
:status,
|
16932
17097
|
:tags,
|
16933
|
-
:create_time,
|
16934
|
-
:errors,
|
16935
17098
|
:data_filter,
|
16936
|
-
:description
|
17099
|
+
:description,
|
17100
|
+
:create_time,
|
17101
|
+
:errors)
|
16937
17102
|
SENSITIVE = []
|
16938
17103
|
include Aws::Structure
|
16939
17104
|
end
|
@@ -18131,6 +18296,37 @@ module Aws::RDS
|
|
18131
18296
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Upgrading.html#USER_UpgradeDBInstance.Upgrading.AutoMinorVersionUpgrades
|
18132
18297
|
# @return [Boolean]
|
18133
18298
|
#
|
18299
|
+
# @!attribute [rw] network_type
|
18300
|
+
# The network type of the DB cluster.
|
18301
|
+
#
|
18302
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
18303
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
18304
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
18305
|
+
#
|
18306
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
18307
|
+
# in the *Amazon Aurora User Guide.*
|
18308
|
+
#
|
18309
|
+
# Valid for Cluster Type: Aurora DB clusters only
|
18310
|
+
#
|
18311
|
+
# Valid Values: `IPV4 | DUAL`
|
18312
|
+
#
|
18313
|
+
#
|
18314
|
+
#
|
18315
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
18316
|
+
# @return [String]
|
18317
|
+
#
|
18318
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
18319
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
18320
|
+
# cluster.
|
18321
|
+
#
|
18322
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
18323
|
+
# the *Amazon Aurora User Guide*.
|
18324
|
+
#
|
18325
|
+
#
|
18326
|
+
#
|
18327
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
18328
|
+
# @return [Types::ServerlessV2ScalingConfiguration]
|
18329
|
+
#
|
18134
18330
|
# @!attribute [rw] monitoring_interval
|
18135
18331
|
# The interval, in seconds, between points when Enhanced Monitoring
|
18136
18332
|
# metrics are collected for the DB cluster. To turn off collecting
|
@@ -18171,8 +18367,9 @@ module Aws::RDS
|
|
18171
18367
|
# the `PerformanceInsightsEnabled` parameter to `true` and the
|
18172
18368
|
# `PerformanceInsightsRetentionPeriod` parameter to 465.
|
18173
18369
|
#
|
18174
|
-
# If you change the value from `advanced` to `standard`, you
|
18175
|
-
# the `PerformanceInsightsEnabled` parameter to `
|
18370
|
+
# If you change the value from `advanced` to `standard`, you can set
|
18371
|
+
# the `PerformanceInsightsEnabled` parameter to `true` to collect
|
18372
|
+
# detailed database counter and per-query metrics.
|
18176
18373
|
#
|
18177
18374
|
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
18178
18375
|
# @return [String]
|
@@ -18228,37 +18425,6 @@ module Aws::RDS
|
|
18228
18425
|
# Amazon RDS issues an error.
|
18229
18426
|
# @return [Integer]
|
18230
18427
|
#
|
18231
|
-
# @!attribute [rw] serverless_v2_scaling_configuration
|
18232
|
-
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
18233
|
-
# cluster.
|
18234
|
-
#
|
18235
|
-
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
18236
|
-
# the *Amazon Aurora User Guide*.
|
18237
|
-
#
|
18238
|
-
#
|
18239
|
-
#
|
18240
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
18241
|
-
# @return [Types::ServerlessV2ScalingConfiguration]
|
18242
|
-
#
|
18243
|
-
# @!attribute [rw] network_type
|
18244
|
-
# The network type of the DB cluster.
|
18245
|
-
#
|
18246
|
-
# The network type is determined by the `DBSubnetGroup` specified for
|
18247
|
-
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
18248
|
-
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
18249
|
-
#
|
18250
|
-
# For more information, see [ Working with a DB instance in a VPC][1]
|
18251
|
-
# in the *Amazon Aurora User Guide.*
|
18252
|
-
#
|
18253
|
-
# Valid for Cluster Type: Aurora DB clusters only
|
18254
|
-
#
|
18255
|
-
# Valid Values: `IPV4 | DUAL`
|
18256
|
-
#
|
18257
|
-
#
|
18258
|
-
#
|
18259
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
18260
|
-
# @return [String]
|
18261
|
-
#
|
18262
18428
|
# @!attribute [rw] manage_master_user_password
|
18263
18429
|
# Specifies whether to manage the master user password with Amazon Web
|
18264
18430
|
# Services Secrets Manager.
|
@@ -18315,6 +18481,14 @@ module Aws::RDS
|
|
18315
18481
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/rds-secrets-manager.html
|
18316
18482
|
# @return [Boolean]
|
18317
18483
|
#
|
18484
|
+
# @!attribute [rw] enable_local_write_forwarding
|
18485
|
+
# Specifies whether read replicas can forward write operations to the
|
18486
|
+
# writer DB instance in the DB cluster. By default, write operations
|
18487
|
+
# aren't allowed on reader DB instances.
|
18488
|
+
#
|
18489
|
+
# Valid for: Aurora DB clusters only
|
18490
|
+
# @return [Boolean]
|
18491
|
+
#
|
18318
18492
|
# @!attribute [rw] master_user_secret_kms_key_id
|
18319
18493
|
# The Amazon Web Services KMS key identifier to encrypt a secret that
|
18320
18494
|
# is automatically generated and managed in Amazon Web Services
|
@@ -18385,14 +18559,6 @@ module Aws::RDS
|
|
18385
18559
|
# ^
|
18386
18560
|
# @return [Boolean]
|
18387
18561
|
#
|
18388
|
-
# @!attribute [rw] enable_local_write_forwarding
|
18389
|
-
# Specifies whether read replicas can forward write operations to the
|
18390
|
-
# writer DB instance in the DB cluster. By default, write operations
|
18391
|
-
# aren't allowed on reader DB instances.
|
18392
|
-
#
|
18393
|
-
# Valid for: Aurora DB clusters only
|
18394
|
-
# @return [Boolean]
|
18395
|
-
#
|
18396
18562
|
# @!attribute [rw] aws_backup_recovery_point_arn
|
18397
18563
|
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
18398
18564
|
# Services Backup.
|
@@ -18425,6 +18591,24 @@ module Aws::RDS
|
|
18425
18591
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
18426
18592
|
# @return [String]
|
18427
18593
|
#
|
18594
|
+
# @!attribute [rw] master_user_authentication_type
|
18595
|
+
# Specifies the authentication type for the master user. With IAM
|
18596
|
+
# master user authentication, you can change the master DB user to use
|
18597
|
+
# IAM database authentication.
|
18598
|
+
#
|
18599
|
+
# You can specify one of the following values:
|
18600
|
+
#
|
18601
|
+
# * `password` - Use standard database authentication with a password.
|
18602
|
+
#
|
18603
|
+
# * `iam-db-auth` - Use IAM database authentication for the master
|
18604
|
+
# user.
|
18605
|
+
#
|
18606
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
18607
|
+
#
|
18608
|
+
# This option is only valid for RDS for PostgreSQL and Aurora
|
18609
|
+
# PostgreSQL engines.
|
18610
|
+
# @return [String]
|
18611
|
+
#
|
18428
18612
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterMessage AWS API Documentation
|
18429
18613
|
#
|
18430
18614
|
class ModifyDBClusterMessage < Struct.new(
|
@@ -18457,24 +18641,25 @@ module Aws::RDS
|
|
18457
18641
|
:storage_type,
|
18458
18642
|
:iops,
|
18459
18643
|
:auto_minor_version_upgrade,
|
18644
|
+
:network_type,
|
18645
|
+
:serverless_v2_scaling_configuration,
|
18460
18646
|
:monitoring_interval,
|
18461
18647
|
:monitoring_role_arn,
|
18462
18648
|
:database_insights_mode,
|
18463
18649
|
:enable_performance_insights,
|
18464
18650
|
:performance_insights_kms_key_id,
|
18465
18651
|
:performance_insights_retention_period,
|
18466
|
-
:serverless_v2_scaling_configuration,
|
18467
|
-
:network_type,
|
18468
18652
|
:manage_master_user_password,
|
18469
18653
|
:rotate_master_user_password,
|
18654
|
+
:enable_local_write_forwarding,
|
18470
18655
|
:master_user_secret_kms_key_id,
|
18471
18656
|
:engine_mode,
|
18472
18657
|
:allow_engine_mode_change,
|
18473
|
-
:enable_local_write_forwarding,
|
18474
18658
|
:aws_backup_recovery_point_arn,
|
18475
18659
|
:enable_limitless_database,
|
18476
|
-
:ca_certificate_identifier
|
18477
|
-
|
18660
|
+
:ca_certificate_identifier,
|
18661
|
+
:master_user_authentication_type)
|
18662
|
+
SENSITIVE = [:master_user_password]
|
18478
18663
|
include Aws::Structure
|
18479
18664
|
end
|
18480
18665
|
|
@@ -19095,6 +19280,15 @@ module Aws::RDS
|
|
19095
19280
|
# Default: Uses existing setting
|
19096
19281
|
# @return [Integer]
|
19097
19282
|
#
|
19283
|
+
# @!attribute [rw] storage_throughput
|
19284
|
+
# The storage throughput value for the DB instance.
|
19285
|
+
#
|
19286
|
+
# This setting applies only to the `gp3` storage type.
|
19287
|
+
#
|
19288
|
+
# This setting doesn't apply to Amazon Aurora or RDS Custom DB
|
19289
|
+
# instances.
|
19290
|
+
# @return [Integer]
|
19291
|
+
#
|
19098
19292
|
# @!attribute [rw] option_group_name
|
19099
19293
|
# The option group to associate the DB instance with.
|
19100
19294
|
#
|
@@ -19261,6 +19455,11 @@ module Aws::RDS
|
|
19261
19455
|
# Example: `123.124.125.126,234.235.236.237`
|
19262
19456
|
# @return [Array<String>]
|
19263
19457
|
#
|
19458
|
+
# @!attribute [rw] disable_domain
|
19459
|
+
# Specifies whether to remove the DB instance from the Active
|
19460
|
+
# Directory domain.
|
19461
|
+
# @return [Boolean]
|
19462
|
+
#
|
19264
19463
|
# @!attribute [rw] copy_tags_to_snapshot
|
19265
19464
|
# Specifies whether to copy all tags from the DB instance to snapshots
|
19266
19465
|
# of the DB instance. By default, tags aren't copied.
|
@@ -19372,11 +19571,6 @@ module Aws::RDS
|
|
19372
19571
|
# This setting doesn't apply to RDS Custom DB instances.
|
19373
19572
|
# @return [String]
|
19374
19573
|
#
|
19375
|
-
# @!attribute [rw] disable_domain
|
19376
|
-
# Specifies whether to remove the DB instance from the Active
|
19377
|
-
# Directory domain.
|
19378
|
-
# @return [Boolean]
|
19379
|
-
#
|
19380
19574
|
# @!attribute [rw] promotion_tier
|
19381
19575
|
# The order of priority in which an Aurora Replica is promoted to the
|
19382
19576
|
# primary instance after a failure of the existing primary instance.
|
@@ -19632,6 +19826,26 @@ module Aws::RDS
|
|
19632
19826
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
19633
19827
|
# @return [String]
|
19634
19828
|
#
|
19829
|
+
# @!attribute [rw] automation_mode
|
19830
|
+
# The automation mode of the RDS Custom DB instance. If `full`, the DB
|
19831
|
+
# instance automates monitoring and instance recovery. If `all
|
19832
|
+
# paused`, the instance pauses automation for the duration set by
|
19833
|
+
# `ResumeFullAutomationModeMinutes`.
|
19834
|
+
# @return [String]
|
19835
|
+
#
|
19836
|
+
# @!attribute [rw] resume_full_automation_mode_minutes
|
19837
|
+
# The number of minutes to pause the automation. When the time period
|
19838
|
+
# ends, RDS Custom resumes full automation.
|
19839
|
+
#
|
19840
|
+
# Default: `60`
|
19841
|
+
#
|
19842
|
+
# Constraints:
|
19843
|
+
#
|
19844
|
+
# * Must be at least 60.
|
19845
|
+
#
|
19846
|
+
# * Must be no more than 1,440.
|
19847
|
+
# @return [Integer]
|
19848
|
+
#
|
19635
19849
|
# @!attribute [rw] enable_customer_owned_ip
|
19636
19850
|
# Specifies whether to enable a customer-owned IP address (CoIP) for
|
19637
19851
|
# an RDS on Outposts DB instance.
|
@@ -19655,33 +19869,6 @@ module Aws::RDS
|
|
19655
19869
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
19656
19870
|
# @return [Boolean]
|
19657
19871
|
#
|
19658
|
-
# @!attribute [rw] aws_backup_recovery_point_arn
|
19659
|
-
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
19660
|
-
# Services Backup.
|
19661
|
-
#
|
19662
|
-
# This setting doesn't apply to RDS Custom DB instances.
|
19663
|
-
# @return [String]
|
19664
|
-
#
|
19665
|
-
# @!attribute [rw] automation_mode
|
19666
|
-
# The automation mode of the RDS Custom DB instance. If `full`, the DB
|
19667
|
-
# instance automates monitoring and instance recovery. If `all
|
19668
|
-
# paused`, the instance pauses automation for the duration set by
|
19669
|
-
# `ResumeFullAutomationModeMinutes`.
|
19670
|
-
# @return [String]
|
19671
|
-
#
|
19672
|
-
# @!attribute [rw] resume_full_automation_mode_minutes
|
19673
|
-
# The number of minutes to pause the automation. When the time period
|
19674
|
-
# ends, RDS Custom resumes full automation.
|
19675
|
-
#
|
19676
|
-
# Default: `60`
|
19677
|
-
#
|
19678
|
-
# Constraints:
|
19679
|
-
#
|
19680
|
-
# * Must be at least 60.
|
19681
|
-
#
|
19682
|
-
# * Must be no more than 1,440.
|
19683
|
-
# @return [Integer]
|
19684
|
-
#
|
19685
19872
|
# @!attribute [rw] network_type
|
19686
19873
|
# The network type of the DB instance.
|
19687
19874
|
#
|
@@ -19699,14 +19886,12 @@ module Aws::RDS
|
|
19699
19886
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
19700
19887
|
# @return [String]
|
19701
19888
|
#
|
19702
|
-
# @!attribute [rw]
|
19703
|
-
# The
|
19704
|
-
#
|
19705
|
-
# This setting applies only to the `gp3` storage type.
|
19889
|
+
# @!attribute [rw] aws_backup_recovery_point_arn
|
19890
|
+
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
19891
|
+
# Services Backup.
|
19706
19892
|
#
|
19707
|
-
# This setting doesn't apply to
|
19708
|
-
#
|
19709
|
-
# @return [Integer]
|
19893
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
19894
|
+
# @return [String]
|
19710
19895
|
#
|
19711
19896
|
# @!attribute [rw] manage_master_user_password
|
19712
19897
|
# Specifies whether to manage the master user password with Amazon Web
|
@@ -19795,10 +19980,33 @@ module Aws::RDS
|
|
19795
19980
|
# different Amazon Web Services account, specify the key ARN or alias
|
19796
19981
|
# ARN.
|
19797
19982
|
#
|
19798
|
-
# There is a default KMS key for your Amazon Web Services account.
|
19799
|
-
# Your Amazon Web Services account has a different default KMS key for
|
19800
|
-
# each Amazon Web Services Region.
|
19801
|
-
# @return [String]
|
19983
|
+
# There is a default KMS key for your Amazon Web Services account.
|
19984
|
+
# Your Amazon Web Services account has a different default KMS key for
|
19985
|
+
# each Amazon Web Services Region.
|
19986
|
+
# @return [String]
|
19987
|
+
#
|
19988
|
+
# @!attribute [rw] multi_tenant
|
19989
|
+
# Specifies whether the to convert your DB instance from the
|
19990
|
+
# single-tenant configuration to the multi-tenant configuration. This
|
19991
|
+
# parameter is supported only for RDS for Oracle CDB instances.
|
19992
|
+
#
|
19993
|
+
# During the conversion, RDS creates an initial tenant database and
|
19994
|
+
# associates the DB name, master user name, character set, and
|
19995
|
+
# national character set metadata with this database. The tags
|
19996
|
+
# associated with the instance also propagate to the initial tenant
|
19997
|
+
# database. You can add more tenant databases to your DB instance by
|
19998
|
+
# using the `CreateTenantDatabase` operation.
|
19999
|
+
#
|
20000
|
+
# The conversion to the multi-tenant configuration is permanent and
|
20001
|
+
# irreversible, so you can't later convert back to the single-tenant
|
20002
|
+
# configuration. When you specify this parameter, you must also
|
20003
|
+
# specify `ApplyImmediately`.
|
20004
|
+
# @return [Boolean]
|
20005
|
+
#
|
20006
|
+
# @!attribute [rw] dedicated_log_volume
|
20007
|
+
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
20008
|
+
# enabled.
|
20009
|
+
# @return [Boolean]
|
19802
20010
|
#
|
19803
20011
|
# @!attribute [rw] engine
|
19804
20012
|
# The target Oracle DB engine when you convert a non-CDB to a CDB.
|
@@ -19830,28 +20038,21 @@ module Aws::RDS
|
|
19830
20038
|
# `--option-group-name`.
|
19831
20039
|
# @return [String]
|
19832
20040
|
#
|
19833
|
-
# @!attribute [rw]
|
19834
|
-
#
|
19835
|
-
#
|
19836
|
-
#
|
20041
|
+
# @!attribute [rw] master_user_authentication_type
|
20042
|
+
# Specifies the authentication type for the master user. With IAM
|
20043
|
+
# master user authentication, you can change the master DB user to use
|
20044
|
+
# IAM database authentication.
|
19837
20045
|
#
|
19838
|
-
#
|
19839
|
-
# Specifies whether the to convert your DB instance from the
|
19840
|
-
# single-tenant configuration to the multi-tenant configuration. This
|
19841
|
-
# parameter is supported only for RDS for Oracle CDB instances.
|
20046
|
+
# You can specify one of the following values:
|
19842
20047
|
#
|
19843
|
-
#
|
19844
|
-
# associates the DB name, master user name, character set, and
|
19845
|
-
# national character set metadata with this database. The tags
|
19846
|
-
# associated with the instance also propagate to the initial tenant
|
19847
|
-
# database. You can add more tenant databases to your DB instance by
|
19848
|
-
# using the `CreateTenantDatabase` operation.
|
20048
|
+
# * `password` - Use standard database authentication with a password.
|
19849
20049
|
#
|
19850
|
-
#
|
19851
|
-
#
|
19852
|
-
#
|
19853
|
-
#
|
19854
|
-
#
|
20050
|
+
# * `iam-db-auth` - Use IAM database authentication for the master
|
20051
|
+
# user.
|
20052
|
+
#
|
20053
|
+
# This option is only valid for RDS for PostgreSQL and Aurora
|
20054
|
+
# PostgreSQL engines.
|
20055
|
+
# @return [String]
|
19855
20056
|
#
|
19856
20057
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstanceMessage AWS API Documentation
|
19857
20058
|
#
|
@@ -19874,6 +20075,7 @@ module Aws::RDS
|
|
19874
20075
|
:auto_minor_version_upgrade,
|
19875
20076
|
:license_model,
|
19876
20077
|
:iops,
|
20078
|
+
:storage_throughput,
|
19877
20079
|
:option_group_name,
|
19878
20080
|
:new_db_instance_identifier,
|
19879
20081
|
:storage_type,
|
@@ -19885,13 +20087,13 @@ module Aws::RDS
|
|
19885
20087
|
:domain_ou,
|
19886
20088
|
:domain_auth_secret_arn,
|
19887
20089
|
:domain_dns_ips,
|
20090
|
+
:disable_domain,
|
19888
20091
|
:copy_tags_to_snapshot,
|
19889
20092
|
:monitoring_interval,
|
19890
20093
|
:db_port_number,
|
19891
20094
|
:publicly_accessible,
|
19892
20095
|
:monitoring_role_arn,
|
19893
20096
|
:domain_iam_role_name,
|
19894
|
-
:disable_domain,
|
19895
20097
|
:promotion_tier,
|
19896
20098
|
:enable_iam_database_authentication,
|
19897
20099
|
:database_insights_mode,
|
@@ -19905,19 +20107,19 @@ module Aws::RDS
|
|
19905
20107
|
:max_allocated_storage,
|
19906
20108
|
:certificate_rotation_restart,
|
19907
20109
|
:replica_mode,
|
19908
|
-
:enable_customer_owned_ip,
|
19909
|
-
:aws_backup_recovery_point_arn,
|
19910
20110
|
:automation_mode,
|
19911
20111
|
:resume_full_automation_mode_minutes,
|
20112
|
+
:enable_customer_owned_ip,
|
19912
20113
|
:network_type,
|
19913
|
-
:
|
20114
|
+
:aws_backup_recovery_point_arn,
|
19914
20115
|
:manage_master_user_password,
|
19915
20116
|
:rotate_master_user_password,
|
19916
20117
|
:master_user_secret_kms_key_id,
|
19917
|
-
:
|
20118
|
+
:multi_tenant,
|
19918
20119
|
:dedicated_log_volume,
|
19919
|
-
:
|
19920
|
-
|
20120
|
+
:engine,
|
20121
|
+
:master_user_authentication_type)
|
20122
|
+
SENSITIVE = [:master_user_password, :tde_credential_password]
|
19921
20123
|
include Aws::Structure
|
19922
20124
|
end
|
19923
20125
|
|
@@ -20047,6 +20249,14 @@ module Aws::RDS
|
|
20047
20249
|
# it can't end with a hyphen or contain two consecutive hyphens.
|
20048
20250
|
# @return [String]
|
20049
20251
|
#
|
20252
|
+
# @!attribute [rw] default_auth_scheme
|
20253
|
+
# The default authentication scheme that the proxy uses for client
|
20254
|
+
# connections to the proxy and connections from the proxy to the
|
20255
|
+
# underlying database. Valid values are `NONE` and `IAM_AUTH`. When
|
20256
|
+
# set to `IAM_AUTH`, the proxy uses end-to-end IAM authentication to
|
20257
|
+
# connect to the database.
|
20258
|
+
# @return [String]
|
20259
|
+
#
|
20050
20260
|
# @!attribute [rw] auth
|
20051
20261
|
# The new authentication settings for the `DBProxy`.
|
20052
20262
|
# @return [Array<Types::UserAuthConfig>]
|
@@ -20087,6 +20297,7 @@ module Aws::RDS
|
|
20087
20297
|
class ModifyDBProxyRequest < Struct.new(
|
20088
20298
|
:db_proxy_name,
|
20089
20299
|
:new_db_proxy_name,
|
20300
|
+
:default_auth_scheme,
|
20090
20301
|
:auth,
|
20091
20302
|
:require_tls,
|
20092
20303
|
:idle_client_timeout,
|
@@ -21326,7 +21537,7 @@ module Aws::RDS
|
|
21326
21537
|
:allowed_values,
|
21327
21538
|
:is_modifiable,
|
21328
21539
|
:is_collection)
|
21329
|
-
SENSITIVE = []
|
21540
|
+
SENSITIVE = [:value]
|
21330
21541
|
include Aws::Structure
|
21331
21542
|
end
|
21332
21543
|
|
@@ -21403,6 +21614,10 @@ module Aws::RDS
|
|
21403
21614
|
# Indicates whether a DB instance supports provisioned IOPS.
|
21404
21615
|
# @return [Boolean]
|
21405
21616
|
#
|
21617
|
+
# @!attribute [rw] supports_storage_throughput
|
21618
|
+
# Indicates whether a DB instance supports storage throughput.
|
21619
|
+
# @return [Boolean]
|
21620
|
+
#
|
21406
21621
|
# @!attribute [rw] supports_enhanced_monitoring
|
21407
21622
|
# Indicates whether a DB instance supports Enhanced Monitoring at
|
21408
21623
|
# intervals from 1 to 60 seconds.
|
@@ -21441,6 +21656,24 @@ module Aws::RDS
|
|
21441
21656
|
# Maximum provisioned IOPS per GiB for a DB instance.
|
21442
21657
|
# @return [Float]
|
21443
21658
|
#
|
21659
|
+
# @!attribute [rw] min_storage_throughput_per_db_instance
|
21660
|
+
# Minimum storage throughput for a DB instance.
|
21661
|
+
# @return [Integer]
|
21662
|
+
#
|
21663
|
+
# @!attribute [rw] max_storage_throughput_per_db_instance
|
21664
|
+
# Maximum storage throughput for a DB instance.
|
21665
|
+
# @return [Integer]
|
21666
|
+
#
|
21667
|
+
# @!attribute [rw] min_storage_throughput_per_iops
|
21668
|
+
# Minimum storage throughput to provisioned IOPS ratio for a DB
|
21669
|
+
# instance.
|
21670
|
+
# @return [Float]
|
21671
|
+
#
|
21672
|
+
# @!attribute [rw] max_storage_throughput_per_iops
|
21673
|
+
# Maximum storage throughput to provisioned IOPS ratio for a DB
|
21674
|
+
# instance.
|
21675
|
+
# @return [Float]
|
21676
|
+
#
|
21444
21677
|
# @!attribute [rw] available_processor_features
|
21445
21678
|
# A list of the available processor features for the DB instance class
|
21446
21679
|
# of a DB instance.
|
@@ -21482,19 +21715,6 @@ module Aws::RDS
|
|
21482
21715
|
# specific combination of other DB engine attributes.
|
21483
21716
|
# @return [Boolean]
|
21484
21717
|
#
|
21485
|
-
# @!attribute [rw] supports_clusters
|
21486
|
-
# Indicates whether DB instances can be configured as a Multi-AZ DB
|
21487
|
-
# cluster.
|
21488
|
-
#
|
21489
|
-
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
21490
|
-
# deployments with two readable standby DB instances][1] in the
|
21491
|
-
# *Amazon RDS User Guide.*
|
21492
|
-
#
|
21493
|
-
#
|
21494
|
-
#
|
21495
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
21496
|
-
# @return [Boolean]
|
21497
|
-
#
|
21498
21718
|
# @!attribute [rw] supported_network_types
|
21499
21719
|
# The network types supported by the DB instance (`IPV4` or `DUAL`).
|
21500
21720
|
#
|
@@ -21509,27 +21729,18 @@ module Aws::RDS
|
|
21509
21729
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
21510
21730
|
# @return [Array<String>]
|
21511
21731
|
#
|
21512
|
-
# @!attribute [rw]
|
21513
|
-
# Indicates whether
|
21514
|
-
#
|
21732
|
+
# @!attribute [rw] supports_clusters
|
21733
|
+
# Indicates whether DB instances can be configured as a Multi-AZ DB
|
21734
|
+
# cluster.
|
21515
21735
|
#
|
21516
|
-
#
|
21517
|
-
#
|
21518
|
-
#
|
21736
|
+
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
21737
|
+
# deployments with two readable standby DB instances][1] in the
|
21738
|
+
# *Amazon RDS User Guide.*
|
21519
21739
|
#
|
21520
|
-
# @!attribute [rw] max_storage_throughput_per_db_instance
|
21521
|
-
# Maximum storage throughput for a DB instance.
|
21522
|
-
# @return [Integer]
|
21523
21740
|
#
|
21524
|
-
# @!attribute [rw] min_storage_throughput_per_iops
|
21525
|
-
# Minimum storage throughput to provisioned IOPS ratio for a DB
|
21526
|
-
# instance.
|
21527
|
-
# @return [Float]
|
21528
21741
|
#
|
21529
|
-
#
|
21530
|
-
#
|
21531
|
-
# instance.
|
21532
|
-
# @return [Float]
|
21742
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
21743
|
+
# @return [Boolean]
|
21533
21744
|
#
|
21534
21745
|
# @!attribute [rw] supports_dedicated_log_volume
|
21535
21746
|
# Indicates whether a DB instance supports using a dedicated log
|
@@ -21555,6 +21766,7 @@ module Aws::RDS
|
|
21555
21766
|
:supports_storage_encryption,
|
21556
21767
|
:storage_type,
|
21557
21768
|
:supports_iops,
|
21769
|
+
:supports_storage_throughput,
|
21558
21770
|
:supports_enhanced_monitoring,
|
21559
21771
|
:supports_iam_database_authentication,
|
21560
21772
|
:supports_performance_insights,
|
@@ -21564,6 +21776,10 @@ module Aws::RDS
|
|
21564
21776
|
:max_iops_per_db_instance,
|
21565
21777
|
:min_iops_per_gib,
|
21566
21778
|
:max_iops_per_gib,
|
21779
|
+
:min_storage_throughput_per_db_instance,
|
21780
|
+
:max_storage_throughput_per_db_instance,
|
21781
|
+
:min_storage_throughput_per_iops,
|
21782
|
+
:max_storage_throughput_per_iops,
|
21567
21783
|
:available_processor_features,
|
21568
21784
|
:supported_engine_modes,
|
21569
21785
|
:supports_storage_autoscaling,
|
@@ -21571,13 +21787,8 @@ module Aws::RDS
|
|
21571
21787
|
:outpost_capable,
|
21572
21788
|
:supported_activity_stream_modes,
|
21573
21789
|
:supports_global_databases,
|
21574
|
-
:supports_clusters,
|
21575
21790
|
:supported_network_types,
|
21576
|
-
:
|
21577
|
-
:min_storage_throughput_per_db_instance,
|
21578
|
-
:max_storage_throughput_per_db_instance,
|
21579
|
-
:min_storage_throughput_per_iops,
|
21580
|
-
:max_storage_throughput_per_iops,
|
21791
|
+
:supports_clusters,
|
21581
21792
|
:supports_dedicated_log_volume,
|
21582
21793
|
:supports_http_endpoint)
|
21583
21794
|
SENSITIVE = []
|
@@ -21869,6 +22080,10 @@ module Aws::RDS
|
|
21869
22080
|
# The Provisioned IOPS value for the DB instance.
|
21870
22081
|
# @return [Integer]
|
21871
22082
|
#
|
22083
|
+
# @!attribute [rw] storage_throughput
|
22084
|
+
# The storage throughput of the DB instance.
|
22085
|
+
# @return [Integer]
|
22086
|
+
#
|
21872
22087
|
# @!attribute [rw] db_instance_identifier
|
21873
22088
|
# The database identifier for the DB instance.
|
21874
22089
|
# @return [String]
|
@@ -21906,11 +22121,6 @@ module Aws::RDS
|
|
21906
22121
|
# DB instance class of the DB instance.
|
21907
22122
|
# @return [Array<Types::ProcessorFeature>]
|
21908
22123
|
#
|
21909
|
-
# @!attribute [rw] iam_database_authentication_enabled
|
21910
|
-
# Indicates whether mapping of Amazon Web Services Identity and Access
|
21911
|
-
# Management (IAM) accounts to database accounts is enabled.
|
21912
|
-
# @return [Boolean]
|
21913
|
-
#
|
21914
22124
|
# @!attribute [rw] automation_mode
|
21915
22125
|
# The automation mode of the RDS Custom DB instance: `full` or
|
21916
22126
|
# `all-paused`. If `full`, the DB instance automates monitoring and
|
@@ -21924,23 +22134,24 @@ module Aws::RDS
|
|
21924
22134
|
# (default). The maximum value is 1,440.
|
21925
22135
|
# @return [Time]
|
21926
22136
|
#
|
21927
|
-
# @!attribute [rw]
|
21928
|
-
#
|
21929
|
-
#
|
22137
|
+
# @!attribute [rw] multi_tenant
|
22138
|
+
# Indicates whether the DB instance will change to the multi-tenant
|
22139
|
+
# configuration (TRUE) or the single-tenant configuration (FALSE).
|
22140
|
+
# @return [Boolean]
|
21930
22141
|
#
|
21931
|
-
# @!attribute [rw]
|
21932
|
-
#
|
21933
|
-
#
|
22142
|
+
# @!attribute [rw] iam_database_authentication_enabled
|
22143
|
+
# Indicates whether mapping of Amazon Web Services Identity and Access
|
22144
|
+
# Management (IAM) accounts to database accounts is enabled.
|
22145
|
+
# @return [Boolean]
|
21934
22146
|
#
|
21935
22147
|
# @!attribute [rw] dedicated_log_volume
|
21936
22148
|
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
21937
22149
|
# enabled.>
|
21938
22150
|
# @return [Boolean]
|
21939
22151
|
#
|
21940
|
-
# @!attribute [rw]
|
21941
|
-
#
|
21942
|
-
#
|
21943
|
-
# @return [Boolean]
|
22152
|
+
# @!attribute [rw] engine
|
22153
|
+
# The database engine of the DB instance.
|
22154
|
+
# @return [String]
|
21944
22155
|
#
|
21945
22156
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PendingModifiedValues AWS API Documentation
|
21946
22157
|
#
|
@@ -21954,20 +22165,20 @@ module Aws::RDS
|
|
21954
22165
|
:engine_version,
|
21955
22166
|
:license_model,
|
21956
22167
|
:iops,
|
22168
|
+
:storage_throughput,
|
21957
22169
|
:db_instance_identifier,
|
21958
22170
|
:storage_type,
|
21959
22171
|
:ca_certificate_identifier,
|
21960
22172
|
:db_subnet_group_name,
|
21961
22173
|
:pending_cloudwatch_logs_exports,
|
21962
22174
|
:processor_features,
|
21963
|
-
:iam_database_authentication_enabled,
|
21964
22175
|
:automation_mode,
|
21965
22176
|
:resume_full_automation_mode_time,
|
21966
|
-
:
|
21967
|
-
:
|
22177
|
+
:multi_tenant,
|
22178
|
+
:iam_database_authentication_enabled,
|
21968
22179
|
:dedicated_log_volume,
|
21969
|
-
:
|
21970
|
-
SENSITIVE = []
|
22180
|
+
:engine)
|
22181
|
+
SENSITIVE = [:master_user_password]
|
21971
22182
|
include Aws::Structure
|
21972
22183
|
end
|
21973
22184
|
|
@@ -23557,17 +23768,15 @@ module Aws::RDS
|
|
23557
23768
|
# the Directory Service.
|
23558
23769
|
# @return [String]
|
23559
23770
|
#
|
23560
|
-
# @!attribute [rw]
|
23561
|
-
#
|
23562
|
-
# cluster.
|
23563
|
-
#
|
23564
|
-
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
23565
|
-
# the *Amazon Aurora User Guide*.
|
23771
|
+
# @!attribute [rw] storage_type
|
23772
|
+
# Specifies the storage type to be associated with the DB cluster.
|
23566
23773
|
#
|
23774
|
+
# Valid Values: `aurora`, `aurora-iopt1`
|
23567
23775
|
#
|
23776
|
+
# Default: `aurora`
|
23568
23777
|
#
|
23569
|
-
#
|
23570
|
-
# @return [
|
23778
|
+
# Valid for: Aurora DB clusters only
|
23779
|
+
# @return [String]
|
23571
23780
|
#
|
23572
23781
|
# @!attribute [rw] network_type
|
23573
23782
|
# The network type of the DB cluster.
|
@@ -23590,6 +23799,18 @@ module Aws::RDS
|
|
23590
23799
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
23591
23800
|
# @return [String]
|
23592
23801
|
#
|
23802
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
23803
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
23804
|
+
# cluster.
|
23805
|
+
#
|
23806
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
23807
|
+
# the *Amazon Aurora User Guide*.
|
23808
|
+
#
|
23809
|
+
#
|
23810
|
+
#
|
23811
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
23812
|
+
# @return [Types::ServerlessV2ScalingConfiguration]
|
23813
|
+
#
|
23593
23814
|
# @!attribute [rw] manage_master_user_password
|
23594
23815
|
# Specifies whether to manage the master user password with Amazon Web
|
23595
23816
|
# Services Secrets Manager.
|
@@ -23636,16 +23857,6 @@ module Aws::RDS
|
|
23636
23857
|
# each Amazon Web Services Region.
|
23637
23858
|
# @return [String]
|
23638
23859
|
#
|
23639
|
-
# @!attribute [rw] storage_type
|
23640
|
-
# Specifies the storage type to be associated with the DB cluster.
|
23641
|
-
#
|
23642
|
-
# Valid Values: `aurora`, `aurora-iopt1`
|
23643
|
-
#
|
23644
|
-
# Default: `aurora`
|
23645
|
-
#
|
23646
|
-
# Valid for: Aurora DB clusters only
|
23647
|
-
# @return [String]
|
23648
|
-
#
|
23649
23860
|
# @!attribute [rw] engine_lifecycle_support
|
23650
23861
|
# The life cycle type for this DB cluster.
|
23651
23862
|
#
|
@@ -23719,13 +23930,13 @@ module Aws::RDS
|
|
23719
23930
|
:copy_tags_to_snapshot,
|
23720
23931
|
:domain,
|
23721
23932
|
:domain_iam_role_name,
|
23722
|
-
:
|
23933
|
+
:storage_type,
|
23723
23934
|
:network_type,
|
23935
|
+
:serverless_v2_scaling_configuration,
|
23724
23936
|
:manage_master_user_password,
|
23725
23937
|
:master_user_secret_kms_key_id,
|
23726
|
-
:storage_type,
|
23727
23938
|
:engine_lifecycle_support)
|
23728
|
-
SENSITIVE = []
|
23939
|
+
SENSITIVE = [:master_user_password]
|
23729
23940
|
include Aws::Structure
|
23730
23941
|
end
|
23731
23942
|
|
@@ -24189,18 +24400,6 @@ module Aws::RDS
|
|
24189
24400
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
24190
24401
|
# @return [Boolean]
|
24191
24402
|
#
|
24192
|
-
# @!attribute [rw] serverless_v2_scaling_configuration
|
24193
|
-
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
24194
|
-
# cluster.
|
24195
|
-
#
|
24196
|
-
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
24197
|
-
# the *Amazon Aurora User Guide*.
|
24198
|
-
#
|
24199
|
-
#
|
24200
|
-
#
|
24201
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
24202
|
-
# @return [Types::ServerlessV2ScalingConfiguration]
|
24203
|
-
#
|
24204
24403
|
# @!attribute [rw] network_type
|
24205
24404
|
# The network type of the DB cluster.
|
24206
24405
|
#
|
@@ -24224,6 +24423,18 @@ module Aws::RDS
|
|
24224
24423
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
24225
24424
|
# @return [String]
|
24226
24425
|
#
|
24426
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
24427
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
24428
|
+
# cluster.
|
24429
|
+
#
|
24430
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
24431
|
+
# the *Amazon Aurora User Guide*.
|
24432
|
+
#
|
24433
|
+
#
|
24434
|
+
#
|
24435
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
24436
|
+
# @return [Types::ServerlessV2ScalingConfiguration]
|
24437
|
+
#
|
24227
24438
|
# @!attribute [rw] rds_custom_cluster_configuration
|
24228
24439
|
# Reserved for future use.
|
24229
24440
|
# @return [Types::RdsCustomClusterConfiguration]
|
@@ -24356,8 +24567,8 @@ module Aws::RDS
|
|
24356
24567
|
:storage_type,
|
24357
24568
|
:iops,
|
24358
24569
|
:publicly_accessible,
|
24359
|
-
:serverless_v2_scaling_configuration,
|
24360
24570
|
:network_type,
|
24571
|
+
:serverless_v2_scaling_configuration,
|
24361
24572
|
:rds_custom_cluster_configuration,
|
24362
24573
|
:monitoring_interval,
|
24363
24574
|
:monitoring_role_arn,
|
@@ -24696,26 +24907,6 @@ module Aws::RDS
|
|
24696
24907
|
# Valid for: Aurora DB clusters only
|
24697
24908
|
# @return [String]
|
24698
24909
|
#
|
24699
|
-
# @!attribute [rw] scaling_configuration
|
24700
|
-
# For DB clusters in `serverless` DB engine mode, the scaling
|
24701
|
-
# properties of the DB cluster.
|
24702
|
-
#
|
24703
|
-
# Valid for: Aurora DB clusters only
|
24704
|
-
# @return [Types::ScalingConfiguration]
|
24705
|
-
#
|
24706
|
-
# @!attribute [rw] engine_mode
|
24707
|
-
# The engine mode of the new cluster. Specify `provisioned` or
|
24708
|
-
# `serverless`, depending on the type of the cluster you are creating.
|
24709
|
-
# You can create an Aurora Serverless v1 clone from a provisioned
|
24710
|
-
# cluster, or a provisioned clone from an Aurora Serverless v1
|
24711
|
-
# cluster. To create a clone that is an Aurora Serverless v1 cluster,
|
24712
|
-
# the original cluster must be an Aurora Serverless v1 cluster or an
|
24713
|
-
# encrypted provisioned cluster. To create a full copy that is an
|
24714
|
-
# Aurora Serverless v1 cluster, specify the engine mode `serverless`.
|
24715
|
-
#
|
24716
|
-
# Valid for: Aurora DB clusters only
|
24717
|
-
# @return [String]
|
24718
|
-
#
|
24719
24910
|
# @!attribute [rw] db_cluster_instance_class
|
24720
24911
|
# The compute and memory capacity of the each DB instance in the
|
24721
24912
|
# Multi-AZ DB cluster, for example db.m6gd.xlarge. Not all DB instance
|
@@ -24802,18 +24993,6 @@ module Aws::RDS
|
|
24802
24993
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
24803
24994
|
# @return [Integer]
|
24804
24995
|
#
|
24805
|
-
# @!attribute [rw] serverless_v2_scaling_configuration
|
24806
|
-
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
24807
|
-
# cluster.
|
24808
|
-
#
|
24809
|
-
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
24810
|
-
# the *Amazon Aurora User Guide*.
|
24811
|
-
#
|
24812
|
-
#
|
24813
|
-
#
|
24814
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
24815
|
-
# @return [Types::ServerlessV2ScalingConfiguration]
|
24816
|
-
#
|
24817
24996
|
# @!attribute [rw] network_type
|
24818
24997
|
# The network type of the DB cluster.
|
24819
24998
|
#
|
@@ -24841,6 +25020,38 @@ module Aws::RDS
|
|
24841
25020
|
# The resource ID of the source DB cluster from which to restore.
|
24842
25021
|
# @return [String]
|
24843
25022
|
#
|
25023
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
25024
|
+
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
25025
|
+
# cluster.
|
25026
|
+
#
|
25027
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
25028
|
+
# the *Amazon Aurora User Guide*.
|
25029
|
+
#
|
25030
|
+
#
|
25031
|
+
#
|
25032
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
25033
|
+
# @return [Types::ServerlessV2ScalingConfiguration]
|
25034
|
+
#
|
25035
|
+
# @!attribute [rw] scaling_configuration
|
25036
|
+
# For DB clusters in `serverless` DB engine mode, the scaling
|
25037
|
+
# properties of the DB cluster.
|
25038
|
+
#
|
25039
|
+
# Valid for: Aurora DB clusters only
|
25040
|
+
# @return [Types::ScalingConfiguration]
|
25041
|
+
#
|
25042
|
+
# @!attribute [rw] engine_mode
|
25043
|
+
# The engine mode of the new cluster. Specify `provisioned` or
|
25044
|
+
# `serverless`, depending on the type of the cluster you are creating.
|
25045
|
+
# You can create an Aurora Serverless v1 clone from a provisioned
|
25046
|
+
# cluster, or a provisioned clone from an Aurora Serverless v1
|
25047
|
+
# cluster. To create a clone that is an Aurora Serverless v1 cluster,
|
25048
|
+
# the original cluster must be an Aurora Serverless v1 cluster or an
|
25049
|
+
# encrypted provisioned cluster. To create a full copy that is an
|
25050
|
+
# Aurora Serverless v1 cluster, specify the engine mode `serverless`.
|
25051
|
+
#
|
25052
|
+
# Valid for: Aurora DB clusters only
|
25053
|
+
# @return [String]
|
25054
|
+
#
|
24844
25055
|
# @!attribute [rw] rds_custom_cluster_configuration
|
24845
25056
|
# Reserved for future use.
|
24846
25057
|
# @return [Types::RdsCustomClusterConfiguration]
|
@@ -24966,15 +25177,15 @@ module Aws::RDS
|
|
24966
25177
|
:copy_tags_to_snapshot,
|
24967
25178
|
:domain,
|
24968
25179
|
:domain_iam_role_name,
|
24969
|
-
:scaling_configuration,
|
24970
|
-
:engine_mode,
|
24971
25180
|
:db_cluster_instance_class,
|
24972
25181
|
:storage_type,
|
24973
25182
|
:publicly_accessible,
|
24974
25183
|
:iops,
|
24975
|
-
:serverless_v2_scaling_configuration,
|
24976
25184
|
:network_type,
|
24977
25185
|
:source_db_cluster_resource_id,
|
25186
|
+
:serverless_v2_scaling_configuration,
|
25187
|
+
:scaling_configuration,
|
25188
|
+
:engine_mode,
|
24978
25189
|
:rds_custom_cluster_configuration,
|
24979
25190
|
:monitoring_interval,
|
24980
25191
|
:monitoring_role_arn,
|
@@ -25247,6 +25458,12 @@ module Aws::RDS
|
|
25247
25458
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
25248
25459
|
# @return [Integer]
|
25249
25460
|
#
|
25461
|
+
# @!attribute [rw] storage_throughput
|
25462
|
+
# Specifies the storage throughput value for the DB instance.
|
25463
|
+
#
|
25464
|
+
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
25465
|
+
# @return [Integer]
|
25466
|
+
#
|
25250
25467
|
# @!attribute [rw] option_group_name
|
25251
25468
|
# The name of the option group to be used for the restored DB
|
25252
25469
|
# instance.
|
@@ -25503,27 +25720,25 @@ module Aws::RDS
|
|
25503
25720
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
25504
25721
|
# @return [Boolean]
|
25505
25722
|
#
|
25506
|
-
# @!attribute [rw]
|
25507
|
-
# The
|
25508
|
-
# instance of an RDS Custom DB instance. The instance profile must
|
25509
|
-
# meet the following requirements:
|
25723
|
+
# @!attribute [rw] network_type
|
25724
|
+
# The network type of the DB instance.
|
25510
25725
|
#
|
25511
|
-
#
|
25726
|
+
# Valid Values:
|
25512
25727
|
#
|
25513
|
-
# *
|
25514
|
-
# to assume.
|
25728
|
+
# * `IPV4`
|
25515
25729
|
#
|
25516
|
-
# *
|
25517
|
-
# start with the prefix `AWSRDSCustom`.
|
25730
|
+
# * `DUAL`
|
25518
25731
|
#
|
25519
|
-
#
|
25520
|
-
#
|
25732
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
25733
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
25734
|
+
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
25521
25735
|
#
|
25522
|
-
#
|
25736
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
25737
|
+
# in the *Amazon RDS User Guide.*
|
25523
25738
|
#
|
25524
25739
|
#
|
25525
25740
|
#
|
25526
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
25741
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
25527
25742
|
# @return [String]
|
25528
25743
|
#
|
25529
25744
|
# @!attribute [rw] backup_target
|
@@ -25542,31 +25757,41 @@ module Aws::RDS
|
|
25542
25757
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
25543
25758
|
# @return [String]
|
25544
25759
|
#
|
25545
|
-
# @!attribute [rw]
|
25546
|
-
# The
|
25760
|
+
# @!attribute [rw] custom_iam_instance_profile
|
25761
|
+
# The instance profile associated with the underlying Amazon EC2
|
25762
|
+
# instance of an RDS Custom DB instance. The instance profile must
|
25763
|
+
# meet the following requirements:
|
25547
25764
|
#
|
25548
|
-
#
|
25765
|
+
# * The profile must exist in your account.
|
25549
25766
|
#
|
25550
|
-
# *
|
25767
|
+
# * The profile must have an IAM role that Amazon EC2 has permissions
|
25768
|
+
# to assume.
|
25551
25769
|
#
|
25552
|
-
# *
|
25770
|
+
# * The instance profile name and the associated IAM role name must
|
25771
|
+
# start with the prefix `AWSRDSCustom`.
|
25553
25772
|
#
|
25554
|
-
#
|
25555
|
-
#
|
25556
|
-
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
25773
|
+
# For the list of permissions required for the IAM role, see [
|
25774
|
+
# Configure IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
25557
25775
|
#
|
25558
|
-
#
|
25559
|
-
# in the *Amazon RDS User Guide.*
|
25776
|
+
# This setting is required for RDS Custom.
|
25560
25777
|
#
|
25561
25778
|
#
|
25562
25779
|
#
|
25563
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
25780
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
25564
25781
|
# @return [String]
|
25565
25782
|
#
|
25566
|
-
# @!attribute [rw]
|
25567
|
-
#
|
25783
|
+
# @!attribute [rw] allocated_storage
|
25784
|
+
# The amount of storage (in gibibytes) to allocate initially for the
|
25785
|
+
# DB instance. Follow the allocation rules specified in
|
25786
|
+
# CreateDBInstance.
|
25568
25787
|
#
|
25569
|
-
# This setting
|
25788
|
+
# This setting isn't valid for RDS for SQL Server.
|
25789
|
+
#
|
25790
|
+
# <note markdown="1"> Be sure to allocate enough storage for your new DB instance so that
|
25791
|
+
# the restore operation can succeed. You can also allocate additional
|
25792
|
+
# storage for future growth.
|
25793
|
+
#
|
25794
|
+
# </note>
|
25570
25795
|
# @return [Integer]
|
25571
25796
|
#
|
25572
25797
|
# @!attribute [rw] db_cluster_snapshot_identifier
|
@@ -25595,20 +25820,6 @@ module Aws::RDS
|
|
25595
25820
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
25596
25821
|
# @return [String]
|
25597
25822
|
#
|
25598
|
-
# @!attribute [rw] allocated_storage
|
25599
|
-
# The amount of storage (in gibibytes) to allocate initially for the
|
25600
|
-
# DB instance. Follow the allocation rules specified in
|
25601
|
-
# CreateDBInstance.
|
25602
|
-
#
|
25603
|
-
# This setting isn't valid for RDS for SQL Server.
|
25604
|
-
#
|
25605
|
-
# <note markdown="1"> Be sure to allocate enough storage for your new DB instance so that
|
25606
|
-
# the restore operation can succeed. You can also allocate additional
|
25607
|
-
# storage for future growth.
|
25608
|
-
#
|
25609
|
-
# </note>
|
25610
|
-
# @return [Integer]
|
25611
|
-
#
|
25612
25823
|
# @!attribute [rw] dedicated_log_volume
|
25613
25824
|
# Specifies whether to enable a dedicated log volume (DLV) for the DB
|
25614
25825
|
# instance.
|
@@ -25724,6 +25935,7 @@ module Aws::RDS
|
|
25724
25935
|
:db_name,
|
25725
25936
|
:engine,
|
25726
25937
|
:iops,
|
25938
|
+
:storage_throughput,
|
25727
25939
|
:option_group_name,
|
25728
25940
|
:tags,
|
25729
25941
|
:storage_type,
|
@@ -25744,18 +25956,17 @@ module Aws::RDS
|
|
25744
25956
|
:db_parameter_group_name,
|
25745
25957
|
:deletion_protection,
|
25746
25958
|
:enable_customer_owned_ip,
|
25747
|
-
:custom_iam_instance_profile,
|
25748
|
-
:backup_target,
|
25749
25959
|
:network_type,
|
25750
|
-
:
|
25751
|
-
:
|
25960
|
+
:backup_target,
|
25961
|
+
:custom_iam_instance_profile,
|
25752
25962
|
:allocated_storage,
|
25963
|
+
:db_cluster_snapshot_identifier,
|
25753
25964
|
:dedicated_log_volume,
|
25754
25965
|
:ca_certificate_identifier,
|
25755
25966
|
:engine_lifecycle_support,
|
25756
25967
|
:manage_master_user_password,
|
25757
25968
|
:master_user_secret_kms_key_id)
|
25758
|
-
SENSITIVE = []
|
25969
|
+
SENSITIVE = [:tde_credential_password]
|
25759
25970
|
include Aws::Structure
|
25760
25971
|
end
|
25761
25972
|
|
@@ -26021,6 +26232,12 @@ module Aws::RDS
|
|
26021
26232
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
26022
26233
|
# @return [Integer]
|
26023
26234
|
#
|
26235
|
+
# @!attribute [rw] storage_throughput
|
26236
|
+
# Specifies the storage throughput value for the DB instance.
|
26237
|
+
#
|
26238
|
+
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
26239
|
+
# @return [Integer]
|
26240
|
+
#
|
26024
26241
|
# @!attribute [rw] option_group_name
|
26025
26242
|
# The name of the option group to associate with this DB instance. If
|
26026
26243
|
# this argument is omitted, the default option group for the specified
|
@@ -26293,12 +26510,6 @@ module Aws::RDS
|
|
26293
26510
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
26294
26511
|
# @return [String]
|
26295
26512
|
#
|
26296
|
-
# @!attribute [rw] storage_throughput
|
26297
|
-
# Specifies the storage throughput value for the DB instance.
|
26298
|
-
#
|
26299
|
-
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
26300
|
-
# @return [Integer]
|
26301
|
-
#
|
26302
26513
|
# @!attribute [rw] manage_master_user_password
|
26303
26514
|
# Specifies whether to manage the master user password with Amazon Web
|
26304
26515
|
# Services Secrets Manager.
|
@@ -26423,6 +26634,7 @@ module Aws::RDS
|
|
26423
26634
|
:auto_minor_version_upgrade,
|
26424
26635
|
:license_model,
|
26425
26636
|
:iops,
|
26637
|
+
:storage_throughput,
|
26426
26638
|
:option_group_name,
|
26427
26639
|
:publicly_accessible,
|
26428
26640
|
:tags,
|
@@ -26448,13 +26660,12 @@ module Aws::RDS
|
|
26448
26660
|
:deletion_protection,
|
26449
26661
|
:max_allocated_storage,
|
26450
26662
|
:network_type,
|
26451
|
-
:storage_throughput,
|
26452
26663
|
:manage_master_user_password,
|
26453
26664
|
:master_user_secret_kms_key_id,
|
26454
26665
|
:dedicated_log_volume,
|
26455
26666
|
:ca_certificate_identifier,
|
26456
26667
|
:engine_lifecycle_support)
|
26457
|
-
SENSITIVE = []
|
26668
|
+
SENSITIVE = [:master_user_password]
|
26458
26669
|
include Aws::Structure
|
26459
26670
|
end
|
26460
26671
|
|
@@ -26730,6 +26941,12 @@ module Aws::RDS
|
|
26730
26941
|
# ^
|
26731
26942
|
# @return [Integer]
|
26732
26943
|
#
|
26944
|
+
# @!attribute [rw] storage_throughput
|
26945
|
+
# The storage throughput value for the DB instance.
|
26946
|
+
#
|
26947
|
+
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
26948
|
+
# @return [Integer]
|
26949
|
+
#
|
26733
26950
|
# @!attribute [rw] option_group_name
|
26734
26951
|
# The name of the option group to use for the restored DB instance.
|
26735
26952
|
#
|
@@ -26970,14 +27187,6 @@ module Aws::RDS
|
|
26970
27187
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
26971
27188
|
# @return [Integer]
|
26972
27189
|
#
|
26973
|
-
# @!attribute [rw] source_db_instance_automated_backups_arn
|
26974
|
-
# The Amazon Resource Name (ARN) of the replicated automated backups
|
26975
|
-
# from which to restore, for example,
|
26976
|
-
# `arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE`.
|
26977
|
-
#
|
26978
|
-
# This setting doesn't apply to RDS Custom.
|
26979
|
-
# @return [String]
|
26980
|
-
#
|
26981
27190
|
# @!attribute [rw] enable_customer_owned_ip
|
26982
27191
|
# Specifies whether to enable a customer-owned IP address (CoIP) for
|
26983
27192
|
# an RDS on Outposts DB instance.
|
@@ -27003,27 +27212,33 @@ module Aws::RDS
|
|
27003
27212
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
27004
27213
|
# @return [Boolean]
|
27005
27214
|
#
|
27006
|
-
# @!attribute [rw]
|
27007
|
-
# The
|
27008
|
-
# instance of an RDS Custom DB instance. The instance profile must
|
27009
|
-
# meet the following requirements:
|
27215
|
+
# @!attribute [rw] network_type
|
27216
|
+
# The network type of the DB instance.
|
27010
27217
|
#
|
27011
|
-
#
|
27218
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
27219
|
+
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
27220
|
+
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
27012
27221
|
#
|
27013
|
-
#
|
27014
|
-
#
|
27222
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
27223
|
+
# in the *Amazon RDS User Guide.*
|
27015
27224
|
#
|
27016
|
-
#
|
27017
|
-
# start with the prefix `AWSRDSCustom`.
|
27225
|
+
# Valid Values:
|
27018
27226
|
#
|
27019
|
-
#
|
27020
|
-
# Configure IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
27227
|
+
# * `IPV4`
|
27021
27228
|
#
|
27022
|
-
#
|
27229
|
+
# * `DUAL`
|
27023
27230
|
#
|
27024
27231
|
#
|
27025
27232
|
#
|
27026
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
27233
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
27234
|
+
# @return [String]
|
27235
|
+
#
|
27236
|
+
# @!attribute [rw] source_db_instance_automated_backups_arn
|
27237
|
+
# The Amazon Resource Name (ARN) of the replicated automated backups
|
27238
|
+
# from which to restore, for example,
|
27239
|
+
# `arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE`.
|
27240
|
+
#
|
27241
|
+
# This setting doesn't apply to RDS Custom.
|
27027
27242
|
# @return [String]
|
27028
27243
|
#
|
27029
27244
|
# @!attribute [rw] backup_target
|
@@ -27048,33 +27263,29 @@ module Aws::RDS
|
|
27048
27263
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
27049
27264
|
# @return [String]
|
27050
27265
|
#
|
27051
|
-
# @!attribute [rw]
|
27052
|
-
# The
|
27266
|
+
# @!attribute [rw] custom_iam_instance_profile
|
27267
|
+
# The instance profile associated with the underlying Amazon EC2
|
27268
|
+
# instance of an RDS Custom DB instance. The instance profile must
|
27269
|
+
# meet the following requirements:
|
27053
27270
|
#
|
27054
|
-
# The
|
27055
|
-
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
27056
|
-
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
27271
|
+
# * The profile must exist in your account.
|
27057
27272
|
#
|
27058
|
-
#
|
27059
|
-
#
|
27273
|
+
# * The profile must have an IAM role that Amazon EC2 has permissions
|
27274
|
+
# to assume.
|
27060
27275
|
#
|
27061
|
-
#
|
27276
|
+
# * The instance profile name and the associated IAM role name must
|
27277
|
+
# start with the prefix `AWSRDSCustom`.
|
27062
27278
|
#
|
27063
|
-
#
|
27279
|
+
# For the list of permissions required for the IAM role, see [
|
27280
|
+
# Configure IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
27064
27281
|
#
|
27065
|
-
#
|
27282
|
+
# This setting is required for RDS Custom.
|
27066
27283
|
#
|
27067
27284
|
#
|
27068
27285
|
#
|
27069
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
27286
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
27070
27287
|
# @return [String]
|
27071
27288
|
#
|
27072
|
-
# @!attribute [rw] storage_throughput
|
27073
|
-
# The storage throughput value for the DB instance.
|
27074
|
-
#
|
27075
|
-
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
27076
|
-
# @return [Integer]
|
27077
|
-
#
|
27078
27289
|
# @!attribute [rw] allocated_storage
|
27079
27290
|
# The amount of storage (in gibibytes) to allocate initially for the
|
27080
27291
|
# DB instance. Follow the allocation rules specified in
|
@@ -27206,6 +27417,7 @@ module Aws::RDS
|
|
27206
27417
|
:db_name,
|
27207
27418
|
:engine,
|
27208
27419
|
:iops,
|
27420
|
+
:storage_throughput,
|
27209
27421
|
:option_group_name,
|
27210
27422
|
:copy_tags_to_snapshot,
|
27211
27423
|
:tags,
|
@@ -27227,19 +27439,18 @@ module Aws::RDS
|
|
27227
27439
|
:deletion_protection,
|
27228
27440
|
:source_dbi_resource_id,
|
27229
27441
|
:max_allocated_storage,
|
27230
|
-
:source_db_instance_automated_backups_arn,
|
27231
27442
|
:enable_customer_owned_ip,
|
27232
|
-
:custom_iam_instance_profile,
|
27233
|
-
:backup_target,
|
27234
27443
|
:network_type,
|
27235
|
-
:
|
27444
|
+
:source_db_instance_automated_backups_arn,
|
27445
|
+
:backup_target,
|
27446
|
+
:custom_iam_instance_profile,
|
27236
27447
|
:allocated_storage,
|
27237
27448
|
:dedicated_log_volume,
|
27238
27449
|
:ca_certificate_identifier,
|
27239
27450
|
:engine_lifecycle_support,
|
27240
27451
|
:manage_master_user_password,
|
27241
27452
|
:master_user_secret_kms_key_id)
|
27242
|
-
SENSITIVE = []
|
27453
|
+
SENSITIVE = [:tde_credential_password]
|
27243
27454
|
include Aws::Structure
|
27244
27455
|
end
|
27245
27456
|
|
@@ -27819,17 +28030,17 @@ module Aws::RDS
|
|
27819
28030
|
# The mode of the database activity stream.
|
27820
28031
|
# @return [String]
|
27821
28032
|
#
|
28033
|
+
# @!attribute [rw] engine_native_audit_fields_included
|
28034
|
+
# Indicates whether engine-native audit fields are included in the
|
28035
|
+
# database activity stream.
|
28036
|
+
# @return [Boolean]
|
28037
|
+
#
|
27822
28038
|
# @!attribute [rw] apply_immediately
|
27823
28039
|
# Indicates whether or not the database activity stream will start as
|
27824
28040
|
# soon as possible, regardless of the maintenance window for the
|
27825
28041
|
# database.
|
27826
28042
|
# @return [Boolean]
|
27827
28043
|
#
|
27828
|
-
# @!attribute [rw] engine_native_audit_fields_included
|
27829
|
-
# Indicates whether engine-native audit fields are included in the
|
27830
|
-
# database activity stream.
|
27831
|
-
# @return [Boolean]
|
27832
|
-
#
|
27833
28044
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartActivityStreamResponse AWS API Documentation
|
27834
28045
|
#
|
27835
28046
|
class StartActivityStreamResponse < Struct.new(
|
@@ -27837,8 +28048,8 @@ module Aws::RDS
|
|
27837
28048
|
:kinesis_stream_name,
|
27838
28049
|
:status,
|
27839
28050
|
:mode,
|
27840
|
-
:
|
27841
|
-
:
|
28051
|
+
:engine_native_audit_fields_included,
|
28052
|
+
:apply_immediately)
|
27842
28053
|
SENSITIVE = []
|
27843
28054
|
include Aws::Structure
|
27844
28055
|
end
|
@@ -27958,7 +28169,7 @@ module Aws::RDS
|
|
27958
28169
|
:kms_key_id,
|
27959
28170
|
:pre_signed_url,
|
27960
28171
|
:source_region)
|
27961
|
-
SENSITIVE = []
|
28172
|
+
SENSITIVE = [:pre_signed_url]
|
27962
28173
|
include Aws::Structure
|
27963
28174
|
end
|
27964
28175
|
|
@@ -29108,11 +29319,6 @@ module Aws::RDS
|
|
29108
29319
|
# be between 3 and 10 times storage.
|
29109
29320
|
# @return [Array<Types::DoubleRange>]
|
29110
29321
|
#
|
29111
|
-
# @!attribute [rw] supports_storage_autoscaling
|
29112
|
-
# Indicates whether or not Amazon RDS can automatically scale storage
|
29113
|
-
# for DB instances that use the new instance class.
|
29114
|
-
# @return [Boolean]
|
29115
|
-
#
|
29116
29322
|
# @!attribute [rw] provisioned_storage_throughput
|
29117
29323
|
# The valid range of provisioned storage throughput. For example,
|
29118
29324
|
# 500-4,000 mebibytes per second (MiBps).
|
@@ -29123,6 +29329,11 @@ module Aws::RDS
|
|
29123
29329
|
# For example, 0-0.25.
|
29124
29330
|
# @return [Array<Types::DoubleRange>]
|
29125
29331
|
#
|
29332
|
+
# @!attribute [rw] supports_storage_autoscaling
|
29333
|
+
# Indicates whether or not Amazon RDS can automatically scale storage
|
29334
|
+
# for DB instances that use the new instance class.
|
29335
|
+
# @return [Boolean]
|
29336
|
+
#
|
29126
29337
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ValidStorageOptions AWS API Documentation
|
29127
29338
|
#
|
29128
29339
|
class ValidStorageOptions < Struct.new(
|
@@ -29130,9 +29341,9 @@ module Aws::RDS
|
|
29130
29341
|
:storage_size,
|
29131
29342
|
:provisioned_iops,
|
29132
29343
|
:iops_to_storage_ratio,
|
29133
|
-
:supports_storage_autoscaling,
|
29134
29344
|
:provisioned_storage_throughput,
|
29135
|
-
:storage_throughput_to_iops_ratio
|
29345
|
+
:storage_throughput_to_iops_ratio,
|
29346
|
+
:supports_storage_autoscaling)
|
29136
29347
|
SENSITIVE = []
|
29137
29348
|
include Aws::Structure
|
29138
29349
|
end
|