aws-sdk-rds 1.292.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +1372 -1354
- data/lib/aws-sdk-rds/client_api.rb +207 -159
- data/lib/aws-sdk-rds/customizations.rb +0 -1
- data/lib/aws-sdk-rds/db_cluster.rb +341 -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 +291 -291
- 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 +182 -182
- data/lib/aws-sdk-rds/types.rb +1062 -1036
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +103 -101
- data/sig/db_cluster.rbs +65 -65
- data/sig/db_cluster_snapshot.rbs +6 -6
- data/sig/db_engine_version.rbs +21 -21
- data/sig/db_instance.rbs +44 -44
- data/sig/db_snapshot.rbs +14 -14
- data/sig/event.rbs +1 -1
- data/sig/resource.rbs +21 -21
- data/sig/types.rbs +123 -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.
|
@@ -3241,6 +3238,12 @@ module Aws::RDS
|
|
3241
3238
|
:engine_mode,
|
3242
3239
|
:scaling_configuration,
|
3243
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,
|
3244
3247
|
:deletion_protection,
|
3245
3248
|
:global_cluster_identifier,
|
3246
3249
|
:enable_http_endpoint,
|
@@ -3248,12 +3251,8 @@ module Aws::RDS
|
|
3248
3251
|
:domain,
|
3249
3252
|
:domain_iam_role_name,
|
3250
3253
|
:enable_global_write_forwarding,
|
3251
|
-
:
|
3252
|
-
:
|
3253
|
-
:storage_type,
|
3254
|
-
:iops,
|
3255
|
-
:publicly_accessible,
|
3256
|
-
:auto_minor_version_upgrade,
|
3254
|
+
:network_type,
|
3255
|
+
:serverless_v2_scaling_configuration,
|
3257
3256
|
:monitoring_interval,
|
3258
3257
|
:monitoring_role_arn,
|
3259
3258
|
:database_insights_mode,
|
@@ -3261,18 +3260,16 @@ module Aws::RDS
|
|
3261
3260
|
:performance_insights_kms_key_id,
|
3262
3261
|
:performance_insights_retention_period,
|
3263
3262
|
:enable_limitless_database,
|
3264
|
-
:serverless_v2_scaling_configuration,
|
3265
|
-
:network_type,
|
3266
3263
|
:cluster_scalability_type,
|
3267
3264
|
:db_system_id,
|
3268
3265
|
:manage_master_user_password,
|
3269
|
-
:master_user_secret_kms_key_id,
|
3270
3266
|
:enable_local_write_forwarding,
|
3267
|
+
:master_user_secret_kms_key_id,
|
3271
3268
|
:ca_certificate_identifier,
|
3272
3269
|
:engine_lifecycle_support,
|
3273
3270
|
:master_user_authentication_type,
|
3274
3271
|
:source_region)
|
3275
|
-
SENSITIVE = []
|
3272
|
+
SENSITIVE = [:master_user_password, :pre_signed_url]
|
3276
3273
|
include Aws::Structure
|
3277
3274
|
end
|
3278
3275
|
|
@@ -4192,6 +4189,16 @@ module Aws::RDS
|
|
4192
4189
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html
|
4193
4190
|
# @return [Integer]
|
4194
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
|
+
#
|
4195
4202
|
# @!attribute [rw] option_group_name
|
4196
4203
|
# The option group to associate the DB instance with.
|
4197
4204
|
#
|
@@ -4665,28 +4672,21 @@ module Aws::RDS
|
|
4665
4672
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
4666
4673
|
# @return [Boolean]
|
4667
4674
|
#
|
4668
|
-
# @!attribute [rw]
|
4669
|
-
# The
|
4670
|
-
# instance of an RDS Custom DB instance.
|
4671
|
-
#
|
4672
|
-
# This setting is required for RDS Custom.
|
4673
|
-
#
|
4674
|
-
# Constraints:
|
4675
|
-
#
|
4676
|
-
# * The profile must exist in your account.
|
4675
|
+
# @!attribute [rw] network_type
|
4676
|
+
# The network type of the DB instance.
|
4677
4677
|
#
|
4678
|
-
#
|
4679
|
-
#
|
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`).
|
4680
4681
|
#
|
4681
|
-
#
|
4682
|
-
#
|
4682
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
4683
|
+
# in the *Amazon RDS User Guide.*
|
4683
4684
|
#
|
4684
|
-
#
|
4685
|
-
# Configure IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
4685
|
+
# Valid Values: `IPV4 | DUAL`
|
4686
4686
|
#
|
4687
4687
|
#
|
4688
4688
|
#
|
4689
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
4689
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
4690
4690
|
# @return [String]
|
4691
4691
|
#
|
4692
4692
|
# @!attribute [rw] backup_target
|
@@ -4710,36 +4710,59 @@ module Aws::RDS
|
|
4710
4710
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
4711
4711
|
# @return [String]
|
4712
4712
|
#
|
4713
|
-
# @!attribute [rw]
|
4714
|
-
# 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.
|
4715
4716
|
#
|
4716
|
-
#
|
4717
|
-
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
4718
|
-
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
4717
|
+
# This setting is required for RDS Custom.
|
4719
4718
|
#
|
4720
|
-
#
|
4721
|
-
# in the *Amazon RDS User Guide.*
|
4719
|
+
# Constraints:
|
4722
4720
|
#
|
4723
|
-
#
|
4721
|
+
# * The profile must exist in your account.
|
4724
4722
|
#
|
4723
|
+
# * The profile must have an IAM role that Amazon EC2 has permissions
|
4724
|
+
# to assume.
|
4725
4725
|
#
|
4726
|
+
# * The instance profile name and the associated IAM role name must
|
4727
|
+
# start with the prefix `AWSRDSCustom`.
|
4726
4728
|
#
|
4727
|
-
# [
|
4728
|
-
#
|
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*.
|
4729
4731
|
#
|
4730
|
-
# @!attribute [rw] storage_throughput
|
4731
|
-
# The storage throughput value, in mebibyte per second (MiBps), for
|
4732
|
-
# the DB instance.
|
4733
4732
|
#
|
4734
|
-
# This setting applies only to the `gp3` storage type.
|
4735
4733
|
#
|
4736
|
-
#
|
4737
|
-
#
|
4738
|
-
# @return [Integer]
|
4734
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
4735
|
+
# @return [String]
|
4739
4736
|
#
|
4740
|
-
# @!attribute [rw]
|
4741
|
-
#
|
4742
|
-
#
|
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.
|
4743
4766
|
#
|
4744
4767
|
# For more information, see [Password management with Amazon Web
|
4745
4768
|
# Services Secrets Manager][1] in the *Amazon RDS User Guide.*
|
@@ -4780,37 +4803,6 @@ module Aws::RDS
|
|
4780
4803
|
# each Amazon Web Services Region.
|
4781
4804
|
# @return [String]
|
4782
4805
|
#
|
4783
|
-
# @!attribute [rw] ca_certificate_identifier
|
4784
|
-
# The CA certificate identifier to use for the DB instance's server
|
4785
|
-
# certificate.
|
4786
|
-
#
|
4787
|
-
# This setting doesn't apply to RDS Custom DB instances.
|
4788
|
-
#
|
4789
|
-
# For more information, see [Using SSL/TLS to encrypt a connection to
|
4790
|
-
# a DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS
|
4791
|
-
# to encrypt a connection to a DB cluster][2] in the *Amazon Aurora
|
4792
|
-
# User Guide*.
|
4793
|
-
#
|
4794
|
-
#
|
4795
|
-
#
|
4796
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
4797
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
4798
|
-
# @return [String]
|
4799
|
-
#
|
4800
|
-
# @!attribute [rw] db_system_id
|
4801
|
-
# The Oracle system identifier (SID), which is the name of the Oracle
|
4802
|
-
# database instance that manages your database files. In this context,
|
4803
|
-
# the term "Oracle database instance" refers exclusively to the
|
4804
|
-
# system global area (SGA) and Oracle background processes. If you
|
4805
|
-
# don't specify a SID, the value defaults to `RDSCDB`. The Oracle SID
|
4806
|
-
# is also the name of your CDB.
|
4807
|
-
# @return [String]
|
4808
|
-
#
|
4809
|
-
# @!attribute [rw] dedicated_log_volume
|
4810
|
-
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
4811
|
-
# enabled.
|
4812
|
-
# @return [Boolean]
|
4813
|
-
#
|
4814
4806
|
# @!attribute [rw] multi_tenant
|
4815
4807
|
# Specifies whether to use the multi-tenant configuration or the
|
4816
4808
|
# single-tenant configuration (default). This parameter only applies
|
@@ -4828,6 +4820,11 @@ module Aws::RDS
|
|
4828
4820
|
# single-tenant configuration.
|
4829
4821
|
# @return [Boolean]
|
4830
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
|
+
#
|
4831
4828
|
# @!attribute [rw] engine_lifecycle_support
|
4832
4829
|
# The life cycle type for this DB instance.
|
4833
4830
|
#
|
@@ -4902,6 +4899,7 @@ module Aws::RDS
|
|
4902
4899
|
:auto_minor_version_upgrade,
|
4903
4900
|
:license_model,
|
4904
4901
|
:iops,
|
4902
|
+
:storage_throughput,
|
4905
4903
|
:option_group_name,
|
4906
4904
|
:character_set_name,
|
4907
4905
|
:nchar_character_set_name,
|
@@ -4934,19 +4932,18 @@ module Aws::RDS
|
|
4934
4932
|
:deletion_protection,
|
4935
4933
|
:max_allocated_storage,
|
4936
4934
|
:enable_customer_owned_ip,
|
4937
|
-
:custom_iam_instance_profile,
|
4938
|
-
:backup_target,
|
4939
4935
|
:network_type,
|
4940
|
-
:
|
4936
|
+
:backup_target,
|
4937
|
+
:custom_iam_instance_profile,
|
4938
|
+
:db_system_id,
|
4939
|
+
:ca_certificate_identifier,
|
4941
4940
|
:manage_master_user_password,
|
4942
4941
|
:master_user_secret_kms_key_id,
|
4943
|
-
:ca_certificate_identifier,
|
4944
|
-
:db_system_id,
|
4945
|
-
:dedicated_log_volume,
|
4946
4942
|
:multi_tenant,
|
4943
|
+
:dedicated_log_volume,
|
4947
4944
|
:engine_lifecycle_support,
|
4948
4945
|
:master_user_authentication_type)
|
4949
|
-
SENSITIVE = []
|
4946
|
+
SENSITIVE = [:master_user_password, :tde_credential_password]
|
4950
4947
|
include Aws::Structure
|
4951
4948
|
end
|
4952
4949
|
|
@@ -5066,6 +5063,13 @@ module Aws::RDS
|
|
5066
5063
|
# to initially allocate for the DB instance.
|
5067
5064
|
# @return [Integer]
|
5068
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
|
+
#
|
5069
5073
|
# @!attribute [rw] option_group_name
|
5070
5074
|
# The option group to associate the DB instance with. If not
|
5071
5075
|
# specified, RDS uses the option group associated with the source DB
|
@@ -5573,41 +5577,28 @@ module Aws::RDS
|
|
5573
5577
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
5574
5578
|
# @return [String]
|
5575
5579
|
#
|
5576
|
-
# @!attribute [rw]
|
5577
|
-
#
|
5578
|
-
#
|
5579
|
-
#
|
5580
|
-
# For more information about this setting, including limitations that
|
5581
|
-
# apply to it, see [ Managing capacity automatically with Amazon RDS
|
5582
|
-
# storage autoscaling][1] in the *Amazon RDS User Guide*.
|
5583
|
-
#
|
5584
|
-
#
|
5585
|
-
#
|
5586
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
5587
|
-
# @return [Integer]
|
5588
|
-
#
|
5589
|
-
# @!attribute [rw] custom_iam_instance_profile
|
5590
|
-
# The instance profile associated with the underlying Amazon EC2
|
5591
|
-
# instance of an RDS Custom DB instance. The instance profile must
|
5592
|
-
# meet the following requirements:
|
5593
|
-
#
|
5594
|
-
# * The profile must exist in your account.
|
5595
|
-
#
|
5596
|
-
# * The profile must have an IAM role that Amazon EC2 has permissions
|
5597
|
-
# to assume.
|
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.
|
5598
5583
|
#
|
5599
|
-
# *
|
5600
|
-
#
|
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.
|
5601
5589
|
#
|
5602
|
-
# For
|
5603
|
-
#
|
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*.
|
5604
5593
|
#
|
5605
|
-
#
|
5594
|
+
# For more information about CoIPs, see [Customer-owned IP
|
5595
|
+
# addresses][2] in the *Amazon Web Services Outposts User Guide*.
|
5606
5596
|
#
|
5607
5597
|
#
|
5608
5598
|
#
|
5609
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
5610
|
-
#
|
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]
|
5611
5602
|
#
|
5612
5603
|
# @!attribute [rw] network_type
|
5613
5604
|
# The network type of the DB instance.
|
@@ -5630,35 +5621,18 @@ module Aws::RDS
|
|
5630
5621
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
5631
5622
|
# @return [String]
|
5632
5623
|
#
|
5633
|
-
# @!attribute [rw]
|
5634
|
-
#
|
5635
|
-
#
|
5636
|
-
# This setting doesn't apply to RDS Custom or Amazon Aurora DB
|
5637
|
-
# instances.
|
5638
|
-
# @return [Integer]
|
5639
|
-
#
|
5640
|
-
# @!attribute [rw] enable_customer_owned_ip
|
5641
|
-
# Specifies whether to enable a customer-owned IP address (CoIP) for
|
5642
|
-
# an RDS on Outposts read replica.
|
5643
|
-
#
|
5644
|
-
# A *CoIP* provides local or external connectivity to resources in
|
5645
|
-
# your Outpost subnets through your on-premises network. For some use
|
5646
|
-
# cases, a CoIP can provide lower latency for connections to the read
|
5647
|
-
# replica from outside of its virtual private cloud (VPC) on your
|
5648
|
-
# local network.
|
5649
|
-
#
|
5650
|
-
# For more information about RDS on Outposts, see [Working with Amazon
|
5651
|
-
# RDS on Amazon Web Services Outposts][1] in the *Amazon RDS User
|
5652
|
-
# Guide*.
|
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.
|
5653
5627
|
#
|
5654
|
-
# For more information about
|
5655
|
-
#
|
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*.
|
5656
5631
|
#
|
5657
5632
|
#
|
5658
5633
|
#
|
5659
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
5660
|
-
# [
|
5661
|
-
# @return [Boolean]
|
5634
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
5635
|
+
# @return [Integer]
|
5662
5636
|
#
|
5663
5637
|
# @!attribute [rw] backup_target
|
5664
5638
|
# The location where RDS stores automated backups and manual
|
@@ -5671,6 +5645,29 @@ module Aws::RDS
|
|
5671
5645
|
# * `region` for Amazon Web Services Region
|
5672
5646
|
# @return [String]
|
5673
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
|
+
#
|
5674
5671
|
# @!attribute [rw] allocated_storage
|
5675
5672
|
# The amount of storage (in gibibytes) to allocate initially for the
|
5676
5673
|
# read replica. Follow the allocation rules specified in
|
@@ -5749,6 +5746,7 @@ module Aws::RDS
|
|
5749
5746
|
:multi_az,
|
5750
5747
|
:auto_minor_version_upgrade,
|
5751
5748
|
:iops,
|
5749
|
+
:storage_throughput,
|
5752
5750
|
:option_group_name,
|
5753
5751
|
:db_parameter_group_name,
|
5754
5752
|
:publicly_accessible,
|
@@ -5777,19 +5775,18 @@ module Aws::RDS
|
|
5777
5775
|
:domain_auth_secret_arn,
|
5778
5776
|
:domain_dns_ips,
|
5779
5777
|
:replica_mode,
|
5780
|
-
:max_allocated_storage,
|
5781
|
-
:custom_iam_instance_profile,
|
5782
|
-
:network_type,
|
5783
|
-
:storage_throughput,
|
5784
5778
|
:enable_customer_owned_ip,
|
5779
|
+
:network_type,
|
5780
|
+
:max_allocated_storage,
|
5785
5781
|
:backup_target,
|
5782
|
+
:custom_iam_instance_profile,
|
5786
5783
|
:allocated_storage,
|
5787
5784
|
:source_db_cluster_identifier,
|
5788
5785
|
:dedicated_log_volume,
|
5789
5786
|
:upgrade_storage_config,
|
5790
5787
|
:ca_certificate_identifier,
|
5791
5788
|
:source_region)
|
5792
|
-
SENSITIVE = []
|
5789
|
+
SENSITIVE = [:pre_signed_url]
|
5793
5790
|
include Aws::Structure
|
5794
5791
|
end
|
5795
5792
|
|
@@ -6048,6 +6045,16 @@ module Aws::RDS
|
|
6048
6045
|
# `SQLSERVER`.
|
6049
6046
|
# @return [String]
|
6050
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
|
+
#
|
6051
6058
|
# @!attribute [rw] auth
|
6052
6059
|
# The authorization mechanism that the proxy uses.
|
6053
6060
|
# @return [Array<Types::UserAuthConfig>]
|
@@ -6141,6 +6148,7 @@ module Aws::RDS
|
|
6141
6148
|
class CreateDBProxyRequest < Struct.new(
|
6142
6149
|
:db_proxy_name,
|
6143
6150
|
:engine_family,
|
6151
|
+
:default_auth_scheme,
|
6144
6152
|
:auth,
|
6145
6153
|
:role_arn,
|
6146
6154
|
:vpc_subnet_ids,
|
@@ -7115,10 +7123,6 @@ module Aws::RDS
|
|
7115
7123
|
# The current state of this DB cluster.
|
7116
7124
|
# @return [String]
|
7117
7125
|
#
|
7118
|
-
# @!attribute [rw] automatic_restart_time
|
7119
|
-
# The time when a stopped DB cluster is restarted automatically.
|
7120
|
-
# @return [Time]
|
7121
|
-
#
|
7122
7126
|
# @!attribute [rw] percent_progress
|
7123
7127
|
# The progress of the operation as a percentage.
|
7124
7128
|
# @return [String]
|
@@ -7314,6 +7318,12 @@ module Aws::RDS
|
|
7314
7318
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html
|
7315
7319
|
# @return [Integer]
|
7316
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
|
+
#
|
7317
7327
|
# @!attribute [rw] engine_mode
|
7318
7328
|
# The DB engine mode of the DB cluster, either `provisioned` or
|
7319
7329
|
# `serverless`.
|
@@ -7341,46 +7351,111 @@ module Aws::RDS
|
|
7341
7351
|
# Reserved for future use.
|
7342
7352
|
# @return [Types::RdsCustomClusterConfiguration]
|
7343
7353
|
#
|
7344
|
-
# @!attribute [rw]
|
7345
|
-
#
|
7346
|
-
#
|
7347
|
-
# @return [Boolean]
|
7348
|
-
#
|
7349
|
-
# @!attribute [rw] http_endpoint_enabled
|
7350
|
-
# Indicates whether the HTTP endpoint is enabled for an Aurora DB
|
7351
|
-
# cluster.
|
7354
|
+
# @!attribute [rw] db_cluster_instance_class
|
7355
|
+
# The name of the compute and memory capacity class of the DB
|
7356
|
+
# instance.
|
7352
7357
|
#
|
7353
|
-
#
|
7354
|
-
#
|
7355
|
-
# cluster. You can also query your database from inside the RDS
|
7356
|
-
# console with the RDS query editor.
|
7358
|
+
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
7359
|
+
# @return [String]
|
7357
7360
|
#
|
7358
|
-
#
|
7359
|
-
#
|
7361
|
+
# @!attribute [rw] storage_type
|
7362
|
+
# The storage type associated with the DB cluster.
|
7363
|
+
# @return [String]
|
7360
7364
|
#
|
7365
|
+
# @!attribute [rw] iops
|
7366
|
+
# The Provisioned IOPS (I/O operations per second) value.
|
7361
7367
|
#
|
7368
|
+
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
7369
|
+
# @return [Integer]
|
7362
7370
|
#
|
7363
|
-
#
|
7364
|
-
#
|
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.
|
7365
7375
|
#
|
7366
|
-
#
|
7367
|
-
#
|
7368
|
-
# change or access generate an activity stream event. The database
|
7369
|
-
# session can handle these events either synchronously or
|
7370
|
-
# asynchronously.
|
7371
|
-
# @return [String]
|
7376
|
+
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
7377
|
+
# @return [Integer]
|
7372
7378
|
#
|
7373
|
-
# @!attribute [rw]
|
7374
|
-
# The
|
7375
|
-
#
|
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.
|
7376
7382
|
#
|
7377
|
-
#
|
7378
|
-
#
|
7379
|
-
# messages in the database activity stream.
|
7383
|
+
# This setting is only for Aurora DB clusters.
|
7384
|
+
# @return [Time]
|
7380
7385
|
#
|
7381
|
-
#
|
7382
|
-
#
|
7383
|
-
#
|
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
|
7420
|
+
# Indicates whether the DB cluster has deletion protection enabled.
|
7421
|
+
# The database can't be deleted when deletion protection is enabled.
|
7422
|
+
# @return [Boolean]
|
7423
|
+
#
|
7424
|
+
# @!attribute [rw] http_endpoint_enabled
|
7425
|
+
# Indicates whether the HTTP endpoint is enabled for an Aurora DB
|
7426
|
+
# cluster.
|
7427
|
+
#
|
7428
|
+
# When enabled, the HTTP endpoint provides a connectionless web
|
7429
|
+
# service API (RDS Data API) for running SQL queries on the DB
|
7430
|
+
# cluster. You can also query your database from inside the RDS
|
7431
|
+
# console with the RDS query editor.
|
7432
|
+
#
|
7433
|
+
# For more information, see [Using RDS Data API][1] in the *Amazon
|
7434
|
+
# Aurora User Guide*.
|
7435
|
+
#
|
7436
|
+
#
|
7437
|
+
#
|
7438
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html
|
7439
|
+
# @return [Boolean]
|
7440
|
+
#
|
7441
|
+
# @!attribute [rw] activity_stream_mode
|
7442
|
+
# The mode of the database activity stream. Database events such as a
|
7443
|
+
# change or access generate an activity stream event. The database
|
7444
|
+
# session can handle these events either synchronously or
|
7445
|
+
# asynchronously.
|
7446
|
+
# @return [String]
|
7447
|
+
#
|
7448
|
+
# @!attribute [rw] activity_stream_status
|
7449
|
+
# The status of the database activity stream.
|
7450
|
+
# @return [String]
|
7451
|
+
#
|
7452
|
+
# @!attribute [rw] activity_stream_kms_key_id
|
7453
|
+
# The Amazon Web Services KMS key identifier used for encrypting
|
7454
|
+
# messages in the database activity stream.
|
7455
|
+
#
|
7456
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
7457
|
+
# alias ARN, or alias name for the KMS key.
|
7458
|
+
# @return [String]
|
7384
7459
|
#
|
7385
7460
|
# @!attribute [rw] activity_stream_kinesis_stream_name
|
7386
7461
|
# The name of the Amazon Kinesis data stream used for the database
|
@@ -7434,61 +7509,49 @@ module Aws::RDS
|
|
7434
7509
|
# forwarding feature for this cluster.
|
7435
7510
|
# @return [Boolean]
|
7436
7511
|
#
|
7437
|
-
# @!attribute [rw]
|
7438
|
-
#
|
7439
|
-
# information is returned only when there are pending changes.
|
7440
|
-
# Specific changes are identified by subelements.
|
7441
|
-
# @return [Types::ClusterPendingModifiedValues]
|
7512
|
+
# @!attribute [rw] network_type
|
7513
|
+
# The network type of the DB instance.
|
7442
7514
|
#
|
7443
|
-
#
|
7444
|
-
#
|
7445
|
-
#
|
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`).
|
7446
7518
|
#
|
7447
|
-
#
|
7448
|
-
#
|
7519
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
7520
|
+
# in the *Amazon Aurora User Guide.*
|
7449
7521
|
#
|
7450
|
-
#
|
7451
|
-
# The storage type associated with the DB cluster.
|
7452
|
-
# @return [String]
|
7522
|
+
# This setting is only for Aurora DB clusters.
|
7453
7523
|
#
|
7454
|
-
#
|
7455
|
-
# The Provisioned IOPS (I/O operations per second) value.
|
7524
|
+
# Valid Values: `IPV4 | DUAL`
|
7456
7525
|
#
|
7457
|
-
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
7458
|
-
# @return [Integer]
|
7459
7526
|
#
|
7460
|
-
# @!attribute [rw] publicly_accessible
|
7461
|
-
# Indicates whether the DB cluster is publicly accessible.
|
7462
7527
|
#
|
7463
|
-
#
|
7464
|
-
#
|
7465
|
-
# Name System (DNS) endpoint resolves to the public IP address. When
|
7466
|
-
# you connect from within the same VPC as the DB cluster, the endpoint
|
7467
|
-
# resolves to the private IP address. Access to the DB cluster is
|
7468
|
-
# ultimately controlled by the security group it uses. That public
|
7469
|
-
# access isn't permitted if the security group assigned to the DB
|
7470
|
-
# cluster doesn't permit it.
|
7528
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
7529
|
+
# @return [String]
|
7471
7530
|
#
|
7472
|
-
#
|
7473
|
-
#
|
7531
|
+
# @!attribute [rw] automatic_restart_time
|
7532
|
+
# The time when a stopped DB cluster is restarted automatically.
|
7533
|
+
# @return [Time]
|
7474
7534
|
#
|
7475
|
-
#
|
7535
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
7536
|
+
# The scaling configuration for an Aurora Serverless v2 DB cluster.
|
7476
7537
|
#
|
7477
|
-
#
|
7478
|
-
#
|
7538
|
+
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
7539
|
+
# the *Amazon Aurora User Guide*.
|
7479
7540
|
#
|
7480
|
-
# @!attribute [rw] auto_minor_version_upgrade
|
7481
|
-
# Indicates whether minor version patches are applied automatically.
|
7482
7541
|
#
|
7483
|
-
# This setting is for Aurora DB clusters and Multi-AZ DB clusters.
|
7484
7542
|
#
|
7485
|
-
#
|
7486
|
-
#
|
7543
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
7544
|
+
# @return [Types::ServerlessV2ScalingConfigurationInfo]
|
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*.
|
7487
7550
|
#
|
7488
7551
|
#
|
7489
7552
|
#
|
7490
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/
|
7491
|
-
# @return [
|
7553
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
7554
|
+
# @return [String]
|
7492
7555
|
#
|
7493
7556
|
# @!attribute [rw] monitoring_interval
|
7494
7557
|
# The interval, in seconds, between points when Enhanced Monitoring
|
@@ -7548,46 +7611,6 @@ module Aws::RDS
|
|
7548
7611
|
# Default: `7` days
|
7549
7612
|
# @return [Integer]
|
7550
7613
|
#
|
7551
|
-
# @!attribute [rw] serverless_v2_scaling_configuration
|
7552
|
-
# The scaling configuration for an Aurora Serverless v2 DB cluster.
|
7553
|
-
#
|
7554
|
-
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
7555
|
-
# the *Amazon Aurora User Guide*.
|
7556
|
-
#
|
7557
|
-
#
|
7558
|
-
#
|
7559
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
7560
|
-
# @return [Types::ServerlessV2ScalingConfigurationInfo]
|
7561
|
-
#
|
7562
|
-
# @!attribute [rw] serverless_v2_platform_version
|
7563
|
-
# The version of the Aurora Serverless V2 platform used by the DB
|
7564
|
-
# cluster. For more information, see [Using Aurora Serverless v2][1]
|
7565
|
-
# in the *Amazon Aurora User Guide*.
|
7566
|
-
#
|
7567
|
-
#
|
7568
|
-
#
|
7569
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
7570
|
-
# @return [String]
|
7571
|
-
#
|
7572
|
-
# @!attribute [rw] network_type
|
7573
|
-
# The network type of the DB instance.
|
7574
|
-
#
|
7575
|
-
# The network type is determined by the `DBSubnetGroup` specified for
|
7576
|
-
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
7577
|
-
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
7578
|
-
#
|
7579
|
-
# For more information, see [ Working with a DB instance in a VPC][1]
|
7580
|
-
# in the *Amazon Aurora User Guide.*
|
7581
|
-
#
|
7582
|
-
# This setting is only for Aurora DB clusters.
|
7583
|
-
#
|
7584
|
-
# Valid Values: `IPV4 | DUAL`
|
7585
|
-
#
|
7586
|
-
#
|
7587
|
-
#
|
7588
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
7589
|
-
# @return [String]
|
7590
|
-
#
|
7591
7614
|
# @!attribute [rw] db_system_id
|
7592
7615
|
# Reserved for future use.
|
7593
7616
|
# @return [String]
|
@@ -7607,13 +7630,6 @@ module Aws::RDS
|
|
7607
7630
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/rds-secrets-manager.html
|
7608
7631
|
# @return [Types::MasterUserSecret]
|
7609
7632
|
#
|
7610
|
-
# @!attribute [rw] io_optimized_next_allowed_modification_time
|
7611
|
-
# The next time you can modify the DB cluster to use the
|
7612
|
-
# `aurora-iopt1` storage type.
|
7613
|
-
#
|
7614
|
-
# This setting is only for Aurora DB clusters.
|
7615
|
-
# @return [Time]
|
7616
|
-
#
|
7617
7633
|
# @!attribute [rw] local_write_forwarding_status
|
7618
7634
|
# Indicates whether an Aurora DB cluster has in-cluster write
|
7619
7635
|
# forwarding enabled, not enabled, requested, or is in the process of
|
@@ -7629,14 +7645,6 @@ module Aws::RDS
|
|
7629
7645
|
# The details for Aurora Limitless Database.
|
7630
7646
|
# @return [Types::LimitlessDatabase]
|
7631
7647
|
#
|
7632
|
-
# @!attribute [rw] storage_throughput
|
7633
|
-
# The storage throughput for the DB cluster. The throughput is
|
7634
|
-
# automatically set based on the IOPS that you provision, and is not
|
7635
|
-
# configurable.
|
7636
|
-
#
|
7637
|
-
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
7638
|
-
# @return [Integer]
|
7639
|
-
#
|
7640
7648
|
# @!attribute [rw] cluster_scalability_type
|
7641
7649
|
# The scalability mode of the Aurora DB cluster. When set to
|
7642
7650
|
# `limitless`, the cluster operates as an Aurora Limitless Database.
|
@@ -7676,7 +7684,6 @@ module Aws::RDS
|
|
7676
7684
|
:db_cluster_parameter_group,
|
7677
7685
|
:db_subnet_group,
|
7678
7686
|
:status,
|
7679
|
-
:automatic_restart_time,
|
7680
7687
|
:percent_progress,
|
7681
7688
|
:earliest_restorable_time,
|
7682
7689
|
:endpoint,
|
@@ -7710,9 +7717,17 @@ module Aws::RDS
|
|
7710
7717
|
:backtrack_consumed_change_records,
|
7711
7718
|
:enabled_cloudwatch_logs_exports,
|
7712
7719
|
:capacity,
|
7720
|
+
:pending_modified_values,
|
7713
7721
|
:engine_mode,
|
7714
7722
|
:scaling_configuration_info,
|
7715
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,
|
7716
7731
|
:deletion_protection,
|
7717
7732
|
:http_endpoint_enabled,
|
7718
7733
|
:activity_stream_mode,
|
@@ -7726,28 +7741,21 @@ module Aws::RDS
|
|
7726
7741
|
:global_cluster_identifier,
|
7727
7742
|
:global_write_forwarding_status,
|
7728
7743
|
:global_write_forwarding_requested,
|
7729
|
-
:
|
7730
|
-
:
|
7731
|
-
:
|
7732
|
-
:
|
7733
|
-
:publicly_accessible,
|
7734
|
-
:auto_minor_version_upgrade,
|
7744
|
+
:network_type,
|
7745
|
+
:automatic_restart_time,
|
7746
|
+
:serverless_v2_scaling_configuration,
|
7747
|
+
:serverless_v2_platform_version,
|
7735
7748
|
:monitoring_interval,
|
7736
7749
|
:monitoring_role_arn,
|
7737
7750
|
:database_insights_mode,
|
7738
7751
|
:performance_insights_enabled,
|
7739
7752
|
:performance_insights_kms_key_id,
|
7740
7753
|
:performance_insights_retention_period,
|
7741
|
-
:serverless_v2_scaling_configuration,
|
7742
|
-
:serverless_v2_platform_version,
|
7743
|
-
:network_type,
|
7744
7754
|
:db_system_id,
|
7745
7755
|
:master_user_secret,
|
7746
|
-
:io_optimized_next_allowed_modification_time,
|
7747
7756
|
:local_write_forwarding_status,
|
7748
7757
|
:aws_backup_recovery_point_arn,
|
7749
7758
|
:limitless_database,
|
7750
|
-
:storage_throughput,
|
7751
7759
|
:cluster_scalability_type,
|
7752
7760
|
:certificate_details,
|
7753
7761
|
:engine_lifecycle_support)
|
@@ -7886,11 +7894,6 @@ module Aws::RDS
|
|
7886
7894
|
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
7887
7895
|
# @return [Integer]
|
7888
7896
|
#
|
7889
|
-
# @!attribute [rw] aws_backup_recovery_point_arn
|
7890
|
-
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
7891
|
-
# Services Backup.
|
7892
|
-
# @return [String]
|
7893
|
-
#
|
7894
7897
|
# @!attribute [rw] storage_throughput
|
7895
7898
|
# The storage throughput for the automated backup. The throughput is
|
7896
7899
|
# automatically set based on the IOPS that you provision, and is not
|
@@ -7899,6 +7902,11 @@ module Aws::RDS
|
|
7899
7902
|
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
7900
7903
|
# @return [Integer]
|
7901
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
|
+
#
|
7902
7910
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBClusterAutomatedBackup AWS API Documentation
|
7903
7911
|
#
|
7904
7912
|
class DBClusterAutomatedBackup < Struct.new(
|
@@ -7925,8 +7933,8 @@ module Aws::RDS
|
|
7925
7933
|
:kms_key_id,
|
7926
7934
|
:storage_type,
|
7927
7935
|
:iops,
|
7928
|
-
:
|
7929
|
-
:
|
7936
|
+
:storage_throughput,
|
7937
|
+
:aws_backup_recovery_point_arn)
|
7930
7938
|
SENSITIVE = []
|
7931
7939
|
include Aws::Structure
|
7932
7940
|
end
|
@@ -8586,21 +8594,12 @@ module Aws::RDS
|
|
8586
8594
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
8587
8595
|
# @return [Array<Types::Tag>]
|
8588
8596
|
#
|
8589
|
-
# @!attribute [rw] db_system_id
|
8590
|
-
# Reserved for future use.
|
8591
|
-
# @return [String]
|
8592
|
-
#
|
8593
8597
|
# @!attribute [rw] storage_type
|
8594
8598
|
# The storage type associated with the DB cluster snapshot.
|
8595
8599
|
#
|
8596
8600
|
# This setting is only for Aurora DB clusters.
|
8597
8601
|
# @return [String]
|
8598
8602
|
#
|
8599
|
-
# @!attribute [rw] db_cluster_resource_id
|
8600
|
-
# The resource ID of the DB cluster that this DB cluster snapshot was
|
8601
|
-
# created from.
|
8602
|
-
# @return [String]
|
8603
|
-
#
|
8604
8603
|
# @!attribute [rw] storage_throughput
|
8605
8604
|
# The storage throughput for the DB cluster snapshot. The throughput
|
8606
8605
|
# is automatically set based on the IOPS that you provision, and is
|
@@ -8609,6 +8608,15 @@ module Aws::RDS
|
|
8609
8608
|
# This setting is only for non-Aurora Multi-AZ DB clusters.
|
8610
8609
|
# @return [Integer]
|
8611
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
|
+
#
|
8612
8620
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBClusterSnapshot AWS API Documentation
|
8613
8621
|
#
|
8614
8622
|
class DBClusterSnapshot < Struct.new(
|
@@ -8634,10 +8642,10 @@ module Aws::RDS
|
|
8634
8642
|
:source_db_cluster_snapshot_arn,
|
8635
8643
|
:iam_database_authentication_enabled,
|
8636
8644
|
:tag_list,
|
8637
|
-
:db_system_id,
|
8638
8645
|
:storage_type,
|
8646
|
+
:storage_throughput,
|
8639
8647
|
:db_cluster_resource_id,
|
8640
|
-
:
|
8648
|
+
:db_system_id)
|
8641
8649
|
SENSITIVE = []
|
8642
8650
|
include Aws::Structure
|
8643
8651
|
end
|
@@ -8778,10 +8786,38 @@ module Aws::RDS
|
|
8778
8786
|
# The name of the database engine.
|
8779
8787
|
# @return [String]
|
8780
8788
|
#
|
8789
|
+
# @!attribute [rw] major_engine_version
|
8790
|
+
# The major engine version of the CEV.
|
8791
|
+
# @return [String]
|
8792
|
+
#
|
8781
8793
|
# @!attribute [rw] engine_version
|
8782
8794
|
# The version number of the database engine.
|
8783
8795
|
# @return [String]
|
8784
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
|
+
#
|
8817
|
+
#
|
8818
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.preparing.html#custom-cev.preparing.manifest.fields
|
8819
|
+
# @return [String]
|
8820
|
+
#
|
8785
8821
|
# @!attribute [rw] db_parameter_group_family
|
8786
8822
|
# The name of the DB parameter group family for the database engine.
|
8787
8823
|
# @return [String]
|
@@ -8790,6 +8826,10 @@ module Aws::RDS
|
|
8790
8826
|
# The description of the database engine.
|
8791
8827
|
# @return [String]
|
8792
8828
|
#
|
8829
|
+
# @!attribute [rw] db_engine_version_arn
|
8830
|
+
# The ARN of the custom engine version.
|
8831
|
+
# @return [String]
|
8832
|
+
#
|
8793
8833
|
# @!attribute [rw] db_engine_version_description
|
8794
8834
|
# The description of the database engine version.
|
8795
8835
|
# @return [String]
|
@@ -8809,6 +8849,16 @@ module Aws::RDS
|
|
8809
8849
|
# the usage operation. Applicable for RDS Custom for SQL Server.
|
8810
8850
|
# @return [String]
|
8811
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
|
+
#
|
8812
8862
|
# @!attribute [rw] supported_character_sets
|
8813
8863
|
# A list of the character sets supported by this engine for the
|
8814
8864
|
# `CharacterSetName` parameter of the `CreateDBInstance` operation.
|
@@ -8885,34 +8935,6 @@ module Aws::RDS
|
|
8885
8935
|
# specific DB engine version.
|
8886
8936
|
# @return [Boolean]
|
8887
8937
|
#
|
8888
|
-
# @!attribute [rw] major_engine_version
|
8889
|
-
# The major engine version of the CEV.
|
8890
|
-
# @return [String]
|
8891
|
-
#
|
8892
|
-
# @!attribute [rw] database_installation_files_s3_bucket_name
|
8893
|
-
# The name of the Amazon S3 bucket that contains your database
|
8894
|
-
# installation files.
|
8895
|
-
# @return [String]
|
8896
|
-
#
|
8897
|
-
# @!attribute [rw] database_installation_files_s3_prefix
|
8898
|
-
# The Amazon S3 directory that contains the database installation
|
8899
|
-
# files. If not specified, then no prefix is assumed.
|
8900
|
-
# @return [String]
|
8901
|
-
#
|
8902
|
-
# @!attribute [rw] db_engine_version_arn
|
8903
|
-
# The ARN of the custom engine version.
|
8904
|
-
# @return [String]
|
8905
|
-
#
|
8906
|
-
# @!attribute [rw] kms_key_id
|
8907
|
-
# The Amazon Web Services KMS key identifier for an encrypted CEV.
|
8908
|
-
# This parameter is required for RDS Custom, but optional for Amazon
|
8909
|
-
# RDS.
|
8910
|
-
# @return [String]
|
8911
|
-
#
|
8912
|
-
# @!attribute [rw] create_time
|
8913
|
-
# The creation time of the DB engine version.
|
8914
|
-
# @return [Time]
|
8915
|
-
#
|
8916
8938
|
# @!attribute [rw] tag_list
|
8917
8939
|
# A list of tags.
|
8918
8940
|
#
|
@@ -8931,20 +8953,6 @@ module Aws::RDS
|
|
8931
8953
|
# PostgreSQL.
|
8932
8954
|
# @return [Boolean]
|
8933
8955
|
#
|
8934
|
-
# @!attribute [rw] custom_db_engine_version_manifest
|
8935
|
-
# JSON string that lists the installation files and parameters that
|
8936
|
-
# RDS Custom uses to create a custom engine version (CEV). RDS Custom
|
8937
|
-
# applies the patches in the order in which they're listed in the
|
8938
|
-
# manifest. You can set the Oracle home, Oracle base, and UNIX/Linux
|
8939
|
-
# user and group using the installation parameters. For more
|
8940
|
-
# information, see [JSON fields in the CEV manifest][1] in the *Amazon
|
8941
|
-
# RDS User Guide*.
|
8942
|
-
#
|
8943
|
-
#
|
8944
|
-
#
|
8945
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.preparing.html#custom-cev.preparing.manifest.fields
|
8946
|
-
# @return [String]
|
8947
|
-
#
|
8948
8956
|
# @!attribute [rw] supports_limitless_database
|
8949
8957
|
# Indicates whether the DB engine version supports Aurora Limitless
|
8950
8958
|
# Database.
|
@@ -8997,13 +9005,20 @@ module Aws::RDS
|
|
8997
9005
|
#
|
8998
9006
|
class DBEngineVersion < Struct.new(
|
8999
9007
|
:engine,
|
9008
|
+
:major_engine_version,
|
9000
9009
|
:engine_version,
|
9010
|
+
:database_installation_files_s3_bucket_name,
|
9011
|
+
:database_installation_files_s3_prefix,
|
9012
|
+
:custom_db_engine_version_manifest,
|
9001
9013
|
:db_parameter_group_family,
|
9002
9014
|
:db_engine_description,
|
9015
|
+
:db_engine_version_arn,
|
9003
9016
|
:db_engine_version_description,
|
9004
9017
|
:default_character_set,
|
9005
9018
|
:image,
|
9006
9019
|
:db_engine_media_type,
|
9020
|
+
:kms_key_id,
|
9021
|
+
:create_time,
|
9007
9022
|
:supported_character_sets,
|
9008
9023
|
:supported_nchar_character_sets,
|
9009
9024
|
:valid_upgrade_target,
|
@@ -9016,15 +9031,8 @@ module Aws::RDS
|
|
9016
9031
|
:status,
|
9017
9032
|
:supports_parallel_query,
|
9018
9033
|
:supports_global_databases,
|
9019
|
-
:major_engine_version,
|
9020
|
-
:database_installation_files_s3_bucket_name,
|
9021
|
-
:database_installation_files_s3_prefix,
|
9022
|
-
:db_engine_version_arn,
|
9023
|
-
:kms_key_id,
|
9024
|
-
:create_time,
|
9025
9034
|
:tag_list,
|
9026
9035
|
:supports_babelfish,
|
9027
|
-
:custom_db_engine_version_manifest,
|
9028
9036
|
:supports_limitless_database,
|
9029
9037
|
:supports_certificate_rotation_without_restart,
|
9030
9038
|
:supported_ca_certificate_identifiers,
|
@@ -9091,10 +9099,6 @@ module Aws::RDS
|
|
9091
9099
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/accessing-monitoring.html#Overview.DBInstance.Status
|
9092
9100
|
# @return [String]
|
9093
9101
|
#
|
9094
|
-
# @!attribute [rw] automatic_restart_time
|
9095
|
-
# The time when a stopped DB instance is restarted automatically.
|
9096
|
-
# @return [Time]
|
9097
|
-
#
|
9098
9102
|
# @!attribute [rw] master_username
|
9099
9103
|
# The master username for the DB instance.
|
9100
9104
|
# @return [String]
|
@@ -9244,6 +9248,12 @@ module Aws::RDS
|
|
9244
9248
|
# instance.
|
9245
9249
|
# @return [Integer]
|
9246
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
|
+
#
|
9247
9257
|
# @!attribute [rw] option_group_memberships
|
9248
9258
|
# The list of option group memberships for this DB instance.
|
9249
9259
|
# @return [Array<Types::OptionGroupMembership>]
|
@@ -9497,10 +9507,18 @@ module Aws::RDS
|
|
9497
9507
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
9498
9508
|
# @return [Array<Types::Tag>]
|
9499
9509
|
#
|
9500
|
-
# @!attribute [rw]
|
9501
|
-
# The
|
9502
|
-
# instance
|
9503
|
-
#
|
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]
|
9504
9522
|
#
|
9505
9523
|
# @!attribute [rw] customer_owned_ip_enabled
|
9506
9524
|
# Indicates whether a customer-owned IP address (CoIP) is enabled for
|
@@ -9525,9 +9543,23 @@ module Aws::RDS
|
|
9525
9543
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
9526
9544
|
# @return [Boolean]
|
9527
9545
|
#
|
9528
|
-
# @!attribute [rw]
|
9529
|
-
# The
|
9530
|
-
#
|
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
|
9531
9563
|
# @return [String]
|
9532
9564
|
#
|
9533
9565
|
# @!attribute [rw] activity_stream_status
|
@@ -9557,17 +9589,24 @@ module Aws::RDS
|
|
9557
9589
|
# database activity stream.
|
9558
9590
|
# @return [Boolean]
|
9559
9591
|
#
|
9560
|
-
# @!attribute [rw]
|
9561
|
-
# The
|
9562
|
-
#
|
9563
|
-
# instance recovery. If `all paused`, the instance pauses automation
|
9564
|
-
# 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.
|
9565
9595
|
# @return [String]
|
9566
9596
|
#
|
9567
|
-
# @!attribute [rw]
|
9568
|
-
# The
|
9569
|
-
#
|
9570
|
-
#
|
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.
|
9571
9610
|
# @return [Time]
|
9572
9611
|
#
|
9573
9612
|
# @!attribute [rw] custom_iam_instance_profile
|
@@ -9591,40 +9630,13 @@ module Aws::RDS
|
|
9591
9630
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
|
9592
9631
|
# @return [String]
|
9593
9632
|
#
|
9594
|
-
# @!attribute [rw] backup_target
|
9595
|
-
# The location where automated backups and manual snapshots are
|
9596
|
-
# stored: Dedicated Local Zones, Amazon Web Services Outposts or the
|
9597
|
-
# Amazon Web Services Region.
|
9598
|
-
# @return [String]
|
9599
|
-
#
|
9600
|
-
# @!attribute [rw] network_type
|
9601
|
-
# The network type of the DB instance.
|
9602
|
-
#
|
9603
|
-
# The network type is determined by the `DBSubnetGroup` specified for
|
9604
|
-
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
9605
|
-
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
9606
|
-
#
|
9607
|
-
# For more information, see [ Working with a DB instance in a VPC][1]
|
9608
|
-
# in the *Amazon RDS User Guide* and [ Working with a DB instance in a
|
9609
|
-
# VPC][2] in the *Amazon Aurora User Guide.*
|
9610
|
-
#
|
9611
|
-
# Valid Values: `IPV4 | DUAL`
|
9612
|
-
#
|
9613
|
-
#
|
9614
|
-
#
|
9615
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
9616
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
9617
|
-
# @return [String]
|
9618
|
-
#
|
9619
9633
|
# @!attribute [rw] activity_stream_policy_status
|
9620
9634
|
# The status of the policy state of the activity stream.
|
9621
9635
|
# @return [String]
|
9622
9636
|
#
|
9623
|
-
# @!attribute [rw]
|
9624
|
-
# The
|
9625
|
-
#
|
9626
|
-
# This setting applies only to the `gp3` storage type.
|
9627
|
-
# @return [Integer]
|
9637
|
+
# @!attribute [rw] certificate_details
|
9638
|
+
# The details of the DB instance's server certificate.
|
9639
|
+
# @return [Types::CertificateDetails]
|
9628
9640
|
#
|
9629
9641
|
# @!attribute [rw] db_system_id
|
9630
9642
|
# The Oracle system ID (Oracle SID) for a container database (CDB).
|
@@ -9644,10 +9656,6 @@ module Aws::RDS
|
|
9644
9656
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-secrets-manager.html
|
9645
9657
|
# @return [Types::MasterUserSecret]
|
9646
9658
|
#
|
9647
|
-
# @!attribute [rw] certificate_details
|
9648
|
-
# The details of the DB instance's server certificate.
|
9649
|
-
# @return [Types::CertificateDetails]
|
9650
|
-
#
|
9651
9659
|
# @!attribute [rw] read_replica_source_db_cluster_identifier
|
9652
9660
|
# The identifier of the source DB cluster if this DB instance is a
|
9653
9661
|
# read replica.
|
@@ -9657,6 +9665,11 @@ module Aws::RDS
|
|
9657
9665
|
# The progress of the storage optimization operation as a percentage.
|
9658
9666
|
# @return [String]
|
9659
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
|
+
#
|
9660
9673
|
# @!attribute [rw] dedicated_log_volume
|
9661
9674
|
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
9662
9675
|
# enabled.
|
@@ -9674,11 +9687,6 @@ module Aws::RDS
|
|
9674
9687
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.UpgradeFileSystem
|
9675
9688
|
# @return [Boolean]
|
9676
9689
|
#
|
9677
|
-
# @!attribute [rw] multi_tenant
|
9678
|
-
# Specifies whether the DB instance is in the multi-tenant
|
9679
|
-
# configuration (TRUE) or the single-tenant configuration (FALSE).
|
9680
|
-
# @return [Boolean]
|
9681
|
-
#
|
9682
9690
|
# @!attribute [rw] engine_lifecycle_support
|
9683
9691
|
# The lifecycle type for the DB instance.
|
9684
9692
|
#
|
@@ -9692,7 +9700,6 @@ module Aws::RDS
|
|
9692
9700
|
:db_instance_class,
|
9693
9701
|
:engine,
|
9694
9702
|
:db_instance_status,
|
9695
|
-
:automatic_restart_time,
|
9696
9703
|
:master_username,
|
9697
9704
|
:db_name,
|
9698
9705
|
:endpoint,
|
@@ -9717,6 +9724,7 @@ module Aws::RDS
|
|
9717
9724
|
:replica_mode,
|
9718
9725
|
:license_model,
|
9719
9726
|
:iops,
|
9727
|
+
:storage_throughput,
|
9720
9728
|
:option_group_memberships,
|
9721
9729
|
:character_set_name,
|
9722
9730
|
:nchar_character_set_name,
|
@@ -9751,29 +9759,29 @@ module Aws::RDS
|
|
9751
9759
|
:listener_endpoint,
|
9752
9760
|
:max_allocated_storage,
|
9753
9761
|
:tag_list,
|
9754
|
-
:
|
9762
|
+
:automation_mode,
|
9763
|
+
:resume_full_automation_mode_time,
|
9755
9764
|
:customer_owned_ip_enabled,
|
9756
|
-
:
|
9765
|
+
:network_type,
|
9757
9766
|
:activity_stream_status,
|
9758
9767
|
:activity_stream_kms_key_id,
|
9759
9768
|
:activity_stream_kinesis_stream_name,
|
9760
9769
|
:activity_stream_mode,
|
9761
9770
|
:activity_stream_engine_native_audit_fields_included,
|
9762
|
-
:
|
9763
|
-
:
|
9764
|
-
:custom_iam_instance_profile,
|
9771
|
+
:aws_backup_recovery_point_arn,
|
9772
|
+
:db_instance_automated_backups_replications,
|
9765
9773
|
:backup_target,
|
9766
|
-
:
|
9774
|
+
:automatic_restart_time,
|
9775
|
+
:custom_iam_instance_profile,
|
9767
9776
|
:activity_stream_policy_status,
|
9768
|
-
:
|
9777
|
+
:certificate_details,
|
9769
9778
|
:db_system_id,
|
9770
9779
|
:master_user_secret,
|
9771
|
-
:certificate_details,
|
9772
9780
|
:read_replica_source_db_cluster_identifier,
|
9773
9781
|
:percent_progress,
|
9782
|
+
:multi_tenant,
|
9774
9783
|
:dedicated_log_volume,
|
9775
9784
|
:is_storage_config_upgrade_available,
|
9776
|
-
:multi_tenant,
|
9777
9785
|
:engine_lifecycle_support)
|
9778
9786
|
SENSITIVE = []
|
9779
9787
|
include Aws::Structure
|
@@ -9873,6 +9881,10 @@ module Aws::RDS
|
|
9873
9881
|
# The IOPS (I/O operations per second) value for the automated backup.
|
9874
9882
|
# @return [Integer]
|
9875
9883
|
#
|
9884
|
+
# @!attribute [rw] storage_throughput
|
9885
|
+
# The storage throughput for the automated backup.
|
9886
|
+
# @return [Integer]
|
9887
|
+
#
|
9876
9888
|
# @!attribute [rw] option_group_name
|
9877
9889
|
# The option group the automated backup is associated with. If
|
9878
9890
|
# omitted, the default option group for the engine specified is used.
|
@@ -9927,11 +9939,13 @@ module Aws::RDS
|
|
9927
9939
|
# The location where automated backups are stored: Dedicated Local
|
9928
9940
|
# Zones, Amazon Web Services Outposts or the Amazon Web Services
|
9929
9941
|
# Region.
|
9930
|
-
# @return [String]
|
9931
|
-
#
|
9932
|
-
# @!attribute [rw]
|
9933
|
-
#
|
9934
|
-
#
|
9942
|
+
# @return [String]
|
9943
|
+
#
|
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]
|
9935
9949
|
#
|
9936
9950
|
# @!attribute [rw] aws_backup_recovery_point_arn
|
9937
9951
|
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
@@ -9943,12 +9957,6 @@ module Aws::RDS
|
|
9943
9957
|
# enabled.
|
9944
9958
|
# @return [Boolean]
|
9945
9959
|
#
|
9946
|
-
# @!attribute [rw] multi_tenant
|
9947
|
-
# Specifies whether the automatic backup is for a DB instance in the
|
9948
|
-
# multi-tenant configuration (TRUE) or the single-tenant configuration
|
9949
|
-
# (FALSE).
|
9950
|
-
# @return [Boolean]
|
9951
|
-
#
|
9952
9960
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstanceAutomatedBackup AWS API Documentation
|
9953
9961
|
#
|
9954
9962
|
class DBInstanceAutomatedBackup < Struct.new(
|
@@ -9968,6 +9976,7 @@ module Aws::RDS
|
|
9968
9976
|
:engine_version,
|
9969
9977
|
:license_model,
|
9970
9978
|
:iops,
|
9979
|
+
:storage_throughput,
|
9971
9980
|
:option_group_name,
|
9972
9981
|
:tde_credential_arn,
|
9973
9982
|
:encrypted,
|
@@ -9979,10 +9988,9 @@ module Aws::RDS
|
|
9979
9988
|
:db_instance_automated_backups_arn,
|
9980
9989
|
:db_instance_automated_backups_replications,
|
9981
9990
|
:backup_target,
|
9982
|
-
:
|
9991
|
+
:multi_tenant,
|
9983
9992
|
:aws_backup_recovery_point_arn,
|
9984
|
-
:dedicated_log_volume
|
9985
|
-
:multi_tenant)
|
9993
|
+
:dedicated_log_volume)
|
9986
9994
|
SENSITIVE = []
|
9987
9995
|
include Aws::Structure
|
9988
9996
|
end
|
@@ -10406,6 +10414,14 @@ module Aws::RDS
|
|
10406
10414
|
# The EC2 subnet IDs for the proxy.
|
10407
10415
|
# @return [Array<String>]
|
10408
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
|
+
#
|
10409
10425
|
# @!attribute [rw] auth
|
10410
10426
|
# One or more data structures specifying the authorization mechanism
|
10411
10427
|
# to connect to the associated RDS DB instance or Aurora DB cluster.
|
@@ -10490,6 +10506,7 @@ module Aws::RDS
|
|
10490
10506
|
:vpc_id,
|
10491
10507
|
:vpc_security_group_ids,
|
10492
10508
|
:vpc_subnet_ids,
|
10509
|
+
:default_auth_scheme,
|
10493
10510
|
:auth,
|
10494
10511
|
:role_arn,
|
10495
10512
|
:endpoint,
|
@@ -11294,6 +11311,10 @@ module Aws::RDS
|
|
11294
11311
|
# the DB instance at the time of the snapshot.
|
11295
11312
|
# @return [Integer]
|
11296
11313
|
#
|
11314
|
+
# @!attribute [rw] storage_throughput
|
11315
|
+
# Specifies the storage throughput for the DB snapshot.
|
11316
|
+
# @return [Integer]
|
11317
|
+
#
|
11297
11318
|
# @!attribute [rw] option_group_name
|
11298
11319
|
# Provides the option group name for the DB snapshot.
|
11299
11320
|
# @return [String]
|
@@ -11374,6 +11395,11 @@ module Aws::RDS
|
|
11374
11395
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
11375
11396
|
# @return [Array<Types::Tag>]
|
11376
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
|
+
#
|
11377
11403
|
# @!attribute [rw] original_snapshot_create_time
|
11378
11404
|
# Specifies the time of the CreateDBSnapshot operation in Coordinated
|
11379
11405
|
# Universal Time (UTC). Doesn't change when the snapshot is copied.
|
@@ -11392,32 +11418,23 @@ module Aws::RDS
|
|
11392
11418
|
# SnapshotDatabaseTime, then the replica lag is two hours.
|
11393
11419
|
# @return [Time]
|
11394
11420
|
#
|
11395
|
-
# @!attribute [rw] snapshot_target
|
11396
|
-
# Specifies where manual snapshots are stored: Dedicated Local Zones,
|
11397
|
-
# Amazon Web Services Outposts or the Amazon Web Services Region.
|
11398
|
-
# @return [String]
|
11399
|
-
#
|
11400
|
-
# @!attribute [rw] storage_throughput
|
11401
|
-
# Specifies the storage throughput for the DB snapshot.
|
11402
|
-
# @return [Integer]
|
11403
|
-
#
|
11404
11421
|
# @!attribute [rw] db_system_id
|
11405
11422
|
# The Oracle system identifier (SID), which is the name of the Oracle
|
11406
11423
|
# database instance that manages your database files. The Oracle SID
|
11407
11424
|
# is also the name of your CDB.
|
11408
11425
|
# @return [String]
|
11409
11426
|
#
|
11410
|
-
# @!attribute [rw] dedicated_log_volume
|
11411
|
-
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
11412
|
-
# enabled.
|
11413
|
-
# @return [Boolean]
|
11414
|
-
#
|
11415
11427
|
# @!attribute [rw] multi_tenant
|
11416
11428
|
# Indicates whether the snapshot is of a DB instance using the
|
11417
11429
|
# multi-tenant configuration (TRUE) or the single-tenant configuration
|
11418
11430
|
# (FALSE).
|
11419
11431
|
# @return [Boolean]
|
11420
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
|
+
#
|
11421
11438
|
# @!attribute [rw] snapshot_availability_zone
|
11422
11439
|
# Specifies the name of the Availability Zone where RDS stores the DB
|
11423
11440
|
# snapshot. This value is valid only for snapshots that RDS stores on
|
@@ -11442,6 +11459,7 @@ module Aws::RDS
|
|
11442
11459
|
:license_model,
|
11443
11460
|
:snapshot_type,
|
11444
11461
|
:iops,
|
11462
|
+
:storage_throughput,
|
11445
11463
|
:option_group_name,
|
11446
11464
|
:percent_progress,
|
11447
11465
|
:source_region,
|
@@ -11456,13 +11474,12 @@ module Aws::RDS
|
|
11456
11474
|
:processor_features,
|
11457
11475
|
:dbi_resource_id,
|
11458
11476
|
:tag_list,
|
11477
|
+
:snapshot_target,
|
11459
11478
|
:original_snapshot_create_time,
|
11460
11479
|
:snapshot_database_time,
|
11461
|
-
:snapshot_target,
|
11462
|
-
:storage_throughput,
|
11463
11480
|
:db_system_id,
|
11464
|
-
:dedicated_log_volume,
|
11465
11481
|
:multi_tenant,
|
11482
|
+
:dedicated_log_volume,
|
11466
11483
|
:snapshot_availability_zone)
|
11467
11484
|
SENSITIVE = []
|
11468
11485
|
include Aws::Structure
|
@@ -15930,7 +15947,7 @@ module Aws::RDS
|
|
15930
15947
|
:log_file_data,
|
15931
15948
|
:marker,
|
15932
15949
|
:additional_data_pending)
|
15933
|
-
SENSITIVE = []
|
15950
|
+
SENSITIVE = [:log_file_data]
|
15934
15951
|
include Aws::Structure
|
15935
15952
|
end
|
15936
15953
|
|
@@ -17048,15 +17065,6 @@ module Aws::RDS
|
|
17048
17065
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
17049
17066
|
# @return [Array<Types::Tag>]
|
17050
17067
|
#
|
17051
|
-
# @!attribute [rw] create_time
|
17052
|
-
# The time when the integration was created, in Universal Coordinated
|
17053
|
-
# Time (UTC).
|
17054
|
-
# @return [Time]
|
17055
|
-
#
|
17056
|
-
# @!attribute [rw] errors
|
17057
|
-
# Any errors associated with the integration.
|
17058
|
-
# @return [Array<Types::IntegrationError>]
|
17059
|
-
#
|
17060
17068
|
# @!attribute [rw] data_filter
|
17061
17069
|
# Data filters for the integration. These filters determine which
|
17062
17070
|
# tables from the source database are sent to the target Amazon
|
@@ -17067,6 +17075,15 @@ module Aws::RDS
|
|
17067
17075
|
# A description of the integration.
|
17068
17076
|
# @return [String]
|
17069
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
|
+
#
|
17070
17087
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/Integration AWS API Documentation
|
17071
17088
|
#
|
17072
17089
|
class Integration < Struct.new(
|
@@ -17078,10 +17095,10 @@ module Aws::RDS
|
|
17078
17095
|
:additional_encryption_context,
|
17079
17096
|
:status,
|
17080
17097
|
:tags,
|
17081
|
-
:create_time,
|
17082
|
-
:errors,
|
17083
17098
|
:data_filter,
|
17084
|
-
:description
|
17099
|
+
:description,
|
17100
|
+
:create_time,
|
17101
|
+
:errors)
|
17085
17102
|
SENSITIVE = []
|
17086
17103
|
include Aws::Structure
|
17087
17104
|
end
|
@@ -18279,6 +18296,37 @@ module Aws::RDS
|
|
18279
18296
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Upgrading.html#USER_UpgradeDBInstance.Upgrading.AutoMinorVersionUpgrades
|
18280
18297
|
# @return [Boolean]
|
18281
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
|
+
#
|
18282
18330
|
# @!attribute [rw] monitoring_interval
|
18283
18331
|
# The interval, in seconds, between points when Enhanced Monitoring
|
18284
18332
|
# metrics are collected for the DB cluster. To turn off collecting
|
@@ -18377,37 +18425,6 @@ module Aws::RDS
|
|
18377
18425
|
# Amazon RDS issues an error.
|
18378
18426
|
# @return [Integer]
|
18379
18427
|
#
|
18380
|
-
# @!attribute [rw] serverless_v2_scaling_configuration
|
18381
|
-
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
18382
|
-
# cluster.
|
18383
|
-
#
|
18384
|
-
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
18385
|
-
# the *Amazon Aurora User Guide*.
|
18386
|
-
#
|
18387
|
-
#
|
18388
|
-
#
|
18389
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
18390
|
-
# @return [Types::ServerlessV2ScalingConfiguration]
|
18391
|
-
#
|
18392
|
-
# @!attribute [rw] network_type
|
18393
|
-
# The network type of the DB cluster.
|
18394
|
-
#
|
18395
|
-
# The network type is determined by the `DBSubnetGroup` specified for
|
18396
|
-
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
18397
|
-
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
18398
|
-
#
|
18399
|
-
# For more information, see [ Working with a DB instance in a VPC][1]
|
18400
|
-
# in the *Amazon Aurora User Guide.*
|
18401
|
-
#
|
18402
|
-
# Valid for Cluster Type: Aurora DB clusters only
|
18403
|
-
#
|
18404
|
-
# Valid Values: `IPV4 | DUAL`
|
18405
|
-
#
|
18406
|
-
#
|
18407
|
-
#
|
18408
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
18409
|
-
# @return [String]
|
18410
|
-
#
|
18411
18428
|
# @!attribute [rw] manage_master_user_password
|
18412
18429
|
# Specifies whether to manage the master user password with Amazon Web
|
18413
18430
|
# Services Secrets Manager.
|
@@ -18464,6 +18481,14 @@ module Aws::RDS
|
|
18464
18481
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/rds-secrets-manager.html
|
18465
18482
|
# @return [Boolean]
|
18466
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
|
+
#
|
18467
18492
|
# @!attribute [rw] master_user_secret_kms_key_id
|
18468
18493
|
# The Amazon Web Services KMS key identifier to encrypt a secret that
|
18469
18494
|
# is automatically generated and managed in Amazon Web Services
|
@@ -18534,14 +18559,6 @@ module Aws::RDS
|
|
18534
18559
|
# ^
|
18535
18560
|
# @return [Boolean]
|
18536
18561
|
#
|
18537
|
-
# @!attribute [rw] enable_local_write_forwarding
|
18538
|
-
# Specifies whether read replicas can forward write operations to the
|
18539
|
-
# writer DB instance in the DB cluster. By default, write operations
|
18540
|
-
# aren't allowed on reader DB instances.
|
18541
|
-
#
|
18542
|
-
# Valid for: Aurora DB clusters only
|
18543
|
-
# @return [Boolean]
|
18544
|
-
#
|
18545
18562
|
# @!attribute [rw] aws_backup_recovery_point_arn
|
18546
18563
|
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
18547
18564
|
# Services Backup.
|
@@ -18624,25 +18641,25 @@ module Aws::RDS
|
|
18624
18641
|
:storage_type,
|
18625
18642
|
:iops,
|
18626
18643
|
:auto_minor_version_upgrade,
|
18644
|
+
:network_type,
|
18645
|
+
:serverless_v2_scaling_configuration,
|
18627
18646
|
:monitoring_interval,
|
18628
18647
|
:monitoring_role_arn,
|
18629
18648
|
:database_insights_mode,
|
18630
18649
|
:enable_performance_insights,
|
18631
18650
|
:performance_insights_kms_key_id,
|
18632
18651
|
:performance_insights_retention_period,
|
18633
|
-
:serverless_v2_scaling_configuration,
|
18634
|
-
:network_type,
|
18635
18652
|
:manage_master_user_password,
|
18636
18653
|
:rotate_master_user_password,
|
18654
|
+
:enable_local_write_forwarding,
|
18637
18655
|
:master_user_secret_kms_key_id,
|
18638
18656
|
:engine_mode,
|
18639
18657
|
:allow_engine_mode_change,
|
18640
|
-
:enable_local_write_forwarding,
|
18641
18658
|
:aws_backup_recovery_point_arn,
|
18642
18659
|
:enable_limitless_database,
|
18643
18660
|
:ca_certificate_identifier,
|
18644
18661
|
:master_user_authentication_type)
|
18645
|
-
SENSITIVE = []
|
18662
|
+
SENSITIVE = [:master_user_password]
|
18646
18663
|
include Aws::Structure
|
18647
18664
|
end
|
18648
18665
|
|
@@ -19263,6 +19280,15 @@ module Aws::RDS
|
|
19263
19280
|
# Default: Uses existing setting
|
19264
19281
|
# @return [Integer]
|
19265
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
|
+
#
|
19266
19292
|
# @!attribute [rw] option_group_name
|
19267
19293
|
# The option group to associate the DB instance with.
|
19268
19294
|
#
|
@@ -19429,6 +19455,11 @@ module Aws::RDS
|
|
19429
19455
|
# Example: `123.124.125.126,234.235.236.237`
|
19430
19456
|
# @return [Array<String>]
|
19431
19457
|
#
|
19458
|
+
# @!attribute [rw] disable_domain
|
19459
|
+
# Specifies whether to remove the DB instance from the Active
|
19460
|
+
# Directory domain.
|
19461
|
+
# @return [Boolean]
|
19462
|
+
#
|
19432
19463
|
# @!attribute [rw] copy_tags_to_snapshot
|
19433
19464
|
# Specifies whether to copy all tags from the DB instance to snapshots
|
19434
19465
|
# of the DB instance. By default, tags aren't copied.
|
@@ -19540,11 +19571,6 @@ module Aws::RDS
|
|
19540
19571
|
# This setting doesn't apply to RDS Custom DB instances.
|
19541
19572
|
# @return [String]
|
19542
19573
|
#
|
19543
|
-
# @!attribute [rw] disable_domain
|
19544
|
-
# Specifies whether to remove the DB instance from the Active
|
19545
|
-
# Directory domain.
|
19546
|
-
# @return [Boolean]
|
19547
|
-
#
|
19548
19574
|
# @!attribute [rw] promotion_tier
|
19549
19575
|
# The order of priority in which an Aurora Replica is promoted to the
|
19550
19576
|
# primary instance after a failure of the existing primary instance.
|
@@ -19800,6 +19826,26 @@ module Aws::RDS
|
|
19800
19826
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
19801
19827
|
# @return [String]
|
19802
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
|
+
#
|
19803
19849
|
# @!attribute [rw] enable_customer_owned_ip
|
19804
19850
|
# Specifies whether to enable a customer-owned IP address (CoIP) for
|
19805
19851
|
# an RDS on Outposts DB instance.
|
@@ -19823,33 +19869,6 @@ module Aws::RDS
|
|
19823
19869
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
19824
19870
|
# @return [Boolean]
|
19825
19871
|
#
|
19826
|
-
# @!attribute [rw] aws_backup_recovery_point_arn
|
19827
|
-
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
19828
|
-
# Services Backup.
|
19829
|
-
#
|
19830
|
-
# This setting doesn't apply to RDS Custom DB instances.
|
19831
|
-
# @return [String]
|
19832
|
-
#
|
19833
|
-
# @!attribute [rw] automation_mode
|
19834
|
-
# The automation mode of the RDS Custom DB instance. If `full`, the DB
|
19835
|
-
# instance automates monitoring and instance recovery. If `all
|
19836
|
-
# paused`, the instance pauses automation for the duration set by
|
19837
|
-
# `ResumeFullAutomationModeMinutes`.
|
19838
|
-
# @return [String]
|
19839
|
-
#
|
19840
|
-
# @!attribute [rw] resume_full_automation_mode_minutes
|
19841
|
-
# The number of minutes to pause the automation. When the time period
|
19842
|
-
# ends, RDS Custom resumes full automation.
|
19843
|
-
#
|
19844
|
-
# Default: `60`
|
19845
|
-
#
|
19846
|
-
# Constraints:
|
19847
|
-
#
|
19848
|
-
# * Must be at least 60.
|
19849
|
-
#
|
19850
|
-
# * Must be no more than 1,440.
|
19851
|
-
# @return [Integer]
|
19852
|
-
#
|
19853
19872
|
# @!attribute [rw] network_type
|
19854
19873
|
# The network type of the DB instance.
|
19855
19874
|
#
|
@@ -19867,14 +19886,12 @@ module Aws::RDS
|
|
19867
19886
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
19868
19887
|
# @return [String]
|
19869
19888
|
#
|
19870
|
-
# @!attribute [rw]
|
19871
|
-
# The
|
19872
|
-
#
|
19873
|
-
# 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.
|
19874
19892
|
#
|
19875
|
-
# This setting doesn't apply to
|
19876
|
-
#
|
19877
|
-
# @return [Integer]
|
19893
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
19894
|
+
# @return [String]
|
19878
19895
|
#
|
19879
19896
|
# @!attribute [rw] manage_master_user_password
|
19880
19897
|
# Specifies whether to manage the master user password with Amazon Web
|
@@ -19968,6 +19985,29 @@ module Aws::RDS
|
|
19968
19985
|
# each Amazon Web Services Region.
|
19969
19986
|
# @return [String]
|
19970
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]
|
20010
|
+
#
|
19971
20011
|
# @!attribute [rw] engine
|
19972
20012
|
# The target Oracle DB engine when you convert a non-CDB to a CDB.
|
19973
20013
|
# This intermediate step is necessary to upgrade an Oracle Database
|
@@ -19998,29 +20038,6 @@ module Aws::RDS
|
|
19998
20038
|
# `--option-group-name`.
|
19999
20039
|
# @return [String]
|
20000
20040
|
#
|
20001
|
-
# @!attribute [rw] dedicated_log_volume
|
20002
|
-
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
20003
|
-
# enabled.
|
20004
|
-
# @return [Boolean]
|
20005
|
-
#
|
20006
|
-
# @!attribute [rw] multi_tenant
|
20007
|
-
# Specifies whether the to convert your DB instance from the
|
20008
|
-
# single-tenant configuration to the multi-tenant configuration. This
|
20009
|
-
# parameter is supported only for RDS for Oracle CDB instances.
|
20010
|
-
#
|
20011
|
-
# During the conversion, RDS creates an initial tenant database and
|
20012
|
-
# associates the DB name, master user name, character set, and
|
20013
|
-
# national character set metadata with this database. The tags
|
20014
|
-
# associated with the instance also propagate to the initial tenant
|
20015
|
-
# database. You can add more tenant databases to your DB instance by
|
20016
|
-
# using the `CreateTenantDatabase` operation.
|
20017
|
-
#
|
20018
|
-
# The conversion to the multi-tenant configuration is permanent and
|
20019
|
-
# irreversible, so you can't later convert back to the single-tenant
|
20020
|
-
# configuration. When you specify this parameter, you must also
|
20021
|
-
# specify `ApplyImmediately`.
|
20022
|
-
# @return [Boolean]
|
20023
|
-
#
|
20024
20041
|
# @!attribute [rw] master_user_authentication_type
|
20025
20042
|
# Specifies the authentication type for the master user. With IAM
|
20026
20043
|
# master user authentication, you can change the master DB user to use
|
@@ -20058,6 +20075,7 @@ module Aws::RDS
|
|
20058
20075
|
:auto_minor_version_upgrade,
|
20059
20076
|
:license_model,
|
20060
20077
|
:iops,
|
20078
|
+
:storage_throughput,
|
20061
20079
|
:option_group_name,
|
20062
20080
|
:new_db_instance_identifier,
|
20063
20081
|
:storage_type,
|
@@ -20069,13 +20087,13 @@ module Aws::RDS
|
|
20069
20087
|
:domain_ou,
|
20070
20088
|
:domain_auth_secret_arn,
|
20071
20089
|
:domain_dns_ips,
|
20090
|
+
:disable_domain,
|
20072
20091
|
:copy_tags_to_snapshot,
|
20073
20092
|
:monitoring_interval,
|
20074
20093
|
:db_port_number,
|
20075
20094
|
:publicly_accessible,
|
20076
20095
|
:monitoring_role_arn,
|
20077
20096
|
:domain_iam_role_name,
|
20078
|
-
:disable_domain,
|
20079
20097
|
:promotion_tier,
|
20080
20098
|
:enable_iam_database_authentication,
|
20081
20099
|
:database_insights_mode,
|
@@ -20089,20 +20107,19 @@ module Aws::RDS
|
|
20089
20107
|
:max_allocated_storage,
|
20090
20108
|
:certificate_rotation_restart,
|
20091
20109
|
:replica_mode,
|
20092
|
-
:enable_customer_owned_ip,
|
20093
|
-
:aws_backup_recovery_point_arn,
|
20094
20110
|
:automation_mode,
|
20095
20111
|
:resume_full_automation_mode_minutes,
|
20112
|
+
:enable_customer_owned_ip,
|
20096
20113
|
:network_type,
|
20097
|
-
:
|
20114
|
+
:aws_backup_recovery_point_arn,
|
20098
20115
|
:manage_master_user_password,
|
20099
20116
|
:rotate_master_user_password,
|
20100
20117
|
:master_user_secret_kms_key_id,
|
20101
|
-
:engine,
|
20102
|
-
:dedicated_log_volume,
|
20103
20118
|
:multi_tenant,
|
20119
|
+
:dedicated_log_volume,
|
20120
|
+
:engine,
|
20104
20121
|
:master_user_authentication_type)
|
20105
|
-
SENSITIVE = []
|
20122
|
+
SENSITIVE = [:master_user_password, :tde_credential_password]
|
20106
20123
|
include Aws::Structure
|
20107
20124
|
end
|
20108
20125
|
|
@@ -20232,6 +20249,14 @@ module Aws::RDS
|
|
20232
20249
|
# it can't end with a hyphen or contain two consecutive hyphens.
|
20233
20250
|
# @return [String]
|
20234
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
|
+
#
|
20235
20260
|
# @!attribute [rw] auth
|
20236
20261
|
# The new authentication settings for the `DBProxy`.
|
20237
20262
|
# @return [Array<Types::UserAuthConfig>]
|
@@ -20272,6 +20297,7 @@ module Aws::RDS
|
|
20272
20297
|
class ModifyDBProxyRequest < Struct.new(
|
20273
20298
|
:db_proxy_name,
|
20274
20299
|
:new_db_proxy_name,
|
20300
|
+
:default_auth_scheme,
|
20275
20301
|
:auth,
|
20276
20302
|
:require_tls,
|
20277
20303
|
:idle_client_timeout,
|
@@ -21511,7 +21537,7 @@ module Aws::RDS
|
|
21511
21537
|
:allowed_values,
|
21512
21538
|
:is_modifiable,
|
21513
21539
|
:is_collection)
|
21514
|
-
SENSITIVE = []
|
21540
|
+
SENSITIVE = [:value]
|
21515
21541
|
include Aws::Structure
|
21516
21542
|
end
|
21517
21543
|
|
@@ -21588,6 +21614,10 @@ module Aws::RDS
|
|
21588
21614
|
# Indicates whether a DB instance supports provisioned IOPS.
|
21589
21615
|
# @return [Boolean]
|
21590
21616
|
#
|
21617
|
+
# @!attribute [rw] supports_storage_throughput
|
21618
|
+
# Indicates whether a DB instance supports storage throughput.
|
21619
|
+
# @return [Boolean]
|
21620
|
+
#
|
21591
21621
|
# @!attribute [rw] supports_enhanced_monitoring
|
21592
21622
|
# Indicates whether a DB instance supports Enhanced Monitoring at
|
21593
21623
|
# intervals from 1 to 60 seconds.
|
@@ -21626,6 +21656,24 @@ module Aws::RDS
|
|
21626
21656
|
# Maximum provisioned IOPS per GiB for a DB instance.
|
21627
21657
|
# @return [Float]
|
21628
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
|
+
#
|
21629
21677
|
# @!attribute [rw] available_processor_features
|
21630
21678
|
# A list of the available processor features for the DB instance class
|
21631
21679
|
# of a DB instance.
|
@@ -21667,19 +21715,6 @@ module Aws::RDS
|
|
21667
21715
|
# specific combination of other DB engine attributes.
|
21668
21716
|
# @return [Boolean]
|
21669
21717
|
#
|
21670
|
-
# @!attribute [rw] supports_clusters
|
21671
|
-
# Indicates whether DB instances can be configured as a Multi-AZ DB
|
21672
|
-
# cluster.
|
21673
|
-
#
|
21674
|
-
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
21675
|
-
# deployments with two readable standby DB instances][1] in the
|
21676
|
-
# *Amazon RDS User Guide.*
|
21677
|
-
#
|
21678
|
-
#
|
21679
|
-
#
|
21680
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
21681
|
-
# @return [Boolean]
|
21682
|
-
#
|
21683
21718
|
# @!attribute [rw] supported_network_types
|
21684
21719
|
# The network types supported by the DB instance (`IPV4` or `DUAL`).
|
21685
21720
|
#
|
@@ -21694,27 +21729,18 @@ module Aws::RDS
|
|
21694
21729
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
21695
21730
|
# @return [Array<String>]
|
21696
21731
|
#
|
21697
|
-
# @!attribute [rw]
|
21698
|
-
# Indicates whether
|
21699
|
-
#
|
21732
|
+
# @!attribute [rw] supports_clusters
|
21733
|
+
# Indicates whether DB instances can be configured as a Multi-AZ DB
|
21734
|
+
# cluster.
|
21700
21735
|
#
|
21701
|
-
#
|
21702
|
-
#
|
21703
|
-
#
|
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.*
|
21704
21739
|
#
|
21705
|
-
# @!attribute [rw] max_storage_throughput_per_db_instance
|
21706
|
-
# Maximum storage throughput for a DB instance.
|
21707
|
-
# @return [Integer]
|
21708
21740
|
#
|
21709
|
-
# @!attribute [rw] min_storage_throughput_per_iops
|
21710
|
-
# Minimum storage throughput to provisioned IOPS ratio for a DB
|
21711
|
-
# instance.
|
21712
|
-
# @return [Float]
|
21713
21741
|
#
|
21714
|
-
#
|
21715
|
-
#
|
21716
|
-
# instance.
|
21717
|
-
# @return [Float]
|
21742
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
21743
|
+
# @return [Boolean]
|
21718
21744
|
#
|
21719
21745
|
# @!attribute [rw] supports_dedicated_log_volume
|
21720
21746
|
# Indicates whether a DB instance supports using a dedicated log
|
@@ -21740,6 +21766,7 @@ module Aws::RDS
|
|
21740
21766
|
:supports_storage_encryption,
|
21741
21767
|
:storage_type,
|
21742
21768
|
:supports_iops,
|
21769
|
+
:supports_storage_throughput,
|
21743
21770
|
:supports_enhanced_monitoring,
|
21744
21771
|
:supports_iam_database_authentication,
|
21745
21772
|
:supports_performance_insights,
|
@@ -21749,6 +21776,10 @@ module Aws::RDS
|
|
21749
21776
|
:max_iops_per_db_instance,
|
21750
21777
|
:min_iops_per_gib,
|
21751
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,
|
21752
21783
|
:available_processor_features,
|
21753
21784
|
:supported_engine_modes,
|
21754
21785
|
:supports_storage_autoscaling,
|
@@ -21756,13 +21787,8 @@ module Aws::RDS
|
|
21756
21787
|
:outpost_capable,
|
21757
21788
|
:supported_activity_stream_modes,
|
21758
21789
|
:supports_global_databases,
|
21759
|
-
:supports_clusters,
|
21760
21790
|
:supported_network_types,
|
21761
|
-
:
|
21762
|
-
:min_storage_throughput_per_db_instance,
|
21763
|
-
:max_storage_throughput_per_db_instance,
|
21764
|
-
:min_storage_throughput_per_iops,
|
21765
|
-
:max_storage_throughput_per_iops,
|
21791
|
+
:supports_clusters,
|
21766
21792
|
:supports_dedicated_log_volume,
|
21767
21793
|
:supports_http_endpoint)
|
21768
21794
|
SENSITIVE = []
|
@@ -22054,6 +22080,10 @@ module Aws::RDS
|
|
22054
22080
|
# The Provisioned IOPS value for the DB instance.
|
22055
22081
|
# @return [Integer]
|
22056
22082
|
#
|
22083
|
+
# @!attribute [rw] storage_throughput
|
22084
|
+
# The storage throughput of the DB instance.
|
22085
|
+
# @return [Integer]
|
22086
|
+
#
|
22057
22087
|
# @!attribute [rw] db_instance_identifier
|
22058
22088
|
# The database identifier for the DB instance.
|
22059
22089
|
# @return [String]
|
@@ -22091,11 +22121,6 @@ module Aws::RDS
|
|
22091
22121
|
# DB instance class of the DB instance.
|
22092
22122
|
# @return [Array<Types::ProcessorFeature>]
|
22093
22123
|
#
|
22094
|
-
# @!attribute [rw] iam_database_authentication_enabled
|
22095
|
-
# Indicates whether mapping of Amazon Web Services Identity and Access
|
22096
|
-
# Management (IAM) accounts to database accounts is enabled.
|
22097
|
-
# @return [Boolean]
|
22098
|
-
#
|
22099
22124
|
# @!attribute [rw] automation_mode
|
22100
22125
|
# The automation mode of the RDS Custom DB instance: `full` or
|
22101
22126
|
# `all-paused`. If `full`, the DB instance automates monitoring and
|
@@ -22109,23 +22134,24 @@ module Aws::RDS
|
|
22109
22134
|
# (default). The maximum value is 1,440.
|
22110
22135
|
# @return [Time]
|
22111
22136
|
#
|
22112
|
-
# @!attribute [rw]
|
22113
|
-
#
|
22114
|
-
#
|
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]
|
22115
22141
|
#
|
22116
|
-
# @!attribute [rw]
|
22117
|
-
#
|
22118
|
-
#
|
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]
|
22119
22146
|
#
|
22120
22147
|
# @!attribute [rw] dedicated_log_volume
|
22121
22148
|
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
22122
22149
|
# enabled.>
|
22123
22150
|
# @return [Boolean]
|
22124
22151
|
#
|
22125
|
-
# @!attribute [rw]
|
22126
|
-
#
|
22127
|
-
#
|
22128
|
-
# @return [Boolean]
|
22152
|
+
# @!attribute [rw] engine
|
22153
|
+
# The database engine of the DB instance.
|
22154
|
+
# @return [String]
|
22129
22155
|
#
|
22130
22156
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PendingModifiedValues AWS API Documentation
|
22131
22157
|
#
|
@@ -22139,20 +22165,20 @@ module Aws::RDS
|
|
22139
22165
|
:engine_version,
|
22140
22166
|
:license_model,
|
22141
22167
|
:iops,
|
22168
|
+
:storage_throughput,
|
22142
22169
|
:db_instance_identifier,
|
22143
22170
|
:storage_type,
|
22144
22171
|
:ca_certificate_identifier,
|
22145
22172
|
:db_subnet_group_name,
|
22146
22173
|
:pending_cloudwatch_logs_exports,
|
22147
22174
|
:processor_features,
|
22148
|
-
:iam_database_authentication_enabled,
|
22149
22175
|
:automation_mode,
|
22150
22176
|
:resume_full_automation_mode_time,
|
22151
|
-
:
|
22152
|
-
:
|
22177
|
+
:multi_tenant,
|
22178
|
+
:iam_database_authentication_enabled,
|
22153
22179
|
:dedicated_log_volume,
|
22154
|
-
:
|
22155
|
-
SENSITIVE = []
|
22180
|
+
:engine)
|
22181
|
+
SENSITIVE = [:master_user_password]
|
22156
22182
|
include Aws::Structure
|
22157
22183
|
end
|
22158
22184
|
|
@@ -23742,17 +23768,15 @@ module Aws::RDS
|
|
23742
23768
|
# the Directory Service.
|
23743
23769
|
# @return [String]
|
23744
23770
|
#
|
23745
|
-
# @!attribute [rw]
|
23746
|
-
#
|
23747
|
-
# cluster.
|
23748
|
-
#
|
23749
|
-
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
23750
|
-
# the *Amazon Aurora User Guide*.
|
23771
|
+
# @!attribute [rw] storage_type
|
23772
|
+
# Specifies the storage type to be associated with the DB cluster.
|
23751
23773
|
#
|
23774
|
+
# Valid Values: `aurora`, `aurora-iopt1`
|
23752
23775
|
#
|
23776
|
+
# Default: `aurora`
|
23753
23777
|
#
|
23754
|
-
#
|
23755
|
-
# @return [
|
23778
|
+
# Valid for: Aurora DB clusters only
|
23779
|
+
# @return [String]
|
23756
23780
|
#
|
23757
23781
|
# @!attribute [rw] network_type
|
23758
23782
|
# The network type of the DB cluster.
|
@@ -23775,6 +23799,18 @@ module Aws::RDS
|
|
23775
23799
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
23776
23800
|
# @return [String]
|
23777
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
|
+
#
|
23778
23814
|
# @!attribute [rw] manage_master_user_password
|
23779
23815
|
# Specifies whether to manage the master user password with Amazon Web
|
23780
23816
|
# Services Secrets Manager.
|
@@ -23821,16 +23857,6 @@ module Aws::RDS
|
|
23821
23857
|
# each Amazon Web Services Region.
|
23822
23858
|
# @return [String]
|
23823
23859
|
#
|
23824
|
-
# @!attribute [rw] storage_type
|
23825
|
-
# Specifies the storage type to be associated with the DB cluster.
|
23826
|
-
#
|
23827
|
-
# Valid Values: `aurora`, `aurora-iopt1`
|
23828
|
-
#
|
23829
|
-
# Default: `aurora`
|
23830
|
-
#
|
23831
|
-
# Valid for: Aurora DB clusters only
|
23832
|
-
# @return [String]
|
23833
|
-
#
|
23834
23860
|
# @!attribute [rw] engine_lifecycle_support
|
23835
23861
|
# The life cycle type for this DB cluster.
|
23836
23862
|
#
|
@@ -23904,13 +23930,13 @@ module Aws::RDS
|
|
23904
23930
|
:copy_tags_to_snapshot,
|
23905
23931
|
:domain,
|
23906
23932
|
:domain_iam_role_name,
|
23907
|
-
:
|
23933
|
+
:storage_type,
|
23908
23934
|
:network_type,
|
23935
|
+
:serverless_v2_scaling_configuration,
|
23909
23936
|
:manage_master_user_password,
|
23910
23937
|
:master_user_secret_kms_key_id,
|
23911
|
-
:storage_type,
|
23912
23938
|
:engine_lifecycle_support)
|
23913
|
-
SENSITIVE = []
|
23939
|
+
SENSITIVE = [:master_user_password]
|
23914
23940
|
include Aws::Structure
|
23915
23941
|
end
|
23916
23942
|
|
@@ -24374,18 +24400,6 @@ module Aws::RDS
|
|
24374
24400
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
24375
24401
|
# @return [Boolean]
|
24376
24402
|
#
|
24377
|
-
# @!attribute [rw] serverless_v2_scaling_configuration
|
24378
|
-
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
24379
|
-
# cluster.
|
24380
|
-
#
|
24381
|
-
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
24382
|
-
# the *Amazon Aurora User Guide*.
|
24383
|
-
#
|
24384
|
-
#
|
24385
|
-
#
|
24386
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
24387
|
-
# @return [Types::ServerlessV2ScalingConfiguration]
|
24388
|
-
#
|
24389
24403
|
# @!attribute [rw] network_type
|
24390
24404
|
# The network type of the DB cluster.
|
24391
24405
|
#
|
@@ -24409,6 +24423,18 @@ module Aws::RDS
|
|
24409
24423
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
24410
24424
|
# @return [String]
|
24411
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
|
+
#
|
24412
24438
|
# @!attribute [rw] rds_custom_cluster_configuration
|
24413
24439
|
# Reserved for future use.
|
24414
24440
|
# @return [Types::RdsCustomClusterConfiguration]
|
@@ -24541,8 +24567,8 @@ module Aws::RDS
|
|
24541
24567
|
:storage_type,
|
24542
24568
|
:iops,
|
24543
24569
|
:publicly_accessible,
|
24544
|
-
:serverless_v2_scaling_configuration,
|
24545
24570
|
:network_type,
|
24571
|
+
:serverless_v2_scaling_configuration,
|
24546
24572
|
:rds_custom_cluster_configuration,
|
24547
24573
|
:monitoring_interval,
|
24548
24574
|
:monitoring_role_arn,
|
@@ -24881,26 +24907,6 @@ module Aws::RDS
|
|
24881
24907
|
# Valid for: Aurora DB clusters only
|
24882
24908
|
# @return [String]
|
24883
24909
|
#
|
24884
|
-
# @!attribute [rw] scaling_configuration
|
24885
|
-
# For DB clusters in `serverless` DB engine mode, the scaling
|
24886
|
-
# properties of the DB cluster.
|
24887
|
-
#
|
24888
|
-
# Valid for: Aurora DB clusters only
|
24889
|
-
# @return [Types::ScalingConfiguration]
|
24890
|
-
#
|
24891
|
-
# @!attribute [rw] engine_mode
|
24892
|
-
# The engine mode of the new cluster. Specify `provisioned` or
|
24893
|
-
# `serverless`, depending on the type of the cluster you are creating.
|
24894
|
-
# You can create an Aurora Serverless v1 clone from a provisioned
|
24895
|
-
# cluster, or a provisioned clone from an Aurora Serverless v1
|
24896
|
-
# cluster. To create a clone that is an Aurora Serverless v1 cluster,
|
24897
|
-
# the original cluster must be an Aurora Serverless v1 cluster or an
|
24898
|
-
# encrypted provisioned cluster. To create a full copy that is an
|
24899
|
-
# Aurora Serverless v1 cluster, specify the engine mode `serverless`.
|
24900
|
-
#
|
24901
|
-
# Valid for: Aurora DB clusters only
|
24902
|
-
# @return [String]
|
24903
|
-
#
|
24904
24910
|
# @!attribute [rw] db_cluster_instance_class
|
24905
24911
|
# The compute and memory capacity of the each DB instance in the
|
24906
24912
|
# Multi-AZ DB cluster, for example db.m6gd.xlarge. Not all DB instance
|
@@ -24987,18 +24993,6 @@ module Aws::RDS
|
|
24987
24993
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
24988
24994
|
# @return [Integer]
|
24989
24995
|
#
|
24990
|
-
# @!attribute [rw] serverless_v2_scaling_configuration
|
24991
|
-
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
24992
|
-
# cluster.
|
24993
|
-
#
|
24994
|
-
# For more information, see [Using Amazon Aurora Serverless v2][1] in
|
24995
|
-
# the *Amazon Aurora User Guide*.
|
24996
|
-
#
|
24997
|
-
#
|
24998
|
-
#
|
24999
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
25000
|
-
# @return [Types::ServerlessV2ScalingConfiguration]
|
25001
|
-
#
|
25002
24996
|
# @!attribute [rw] network_type
|
25003
24997
|
# The network type of the DB cluster.
|
25004
24998
|
#
|
@@ -25026,6 +25020,38 @@ module Aws::RDS
|
|
25026
25020
|
# The resource ID of the source DB cluster from which to restore.
|
25027
25021
|
# @return [String]
|
25028
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
|
+
#
|
25029
25055
|
# @!attribute [rw] rds_custom_cluster_configuration
|
25030
25056
|
# Reserved for future use.
|
25031
25057
|
# @return [Types::RdsCustomClusterConfiguration]
|
@@ -25151,15 +25177,15 @@ module Aws::RDS
|
|
25151
25177
|
:copy_tags_to_snapshot,
|
25152
25178
|
:domain,
|
25153
25179
|
:domain_iam_role_name,
|
25154
|
-
:scaling_configuration,
|
25155
|
-
:engine_mode,
|
25156
25180
|
:db_cluster_instance_class,
|
25157
25181
|
:storage_type,
|
25158
25182
|
:publicly_accessible,
|
25159
25183
|
:iops,
|
25160
|
-
:serverless_v2_scaling_configuration,
|
25161
25184
|
:network_type,
|
25162
25185
|
:source_db_cluster_resource_id,
|
25186
|
+
:serverless_v2_scaling_configuration,
|
25187
|
+
:scaling_configuration,
|
25188
|
+
:engine_mode,
|
25163
25189
|
:rds_custom_cluster_configuration,
|
25164
25190
|
:monitoring_interval,
|
25165
25191
|
:monitoring_role_arn,
|
@@ -25432,6 +25458,12 @@ module Aws::RDS
|
|
25432
25458
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
25433
25459
|
# @return [Integer]
|
25434
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
|
+
#
|
25435
25467
|
# @!attribute [rw] option_group_name
|
25436
25468
|
# The name of the option group to be used for the restored DB
|
25437
25469
|
# instance.
|
@@ -25688,27 +25720,25 @@ module Aws::RDS
|
|
25688
25720
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
25689
25721
|
# @return [Boolean]
|
25690
25722
|
#
|
25691
|
-
# @!attribute [rw]
|
25692
|
-
# The
|
25693
|
-
# instance of an RDS Custom DB instance. The instance profile must
|
25694
|
-
# meet the following requirements:
|
25723
|
+
# @!attribute [rw] network_type
|
25724
|
+
# The network type of the DB instance.
|
25695
25725
|
#
|
25696
|
-
#
|
25726
|
+
# Valid Values:
|
25697
25727
|
#
|
25698
|
-
# *
|
25699
|
-
# to assume.
|
25728
|
+
# * `IPV4`
|
25700
25729
|
#
|
25701
|
-
# *
|
25702
|
-
# start with the prefix `AWSRDSCustom`.
|
25730
|
+
# * `DUAL`
|
25703
25731
|
#
|
25704
|
-
#
|
25705
|
-
#
|
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`).
|
25706
25735
|
#
|
25707
|
-
#
|
25736
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
25737
|
+
# in the *Amazon RDS User Guide.*
|
25708
25738
|
#
|
25709
25739
|
#
|
25710
25740
|
#
|
25711
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
25741
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
25712
25742
|
# @return [String]
|
25713
25743
|
#
|
25714
25744
|
# @!attribute [rw] backup_target
|
@@ -25727,31 +25757,41 @@ module Aws::RDS
|
|
25727
25757
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
25728
25758
|
# @return [String]
|
25729
25759
|
#
|
25730
|
-
# @!attribute [rw]
|
25731
|
-
# 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:
|
25732
25764
|
#
|
25733
|
-
#
|
25765
|
+
# * The profile must exist in your account.
|
25734
25766
|
#
|
25735
|
-
# *
|
25767
|
+
# * The profile must have an IAM role that Amazon EC2 has permissions
|
25768
|
+
# to assume.
|
25736
25769
|
#
|
25737
|
-
# *
|
25770
|
+
# * The instance profile name and the associated IAM role name must
|
25771
|
+
# start with the prefix `AWSRDSCustom`.
|
25738
25772
|
#
|
25739
|
-
#
|
25740
|
-
#
|
25741
|
-
# 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*.
|
25742
25775
|
#
|
25743
|
-
#
|
25744
|
-
# in the *Amazon RDS User Guide.*
|
25776
|
+
# This setting is required for RDS Custom.
|
25745
25777
|
#
|
25746
25778
|
#
|
25747
25779
|
#
|
25748
|
-
# [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
|
25749
25781
|
# @return [String]
|
25750
25782
|
#
|
25751
|
-
# @!attribute [rw]
|
25752
|
-
#
|
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.
|
25753
25787
|
#
|
25754
|
-
# 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>
|
25755
25795
|
# @return [Integer]
|
25756
25796
|
#
|
25757
25797
|
# @!attribute [rw] db_cluster_snapshot_identifier
|
@@ -25780,20 +25820,6 @@ module Aws::RDS
|
|
25780
25820
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
|
25781
25821
|
# @return [String]
|
25782
25822
|
#
|
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.
|
25787
|
-
#
|
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>
|
25795
|
-
# @return [Integer]
|
25796
|
-
#
|
25797
25823
|
# @!attribute [rw] dedicated_log_volume
|
25798
25824
|
# Specifies whether to enable a dedicated log volume (DLV) for the DB
|
25799
25825
|
# instance.
|
@@ -25909,6 +25935,7 @@ module Aws::RDS
|
|
25909
25935
|
:db_name,
|
25910
25936
|
:engine,
|
25911
25937
|
:iops,
|
25938
|
+
:storage_throughput,
|
25912
25939
|
:option_group_name,
|
25913
25940
|
:tags,
|
25914
25941
|
:storage_type,
|
@@ -25929,18 +25956,17 @@ module Aws::RDS
|
|
25929
25956
|
:db_parameter_group_name,
|
25930
25957
|
:deletion_protection,
|
25931
25958
|
:enable_customer_owned_ip,
|
25932
|
-
:custom_iam_instance_profile,
|
25933
|
-
:backup_target,
|
25934
25959
|
:network_type,
|
25935
|
-
:
|
25936
|
-
:
|
25960
|
+
:backup_target,
|
25961
|
+
:custom_iam_instance_profile,
|
25937
25962
|
:allocated_storage,
|
25963
|
+
:db_cluster_snapshot_identifier,
|
25938
25964
|
:dedicated_log_volume,
|
25939
25965
|
:ca_certificate_identifier,
|
25940
25966
|
:engine_lifecycle_support,
|
25941
25967
|
:manage_master_user_password,
|
25942
25968
|
:master_user_secret_kms_key_id)
|
25943
|
-
SENSITIVE = []
|
25969
|
+
SENSITIVE = [:tde_credential_password]
|
25944
25970
|
include Aws::Structure
|
25945
25971
|
end
|
25946
25972
|
|
@@ -26206,6 +26232,12 @@ module Aws::RDS
|
|
26206
26232
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
26207
26233
|
# @return [Integer]
|
26208
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
|
+
#
|
26209
26241
|
# @!attribute [rw] option_group_name
|
26210
26242
|
# The name of the option group to associate with this DB instance. If
|
26211
26243
|
# this argument is omitted, the default option group for the specified
|
@@ -26478,12 +26510,6 @@ module Aws::RDS
|
|
26478
26510
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
26479
26511
|
# @return [String]
|
26480
26512
|
#
|
26481
|
-
# @!attribute [rw] storage_throughput
|
26482
|
-
# Specifies the storage throughput value for the DB instance.
|
26483
|
-
#
|
26484
|
-
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
26485
|
-
# @return [Integer]
|
26486
|
-
#
|
26487
26513
|
# @!attribute [rw] manage_master_user_password
|
26488
26514
|
# Specifies whether to manage the master user password with Amazon Web
|
26489
26515
|
# Services Secrets Manager.
|
@@ -26608,6 +26634,7 @@ module Aws::RDS
|
|
26608
26634
|
:auto_minor_version_upgrade,
|
26609
26635
|
:license_model,
|
26610
26636
|
:iops,
|
26637
|
+
:storage_throughput,
|
26611
26638
|
:option_group_name,
|
26612
26639
|
:publicly_accessible,
|
26613
26640
|
:tags,
|
@@ -26633,13 +26660,12 @@ module Aws::RDS
|
|
26633
26660
|
:deletion_protection,
|
26634
26661
|
:max_allocated_storage,
|
26635
26662
|
:network_type,
|
26636
|
-
:storage_throughput,
|
26637
26663
|
:manage_master_user_password,
|
26638
26664
|
:master_user_secret_kms_key_id,
|
26639
26665
|
:dedicated_log_volume,
|
26640
26666
|
:ca_certificate_identifier,
|
26641
26667
|
:engine_lifecycle_support)
|
26642
|
-
SENSITIVE = []
|
26668
|
+
SENSITIVE = [:master_user_password]
|
26643
26669
|
include Aws::Structure
|
26644
26670
|
end
|
26645
26671
|
|
@@ -26915,6 +26941,12 @@ module Aws::RDS
|
|
26915
26941
|
# ^
|
26916
26942
|
# @return [Integer]
|
26917
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
|
+
#
|
26918
26950
|
# @!attribute [rw] option_group_name
|
26919
26951
|
# The name of the option group to use for the restored DB instance.
|
26920
26952
|
#
|
@@ -27155,14 +27187,6 @@ module Aws::RDS
|
|
27155
27187
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.Autoscaling
|
27156
27188
|
# @return [Integer]
|
27157
27189
|
#
|
27158
|
-
# @!attribute [rw] source_db_instance_automated_backups_arn
|
27159
|
-
# The Amazon Resource Name (ARN) of the replicated automated backups
|
27160
|
-
# from which to restore, for example,
|
27161
|
-
# `arn:aws:rds:us-east-1:123456789012:auto-backup:ab-L2IJCEXJP7XQ7HOJ4SIEXAMPLE`.
|
27162
|
-
#
|
27163
|
-
# This setting doesn't apply to RDS Custom.
|
27164
|
-
# @return [String]
|
27165
|
-
#
|
27166
27190
|
# @!attribute [rw] enable_customer_owned_ip
|
27167
27191
|
# Specifies whether to enable a customer-owned IP address (CoIP) for
|
27168
27192
|
# an RDS on Outposts DB instance.
|
@@ -27188,27 +27212,33 @@ module Aws::RDS
|
|
27188
27212
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
|
27189
27213
|
# @return [Boolean]
|
27190
27214
|
#
|
27191
|
-
# @!attribute [rw]
|
27192
|
-
# The
|
27193
|
-
# instance of an RDS Custom DB instance. The instance profile must
|
27194
|
-
# meet the following requirements:
|
27215
|
+
# @!attribute [rw] network_type
|
27216
|
+
# The network type of the DB instance.
|
27195
27217
|
#
|
27196
|
-
#
|
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`).
|
27197
27221
|
#
|
27198
|
-
#
|
27199
|
-
#
|
27222
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
27223
|
+
# in the *Amazon RDS User Guide.*
|
27200
27224
|
#
|
27201
|
-
#
|
27202
|
-
# start with the prefix `AWSRDSCustom`.
|
27225
|
+
# Valid Values:
|
27203
27226
|
#
|
27204
|
-
#
|
27205
|
-
# Configure IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
27227
|
+
# * `IPV4`
|
27206
27228
|
#
|
27207
|
-
#
|
27229
|
+
# * `DUAL`
|
27208
27230
|
#
|
27209
27231
|
#
|
27210
27232
|
#
|
27211
|
-
# [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.
|
27212
27242
|
# @return [String]
|
27213
27243
|
#
|
27214
27244
|
# @!attribute [rw] backup_target
|
@@ -27233,33 +27263,29 @@ module Aws::RDS
|
|
27233
27263
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
27234
27264
|
# @return [String]
|
27235
27265
|
#
|
27236
|
-
# @!attribute [rw]
|
27237
|
-
# 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:
|
27238
27270
|
#
|
27239
|
-
# The
|
27240
|
-
# the DB instance. A `DBSubnetGroup` can support only the IPv4
|
27241
|
-
# protocol or the IPv4 and the IPv6 protocols (`DUAL`).
|
27271
|
+
# * The profile must exist in your account.
|
27242
27272
|
#
|
27243
|
-
#
|
27244
|
-
#
|
27273
|
+
# * The profile must have an IAM role that Amazon EC2 has permissions
|
27274
|
+
# to assume.
|
27245
27275
|
#
|
27246
|
-
#
|
27276
|
+
# * The instance profile name and the associated IAM role name must
|
27277
|
+
# start with the prefix `AWSRDSCustom`.
|
27247
27278
|
#
|
27248
|
-
#
|
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*.
|
27249
27281
|
#
|
27250
|
-
#
|
27282
|
+
# This setting is required for RDS Custom.
|
27251
27283
|
#
|
27252
27284
|
#
|
27253
27285
|
#
|
27254
|
-
# [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
|
27255
27287
|
# @return [String]
|
27256
27288
|
#
|
27257
|
-
# @!attribute [rw] storage_throughput
|
27258
|
-
# The storage throughput value for the DB instance.
|
27259
|
-
#
|
27260
|
-
# This setting doesn't apply to RDS Custom or Amazon Aurora.
|
27261
|
-
# @return [Integer]
|
27262
|
-
#
|
27263
27289
|
# @!attribute [rw] allocated_storage
|
27264
27290
|
# The amount of storage (in gibibytes) to allocate initially for the
|
27265
27291
|
# DB instance. Follow the allocation rules specified in
|
@@ -27391,6 +27417,7 @@ module Aws::RDS
|
|
27391
27417
|
:db_name,
|
27392
27418
|
:engine,
|
27393
27419
|
:iops,
|
27420
|
+
:storage_throughput,
|
27394
27421
|
:option_group_name,
|
27395
27422
|
:copy_tags_to_snapshot,
|
27396
27423
|
:tags,
|
@@ -27412,19 +27439,18 @@ module Aws::RDS
|
|
27412
27439
|
:deletion_protection,
|
27413
27440
|
:source_dbi_resource_id,
|
27414
27441
|
:max_allocated_storage,
|
27415
|
-
:source_db_instance_automated_backups_arn,
|
27416
27442
|
:enable_customer_owned_ip,
|
27417
|
-
:custom_iam_instance_profile,
|
27418
|
-
:backup_target,
|
27419
27443
|
:network_type,
|
27420
|
-
:
|
27444
|
+
:source_db_instance_automated_backups_arn,
|
27445
|
+
:backup_target,
|
27446
|
+
:custom_iam_instance_profile,
|
27421
27447
|
:allocated_storage,
|
27422
27448
|
:dedicated_log_volume,
|
27423
27449
|
:ca_certificate_identifier,
|
27424
27450
|
:engine_lifecycle_support,
|
27425
27451
|
:manage_master_user_password,
|
27426
27452
|
:master_user_secret_kms_key_id)
|
27427
|
-
SENSITIVE = []
|
27453
|
+
SENSITIVE = [:tde_credential_password]
|
27428
27454
|
include Aws::Structure
|
27429
27455
|
end
|
27430
27456
|
|
@@ -28004,17 +28030,17 @@ module Aws::RDS
|
|
28004
28030
|
# The mode of the database activity stream.
|
28005
28031
|
# @return [String]
|
28006
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
|
+
#
|
28007
28038
|
# @!attribute [rw] apply_immediately
|
28008
28039
|
# Indicates whether or not the database activity stream will start as
|
28009
28040
|
# soon as possible, regardless of the maintenance window for the
|
28010
28041
|
# database.
|
28011
28042
|
# @return [Boolean]
|
28012
28043
|
#
|
28013
|
-
# @!attribute [rw] engine_native_audit_fields_included
|
28014
|
-
# Indicates whether engine-native audit fields are included in the
|
28015
|
-
# database activity stream.
|
28016
|
-
# @return [Boolean]
|
28017
|
-
#
|
28018
28044
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartActivityStreamResponse AWS API Documentation
|
28019
28045
|
#
|
28020
28046
|
class StartActivityStreamResponse < Struct.new(
|
@@ -28022,8 +28048,8 @@ module Aws::RDS
|
|
28022
28048
|
:kinesis_stream_name,
|
28023
28049
|
:status,
|
28024
28050
|
:mode,
|
28025
|
-
:
|
28026
|
-
:
|
28051
|
+
:engine_native_audit_fields_included,
|
28052
|
+
:apply_immediately)
|
28027
28053
|
SENSITIVE = []
|
28028
28054
|
include Aws::Structure
|
28029
28055
|
end
|
@@ -28143,7 +28169,7 @@ module Aws::RDS
|
|
28143
28169
|
:kms_key_id,
|
28144
28170
|
:pre_signed_url,
|
28145
28171
|
:source_region)
|
28146
|
-
SENSITIVE = []
|
28172
|
+
SENSITIVE = [:pre_signed_url]
|
28147
28173
|
include Aws::Structure
|
28148
28174
|
end
|
28149
28175
|
|
@@ -29293,11 +29319,6 @@ module Aws::RDS
|
|
29293
29319
|
# be between 3 and 10 times storage.
|
29294
29320
|
# @return [Array<Types::DoubleRange>]
|
29295
29321
|
#
|
29296
|
-
# @!attribute [rw] supports_storage_autoscaling
|
29297
|
-
# Indicates whether or not Amazon RDS can automatically scale storage
|
29298
|
-
# for DB instances that use the new instance class.
|
29299
|
-
# @return [Boolean]
|
29300
|
-
#
|
29301
29322
|
# @!attribute [rw] provisioned_storage_throughput
|
29302
29323
|
# The valid range of provisioned storage throughput. For example,
|
29303
29324
|
# 500-4,000 mebibytes per second (MiBps).
|
@@ -29308,6 +29329,11 @@ module Aws::RDS
|
|
29308
29329
|
# For example, 0-0.25.
|
29309
29330
|
# @return [Array<Types::DoubleRange>]
|
29310
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
|
+
#
|
29311
29337
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ValidStorageOptions AWS API Documentation
|
29312
29338
|
#
|
29313
29339
|
class ValidStorageOptions < Struct.new(
|
@@ -29315,9 +29341,9 @@ module Aws::RDS
|
|
29315
29341
|
:storage_size,
|
29316
29342
|
:provisioned_iops,
|
29317
29343
|
:iops_to_storage_ratio,
|
29318
|
-
:supports_storage_autoscaling,
|
29319
29344
|
:provisioned_storage_throughput,
|
29320
|
-
:storage_throughput_to_iops_ratio
|
29345
|
+
:storage_throughput_to_iops_ratio,
|
29346
|
+
:supports_storage_autoscaling)
|
29321
29347
|
SENSITIVE = []
|
29322
29348
|
include Aws::Structure
|
29323
29349
|
end
|