aws-sdk-rds 1.195.0 → 1.196.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/certificate.rb +2 -1
- data/lib/aws-sdk-rds/client.rb +320 -319
- data/lib/aws-sdk-rds/db_cluster.rb +37 -38
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +3 -4
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +45 -50
- data/lib/aws-sdk-rds/db_engine.rb +12 -15
- data/lib/aws-sdk-rds/db_engine_version.rb +14 -14
- data/lib/aws-sdk-rds/db_instance.rb +101 -104
- data/lib/aws-sdk-rds/db_parameter_group.rb +3 -3
- data/lib/aws-sdk-rds/db_snapshot.rb +33 -30
- data/lib/aws-sdk-rds/event_subscription.rb +5 -5
- data/lib/aws-sdk-rds/option_group.rb +2 -3
- data/lib/aws-sdk-rds/option_group_option.rb +2 -2
- data/lib/aws-sdk-rds/parameter.rb +2 -2
- data/lib/aws-sdk-rds/reserved_db_instance.rb +1 -1
- data/lib/aws-sdk-rds/reserved_db_instances_offering.rb +1 -1
- data/lib/aws-sdk-rds/resource.rb +30 -32
- data/lib/aws-sdk-rds/types.rb +494 -494
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
@@ -461,7 +461,7 @@ module Aws::RDS
|
|
461
461
|
data[:global_write_forwarding_status]
|
462
462
|
end
|
463
463
|
|
464
|
-
#
|
464
|
+
# Indicates whether write forwarding is enabled for a secondary cluster
|
465
465
|
# in an Aurora global database. Because write forwarding takes time to
|
466
466
|
# enable, check the value of `GlobalWriteForwardingStatus` to confirm
|
467
467
|
# that the request has completed before using the write forwarding
|
@@ -654,7 +654,7 @@ module Aws::RDS
|
|
654
654
|
data[:io_optimized_next_allowed_modification_time]
|
655
655
|
end
|
656
656
|
|
657
|
-
#
|
657
|
+
# Indicates whether an Aurora DB cluster has in-cluster write forwarding
|
658
658
|
# enabled, not enabled, requested, or is in the process of enabling it.
|
659
659
|
# @return [String]
|
660
660
|
def local_write_forwarding_status
|
@@ -1678,12 +1678,12 @@ module Aws::RDS
|
|
1678
1678
|
# })
|
1679
1679
|
# @param [Hash] options ({})
|
1680
1680
|
# @option options [Boolean] :skip_final_snapshot
|
1681
|
-
#
|
1682
|
-
#
|
1683
|
-
#
|
1684
|
-
#
|
1685
|
-
#
|
1686
|
-
#
|
1681
|
+
# Specifies whether to skip the creation of a final DB cluster snapshot
|
1682
|
+
# before the DB cluster is deleted. If skip is specified, no DB cluster
|
1683
|
+
# snapshot is created. If skip isn't specified, a DB cluster snapshot
|
1684
|
+
# is created before the DB cluster is deleted. By default, skip isn't
|
1685
|
+
# specified, and the DB cluster snapshot is created. By default, this
|
1686
|
+
# parameter is disabled.
|
1687
1687
|
#
|
1688
1688
|
# <note markdown="1"> You must specify a `FinalDBSnapshotIdentifier` parameter if
|
1689
1689
|
# `SkipFinalSnapshot` is disabled.
|
@@ -1707,10 +1707,10 @@ module Aws::RDS
|
|
1707
1707
|
#
|
1708
1708
|
# * Can't end with a hyphen or contain two consecutive hyphens
|
1709
1709
|
# @option options [Boolean] :delete_automated_backups
|
1710
|
-
#
|
1711
|
-
#
|
1712
|
-
#
|
1713
|
-
#
|
1710
|
+
# Specifies whether to remove automated backups immediately after the DB
|
1711
|
+
# cluster is deleted. This parameter isn't case-sensitive. The default
|
1712
|
+
# is to remove automated backups immediately after the DB cluster is
|
1713
|
+
# deleted.
|
1714
1714
|
# @return [DBCluster]
|
1715
1715
|
def delete(options = {})
|
1716
1716
|
options = options.merge(db_cluster_identifier: @id)
|
@@ -2535,9 +2535,9 @@ module Aws::RDS
|
|
2535
2535
|
#
|
2536
2536
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2537
2537
|
# @option options [Boolean] :use_latest_restorable_time
|
2538
|
-
#
|
2539
|
-
#
|
2540
|
-
#
|
2538
|
+
# Specifies whether to restore the DB cluster to the latest restorable
|
2539
|
+
# backup time. By default, the DB cluster isn't restored to the latest
|
2540
|
+
# restorable backup time.
|
2541
2541
|
#
|
2542
2542
|
# Constraints: Can't be specified if `RestoreToTime` parameter is
|
2543
2543
|
# provided.
|
@@ -2605,9 +2605,9 @@ module Aws::RDS
|
|
2605
2605
|
#
|
2606
2606
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2607
2607
|
# @option options [Boolean] :enable_iam_database_authentication
|
2608
|
-
#
|
2609
|
-
#
|
2610
|
-
#
|
2608
|
+
# Specifies whether to enable mapping of Amazon Web Services Identity
|
2609
|
+
# and Access Management (IAM) accounts to database accounts. By default,
|
2610
|
+
# mapping isn't enabled.
|
2611
2611
|
#
|
2612
2612
|
# For more information, see [ IAM Database Authentication][1] in the
|
2613
2613
|
# *Amazon Aurora User Guide*.
|
@@ -2686,20 +2686,19 @@ module Aws::RDS
|
|
2686
2686
|
#
|
2687
2687
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2688
2688
|
# @option options [Boolean] :deletion_protection
|
2689
|
-
#
|
2690
|
-
#
|
2691
|
-
#
|
2689
|
+
# Specifies whether to enable deletion protection for the DB cluster.
|
2690
|
+
# The database can't be deleted when deletion protection is enabled. By
|
2691
|
+
# default, deletion protection isn't enabled.
|
2692
2692
|
#
|
2693
2693
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2694
2694
|
# @option options [Boolean] :copy_tags_to_snapshot
|
2695
|
-
#
|
2696
|
-
#
|
2697
|
-
# copy them.
|
2695
|
+
# Specifies whether to copy all tags from the restored DB cluster to
|
2696
|
+
# snapshots of the restored DB cluster. The default is not to copy them.
|
2698
2697
|
#
|
2699
2698
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2700
2699
|
# @option options [String] :domain
|
2701
|
-
#
|
2702
|
-
#
|
2700
|
+
# The Active Directory directory ID to restore the DB cluster in. The
|
2701
|
+
# domain must be created prior to this operation.
|
2703
2702
|
#
|
2704
2703
|
# For Amazon Aurora DB clusters, Amazon RDS can use Kerberos
|
2705
2704
|
# Authentication to authenticate users that connect to the DB cluster.
|
@@ -2712,8 +2711,8 @@ module Aws::RDS
|
|
2712
2711
|
#
|
2713
2712
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/kerberos-authentication.html
|
2714
2713
|
# @option options [String] :domain_iam_role_name
|
2715
|
-
#
|
2716
|
-
#
|
2714
|
+
# The name of the IAM role to be used when making API calls to the
|
2715
|
+
# Directory Service.
|
2717
2716
|
#
|
2718
2717
|
# Valid for: Aurora DB clusters only
|
2719
2718
|
# @option options [Types::ScalingConfiguration] :scaling_configuration
|
@@ -2751,14 +2750,14 @@ module Aws::RDS
|
|
2751
2750
|
# When specified for a Multi-AZ DB cluster, a value for the `Iops`
|
2752
2751
|
# parameter is required.
|
2753
2752
|
#
|
2754
|
-
# Valid
|
2753
|
+
# Valid Values: `aurora`, `aurora-iopt1` (Aurora DB clusters); `io1`
|
2755
2754
|
# (Multi-AZ DB clusters)
|
2756
2755
|
#
|
2757
2756
|
# Default: `aurora` (Aurora DB clusters); `io1` (Multi-AZ DB clusters)
|
2758
2757
|
#
|
2759
2758
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2760
2759
|
# @option options [Boolean] :publicly_accessible
|
2761
|
-
#
|
2760
|
+
# Specifies whether the DB cluster is publicly accessible.
|
2762
2761
|
#
|
2763
2762
|
# When the DB cluster is publicly accessible, its Domain Name System
|
2764
2763
|
# (DNS) endpoint resolves to the private IP address from within the DB
|
@@ -2822,7 +2821,7 @@ module Aws::RDS
|
|
2822
2821
|
# @option options [String] :network_type
|
2823
2822
|
# The network type of the DB cluster.
|
2824
2823
|
#
|
2825
|
-
# Valid
|
2824
|
+
# Valid Values:
|
2826
2825
|
#
|
2827
2826
|
# * `IPV4`
|
2828
2827
|
#
|
@@ -3035,18 +3034,18 @@ module Aws::RDS
|
|
3035
3034
|
#
|
3036
3035
|
# * `engine` - Accepts names of database engines.
|
3037
3036
|
# @option options [Boolean] :include_shared
|
3038
|
-
#
|
3039
|
-
#
|
3040
|
-
#
|
3041
|
-
#
|
3037
|
+
# Specifies whether to include shared manual DB cluster snapshots from
|
3038
|
+
# other Amazon Web Services accounts that this Amazon Web Services
|
3039
|
+
# account has been given permission to copy or restore. By default,
|
3040
|
+
# these snapshots are not included.
|
3042
3041
|
#
|
3043
3042
|
# You can give an Amazon Web Services account permission to restore a
|
3044
3043
|
# manual DB cluster snapshot from another Amazon Web Services account by
|
3045
3044
|
# the `ModifyDBClusterSnapshotAttribute` API action.
|
3046
3045
|
# @option options [Boolean] :include_public
|
3047
|
-
#
|
3048
|
-
#
|
3049
|
-
#
|
3046
|
+
# Specifies whether to include manual DB cluster snapshots that are
|
3047
|
+
# public and can be copied or restored by any Amazon Web Services
|
3048
|
+
# account. By default, the public snapshots are not included.
|
3050
3049
|
#
|
3051
3050
|
# You can share a manual DB cluster snapshot as public by using the
|
3052
3051
|
# ModifyDBClusterSnapshotAttribute API action.
|
@@ -357,10 +357,9 @@ module Aws::RDS
|
|
357
357
|
# })
|
358
358
|
# @param [Hash] options ({})
|
359
359
|
# @option options [Boolean] :reset_all_parameters
|
360
|
-
#
|
361
|
-
#
|
362
|
-
#
|
363
|
-
# `Parameters` parameter.
|
360
|
+
# Specifies whether to reset all parameters in the DB cluster parameter
|
361
|
+
# group to their default values. You can't use this parameter if there
|
362
|
+
# is a list of parameter names specified for the `Parameters` parameter.
|
364
363
|
# @option options [Array<Types::Parameter>] :parameters
|
365
364
|
# A list of parameter names in the DB cluster parameter group to reset
|
366
365
|
# to the default values. You can't use this parameter if the
|
@@ -44,42 +44,41 @@ module Aws::RDS
|
|
44
44
|
end
|
45
45
|
alias :db_cluster_snapshot_identifier :snapshot_id
|
46
46
|
|
47
|
-
#
|
48
|
-
#
|
47
|
+
# The list of Availability Zones (AZs) where instances in the DB cluster
|
48
|
+
# snapshot can be restored.
|
49
49
|
# @return [Array<String>]
|
50
50
|
def availability_zones
|
51
51
|
data[:availability_zones]
|
52
52
|
end
|
53
53
|
|
54
|
-
#
|
55
|
-
#
|
54
|
+
# The time when the snapshot was taken, in Universal Coordinated Time
|
55
|
+
# (UTC).
|
56
56
|
# @return [Time]
|
57
57
|
def snapshot_create_time
|
58
58
|
data[:snapshot_create_time]
|
59
59
|
end
|
60
60
|
|
61
|
-
#
|
62
|
-
# snapshot.
|
61
|
+
# The name of the database engine for this DB cluster snapshot.
|
63
62
|
# @return [String]
|
64
63
|
def engine
|
65
64
|
data[:engine]
|
66
65
|
end
|
67
66
|
|
68
|
-
#
|
69
|
-
# snapshot.
|
67
|
+
# The engine mode of the database engine for this DB cluster snapshot.
|
70
68
|
# @return [String]
|
71
69
|
def engine_mode
|
72
70
|
data[:engine_mode]
|
73
71
|
end
|
74
72
|
|
75
|
-
#
|
73
|
+
# The allocated storage size of the DB cluster snapshot in gibibytes
|
74
|
+
# (GiB).
|
76
75
|
# @return [Integer]
|
77
76
|
def allocated_storage
|
78
77
|
data[:allocated_storage]
|
79
78
|
end
|
80
79
|
|
81
|
-
#
|
82
|
-
#
|
80
|
+
# The status of this DB cluster snapshot. Valid statuses are the
|
81
|
+
# following:
|
83
82
|
#
|
84
83
|
# * `available`
|
85
84
|
#
|
@@ -91,59 +90,57 @@ module Aws::RDS
|
|
91
90
|
data[:status]
|
92
91
|
end
|
93
92
|
|
94
|
-
#
|
95
|
-
#
|
93
|
+
# The port that the DB cluster was listening on at the time of the
|
94
|
+
# snapshot.
|
96
95
|
# @return [Integer]
|
97
96
|
def port
|
98
97
|
data[:port]
|
99
98
|
end
|
100
99
|
|
101
|
-
#
|
100
|
+
# The VPC ID associated with the DB cluster snapshot.
|
102
101
|
# @return [String]
|
103
102
|
def vpc_id
|
104
103
|
data[:vpc_id]
|
105
104
|
end
|
106
105
|
|
107
|
-
#
|
108
|
-
#
|
106
|
+
# The time when the DB cluster was created, in Universal Coordinated
|
107
|
+
# Time (UTC).
|
109
108
|
# @return [Time]
|
110
109
|
def cluster_create_time
|
111
110
|
data[:cluster_create_time]
|
112
111
|
end
|
113
112
|
|
114
|
-
#
|
113
|
+
# The master username for this DB cluster snapshot.
|
115
114
|
# @return [String]
|
116
115
|
def master_username
|
117
116
|
data[:master_username]
|
118
117
|
end
|
119
118
|
|
120
|
-
#
|
121
|
-
# snapshot.
|
119
|
+
# The version of the database engine for this DB cluster snapshot.
|
122
120
|
# @return [String]
|
123
121
|
def engine_version
|
124
122
|
data[:engine_version]
|
125
123
|
end
|
126
124
|
|
127
|
-
#
|
125
|
+
# The license model information for this DB cluster snapshot.
|
128
126
|
# @return [String]
|
129
127
|
def license_model
|
130
128
|
data[:license_model]
|
131
129
|
end
|
132
130
|
|
133
|
-
#
|
131
|
+
# The type of the DB cluster snapshot.
|
134
132
|
# @return [String]
|
135
133
|
def snapshot_type
|
136
134
|
data[:snapshot_type]
|
137
135
|
end
|
138
136
|
|
139
|
-
#
|
140
|
-
# transferred.
|
137
|
+
# The percentage of the estimated data that has been transferred.
|
141
138
|
# @return [Integer]
|
142
139
|
def percent_progress
|
143
140
|
data[:percent_progress]
|
144
141
|
end
|
145
142
|
|
146
|
-
#
|
143
|
+
# Indicates whether the DB cluster snapshot is encrypted.
|
147
144
|
# @return [Boolean]
|
148
145
|
def storage_encrypted
|
149
146
|
data[:storage_encrypted]
|
@@ -159,7 +156,7 @@ module Aws::RDS
|
|
159
156
|
data[:kms_key_id]
|
160
157
|
end
|
161
158
|
|
162
|
-
#
|
159
|
+
# The Amazon Resource Name (ARN) for the DB cluster snapshot.
|
163
160
|
# @return [String]
|
164
161
|
def db_cluster_snapshot_arn
|
165
162
|
data[:db_cluster_snapshot_arn]
|
@@ -173,8 +170,8 @@ module Aws::RDS
|
|
173
170
|
data[:source_db_cluster_snapshot_arn]
|
174
171
|
end
|
175
172
|
|
176
|
-
#
|
177
|
-
# (IAM) accounts to database accounts is enabled
|
173
|
+
# Indicates whether mapping of Amazon Web Services Identity and Access
|
174
|
+
# Management (IAM) accounts to database accounts is enabled.
|
178
175
|
# @return [Boolean]
|
179
176
|
def iam_database_authentication_enabled
|
180
177
|
data[:iam_database_authentication_enabled]
|
@@ -205,8 +202,8 @@ module Aws::RDS
|
|
205
202
|
data[:storage_type]
|
206
203
|
end
|
207
204
|
|
208
|
-
#
|
209
|
-
#
|
205
|
+
# The resource ID of the DB cluster that this DB cluster snapshot was
|
206
|
+
# created from.
|
210
207
|
# @return [String]
|
211
208
|
def db_cluster_resource_id
|
212
209
|
data[:db_cluster_resource_id]
|
@@ -490,9 +487,8 @@ module Aws::RDS
|
|
490
487
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
491
488
|
# [2]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
492
489
|
# @option options [Boolean] :copy_tags
|
493
|
-
#
|
494
|
-
#
|
495
|
-
# are not copied.
|
490
|
+
# Specifies whether to copy all tags from the source DB cluster snapshot
|
491
|
+
# to the target DB cluster snapshot. By default, tags are not copied.
|
496
492
|
# @option options [Array<Types::Tag>] :tags
|
497
493
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
498
494
|
# Resources][1] in the *Amazon RDS User Guide.*
|
@@ -721,9 +717,9 @@ module Aws::RDS
|
|
721
717
|
#
|
722
718
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
723
719
|
# @option options [Boolean] :enable_iam_database_authentication
|
724
|
-
#
|
725
|
-
#
|
726
|
-
#
|
720
|
+
# Specifies whether to enable mapping of Amazon Web Services Identity
|
721
|
+
# and Access Management (IAM) accounts to database accounts. By default,
|
722
|
+
# mapping isn't enabled.
|
727
723
|
#
|
728
724
|
# For more information, see [ IAM Database Authentication][1] in the
|
729
725
|
# *Amazon Aurora User Guide*.
|
@@ -820,22 +816,21 @@ module Aws::RDS
|
|
820
816
|
#
|
821
817
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
822
818
|
# @option options [Boolean] :deletion_protection
|
823
|
-
#
|
824
|
-
#
|
825
|
-
#
|
819
|
+
# Specifies whether to enable deletion protection for the DB cluster.
|
820
|
+
# The database can't be deleted when deletion protection is enabled. By
|
821
|
+
# default, deletion protection isn't enabled.
|
826
822
|
#
|
827
823
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
828
824
|
# @option options [Boolean] :copy_tags_to_snapshot
|
829
|
-
#
|
830
|
-
#
|
831
|
-
# copy them.
|
825
|
+
# Specifies whether to copy all tags from the restored DB cluster to
|
826
|
+
# snapshots of the restored DB cluster. The default is not to copy them.
|
832
827
|
#
|
833
828
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
834
829
|
# @option options [String] :domain
|
835
|
-
#
|
836
|
-
#
|
837
|
-
#
|
838
|
-
#
|
830
|
+
# The Active Directory directory ID to restore the DB cluster in. The
|
831
|
+
# domain must be created prior to this operation. Currently, only MySQL,
|
832
|
+
# Microsoft SQL Server, Oracle, and PostgreSQL DB instances can be
|
833
|
+
# created in an Active Directory Domain.
|
839
834
|
#
|
840
835
|
# For more information, see [ Kerberos Authentication][1] in the *Amazon
|
841
836
|
# RDS User Guide*.
|
@@ -846,8 +841,8 @@ module Aws::RDS
|
|
846
841
|
#
|
847
842
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html
|
848
843
|
# @option options [String] :domain_iam_role_name
|
849
|
-
#
|
850
|
-
#
|
844
|
+
# The name of the IAM role to be used when making API calls to the
|
845
|
+
# Directory Service.
|
851
846
|
#
|
852
847
|
# Valid for: Aurora DB clusters only
|
853
848
|
# @option options [String] :db_cluster_instance_class
|
@@ -870,7 +865,7 @@ module Aws::RDS
|
|
870
865
|
# When specified for a Multi-AZ DB cluster, a value for the `Iops`
|
871
866
|
# parameter is required.
|
872
867
|
#
|
873
|
-
# Valid
|
868
|
+
# Valid Values: `aurora`, `aurora-iopt1` (Aurora DB clusters); `io1`
|
874
869
|
# (Multi-AZ DB clusters)
|
875
870
|
#
|
876
871
|
# Default: `aurora` (Aurora DB clusters); `io1` (Multi-AZ DB clusters)
|
@@ -893,7 +888,7 @@ module Aws::RDS
|
|
893
888
|
#
|
894
889
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
895
890
|
# @option options [Boolean] :publicly_accessible
|
896
|
-
#
|
891
|
+
# Specifies whether the DB cluster is publicly accessible.
|
897
892
|
#
|
898
893
|
# When the DB cluster is publicly accessible, its Domain Name System
|
899
894
|
# (DNS) endpoint resolves to the private IP address from within the DB
|
@@ -941,7 +936,7 @@ module Aws::RDS
|
|
941
936
|
# @option options [String] :network_type
|
942
937
|
# The network type of the DB cluster.
|
943
938
|
#
|
944
|
-
# Valid
|
939
|
+
# Valid Values:
|
945
940
|
#
|
946
941
|
# * `IPV4`
|
947
942
|
#
|
@@ -274,7 +274,7 @@ module Aws::RDS
|
|
274
274
|
# })
|
275
275
|
# @param [Hash] options ({})
|
276
276
|
# @option options [String] :engine_version
|
277
|
-
#
|
277
|
+
# A specific database engine version to return details for.
|
278
278
|
#
|
279
279
|
# Example: `5.1.49`
|
280
280
|
# @option options [String] :db_parameter_group_family
|
@@ -283,7 +283,7 @@ module Aws::RDS
|
|
283
283
|
#
|
284
284
|
# Constraints:
|
285
285
|
#
|
286
|
-
# * If supplied, must match an existing
|
286
|
+
# * If supplied, must match an existing DB parameter group family.
|
287
287
|
#
|
288
288
|
# ^
|
289
289
|
# @option options [Array<Types::Filter>] :filters
|
@@ -324,34 +324,31 @@ module Aws::RDS
|
|
324
324
|
#
|
325
325
|
# * `deprecated`
|
326
326
|
# @option options [Boolean] :default_only
|
327
|
-
#
|
328
|
-
#
|
327
|
+
# Specifies whether to return only the default version of the specified
|
328
|
+
# engine or the engine and major version combination.
|
329
329
|
# @option options [Boolean] :list_supported_character_sets
|
330
|
-
#
|
331
|
-
#
|
330
|
+
# Specifies whether to list the supported character sets for each engine
|
331
|
+
# version.
|
332
332
|
#
|
333
333
|
# If this parameter is enabled and the requested engine supports the
|
334
334
|
# `CharacterSetName` parameter for `CreateDBInstance`, the response
|
335
335
|
# includes a list of supported character sets for each engine version.
|
336
336
|
#
|
337
337
|
# For RDS Custom, the default is not to list supported character sets.
|
338
|
-
# If you
|
339
|
-
# no results.
|
338
|
+
# If you enable this parameter, RDS Custom returns no results.
|
340
339
|
# @option options [Boolean] :list_supported_timezones
|
341
|
-
#
|
342
|
-
#
|
340
|
+
# Specifies whether to list the supported time zones for each engine
|
341
|
+
# version.
|
343
342
|
#
|
344
343
|
# If this parameter is enabled and the requested engine supports the
|
345
344
|
# `TimeZone` parameter for `CreateDBInstance`, the response includes a
|
346
345
|
# list of supported time zones for each engine version.
|
347
346
|
#
|
348
347
|
# For RDS Custom, the default is not to list supported time zones. If
|
349
|
-
# you
|
350
|
-
# results.
|
348
|
+
# you enable this parameter, RDS Custom returns no results.
|
351
349
|
# @option options [Boolean] :include_all
|
352
|
-
#
|
353
|
-
# available
|
354
|
-
# versions.
|
350
|
+
# Specifies whether to also list the engine versions that aren't
|
351
|
+
# available. The default is to list only available engine versions.
|
355
352
|
# @return [DBEngineVersion::Collection]
|
356
353
|
def versions(options = {})
|
357
354
|
batches = Enumerator.new do |y|
|
@@ -118,8 +118,8 @@ module Aws::RDS
|
|
118
118
|
data[:exportable_log_types]
|
119
119
|
end
|
120
120
|
|
121
|
-
#
|
122
|
-
#
|
121
|
+
# Indicates whether the engine version supports exporting the log types
|
122
|
+
# specified by ExportableLogTypes to CloudWatch Logs.
|
123
123
|
# @return [Boolean]
|
124
124
|
def supports_log_exports_to_cloudwatch_logs
|
125
125
|
data[:supports_log_exports_to_cloudwatch_logs]
|
@@ -167,15 +167,15 @@ module Aws::RDS
|
|
167
167
|
data[:status]
|
168
168
|
end
|
169
169
|
|
170
|
-
#
|
171
|
-
#
|
170
|
+
# Indicates whether you can use Aurora parallel query with a specific DB
|
171
|
+
# engine version.
|
172
172
|
# @return [Boolean]
|
173
173
|
def supports_parallel_query
|
174
174
|
data[:supports_parallel_query]
|
175
175
|
end
|
176
176
|
|
177
|
-
#
|
178
|
-
#
|
177
|
+
# Indicates whether you can use Aurora global databases with a specific
|
178
|
+
# DB engine version.
|
179
179
|
# @return [Boolean]
|
180
180
|
def supports_global_databases
|
181
181
|
data[:supports_global_databases]
|
@@ -231,8 +231,8 @@ module Aws::RDS
|
|
231
231
|
data[:tag_list]
|
232
232
|
end
|
233
233
|
|
234
|
-
#
|
235
|
-
#
|
234
|
+
# Indicates whether the engine version supports Babelfish for Aurora
|
235
|
+
# PostgreSQL.
|
236
236
|
# @return [Boolean]
|
237
237
|
def supports_babelfish
|
238
238
|
data[:supports_babelfish]
|
@@ -254,8 +254,8 @@ module Aws::RDS
|
|
254
254
|
data[:custom_db_engine_version_manifest]
|
255
255
|
end
|
256
256
|
|
257
|
-
#
|
258
|
-
#
|
257
|
+
# Indicates whether the engine version supports rotating the server
|
258
|
+
# certificate without rebooting the DB instance.
|
259
259
|
# @return [Boolean]
|
260
260
|
def supports_certificate_rotation_without_restart
|
261
261
|
data[:supports_certificate_rotation_without_restart]
|
@@ -277,10 +277,10 @@ module Aws::RDS
|
|
277
277
|
data[:supported_ca_certificate_identifiers]
|
278
278
|
end
|
279
279
|
|
280
|
-
#
|
281
|
-
#
|
282
|
-
#
|
283
|
-
#
|
280
|
+
# Indicates whether the DB engine version supports forwarding write
|
281
|
+
# operations from reader DB instances to the writer DB instance in the
|
282
|
+
# DB cluster. By default, write operations aren't allowed on reader DB
|
283
|
+
# instances.
|
284
284
|
#
|
285
285
|
# Valid for: Aurora DB clusters only
|
286
286
|
# @return [Boolean]
|