aws-sdk-rds 1.239.0 → 1.241.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 +162 -66
- data/lib/aws-sdk-rds/client_api.rb +3 -0
- data/lib/aws-sdk-rds/db_cluster.rb +38 -28
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +12 -4
- data/lib/aws-sdk-rds/db_engine_version.rb +6 -2
- data/lib/aws-sdk-rds/db_instance.rb +48 -29
- data/lib/aws-sdk-rds/db_parameter_group.rb +6 -2
- data/lib/aws-sdk-rds/db_snapshot.rb +24 -8
- data/lib/aws-sdk-rds/event_subscription.rb +6 -2
- data/lib/aws-sdk-rds/option_group.rb +6 -2
- data/lib/aws-sdk-rds/reserved_db_instances_offering.rb +6 -2
- data/lib/aws-sdk-rds/resource.rb +22 -16
- data/lib/aws-sdk-rds/types.rb +224 -99
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +7 -1
- data/sig/types.rbs +3 -0
- metadata +2 -2
@@ -455,12 +455,16 @@ module Aws::RDS
|
|
455
455
|
data[:domain_memberships]
|
456
456
|
end
|
457
457
|
|
458
|
-
# A list of tags.
|
459
|
-
#
|
458
|
+
# A list of tags.
|
459
|
+
#
|
460
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
461
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
462
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
460
463
|
#
|
461
464
|
#
|
462
465
|
#
|
463
466
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
467
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
464
468
|
# @return [Array<Types::Tag>]
|
465
469
|
def tag_list
|
466
470
|
data[:tag_list]
|
@@ -515,13 +519,14 @@ module Aws::RDS
|
|
515
519
|
|
516
520
|
# Indicates whether the DB cluster is publicly accessible.
|
517
521
|
#
|
518
|
-
# When the DB cluster is publicly accessible
|
519
|
-
#
|
520
|
-
#
|
521
|
-
#
|
522
|
-
#
|
523
|
-
#
|
524
|
-
#
|
522
|
+
# When the DB cluster is publicly accessible and you connect from
|
523
|
+
# outside of the DB cluster's virtual private cloud (VPC), its Domain
|
524
|
+
# Name System (DNS) endpoint resolves to the public IP address. When you
|
525
|
+
# connect from within the same VPC as the DB cluster, the endpoint
|
526
|
+
# resolves to the private IP address. Access to the DB cluster is
|
527
|
+
# ultimately controlled by the security group it uses. That public
|
528
|
+
# access isn't permitted if the security group assigned to the DB
|
529
|
+
# cluster doesn't permit it.
|
525
530
|
#
|
526
531
|
# When the DB cluster isn't publicly accessible, it is an internal DB
|
527
532
|
# cluster with a DNS name that resolves to a private IP address.
|
@@ -1510,13 +1515,14 @@ module Aws::RDS
|
|
1510
1515
|
# @option options [Boolean] :publicly_accessible
|
1511
1516
|
# Specifies whether the DB cluster is publicly accessible.
|
1512
1517
|
#
|
1513
|
-
# When the DB cluster is publicly accessible
|
1514
|
-
#
|
1515
|
-
#
|
1516
|
-
#
|
1517
|
-
#
|
1518
|
-
#
|
1519
|
-
#
|
1518
|
+
# When the DB cluster is publicly accessible and you connect from
|
1519
|
+
# outside of the DB cluster's virtual private cloud (VPC), its Domain
|
1520
|
+
# Name System (DNS) endpoint resolves to the public IP address. When you
|
1521
|
+
# connect from within the same VPC as the DB cluster, the endpoint
|
1522
|
+
# resolves to the private IP address. Access to the DB cluster is
|
1523
|
+
# ultimately controlled by the security group it uses. That public
|
1524
|
+
# access isn't permitted if the security group assigned to the DB
|
1525
|
+
# cluster doesn't permit it.
|
1520
1526
|
#
|
1521
1527
|
# When the DB cluster isn't publicly accessible, it is an internal DB
|
1522
1528
|
# cluster with a DNS name that resolves to a private IP address.
|
@@ -1820,23 +1826,23 @@ module Aws::RDS
|
|
1820
1826
|
# @param [Hash] options ({})
|
1821
1827
|
# @option options [Boolean] :skip_final_snapshot
|
1822
1828
|
# Specifies whether to skip the creation of a final DB cluster snapshot
|
1823
|
-
# before the DB cluster
|
1824
|
-
#
|
1825
|
-
#
|
1826
|
-
#
|
1827
|
-
#
|
1829
|
+
# before RDS deletes the DB cluster. If you set this value to `true`,
|
1830
|
+
# RDS doesn't create a final DB cluster snapshot. If you set this value
|
1831
|
+
# to `false` or don't specify it, RDS creates a DB cluster snapshot
|
1832
|
+
# before it deletes the DB cluster. By default, this parameter is
|
1833
|
+
# disabled, so RDS creates a final DB cluster snapshot.
|
1828
1834
|
#
|
1829
|
-
# <note markdown="1">
|
1830
|
-
# `
|
1835
|
+
# <note markdown="1"> If `SkipFinalSnapshot` is disabled, you must specify a value for the
|
1836
|
+
# `FinalDBSnapshotIdentifier` parameter.
|
1831
1837
|
#
|
1832
1838
|
# </note>
|
1833
1839
|
# @option options [String] :final_db_snapshot_identifier
|
1834
1840
|
# The DB cluster snapshot identifier of the new DB cluster snapshot
|
1835
1841
|
# created when `SkipFinalSnapshot` is disabled.
|
1836
1842
|
#
|
1837
|
-
# <note markdown="1">
|
1838
|
-
# cluster snapshot with the `SkipFinalShapshot` parameter
|
1839
|
-
# error.
|
1843
|
+
# <note markdown="1"> If you specify this parameter and also skip the creation of a final DB
|
1844
|
+
# cluster snapshot with the `SkipFinalShapshot` parameter, the request
|
1845
|
+
# results in an error.
|
1840
1846
|
#
|
1841
1847
|
# </note>
|
1842
1848
|
#
|
@@ -2743,12 +2749,16 @@ module Aws::RDS
|
|
2743
2749
|
#
|
2744
2750
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
2745
2751
|
# @option options [Array<Types::Tag>] :tags
|
2746
|
-
# A list of tags.
|
2747
|
-
#
|
2752
|
+
# A list of tags.
|
2753
|
+
#
|
2754
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
2755
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
2756
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
2748
2757
|
#
|
2749
2758
|
#
|
2750
2759
|
#
|
2751
2760
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
2761
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
2752
2762
|
# @option options [String] :kms_key_id
|
2753
2763
|
# The Amazon Web Services KMS key identifier to use when restoring an
|
2754
2764
|
# encrypted DB cluster from an encrypted DB cluster.
|
@@ -177,12 +177,16 @@ module Aws::RDS
|
|
177
177
|
data[:iam_database_authentication_enabled]
|
178
178
|
end
|
179
179
|
|
180
|
-
# A list of tags.
|
181
|
-
#
|
180
|
+
# A list of tags.
|
181
|
+
#
|
182
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
183
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
184
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
182
185
|
#
|
183
186
|
#
|
184
187
|
#
|
185
188
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
189
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
186
190
|
# @return [Array<Types::Tag>]
|
187
191
|
def tag_list
|
188
192
|
data[:tag_list]
|
@@ -500,12 +504,16 @@ module Aws::RDS
|
|
500
504
|
# Specifies whether to copy all tags from the source DB cluster snapshot
|
501
505
|
# to the target DB cluster snapshot. By default, tags are not copied.
|
502
506
|
# @option options [Array<Types::Tag>] :tags
|
503
|
-
# A list of tags.
|
504
|
-
#
|
507
|
+
# A list of tags.
|
508
|
+
#
|
509
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
510
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
511
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
505
512
|
#
|
506
513
|
#
|
507
514
|
#
|
508
515
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
516
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
509
517
|
# @option options [String] :source_region
|
510
518
|
# The source region of the snapshot. This is only needed when the
|
511
519
|
# shapshot is encrypted and in a different region.
|
@@ -220,12 +220,16 @@ module Aws::RDS
|
|
220
220
|
data[:create_time]
|
221
221
|
end
|
222
222
|
|
223
|
-
# A list of tags.
|
224
|
-
#
|
223
|
+
# A list of tags.
|
224
|
+
#
|
225
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
226
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
227
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
225
228
|
#
|
226
229
|
#
|
227
230
|
#
|
228
231
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
232
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
229
233
|
# @return [Array<Types::Tag>]
|
230
234
|
def tag_list
|
231
235
|
data[:tag_list]
|
@@ -280,13 +280,14 @@ module Aws::RDS
|
|
280
280
|
|
281
281
|
# Indicates whether the DB instance is publicly accessible.
|
282
282
|
#
|
283
|
-
# When the DB
|
284
|
-
#
|
285
|
-
#
|
286
|
-
#
|
287
|
-
#
|
288
|
-
#
|
289
|
-
#
|
283
|
+
# When the DB instance is publicly accessible and you connect from
|
284
|
+
# outside of the DB instance's virtual private cloud (VPC), its Domain
|
285
|
+
# Name System (DNS) endpoint resolves to the public IP address. When you
|
286
|
+
# connect from within the same VPC as the DB instance, the endpoint
|
287
|
+
# resolves to the private IP address. Access to the DB cluster is
|
288
|
+
# ultimately controlled by the security group it uses. That public
|
289
|
+
# access isn't permitted if the security group assigned to the DB
|
290
|
+
# cluster doesn't permit it.
|
290
291
|
#
|
291
292
|
# When the DB instance isn't publicly accessible, it is an internal DB
|
292
293
|
# instance with a DNS name that resolves to a private IP address.
|
@@ -548,12 +549,16 @@ module Aws::RDS
|
|
548
549
|
data[:max_allocated_storage]
|
549
550
|
end
|
550
551
|
|
551
|
-
# A list of tags.
|
552
|
-
#
|
552
|
+
# A list of tags.
|
553
|
+
#
|
554
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
555
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
556
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
553
557
|
#
|
554
558
|
#
|
555
559
|
#
|
556
560
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
561
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
557
562
|
# @return [Array<Types::Tag>]
|
558
563
|
def tag_list
|
559
564
|
data[:tag_list]
|
@@ -1688,13 +1693,14 @@ module Aws::RDS
|
|
1688
1693
|
# @option options [Boolean] :publicly_accessible
|
1689
1694
|
# Specifies whether the DB instance is publicly accessible.
|
1690
1695
|
#
|
1691
|
-
# When the DB instance is publicly accessible
|
1692
|
-
#
|
1693
|
-
#
|
1694
|
-
#
|
1695
|
-
#
|
1696
|
-
#
|
1697
|
-
#
|
1696
|
+
# When the DB instance is publicly accessible and you connect from
|
1697
|
+
# outside of the DB instance's virtual private cloud (VPC), its Domain
|
1698
|
+
# Name System (DNS) endpoint resolves to the public IP address. When you
|
1699
|
+
# connect from within the same VPC as the DB instance, the endpoint
|
1700
|
+
# resolves to the private IP address. Access to the DB instance is
|
1701
|
+
# ultimately controlled by the security group it uses. That public
|
1702
|
+
# access is not permitted if the security group assigned to the DB
|
1703
|
+
# instance doesn't permit it.
|
1698
1704
|
#
|
1699
1705
|
# When the DB instance isn't publicly accessible, it is an internal DB
|
1700
1706
|
# instance with a DNS name that resolves to a private IP address.
|
@@ -2393,12 +2399,16 @@ module Aws::RDS
|
|
2393
2399
|
#
|
2394
2400
|
# For more information, see CreateDBInstance.
|
2395
2401
|
# @option options [Array<Types::Tag>] :tags
|
2396
|
-
# A list of tags.
|
2397
|
-
#
|
2402
|
+
# A list of tags.
|
2403
|
+
#
|
2404
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
2405
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
2406
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
2398
2407
|
#
|
2399
2408
|
#
|
2400
2409
|
#
|
2401
2410
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
2411
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
2402
2412
|
# @option options [String] :db_subnet_group_name
|
2403
2413
|
# A DB subnet group for the DB instance. The new DB instance is created
|
2404
2414
|
# in the VPC associated with the DB subnet group. If no DB subnet group
|
@@ -2910,12 +2920,16 @@ module Aws::RDS
|
|
2910
2920
|
#
|
2911
2921
|
# Example: `my-snapshot-id`
|
2912
2922
|
# @option options [Array<Types::Tag>] :tags
|
2913
|
-
# A list of tags.
|
2914
|
-
#
|
2923
|
+
# A list of tags.
|
2924
|
+
#
|
2925
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
2926
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
2927
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
2915
2928
|
#
|
2916
2929
|
#
|
2917
2930
|
#
|
2918
2931
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
2932
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
2919
2933
|
# @return [DBSnapshot]
|
2920
2934
|
def create_snapshot(options = {})
|
2921
2935
|
options = options.merge(db_instance_identifier: @id)
|
@@ -3675,13 +3689,14 @@ module Aws::RDS
|
|
3675
3689
|
# @option options [Boolean] :publicly_accessible
|
3676
3690
|
# Specifies whether the DB instance is publicly accessible.
|
3677
3691
|
#
|
3678
|
-
# When the DB
|
3679
|
-
#
|
3680
|
-
#
|
3681
|
-
#
|
3682
|
-
#
|
3683
|
-
#
|
3684
|
-
#
|
3692
|
+
# When the DB instance is publicly accessible and you connect from
|
3693
|
+
# outside of the DB instance's virtual private cloud (VPC), its Domain
|
3694
|
+
# Name System (DNS) endpoint resolves to the public IP address. When you
|
3695
|
+
# connect from within the same VPC as the DB instance, the endpoint
|
3696
|
+
# resolves to the private IP address. Access to the DB instance is
|
3697
|
+
# ultimately controlled by the security group it uses. That public
|
3698
|
+
# access isn't permitted if the security group assigned to the DB
|
3699
|
+
# instance doesn't permit it.
|
3685
3700
|
#
|
3686
3701
|
# When the DB instance isn't publicly accessible, it is an internal DB
|
3687
3702
|
# instance with a DNS name that resolves to a private IP address.
|
@@ -4449,12 +4464,16 @@ module Aws::RDS
|
|
4449
4464
|
# Specifies whether to copy all tags from the restored DB instance to
|
4450
4465
|
# snapshots of the DB instance. By default, tags are not copied.
|
4451
4466
|
# @option options [Array<Types::Tag>] :tags
|
4452
|
-
# A list of tags.
|
4453
|
-
#
|
4467
|
+
# A list of tags.
|
4468
|
+
#
|
4469
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
4470
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
4471
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
4454
4472
|
#
|
4455
4473
|
#
|
4456
4474
|
#
|
4457
4475
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
4476
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
4458
4477
|
# @option options [String] :storage_type
|
4459
4478
|
# The storage type to associate with the DB instance.
|
4460
4479
|
#
|
@@ -304,12 +304,16 @@ module Aws::RDS
|
|
304
304
|
# @option options [required, String] :target_db_parameter_group_description
|
305
305
|
# A description for the copied DB parameter group.
|
306
306
|
# @option options [Array<Types::Tag>] :tags
|
307
|
-
# A list of tags.
|
308
|
-
#
|
307
|
+
# A list of tags.
|
308
|
+
#
|
309
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
310
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
311
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
309
312
|
#
|
310
313
|
#
|
311
314
|
#
|
312
315
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
316
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
313
317
|
# @return [DBParameterGroup]
|
314
318
|
def copy(options = {})
|
315
319
|
options = options.merge(source_db_parameter_group_identifier: @name)
|
@@ -219,12 +219,16 @@ module Aws::RDS
|
|
219
219
|
data[:dbi_resource_id]
|
220
220
|
end
|
221
221
|
|
222
|
-
# A list of tags.
|
223
|
-
#
|
222
|
+
# A list of tags.
|
223
|
+
#
|
224
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
225
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
226
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
224
227
|
#
|
225
228
|
#
|
226
229
|
#
|
227
230
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
231
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
228
232
|
# @return [Array<Types::Tag>]
|
229
233
|
def tag_list
|
230
234
|
data[:tag_list]
|
@@ -438,12 +442,16 @@ module Aws::RDS
|
|
438
442
|
# })
|
439
443
|
# @param [Hash] options ({})
|
440
444
|
# @option options [Array<Types::Tag>] :tags
|
441
|
-
# A list of tags.
|
442
|
-
#
|
445
|
+
# A list of tags.
|
446
|
+
#
|
447
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
448
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
449
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
443
450
|
#
|
444
451
|
#
|
445
452
|
#
|
446
453
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
454
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
447
455
|
# @return [DBSnapshot]
|
448
456
|
def create(options = {})
|
449
457
|
options = options.merge(
|
@@ -519,12 +527,16 @@ module Aws::RDS
|
|
519
527
|
# in, and you can't use KMS keys from one Amazon Web Services Region in
|
520
528
|
# another Amazon Web Services Region.
|
521
529
|
# @option options [Array<Types::Tag>] :tags
|
522
|
-
# A list of tags.
|
523
|
-
#
|
530
|
+
# A list of tags.
|
531
|
+
#
|
532
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
533
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
534
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
524
535
|
#
|
525
536
|
#
|
526
537
|
#
|
527
538
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
539
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
528
540
|
# @option options [Boolean] :copy_tags
|
529
541
|
# Specifies whether to copy all tags from the source DB snapshot to the
|
530
542
|
# target DB snapshot. By default, tags aren't copied.
|
@@ -892,12 +904,16 @@ module Aws::RDS
|
|
892
904
|
#
|
893
905
|
# This setting doesn't apply to RDS Custom.
|
894
906
|
# @option options [Array<Types::Tag>] :tags
|
895
|
-
# A list of tags.
|
896
|
-
#
|
907
|
+
# A list of tags.
|
908
|
+
#
|
909
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
910
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
911
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
897
912
|
#
|
898
913
|
#
|
899
914
|
#
|
900
915
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
916
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
901
917
|
# @option options [String] :storage_type
|
902
918
|
# Specifies the storage type to be associated with the DB instance.
|
903
919
|
#
|
@@ -371,12 +371,16 @@ module Aws::RDS
|
|
371
371
|
# notification subscription isn't activated, the subscription is
|
372
372
|
# created but not active.
|
373
373
|
# @option options [Array<Types::Tag>] :tags
|
374
|
-
# A list of tags.
|
375
|
-
#
|
374
|
+
# A list of tags.
|
375
|
+
#
|
376
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
377
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
378
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
376
379
|
#
|
377
380
|
#
|
378
381
|
#
|
379
382
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
383
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
380
384
|
# @return [EventSubscription]
|
381
385
|
def create(options = {})
|
382
386
|
options = options.merge(subscription_name: @name)
|
@@ -337,12 +337,16 @@ module Aws::RDS
|
|
337
337
|
# @option options [required, String] :target_option_group_description
|
338
338
|
# The description for the copied option group.
|
339
339
|
# @option options [Array<Types::Tag>] :tags
|
340
|
-
# A list of tags.
|
341
|
-
#
|
340
|
+
# A list of tags.
|
341
|
+
#
|
342
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
343
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
344
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
342
345
|
#
|
343
346
|
#
|
344
347
|
#
|
345
348
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
349
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
346
350
|
# @return [OptionGroup]
|
347
351
|
def copy(options = {})
|
348
352
|
options = options.merge(source_option_group_identifier: @name)
|
@@ -249,12 +249,16 @@ module Aws::RDS
|
|
249
249
|
#
|
250
250
|
# Default: `1`
|
251
251
|
# @option options [Array<Types::Tag>] :tags
|
252
|
-
# A list of tags.
|
253
|
-
#
|
252
|
+
# A list of tags.
|
253
|
+
#
|
254
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
255
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
256
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
254
257
|
#
|
255
258
|
#
|
256
259
|
#
|
257
260
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
261
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
258
262
|
# @return [ReservedDBInstance]
|
259
263
|
def purchase(options = {})
|
260
264
|
options = options.merge(reserved_db_instances_offering_id: @id)
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -704,13 +704,14 @@ module Aws::RDS
|
|
704
704
|
# @option options [Boolean] :publicly_accessible
|
705
705
|
# Specifies whether the DB cluster is publicly accessible.
|
706
706
|
#
|
707
|
-
# When the DB cluster is publicly accessible
|
708
|
-
#
|
709
|
-
#
|
710
|
-
#
|
711
|
-
#
|
712
|
-
#
|
713
|
-
#
|
707
|
+
# When the DB cluster is publicly accessible and you connect from
|
708
|
+
# outside of the DB cluster's virtual private cloud (VPC), its Domain
|
709
|
+
# Name System (DNS) endpoint resolves to the public IP address. When you
|
710
|
+
# connect from within the same VPC as the DB cluster, the endpoint
|
711
|
+
# resolves to the private IP address. Access to the DB cluster is
|
712
|
+
# ultimately controlled by the security group it uses. That public
|
713
|
+
# access isn't permitted if the security group assigned to the DB
|
714
|
+
# cluster doesn't permit it.
|
714
715
|
#
|
715
716
|
# When the DB cluster isn't publicly accessible, it is an internal DB
|
716
717
|
# cluster with a DNS name that resolves to a private IP address.
|
@@ -1823,13 +1824,14 @@ module Aws::RDS
|
|
1823
1824
|
# @option options [Boolean] :publicly_accessible
|
1824
1825
|
# Specifies whether the DB instance is publicly accessible.
|
1825
1826
|
#
|
1826
|
-
# When the DB instance is publicly accessible
|
1827
|
-
#
|
1828
|
-
#
|
1829
|
-
#
|
1830
|
-
#
|
1831
|
-
#
|
1832
|
-
#
|
1827
|
+
# When the DB instance is publicly accessible and you connect from
|
1828
|
+
# outside of the DB instance's virtual private cloud (VPC), its Domain
|
1829
|
+
# Name System (DNS) endpoint resolves to the public IP address. When you
|
1830
|
+
# connect from within the same VPC as the DB instance, the endpoint
|
1831
|
+
# resolves to the private IP address. Access to the DB instance is
|
1832
|
+
# ultimately controlled by the security group it uses. That public
|
1833
|
+
# access is not permitted if the security group assigned to the DB
|
1834
|
+
# instance doesn't permit it.
|
1833
1835
|
#
|
1834
1836
|
# When the DB instance isn't publicly accessible, it is an internal DB
|
1835
1837
|
# instance with a DNS name that resolves to a private IP address.
|
@@ -2648,12 +2650,16 @@ module Aws::RDS
|
|
2648
2650
|
# notification subscription isn't activated, the subscription is
|
2649
2651
|
# created but not active.
|
2650
2652
|
# @option options [Array<Types::Tag>] :tags
|
2651
|
-
# A list of tags.
|
2652
|
-
#
|
2653
|
+
# A list of tags.
|
2654
|
+
#
|
2655
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
2656
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
2657
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
2653
2658
|
#
|
2654
2659
|
#
|
2655
2660
|
#
|
2656
2661
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
2662
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
2657
2663
|
# @return [EventSubscription]
|
2658
2664
|
def create_event_subscription(options = {})
|
2659
2665
|
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|