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
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -285,7 +285,7 @@ module Aws::RDS
|
|
285
285
|
# @!attribute [rw] apply_action
|
286
286
|
# The pending maintenance action to apply to this resource.
|
287
287
|
#
|
288
|
-
# Valid
|
288
|
+
# Valid Values: `system-update`, `db-upgrade`, `hardware-maintenance`,
|
289
289
|
# `ca-certificate-rotation`
|
290
290
|
# @return [String]
|
291
291
|
#
|
@@ -294,7 +294,7 @@ module Aws::RDS
|
|
294
294
|
# opt-in request. An opt-in request of type `immediate` can't be
|
295
295
|
# undone.
|
296
296
|
#
|
297
|
-
# Valid
|
297
|
+
# Valid Values:
|
298
298
|
#
|
299
299
|
# * `immediate` - Apply the maintenance action immediately.
|
300
300
|
#
|
@@ -500,17 +500,17 @@ module Aws::RDS
|
|
500
500
|
# @return [Time]
|
501
501
|
#
|
502
502
|
# @!attribute [rw] force
|
503
|
-
#
|
504
|
-
#
|
505
|
-
#
|
503
|
+
# Specifies whether to force the DB cluster to backtrack when binary
|
504
|
+
# logging is enabled. Otherwise, an error occurs when binary logging
|
505
|
+
# is enabled.
|
506
506
|
# @return [Boolean]
|
507
507
|
#
|
508
508
|
# @!attribute [rw] use_earliest_time_on_point_in_time_unavailable
|
509
|
-
#
|
510
|
-
#
|
511
|
-
#
|
512
|
-
#
|
513
|
-
#
|
509
|
+
# Specifies whether to backtrack the DB cluster to the earliest
|
510
|
+
# possible backtrack time when *BacktrackTo* is set to a timestamp
|
511
|
+
# earlier than the earliest backtrack time. When this parameter is
|
512
|
+
# disabled and *BacktrackTo* is set to a timestamp earlier than the
|
513
|
+
# earliest backtrack time, an error occurs.
|
514
514
|
# @return [Boolean]
|
515
515
|
#
|
516
516
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/BacktrackDBClusterMessage AWS API Documentation
|
@@ -739,7 +739,8 @@ module Aws::RDS
|
|
739
739
|
# @return [String]
|
740
740
|
#
|
741
741
|
# @!attribute [rw] customer_override
|
742
|
-
#
|
742
|
+
# Indicates whether there is an override for the default certificate
|
743
|
+
# identifier.
|
743
744
|
# @return [Boolean]
|
744
745
|
#
|
745
746
|
# @!attribute [rw] customer_override_valid_till
|
@@ -906,9 +907,8 @@ module Aws::RDS
|
|
906
907
|
# @return [String]
|
907
908
|
#
|
908
909
|
# @!attribute [rw] iam_database_authentication_enabled
|
909
|
-
#
|
910
|
-
#
|
911
|
-
# is enabled.
|
910
|
+
# Indicates whether mapping of Amazon Web Services Identity and Access
|
911
|
+
# Management (IAM) accounts to database accounts is enabled.
|
912
912
|
# @return [Boolean]
|
913
913
|
#
|
914
914
|
# @!attribute [rw] engine_version
|
@@ -963,20 +963,24 @@ module Aws::RDS
|
|
963
963
|
# If you specify `MaxIdleConnectionsPercent`, then you must also
|
964
964
|
# include a value for this parameter.
|
965
965
|
#
|
966
|
-
# Default: 10 for RDS for Microsoft SQL Server, and 100 for all
|
967
|
-
# engines
|
966
|
+
# Default: `10` for RDS for Microsoft SQL Server, and `100` for all
|
967
|
+
# other engines
|
968
|
+
#
|
969
|
+
# Constraints:
|
970
|
+
#
|
971
|
+
# * Must be between 1 and 100.
|
968
972
|
#
|
969
|
-
#
|
973
|
+
# ^
|
970
974
|
# @return [Integer]
|
971
975
|
#
|
972
976
|
# @!attribute [rw] max_idle_connections_percent
|
973
|
-
#
|
974
|
-
# the connection pool. The value is expressed as a
|
975
|
-
# `max_connections` setting for the RDS DB instance
|
976
|
-
# cluster used by the target group. With a high value,
|
977
|
-
# leaves a high percentage of idle database connections
|
978
|
-
# value causes the proxy to close more idle connections
|
979
|
-
# them to the database.
|
977
|
+
# A value that controls how actively the proxy closes idle database
|
978
|
+
# connections in the connection pool. The value is expressed as a
|
979
|
+
# percentage of the `max_connections` setting for the RDS DB instance
|
980
|
+
# or Aurora DB cluster used by the target group. With a high value,
|
981
|
+
# the proxy leaves a high percentage of idle database connections
|
982
|
+
# open. A low value causes the proxy to close more idle connections
|
983
|
+
# and return them to the database.
|
980
984
|
#
|
981
985
|
# If you specify this parameter, then you must also include a value
|
982
986
|
# for `MaxConnectionsPercent`.
|
@@ -985,22 +989,30 @@ module Aws::RDS
|
|
985
989
|
# `MaxConnectionsPercent`. For example, if `MaxConnectionsPercent` is
|
986
990
|
# 80, then the default value of `MaxIdleConnectionsPercent` is 40. If
|
987
991
|
# the value of `MaxConnectionsPercent` isn't specified, then for SQL
|
988
|
-
# Server, `MaxIdleConnectionsPercent` is 5
|
989
|
-
# the default is 50
|
992
|
+
# Server, `MaxIdleConnectionsPercent` is `5`, and for all other
|
993
|
+
# engines, the default is `50`.
|
990
994
|
#
|
991
|
-
# Constraints:
|
992
|
-
#
|
995
|
+
# Constraints:
|
996
|
+
#
|
997
|
+
# * Must be between 0 and the value of `MaxConnectionsPercent`.
|
998
|
+
#
|
999
|
+
# ^
|
993
1000
|
# @return [Integer]
|
994
1001
|
#
|
995
1002
|
# @!attribute [rw] connection_borrow_timeout
|
996
1003
|
# The number of seconds for a proxy to wait for a connection to become
|
997
|
-
# available in the connection pool.
|
998
|
-
# opened its maximum number of connections and all
|
999
|
-
# busy with client sessions.
|
1004
|
+
# available in the connection pool. This setting only applies when the
|
1005
|
+
# proxy has opened its maximum number of connections and all
|
1006
|
+
# connections are busy with client sessions. For an unlimited wait
|
1007
|
+
# time, specify `0`.
|
1008
|
+
#
|
1009
|
+
# Default: `120`
|
1010
|
+
#
|
1011
|
+
# Constraints:
|
1000
1012
|
#
|
1001
|
-
#
|
1013
|
+
# * Must be between 0 and 3600.
|
1002
1014
|
#
|
1003
|
-
#
|
1015
|
+
# ^
|
1004
1016
|
# @return [Integer]
|
1005
1017
|
#
|
1006
1018
|
# @!attribute [rw] session_pinning_filters
|
@@ -1295,9 +1307,9 @@ module Aws::RDS
|
|
1295
1307
|
# @return [String]
|
1296
1308
|
#
|
1297
1309
|
# @!attribute [rw] copy_tags
|
1298
|
-
#
|
1299
|
-
#
|
1300
|
-
#
|
1310
|
+
# Specifies whether to copy all tags from the source DB cluster
|
1311
|
+
# snapshot to the target DB cluster snapshot. By default, tags are not
|
1312
|
+
# copied.
|
1301
1313
|
# @return [Boolean]
|
1302
1314
|
#
|
1303
1315
|
# @!attribute [rw] tags
|
@@ -1496,8 +1508,8 @@ module Aws::RDS
|
|
1496
1508
|
# @return [Array<Types::Tag>]
|
1497
1509
|
#
|
1498
1510
|
# @!attribute [rw] copy_tags
|
1499
|
-
#
|
1500
|
-
#
|
1511
|
+
# Specifies whether to copy all tags from the source DB snapshot to
|
1512
|
+
# the target DB snapshot. By default, tags aren't copied.
|
1501
1513
|
# @return [Boolean]
|
1502
1514
|
#
|
1503
1515
|
# @!attribute [rw] pre_signed_url
|
@@ -1594,11 +1606,10 @@ module Aws::RDS
|
|
1594
1606
|
# @return [String]
|
1595
1607
|
#
|
1596
1608
|
# @!attribute [rw] copy_option_group
|
1597
|
-
#
|
1598
|
-
#
|
1599
|
-
#
|
1600
|
-
#
|
1601
|
-
# snapshot copy calls.
|
1609
|
+
# Specifies whether to copy the DB option group associated with the
|
1610
|
+
# source DB snapshot to the target Amazon Web Services account and
|
1611
|
+
# associate with the target DB snapshot. The associated option group
|
1612
|
+
# can be copied only with cross-account snapshot copy calls.
|
1602
1613
|
# @return [Boolean]
|
1603
1614
|
#
|
1604
1615
|
# @!attribute [rw] source_region
|
@@ -3400,7 +3411,8 @@ module Aws::RDS
|
|
3400
3411
|
# * Can't be specified if `ManageMasterUserPassword` is turned on.
|
3401
3412
|
#
|
3402
3413
|
# * Can include any printable ASCII character except "/", """, or
|
3403
|
-
# "@".
|
3414
|
+
# "@". For RDS for Oracle, can't include the "&"
|
3415
|
+
# (ampersand) or the "'" (single quotes) character.
|
3404
3416
|
#
|
3405
3417
|
# Length Constraints:
|
3406
3418
|
#
|
@@ -4437,7 +4449,7 @@ module Aws::RDS
|
|
4437
4449
|
# of DB instance classes, and availability for your engine, see [DB
|
4438
4450
|
# Instance Class][1] in the *Amazon RDS User Guide*.
|
4439
4451
|
#
|
4440
|
-
# Default: Inherits from the source DB instance.
|
4452
|
+
# Default: Inherits the value from the source DB instance.
|
4441
4453
|
#
|
4442
4454
|
#
|
4443
4455
|
#
|
@@ -4456,14 +4468,13 @@ module Aws::RDS
|
|
4456
4468
|
# @!attribute [rw] port
|
4457
4469
|
# The port number that the DB instance uses for connections.
|
4458
4470
|
#
|
4459
|
-
# Default: Inherits from the source DB instance
|
4460
|
-
#
|
4461
4471
|
# Valid Values: `1150-65535`
|
4472
|
+
#
|
4473
|
+
# Default: Inherits the value from the source DB instance.
|
4462
4474
|
# @return [Integer]
|
4463
4475
|
#
|
4464
4476
|
# @!attribute [rw] multi_az
|
4465
|
-
#
|
4466
|
-
# deployment.
|
4477
|
+
# Specifies whether the read replica is in a Multi-AZ deployment.
|
4467
4478
|
#
|
4468
4479
|
# You can create a read replica as a Multi-AZ DB instance. RDS creates
|
4469
4480
|
# a standby of your replica in another Availability Zone for failover
|
@@ -4471,60 +4482,61 @@ module Aws::RDS
|
|
4471
4482
|
# instance is independent of whether the source is a Multi-AZ DB
|
4472
4483
|
# instance or a Multi-AZ DB cluster.
|
4473
4484
|
#
|
4474
|
-
# This setting doesn't apply to RDS Custom.
|
4485
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
4475
4486
|
# @return [Boolean]
|
4476
4487
|
#
|
4477
4488
|
# @!attribute [rw] auto_minor_version_upgrade
|
4478
|
-
#
|
4479
|
-
#
|
4489
|
+
# Specifies whether to automatically apply minor engine upgrades to
|
4490
|
+
# the read replica during the maintenance window.
|
4480
4491
|
#
|
4481
|
-
# This setting doesn't apply to RDS Custom.
|
4492
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
4482
4493
|
#
|
4483
|
-
# Default: Inherits from the source DB instance
|
4494
|
+
# Default: Inherits the value from the source DB instance.
|
4484
4495
|
# @return [Boolean]
|
4485
4496
|
#
|
4486
4497
|
# @!attribute [rw] iops
|
4487
4498
|
# The amount of Provisioned IOPS (input/output operations per second)
|
4488
|
-
# to
|
4499
|
+
# to initially allocate for the DB instance.
|
4489
4500
|
# @return [Integer]
|
4490
4501
|
#
|
4491
4502
|
# @!attribute [rw] option_group_name
|
4492
|
-
# The option group the DB instance
|
4493
|
-
# option group associated with the source
|
4503
|
+
# The option group to associate the DB instance with. If not
|
4504
|
+
# specified, RDS uses the option group associated with the source DB
|
4505
|
+
# instance or cluster.
|
4494
4506
|
#
|
4495
4507
|
# <note markdown="1"> For SQL Server, you must use the option group associated with the
|
4496
4508
|
# source.
|
4497
4509
|
#
|
4498
4510
|
# </note>
|
4499
4511
|
#
|
4500
|
-
# This setting doesn't apply to RDS Custom.
|
4512
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
4501
4513
|
# @return [String]
|
4502
4514
|
#
|
4503
4515
|
# @!attribute [rw] db_parameter_group_name
|
4504
4516
|
# The name of the DB parameter group to associate with this DB
|
4505
4517
|
# instance.
|
4506
4518
|
#
|
4507
|
-
# If you
|
4508
|
-
# Amazon RDS uses the `DBParameterGroup` of source DB instance for
|
4509
|
-
# same Region read replica, or the default `DBParameterGroup` for
|
4510
|
-
# specified DB engine for a cross-Region read replica.
|
4519
|
+
# If you don't specify a value for `DBParameterGroupName`, then
|
4520
|
+
# Amazon RDS uses the `DBParameterGroup` of the source DB instance for
|
4521
|
+
# a same Region read replica, or the default `DBParameterGroup` for
|
4522
|
+
# the specified DB engine for a cross-Region read replica.
|
4511
4523
|
#
|
4512
4524
|
# Specifying a parameter group for this operation is only supported
|
4513
|
-
# for MySQL
|
4514
|
-
#
|
4525
|
+
# for MySQL DB instances for cross-Region read replicas and for Oracle
|
4526
|
+
# DB instances. It isn't supported for MySQL DB instances for same
|
4527
|
+
# Region read replicas or for RDS Custom.
|
4515
4528
|
#
|
4516
4529
|
# Constraints:
|
4517
4530
|
#
|
4518
4531
|
# * Must be 1 to 255 letters, numbers, or hyphens.
|
4519
4532
|
#
|
4520
|
-
# * First character must be a letter
|
4533
|
+
# * First character must be a letter.
|
4521
4534
|
#
|
4522
|
-
# * Can't end with a hyphen or contain two consecutive hyphens
|
4535
|
+
# * Can't end with a hyphen or contain two consecutive hyphens.
|
4523
4536
|
# @return [String]
|
4524
4537
|
#
|
4525
4538
|
# @!attribute [rw] publicly_accessible
|
4526
|
-
#
|
4527
|
-
# accessible.
|
4539
|
+
# Specifies whether the DB instance is publicly accessible.
|
4528
4540
|
#
|
4529
4541
|
# When the DB cluster is publicly accessible, its Domain Name System
|
4530
4542
|
# (DNS) endpoint resolves to the private IP address from within the DB
|
@@ -4550,20 +4562,20 @@ module Aws::RDS
|
|
4550
4562
|
# @return [Array<Types::Tag>]
|
4551
4563
|
#
|
4552
4564
|
# @!attribute [rw] db_subnet_group_name
|
4553
|
-
#
|
4554
|
-
#
|
4565
|
+
# A DB subnet group for the DB instance. The new DB instance is
|
4566
|
+
# created in the VPC associated with the DB subnet group. If no DB
|
4555
4567
|
# subnet group is specified, then the new DB instance isn't created
|
4556
4568
|
# in a VPC.
|
4557
4569
|
#
|
4558
4570
|
# Constraints:
|
4559
4571
|
#
|
4560
|
-
# * If supplied, must match the name of an existing
|
4572
|
+
# * If supplied, must match the name of an existing DB subnet group.
|
4561
4573
|
#
|
4562
4574
|
# * The specified DB subnet group must be in the same Amazon Web
|
4563
4575
|
# Services Region in which the operation is running.
|
4564
4576
|
#
|
4565
4577
|
# * All read replicas in one Amazon Web Services Region that are
|
4566
|
-
# created from the same source DB instance must either
|
4578
|
+
# created from the same source DB instance must either:
|
4567
4579
|
#
|
4568
4580
|
# * Specify DB subnet groups from the same VPC. All these read
|
4569
4581
|
# replicas are created in the same VPC.
|
@@ -4578,40 +4590,42 @@ module Aws::RDS
|
|
4578
4590
|
# A list of Amazon EC2 VPC security groups to associate with the read
|
4579
4591
|
# replica.
|
4580
4592
|
#
|
4581
|
-
# This setting doesn't apply to RDS Custom.
|
4593
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
4582
4594
|
#
|
4583
4595
|
# Default: The default EC2 VPC security group for the DB subnet
|
4584
4596
|
# group's VPC.
|
4585
4597
|
# @return [Array<String>]
|
4586
4598
|
#
|
4587
4599
|
# @!attribute [rw] storage_type
|
4588
|
-
#
|
4589
|
-
#
|
4590
|
-
# Valid values: `gp2 | gp3 | io1 | standard`
|
4600
|
+
# The storage type to associate with the read replica.
|
4591
4601
|
#
|
4592
4602
|
# If you specify `io1` or `gp3`, you must also include a value for the
|
4593
4603
|
# `Iops` parameter.
|
4594
4604
|
#
|
4595
|
-
#
|
4605
|
+
# Valid Values: `gp2 | gp3 | io1 | standard`
|
4606
|
+
#
|
4607
|
+
# Default: `io1` if the `Iops` parameter is specified. Otherwise,
|
4608
|
+
# `gp2`.
|
4596
4609
|
# @return [String]
|
4597
4610
|
#
|
4598
4611
|
# @!attribute [rw] copy_tags_to_snapshot
|
4599
|
-
#
|
4600
|
-
#
|
4601
|
-
# copied.
|
4612
|
+
# Specifies whether to copy all tags from the read replica to
|
4613
|
+
# snapshots of the read replica. By default, tags aren't copied.
|
4602
4614
|
# @return [Boolean]
|
4603
4615
|
#
|
4604
4616
|
# @!attribute [rw] monitoring_interval
|
4605
4617
|
# The interval, in seconds, between points when Enhanced Monitoring
|
4606
|
-
# metrics are collected for the read replica. To disable
|
4607
|
-
# Enhanced Monitoring metrics, specify 0
|
4618
|
+
# metrics are collected for the read replica. To disable collection of
|
4619
|
+
# Enhanced Monitoring metrics, specify `0`. The default is `0`.
|
4608
4620
|
#
|
4609
|
-
# If `MonitoringRoleArn` is specified, then you must
|
4610
|
-
# `MonitoringInterval` to a value other than 0
|
4621
|
+
# If `MonitoringRoleArn` is specified, then you must set
|
4622
|
+
# `MonitoringInterval` to a value other than `0`.
|
4611
4623
|
#
|
4612
|
-
# This setting doesn't apply to RDS Custom.
|
4624
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
4613
4625
|
#
|
4614
4626
|
# Valid Values: `0, 1, 5, 10, 15, 30, 60`
|
4627
|
+
#
|
4628
|
+
# Default: `0`
|
4615
4629
|
# @return [Integer]
|
4616
4630
|
#
|
4617
4631
|
# @!attribute [rw] monitoring_role_arn
|
@@ -4624,7 +4638,7 @@ module Aws::RDS
|
|
4624
4638
|
# If `MonitoringInterval` is set to a value other than 0, then you
|
4625
4639
|
# must supply a `MonitoringRoleArn` value.
|
4626
4640
|
#
|
4627
|
-
# This setting doesn't apply to RDS Custom.
|
4641
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
4628
4642
|
#
|
4629
4643
|
#
|
4630
4644
|
#
|
@@ -4733,7 +4747,7 @@ module Aws::RDS
|
|
4733
4747
|
#
|
4734
4748
|
# </note>
|
4735
4749
|
#
|
4736
|
-
# This setting doesn't apply to RDS Custom.
|
4750
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
4737
4751
|
#
|
4738
4752
|
#
|
4739
4753
|
#
|
@@ -4742,15 +4756,15 @@ module Aws::RDS
|
|
4742
4756
|
# @return [String]
|
4743
4757
|
#
|
4744
4758
|
# @!attribute [rw] enable_iam_database_authentication
|
4745
|
-
#
|
4746
|
-
#
|
4747
|
-
#
|
4759
|
+
# Specifies whether to enable mapping of Amazon Web Services Identity
|
4760
|
+
# and Access Management (IAM) accounts to database accounts. By
|
4761
|
+
# default, mapping isn't enabled.
|
4748
4762
|
#
|
4749
4763
|
# For more information about IAM database authentication, see [ IAM
|
4750
4764
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
4751
4765
|
# RDS User Guide*.
|
4752
4766
|
#
|
4753
|
-
# This setting doesn't apply to RDS Custom.
|
4767
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
4754
4768
|
#
|
4755
4769
|
#
|
4756
4770
|
#
|
@@ -4758,13 +4772,13 @@ module Aws::RDS
|
|
4758
4772
|
# @return [Boolean]
|
4759
4773
|
#
|
4760
4774
|
# @!attribute [rw] enable_performance_insights
|
4761
|
-
#
|
4762
|
-
#
|
4775
|
+
# Specifies whether to enable Performance Insights for the read
|
4776
|
+
# replica.
|
4763
4777
|
#
|
4764
4778
|
# For more information, see [Using Amazon Performance Insights][1] in
|
4765
4779
|
# the *Amazon RDS User Guide*.
|
4766
4780
|
#
|
4767
|
-
# This setting doesn't apply to RDS Custom.
|
4781
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
4768
4782
|
#
|
4769
4783
|
#
|
4770
4784
|
#
|
@@ -4784,33 +4798,28 @@ module Aws::RDS
|
|
4784
4798
|
# account has a different default KMS key for each Amazon Web Services
|
4785
4799
|
# Region.
|
4786
4800
|
#
|
4787
|
-
# This setting doesn't apply to RDS Custom.
|
4801
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
4788
4802
|
# @return [String]
|
4789
4803
|
#
|
4790
4804
|
# @!attribute [rw] performance_insights_retention_period
|
4791
|
-
# The number of days to retain Performance Insights data.
|
4792
|
-
# is 7 days. The following values are valid:
|
4793
|
-
#
|
4794
|
-
# * 7
|
4795
|
-
#
|
4796
|
-
# * *month* * 31, where *month* is a number of months from 1-23
|
4797
|
-
#
|
4798
|
-
# * 731
|
4805
|
+
# The number of days to retain Performance Insights data.
|
4799
4806
|
#
|
4800
|
-
#
|
4807
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
4801
4808
|
#
|
4802
|
-
#
|
4809
|
+
# Valid Values:
|
4803
4810
|
#
|
4804
|
-
# *
|
4811
|
+
# * `7`
|
4805
4812
|
#
|
4806
|
-
# *
|
4813
|
+
# * *month* * 31, where *month* is a number of months from 1-23.
|
4814
|
+
# Examples: `93` (3 months * 31), `341` (11 months * 31), `589`
|
4815
|
+
# (19 months * 31)
|
4807
4816
|
#
|
4808
|
-
# * 731
|
4817
|
+
# * `731`
|
4809
4818
|
#
|
4810
|
-
#
|
4811
|
-
# value, RDS issues an error.
|
4819
|
+
# Default: `7` days
|
4812
4820
|
#
|
4813
|
-
#
|
4821
|
+
# If you specify a retention period that isn't valid, such as `94`,
|
4822
|
+
# Amazon RDS returns an error.
|
4814
4823
|
# @return [Integer]
|
4815
4824
|
#
|
4816
4825
|
# @!attribute [rw] enable_cloudwatch_logs_exports
|
@@ -4819,7 +4828,7 @@ module Aws::RDS
|
|
4819
4828
|
# more information, see [Publishing Database Logs to Amazon CloudWatch
|
4820
4829
|
# Logs ][1] in the *Amazon RDS User Guide*.
|
4821
4830
|
#
|
4822
|
-
# This setting doesn't apply to RDS Custom.
|
4831
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
4823
4832
|
#
|
4824
4833
|
#
|
4825
4834
|
#
|
@@ -4830,21 +4839,21 @@ module Aws::RDS
|
|
4830
4839
|
# The number of CPU cores and the number of threads per core for the
|
4831
4840
|
# DB instance class of the DB instance.
|
4832
4841
|
#
|
4833
|
-
# This setting doesn't apply to RDS Custom.
|
4842
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
4834
4843
|
# @return [Array<Types::ProcessorFeature>]
|
4835
4844
|
#
|
4836
4845
|
# @!attribute [rw] use_default_processor_features
|
4837
|
-
#
|
4838
|
-
#
|
4846
|
+
# Specifies whether the DB instance class of the DB instance uses its
|
4847
|
+
# default processor features.
|
4839
4848
|
#
|
4840
|
-
# This setting doesn't apply to RDS Custom.
|
4849
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
4841
4850
|
# @return [Boolean]
|
4842
4851
|
#
|
4843
4852
|
# @!attribute [rw] deletion_protection
|
4844
|
-
#
|
4845
|
-
#
|
4846
|
-
#
|
4847
|
-
#
|
4853
|
+
# Specifies whether to enable deletion protection for the DB instance.
|
4854
|
+
# The database can't be deleted when deletion protection is enabled.
|
4855
|
+
# By default, deletion protection isn't enabled. For more
|
4856
|
+
# information, see [ Deleting a DB Instance][1].
|
4848
4857
|
#
|
4849
4858
|
#
|
4850
4859
|
#
|
@@ -4859,7 +4868,7 @@ module Aws::RDS
|
|
4859
4868
|
# For more information, see [ Kerberos Authentication][1] in the
|
4860
4869
|
# *Amazon RDS User Guide*.
|
4861
4870
|
#
|
4862
|
-
# This setting doesn't apply to RDS Custom.
|
4871
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
4863
4872
|
#
|
4864
4873
|
#
|
4865
4874
|
#
|
@@ -4867,10 +4876,10 @@ module Aws::RDS
|
|
4867
4876
|
# @return [String]
|
4868
4877
|
#
|
4869
4878
|
# @!attribute [rw] domain_iam_role_name
|
4870
|
-
# The name of the IAM role to
|
4879
|
+
# The name of the IAM role to use when making API calls to the
|
4871
4880
|
# Directory Service.
|
4872
4881
|
#
|
4873
|
-
# This setting doesn't apply to RDS Custom.
|
4882
|
+
# This setting doesn't apply to RDS Custom DB instances.
|
4874
4883
|
# @return [String]
|
4875
4884
|
#
|
4876
4885
|
# @!attribute [rw] domain_fqdn
|
@@ -4980,7 +4989,7 @@ module Aws::RDS
|
|
4980
4989
|
# For the list of permissions required for the IAM role, see [
|
4981
4990
|
# Configure IAM and your VPC][1] in the *Amazon RDS User Guide*.
|
4982
4991
|
#
|
4983
|
-
# This setting is required for RDS Custom.
|
4992
|
+
# This setting is required for RDS Custom DB instances.
|
4984
4993
|
#
|
4985
4994
|
#
|
4986
4995
|
#
|
@@ -4990,7 +4999,7 @@ module Aws::RDS
|
|
4990
4999
|
# @!attribute [rw] network_type
|
4991
5000
|
# The network type of the DB instance.
|
4992
5001
|
#
|
4993
|
-
# Valid
|
5002
|
+
# Valid Values:
|
4994
5003
|
#
|
4995
5004
|
# * `IPV4`
|
4996
5005
|
#
|
@@ -5011,12 +5020,13 @@ module Aws::RDS
|
|
5011
5020
|
# @!attribute [rw] storage_throughput
|
5012
5021
|
# Specifies the storage throughput value for the read replica.
|
5013
5022
|
#
|
5014
|
-
# This setting doesn't apply to RDS Custom or Amazon Aurora
|
5023
|
+
# This setting doesn't apply to RDS Custom or Amazon Aurora DB
|
5024
|
+
# instances.
|
5015
5025
|
# @return [Integer]
|
5016
5026
|
#
|
5017
5027
|
# @!attribute [rw] enable_customer_owned_ip
|
5018
|
-
#
|
5019
|
-
#
|
5028
|
+
# Specifies whether to enable a customer-owned IP address (CoIP) for
|
5029
|
+
# an RDS on Outposts read replica.
|
5020
5030
|
#
|
5021
5031
|
# A *CoIP* provides local or external connectivity to resources in
|
5022
5032
|
# your Outpost subnets through your on-premises network. For some use
|
@@ -5288,10 +5298,10 @@ module Aws::RDS
|
|
5288
5298
|
# @return [Array<String>]
|
5289
5299
|
#
|
5290
5300
|
# @!attribute [rw] target_role
|
5291
|
-
#
|
5292
|
-
# read/write or
|
5293
|
-
# only role that proxies for RDS for
|
5294
|
-
# `READ_WRITE`.
|
5301
|
+
# The role of the DB proxy endpoint. The role determines whether the
|
5302
|
+
# endpoint can be used for read/write or only read operations. The
|
5303
|
+
# default is `READ_WRITE`. The only role that proxies for RDS for
|
5304
|
+
# Microsoft SQL Server support is `READ_WRITE`.
|
5295
5305
|
# @return [String]
|
5296
5306
|
#
|
5297
5307
|
# @!attribute [rw] tags
|
@@ -5367,10 +5377,9 @@ module Aws::RDS
|
|
5367
5377
|
# @return [Array<String>]
|
5368
5378
|
#
|
5369
5379
|
# @!attribute [rw] require_tls
|
5370
|
-
#
|
5371
|
-
#
|
5372
|
-
#
|
5373
|
-
# the proxy.
|
5380
|
+
# Specifies whether Transport Layer Security (TLS) encryption is
|
5381
|
+
# required for connections to the proxy. By enabling this setting, you
|
5382
|
+
# can enforce encrypted TLS connections to the proxy.
|
5374
5383
|
# @return [Boolean]
|
5375
5384
|
#
|
5376
5385
|
# @!attribute [rw] idle_client_timeout
|
@@ -5380,10 +5389,10 @@ module Aws::RDS
|
|
5380
5389
|
# @return [Integer]
|
5381
5390
|
#
|
5382
5391
|
# @!attribute [rw] debug_logging
|
5383
|
-
#
|
5384
|
-
# in its logs. This information helps you to debug issues
|
5385
|
-
# SQL behavior or the performance and scalability of the
|
5386
|
-
# connections. The debug information includes the text of SQL
|
5392
|
+
# Specifies whether the proxy includes detailed information about SQL
|
5393
|
+
# statements in its logs. This information helps you to debug issues
|
5394
|
+
# involving SQL behavior or the performance and scalability of the
|
5395
|
+
# proxy connections. The debug information includes the text of SQL
|
5387
5396
|
# statements that you submit through the proxy. Thus, only enable this
|
5388
5397
|
# setting when needed for debugging, and only when you have security
|
5389
5398
|
# measures in place to safeguard any sensitive information that
|
@@ -5607,7 +5616,7 @@ module Aws::RDS
|
|
5607
5616
|
# set this parameter to `db-instance`. For RDS Proxy events, specify
|
5608
5617
|
# `db-proxy`. If this value isn't specified, all events are returned.
|
5609
5618
|
#
|
5610
|
-
# Valid
|
5619
|
+
# Valid Values: `db-instance` \| `db-cluster` \| `db-parameter-group`
|
5611
5620
|
# \| `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot` \|
|
5612
5621
|
# `db-proxy`
|
5613
5622
|
# @return [String]
|
@@ -5660,9 +5669,9 @@ module Aws::RDS
|
|
5660
5669
|
# @return [Array<String>]
|
5661
5670
|
#
|
5662
5671
|
# @!attribute [rw] enabled
|
5663
|
-
#
|
5664
|
-
#
|
5665
|
-
#
|
5672
|
+
# Specifies whether to activate the subscription. If the event
|
5673
|
+
# notification subscription isn't activated, the subscription is
|
5674
|
+
# created but not active.
|
5666
5675
|
# @return [Boolean]
|
5667
5676
|
#
|
5668
5677
|
# @!attribute [rw] tags
|
@@ -6287,7 +6296,7 @@ module Aws::RDS
|
|
6287
6296
|
# @return [String]
|
6288
6297
|
#
|
6289
6298
|
# @!attribute [rw] global_write_forwarding_requested
|
6290
|
-
#
|
6299
|
+
# Indicates whether write forwarding is enabled for a secondary
|
6291
6300
|
# cluster in an Aurora global database. Because write forwarding takes
|
6292
6301
|
# time to enable, check the value of `GlobalWriteForwardingStatus` to
|
6293
6302
|
# confirm that the request has completed before using the write
|
@@ -6448,7 +6457,7 @@ module Aws::RDS
|
|
6448
6457
|
# @return [Time]
|
6449
6458
|
#
|
6450
6459
|
# @!attribute [rw] local_write_forwarding_status
|
6451
|
-
#
|
6460
|
+
# Indicates whether an Aurora DB cluster has in-cluster write
|
6452
6461
|
# forwarding enabled, not enabled, requested, or is in the process of
|
6453
6462
|
# enabling it.
|
6454
6463
|
# @return [String]
|
@@ -6596,9 +6605,8 @@ module Aws::RDS
|
|
6596
6605
|
# @return [String]
|
6597
6606
|
#
|
6598
6607
|
# @!attribute [rw] iam_database_authentication_enabled
|
6599
|
-
#
|
6600
|
-
# Management (IAM) accounts to database accounts is enabled
|
6601
|
-
# otherwise false.
|
6608
|
+
# Indicates whether mapping of Amazon Web Services Identity and Access
|
6609
|
+
# Management (IAM) accounts to database accounts is enabled.
|
6602
6610
|
# @return [Boolean]
|
6603
6611
|
#
|
6604
6612
|
# @!attribute [rw] cluster_create_time
|
@@ -6607,7 +6615,7 @@ module Aws::RDS
|
|
6607
6615
|
# @return [Time]
|
6608
6616
|
#
|
6609
6617
|
# @!attribute [rw] storage_encrypted
|
6610
|
-
#
|
6618
|
+
# Indicates whether the source DB cluster is encrypted.
|
6611
6619
|
# @return [Boolean]
|
6612
6620
|
#
|
6613
6621
|
# @!attribute [rw] allocated_storage
|
@@ -6988,8 +6996,8 @@ module Aws::RDS
|
|
6988
6996
|
# @return [String]
|
6989
6997
|
#
|
6990
6998
|
# @!attribute [rw] is_cluster_writer
|
6991
|
-
#
|
6992
|
-
#
|
6999
|
+
# Indicates whether the cluster member is the primary DB instance for
|
7000
|
+
# the DB cluster.
|
6993
7001
|
# @return [Boolean]
|
6994
7002
|
#
|
6995
7003
|
# @!attribute [rw] db_cluster_parameter_group_status
|
@@ -7246,41 +7254,40 @@ module Aws::RDS
|
|
7246
7254
|
# `DescribeDBClusterSnapshots` action.
|
7247
7255
|
#
|
7248
7256
|
# @!attribute [rw] availability_zones
|
7249
|
-
#
|
7250
|
-
#
|
7257
|
+
# The list of Availability Zones (AZs) where instances in the DB
|
7258
|
+
# cluster snapshot can be restored.
|
7251
7259
|
# @return [Array<String>]
|
7252
7260
|
#
|
7253
7261
|
# @!attribute [rw] db_cluster_snapshot_identifier
|
7254
|
-
#
|
7262
|
+
# The identifier for the DB cluster snapshot.
|
7255
7263
|
# @return [String]
|
7256
7264
|
#
|
7257
7265
|
# @!attribute [rw] db_cluster_identifier
|
7258
|
-
#
|
7259
|
-
#
|
7266
|
+
# The DB cluster identifier of the DB cluster that this DB cluster
|
7267
|
+
# snapshot was created from.
|
7260
7268
|
# @return [String]
|
7261
7269
|
#
|
7262
7270
|
# @!attribute [rw] snapshot_create_time
|
7263
|
-
#
|
7264
|
-
#
|
7271
|
+
# The time when the snapshot was taken, in Universal Coordinated Time
|
7272
|
+
# (UTC).
|
7265
7273
|
# @return [Time]
|
7266
7274
|
#
|
7267
7275
|
# @!attribute [rw] engine
|
7268
|
-
#
|
7269
|
-
# snapshot.
|
7276
|
+
# The name of the database engine for this DB cluster snapshot.
|
7270
7277
|
# @return [String]
|
7271
7278
|
#
|
7272
7279
|
# @!attribute [rw] engine_mode
|
7273
|
-
#
|
7274
|
-
# snapshot.
|
7280
|
+
# The engine mode of the database engine for this DB cluster snapshot.
|
7275
7281
|
# @return [String]
|
7276
7282
|
#
|
7277
7283
|
# @!attribute [rw] allocated_storage
|
7278
|
-
#
|
7284
|
+
# The allocated storage size of the DB cluster snapshot in gibibytes
|
7285
|
+
# (GiB).
|
7279
7286
|
# @return [Integer]
|
7280
7287
|
#
|
7281
7288
|
# @!attribute [rw] status
|
7282
|
-
#
|
7283
|
-
#
|
7289
|
+
# The status of this DB cluster snapshot. Valid statuses are the
|
7290
|
+
# following:
|
7284
7291
|
#
|
7285
7292
|
# * `available`
|
7286
7293
|
#
|
@@ -7290,43 +7297,41 @@ module Aws::RDS
|
|
7290
7297
|
# @return [String]
|
7291
7298
|
#
|
7292
7299
|
# @!attribute [rw] port
|
7293
|
-
#
|
7294
|
-
#
|
7300
|
+
# The port that the DB cluster was listening on at the time of the
|
7301
|
+
# snapshot.
|
7295
7302
|
# @return [Integer]
|
7296
7303
|
#
|
7297
7304
|
# @!attribute [rw] vpc_id
|
7298
|
-
#
|
7305
|
+
# The VPC ID associated with the DB cluster snapshot.
|
7299
7306
|
# @return [String]
|
7300
7307
|
#
|
7301
7308
|
# @!attribute [rw] cluster_create_time
|
7302
|
-
#
|
7303
|
-
#
|
7309
|
+
# The time when the DB cluster was created, in Universal Coordinated
|
7310
|
+
# Time (UTC).
|
7304
7311
|
# @return [Time]
|
7305
7312
|
#
|
7306
7313
|
# @!attribute [rw] master_username
|
7307
|
-
#
|
7314
|
+
# The master username for this DB cluster snapshot.
|
7308
7315
|
# @return [String]
|
7309
7316
|
#
|
7310
7317
|
# @!attribute [rw] engine_version
|
7311
|
-
#
|
7312
|
-
# snapshot.
|
7318
|
+
# The version of the database engine for this DB cluster snapshot.
|
7313
7319
|
# @return [String]
|
7314
7320
|
#
|
7315
7321
|
# @!attribute [rw] license_model
|
7316
|
-
#
|
7322
|
+
# The license model information for this DB cluster snapshot.
|
7317
7323
|
# @return [String]
|
7318
7324
|
#
|
7319
7325
|
# @!attribute [rw] snapshot_type
|
7320
|
-
#
|
7326
|
+
# The type of the DB cluster snapshot.
|
7321
7327
|
# @return [String]
|
7322
7328
|
#
|
7323
7329
|
# @!attribute [rw] percent_progress
|
7324
|
-
#
|
7325
|
-
# transferred.
|
7330
|
+
# The percentage of the estimated data that has been transferred.
|
7326
7331
|
# @return [Integer]
|
7327
7332
|
#
|
7328
7333
|
# @!attribute [rw] storage_encrypted
|
7329
|
-
#
|
7334
|
+
# Indicates whether the DB cluster snapshot is encrypted.
|
7330
7335
|
# @return [Boolean]
|
7331
7336
|
#
|
7332
7337
|
# @!attribute [rw] kms_key_id
|
@@ -7338,8 +7343,7 @@ module Aws::RDS
|
|
7338
7343
|
# @return [String]
|
7339
7344
|
#
|
7340
7345
|
# @!attribute [rw] db_cluster_snapshot_arn
|
7341
|
-
#
|
7342
|
-
# snapshot.
|
7346
|
+
# The Amazon Resource Name (ARN) for the DB cluster snapshot.
|
7343
7347
|
# @return [String]
|
7344
7348
|
#
|
7345
7349
|
# @!attribute [rw] source_db_cluster_snapshot_arn
|
@@ -7349,9 +7353,8 @@ module Aws::RDS
|
|
7349
7353
|
# @return [String]
|
7350
7354
|
#
|
7351
7355
|
# @!attribute [rw] iam_database_authentication_enabled
|
7352
|
-
#
|
7353
|
-
# Management (IAM) accounts to database accounts is enabled
|
7354
|
-
# otherwise false.
|
7356
|
+
# Indicates whether mapping of Amazon Web Services Identity and Access
|
7357
|
+
# Management (IAM) accounts to database accounts is enabled.
|
7355
7358
|
# @return [Boolean]
|
7356
7359
|
#
|
7357
7360
|
# @!attribute [rw] tag_list
|
@@ -7374,8 +7377,8 @@ module Aws::RDS
|
|
7374
7377
|
# @return [String]
|
7375
7378
|
#
|
7376
7379
|
# @!attribute [rw] db_cluster_resource_id
|
7377
|
-
#
|
7378
|
-
#
|
7380
|
+
# The resource ID of the DB cluster that this DB cluster snapshot was
|
7381
|
+
# created from.
|
7379
7382
|
# @return [String]
|
7380
7383
|
#
|
7381
7384
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBClusterSnapshot AWS API Documentation
|
@@ -7575,8 +7578,8 @@ module Aws::RDS
|
|
7575
7578
|
# @return [Array<String>]
|
7576
7579
|
#
|
7577
7580
|
# @!attribute [rw] supports_log_exports_to_cloudwatch_logs
|
7578
|
-
#
|
7579
|
-
#
|
7581
|
+
# Indicates whether the engine version supports exporting the log
|
7582
|
+
# types specified by ExportableLogTypes to CloudWatch Logs.
|
7580
7583
|
# @return [Boolean]
|
7581
7584
|
#
|
7582
7585
|
# @!attribute [rw] supports_read_replica
|
@@ -7615,13 +7618,13 @@ module Aws::RDS
|
|
7615
7618
|
# @return [String]
|
7616
7619
|
#
|
7617
7620
|
# @!attribute [rw] supports_parallel_query
|
7618
|
-
#
|
7619
|
-
#
|
7621
|
+
# Indicates whether you can use Aurora parallel query with a specific
|
7622
|
+
# DB engine version.
|
7620
7623
|
# @return [Boolean]
|
7621
7624
|
#
|
7622
7625
|
# @!attribute [rw] supports_global_databases
|
7623
|
-
#
|
7624
|
-
#
|
7626
|
+
# Indicates whether you can use Aurora global databases with a
|
7627
|
+
# specific DB engine version.
|
7625
7628
|
# @return [Boolean]
|
7626
7629
|
#
|
7627
7630
|
# @!attribute [rw] major_engine_version
|
@@ -7662,8 +7665,8 @@ module Aws::RDS
|
|
7662
7665
|
# @return [Array<Types::Tag>]
|
7663
7666
|
#
|
7664
7667
|
# @!attribute [rw] supports_babelfish
|
7665
|
-
#
|
7666
|
-
#
|
7668
|
+
# Indicates whether the engine version supports Babelfish for Aurora
|
7669
|
+
# PostgreSQL.
|
7667
7670
|
# @return [Boolean]
|
7668
7671
|
#
|
7669
7672
|
# @!attribute [rw] custom_db_engine_version_manifest
|
@@ -7681,8 +7684,8 @@ module Aws::RDS
|
|
7681
7684
|
# @return [String]
|
7682
7685
|
#
|
7683
7686
|
# @!attribute [rw] supports_certificate_rotation_without_restart
|
7684
|
-
#
|
7685
|
-
#
|
7687
|
+
# Indicates whether the engine version supports rotating the server
|
7688
|
+
# certificate without rebooting the DB instance.
|
7686
7689
|
# @return [Boolean]
|
7687
7690
|
#
|
7688
7691
|
# @!attribute [rw] supported_ca_certificate_identifiers
|
@@ -7700,10 +7703,10 @@ module Aws::RDS
|
|
7700
7703
|
# @return [Array<String>]
|
7701
7704
|
#
|
7702
7705
|
# @!attribute [rw] supports_local_write_forwarding
|
7703
|
-
#
|
7704
|
-
#
|
7705
|
-
# DB
|
7706
|
-
#
|
7706
|
+
# Indicates whether the DB engine version supports forwarding write
|
7707
|
+
# operations from reader DB instances to the writer DB instance in the
|
7708
|
+
# DB cluster. By default, write operations aren't allowed on reader
|
7709
|
+
# DB instances.
|
7707
7710
|
#
|
7708
7711
|
# Valid for: Aurora DB clusters only
|
7709
7712
|
# @return [Boolean]
|
@@ -8467,15 +8470,16 @@ module Aws::RDS
|
|
8467
8470
|
# @return [String]
|
8468
8471
|
#
|
8469
8472
|
# @!attribute [rw] restore_window
|
8470
|
-
#
|
8473
|
+
# The earliest and latest time a DB instance can be restored to.
|
8471
8474
|
# @return [Types::RestoreWindow]
|
8472
8475
|
#
|
8473
8476
|
# @!attribute [rw] allocated_storage
|
8474
|
-
#
|
8477
|
+
# The allocated storage size for the the automated backup in gibibytes
|
8478
|
+
# (GiB).
|
8475
8479
|
# @return [Integer]
|
8476
8480
|
#
|
8477
8481
|
# @!attribute [rw] status
|
8478
|
-
#
|
8482
|
+
# A list of status information for an automated backup:
|
8479
8483
|
#
|
8480
8484
|
# * `active` - Automated backups for current instances.
|
8481
8485
|
#
|
@@ -8504,11 +8508,11 @@ module Aws::RDS
|
|
8504
8508
|
# @return [String]
|
8505
8509
|
#
|
8506
8510
|
# @!attribute [rw] vpc_id
|
8507
|
-
#
|
8511
|
+
# The VPC ID associated with the DB instance.
|
8508
8512
|
# @return [String]
|
8509
8513
|
#
|
8510
8514
|
# @!attribute [rw] instance_create_time
|
8511
|
-
#
|
8515
|
+
# The date and time when the DB instance was created.
|
8512
8516
|
# @return [Time]
|
8513
8517
|
#
|
8514
8518
|
# @!attribute [rw] master_username
|
@@ -8524,7 +8528,7 @@ module Aws::RDS
|
|
8524
8528
|
# @return [String]
|
8525
8529
|
#
|
8526
8530
|
# @!attribute [rw] license_model
|
8527
|
-
#
|
8531
|
+
# The license model information for the automated backup.
|
8528
8532
|
# @return [String]
|
8529
8533
|
#
|
8530
8534
|
# @!attribute [rw] iops
|
@@ -8542,11 +8546,11 @@ module Aws::RDS
|
|
8542
8546
|
# @return [String]
|
8543
8547
|
#
|
8544
8548
|
# @!attribute [rw] encrypted
|
8545
|
-
#
|
8549
|
+
# Indicates whether the automated backup is encrypted.
|
8546
8550
|
# @return [Boolean]
|
8547
8551
|
#
|
8548
8552
|
# @!attribute [rw] storage_type
|
8549
|
-
#
|
8553
|
+
# The storage type associated with the automated backup.
|
8550
8554
|
# @return [String]
|
8551
8555
|
#
|
8552
8556
|
# @!attribute [rw] kms_key_id
|
@@ -8582,12 +8586,12 @@ module Aws::RDS
|
|
8582
8586
|
# @return [Array<Types::DBInstanceAutomatedBackupsReplication>]
|
8583
8587
|
#
|
8584
8588
|
# @!attribute [rw] backup_target
|
8585
|
-
#
|
8589
|
+
# The location where automated backups are stored: Amazon Web Services
|
8586
8590
|
# Outposts or the Amazon Web Services Region.
|
8587
8591
|
# @return [String]
|
8588
8592
|
#
|
8589
8593
|
# @!attribute [rw] storage_throughput
|
8590
|
-
#
|
8594
|
+
# The storage throughput for the automated backup.
|
8591
8595
|
# @return [Integer]
|
8592
8596
|
#
|
8593
8597
|
# @!attribute [rw] aws_backup_recovery_point_arn
|
@@ -8711,8 +8715,8 @@ module Aws::RDS
|
|
8711
8715
|
#
|
8712
8716
|
class DBInstanceNotFoundFault < Aws::EmptyStructure; end
|
8713
8717
|
|
8714
|
-
#
|
8715
|
-
# role that is associated with a DB instance.
|
8718
|
+
# Information about an Amazon Web Services Identity and Access
|
8719
|
+
# Management (IAM) role that is associated with a DB instance.
|
8716
8720
|
#
|
8717
8721
|
# @!attribute [rw] role_arn
|
8718
8722
|
# The Amazon Resource Name (ARN) of the IAM role that is associated
|
@@ -8726,8 +8730,9 @@ module Aws::RDS
|
|
8726
8730
|
# @return [String]
|
8727
8731
|
#
|
8728
8732
|
# @!attribute [rw] status
|
8729
|
-
#
|
8730
|
-
# instance. The Status property returns one of the following
|
8733
|
+
# Information about the state of association between the IAM role and
|
8734
|
+
# the DB instance. The Status property returns one of the following
|
8735
|
+
# values:
|
8731
8736
|
#
|
8732
8737
|
# * `ACTIVE` - the IAM role ARN is associated with the DB instance and
|
8733
8738
|
# can be used to access other Amazon Web Services services on your
|
@@ -8780,12 +8785,12 @@ module Aws::RDS
|
|
8780
8785
|
# @return [String]
|
8781
8786
|
#
|
8782
8787
|
# @!attribute [rw] normal
|
8783
|
-
# Boolean value that is true if the instance is operating normally,
|
8784
|
-
# false if the instance is in an error state.
|
8788
|
+
# A Boolean value that is true if the instance is operating normally,
|
8789
|
+
# or false if the instance is in an error state.
|
8785
8790
|
# @return [Boolean]
|
8786
8791
|
#
|
8787
8792
|
# @!attribute [rw] status
|
8788
|
-
#
|
8793
|
+
# The status of the DB instance. For a StatusType of read replica, the
|
8789
8794
|
# values can be replicating, replication stop point set, replication
|
8790
8795
|
# stop point reached, error, stopped, or terminated.
|
8791
8796
|
# @return [String]
|
@@ -9035,10 +9040,10 @@ module Aws::RDS
|
|
9035
9040
|
# @return [Integer]
|
9036
9041
|
#
|
9037
9042
|
# @!attribute [rw] debug_logging
|
9038
|
-
#
|
9039
|
-
# in its logs. This information helps you to debug issues
|
9040
|
-
# SQL behavior or the performance and scalability of the
|
9041
|
-
# connections. The debug information includes the text of SQL
|
9043
|
+
# Indicates whether the proxy includes detailed information about SQL
|
9044
|
+
# statements in its logs. This information helps you to debug issues
|
9045
|
+
# involving SQL behavior or the performance and scalability of the
|
9046
|
+
# proxy connections. The debug information includes the text of SQL
|
9042
9047
|
# statements that you submit through the proxy. Thus, only enable this
|
9043
9048
|
# setting when needed for debugging, and only when you have security
|
9044
9049
|
# measures in place to safeguard any sensitive information that
|
@@ -9143,8 +9148,8 @@ module Aws::RDS
|
|
9143
9148
|
# @return [String]
|
9144
9149
|
#
|
9145
9150
|
# @!attribute [rw] is_default
|
9146
|
-
#
|
9147
|
-
#
|
9151
|
+
# Indicates whether this endpoint is the default endpoint for the
|
9152
|
+
# associated DB proxy. Default DB proxy endpoints always have
|
9148
9153
|
# read/write capability. Other endpoints that you associate with the
|
9149
9154
|
# DB proxy can be either read/write or read-only.
|
9150
9155
|
# @return [Boolean]
|
@@ -9293,10 +9298,10 @@ module Aws::RDS
|
|
9293
9298
|
# @return [String]
|
9294
9299
|
#
|
9295
9300
|
# @!attribute [rw] is_default
|
9296
|
-
#
|
9297
|
-
# requests by the associated proxy. Because each proxy is
|
9298
|
-
# associated with a single target group, currently this
|
9299
|
-
# always `true`.
|
9301
|
+
# Indicates whether this target group is the first one used for
|
9302
|
+
# connection requests by the associated proxy. Because each proxy is
|
9303
|
+
# currently associated with a single target group, currently this
|
9304
|
+
# setting is always `true`.
|
9300
9305
|
# @return [Boolean]
|
9301
9306
|
#
|
9302
9307
|
# @!attribute [rw] status
|
@@ -9573,7 +9578,7 @@ module Aws::RDS
|
|
9573
9578
|
# @return [String]
|
9574
9579
|
#
|
9575
9580
|
# @!attribute [rw] encrypted
|
9576
|
-
#
|
9581
|
+
# Indicates whether the DB snapshot is encrypted.
|
9577
9582
|
# @return [Boolean]
|
9578
9583
|
#
|
9579
9584
|
# @!attribute [rw] kms_key_id
|
@@ -9596,9 +9601,8 @@ module Aws::RDS
|
|
9596
9601
|
# @return [String]
|
9597
9602
|
#
|
9598
9603
|
# @!attribute [rw] iam_database_authentication_enabled
|
9599
|
-
#
|
9600
|
-
# Management (IAM) accounts to database accounts is enabled
|
9601
|
-
# otherwise false.
|
9604
|
+
# Indicates whether mapping of Amazon Web Services Identity and Access
|
9605
|
+
# Management (IAM) accounts to database accounts is enabled.
|
9602
9606
|
# @return [Boolean]
|
9603
9607
|
#
|
9604
9608
|
# @!attribute [rw] processor_features
|
@@ -10045,12 +10049,12 @@ module Aws::RDS
|
|
10045
10049
|
# @return [String]
|
10046
10050
|
#
|
10047
10051
|
# @!attribute [rw] skip_final_snapshot
|
10048
|
-
#
|
10049
|
-
#
|
10050
|
-
#
|
10051
|
-
#
|
10052
|
-
#
|
10053
|
-
#
|
10052
|
+
# Specifies whether to skip the creation of a final DB cluster
|
10053
|
+
# snapshot before the DB cluster is deleted. If skip is specified, no
|
10054
|
+
# DB cluster snapshot is created. If skip isn't specified, a DB
|
10055
|
+
# cluster snapshot is created before the DB cluster is deleted. By
|
10056
|
+
# default, skip isn't specified, and the DB cluster snapshot is
|
10057
|
+
# created. By default, this parameter is disabled.
|
10054
10058
|
#
|
10055
10059
|
# <note markdown="1"> You must specify a `FinalDBSnapshotIdentifier` parameter if
|
10056
10060
|
# `SkipFinalSnapshot` is disabled.
|
@@ -10078,10 +10082,10 @@ module Aws::RDS
|
|
10078
10082
|
# @return [String]
|
10079
10083
|
#
|
10080
10084
|
# @!attribute [rw] delete_automated_backups
|
10081
|
-
#
|
10082
|
-
#
|
10083
|
-
#
|
10084
|
-
#
|
10085
|
+
# Specifies whether to remove automated backups immediately after the
|
10086
|
+
# DB cluster is deleted. This parameter isn't case-sensitive. The
|
10087
|
+
# default is to remove automated backups immediately after the DB
|
10088
|
+
# cluster is deleted.
|
10085
10089
|
# @return [Boolean]
|
10086
10090
|
#
|
10087
10091
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBClusterMessage AWS API Documentation
|
@@ -10234,12 +10238,11 @@ module Aws::RDS
|
|
10234
10238
|
# @return [String]
|
10235
10239
|
#
|
10236
10240
|
# @!attribute [rw] skip_final_snapshot
|
10237
|
-
#
|
10238
|
-
#
|
10239
|
-
#
|
10240
|
-
#
|
10241
|
-
#
|
10242
|
-
# created.
|
10241
|
+
# Specifies whether to skip the creation of a final DB snapshot before
|
10242
|
+
# deleting the instance. If you enable this parameter, RDS doesn't
|
10243
|
+
# create a DB snapshot. If you don't enable this parameter, RDS
|
10244
|
+
# creates a DB snapshot before the DB instance is deleted. By default,
|
10245
|
+
# skip isn't enabled, and the DB snapshot is created.
|
10243
10246
|
#
|
10244
10247
|
# <note markdown="1"> If you don't enable this parameter, you must specify the
|
10245
10248
|
# `FinalDBSnapshotIdentifier` parameter.
|
@@ -10279,10 +10282,10 @@ module Aws::RDS
|
|
10279
10282
|
# @return [String]
|
10280
10283
|
#
|
10281
10284
|
# @!attribute [rw] delete_automated_backups
|
10282
|
-
#
|
10283
|
-
#
|
10284
|
-
#
|
10285
|
-
#
|
10285
|
+
# Specifies whether to remove automated backups immediately after the
|
10286
|
+
# DB instance is deleted. This parameter isn't case-sensitive. The
|
10287
|
+
# default is to remove automated backups immediately after the DB
|
10288
|
+
# instance is deleted.
|
10286
10289
|
# @return [Boolean]
|
10287
10290
|
#
|
10288
10291
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstanceMessage AWS API Documentation
|
@@ -10963,8 +10966,15 @@ module Aws::RDS
|
|
10963
10966
|
# @return [String]
|
10964
10967
|
#
|
10965
10968
|
# @!attribute [rw] source
|
10966
|
-
# A
|
10967
|
-
#
|
10969
|
+
# A specific source to return parameters for.
|
10970
|
+
#
|
10971
|
+
# Valid Values:
|
10972
|
+
#
|
10973
|
+
# * `customer`
|
10974
|
+
#
|
10975
|
+
# * `engine`
|
10976
|
+
#
|
10977
|
+
# * `service`
|
10968
10978
|
# @return [String]
|
10969
10979
|
#
|
10970
10980
|
# @!attribute [rw] filters
|
@@ -11127,10 +11137,10 @@ module Aws::RDS
|
|
11127
11137
|
# @return [String]
|
11128
11138
|
#
|
11129
11139
|
# @!attribute [rw] include_shared
|
11130
|
-
#
|
11131
|
-
#
|
11132
|
-
#
|
11133
|
-
#
|
11140
|
+
# Specifies whether to include shared manual DB cluster snapshots from
|
11141
|
+
# other Amazon Web Services accounts that this Amazon Web Services
|
11142
|
+
# account has been given permission to copy or restore. By default,
|
11143
|
+
# these snapshots are not included.
|
11134
11144
|
#
|
11135
11145
|
# You can give an Amazon Web Services account permission to restore a
|
11136
11146
|
# manual DB cluster snapshot from another Amazon Web Services account
|
@@ -11138,10 +11148,9 @@ module Aws::RDS
|
|
11138
11148
|
# @return [Boolean]
|
11139
11149
|
#
|
11140
11150
|
# @!attribute [rw] include_public
|
11141
|
-
#
|
11142
|
-
#
|
11143
|
-
#
|
11144
|
-
# not included.
|
11151
|
+
# Specifies whether to include manual DB cluster snapshots that are
|
11152
|
+
# public and can be copied or restored by any Amazon Web Services
|
11153
|
+
# account. By default, the public snapshots are not included.
|
11145
11154
|
#
|
11146
11155
|
# You can share a manual DB cluster snapshot as public by using the
|
11147
11156
|
# ModifyDBClusterSnapshotAttribute API action.
|
@@ -11242,7 +11251,7 @@ module Aws::RDS
|
|
11242
11251
|
end
|
11243
11252
|
|
11244
11253
|
# @!attribute [rw] engine
|
11245
|
-
# The database engine to return.
|
11254
|
+
# The database engine to return version details for.
|
11246
11255
|
#
|
11247
11256
|
# Valid Values:
|
11248
11257
|
#
|
@@ -11276,7 +11285,7 @@ module Aws::RDS
|
|
11276
11285
|
# @return [String]
|
11277
11286
|
#
|
11278
11287
|
# @!attribute [rw] engine_version
|
11279
|
-
#
|
11288
|
+
# A specific database engine version to return details for.
|
11280
11289
|
#
|
11281
11290
|
# Example: `5.1.49`
|
11282
11291
|
# @return [String]
|
@@ -11287,7 +11296,7 @@ module Aws::RDS
|
|
11287
11296
|
#
|
11288
11297
|
# Constraints:
|
11289
11298
|
#
|
11290
|
-
# * If supplied, must match an existing
|
11299
|
+
# * If supplied, must match an existing DB parameter group family.
|
11291
11300
|
#
|
11292
11301
|
# ^
|
11293
11302
|
# @return [String]
|
@@ -11349,41 +11358,37 @@ module Aws::RDS
|
|
11349
11358
|
# @return [String]
|
11350
11359
|
#
|
11351
11360
|
# @!attribute [rw] default_only
|
11352
|
-
#
|
11353
|
-
# specified engine or engine and major version combination
|
11354
|
-
# returned.
|
11361
|
+
# Specifies whether to return only the default version of the
|
11362
|
+
# specified engine or the engine and major version combination.
|
11355
11363
|
# @return [Boolean]
|
11356
11364
|
#
|
11357
11365
|
# @!attribute [rw] list_supported_character_sets
|
11358
|
-
#
|
11359
|
-
#
|
11366
|
+
# Specifies whether to list the supported character sets for each
|
11367
|
+
# engine version.
|
11360
11368
|
#
|
11361
11369
|
# If this parameter is enabled and the requested engine supports the
|
11362
11370
|
# `CharacterSetName` parameter for `CreateDBInstance`, the response
|
11363
11371
|
# includes a list of supported character sets for each engine version.
|
11364
11372
|
#
|
11365
11373
|
# For RDS Custom, the default is not to list supported character sets.
|
11366
|
-
# If you
|
11367
|
-
# returns no results.
|
11374
|
+
# If you enable this parameter, RDS Custom returns no results.
|
11368
11375
|
# @return [Boolean]
|
11369
11376
|
#
|
11370
11377
|
# @!attribute [rw] list_supported_timezones
|
11371
|
-
#
|
11372
|
-
#
|
11378
|
+
# Specifies whether to list the supported time zones for each engine
|
11379
|
+
# version.
|
11373
11380
|
#
|
11374
11381
|
# If this parameter is enabled and the requested engine supports the
|
11375
11382
|
# `TimeZone` parameter for `CreateDBInstance`, the response includes a
|
11376
11383
|
# list of supported time zones for each engine version.
|
11377
11384
|
#
|
11378
11385
|
# For RDS Custom, the default is not to list supported time zones. If
|
11379
|
-
# you
|
11380
|
-
# results.
|
11386
|
+
# you enable this parameter, RDS Custom returns no results.
|
11381
11387
|
# @return [Boolean]
|
11382
11388
|
#
|
11383
11389
|
# @!attribute [rw] include_all
|
11384
|
-
#
|
11385
|
-
#
|
11386
|
-
# engine versions.
|
11390
|
+
# Specifies whether to also list the engine versions that aren't
|
11391
|
+
# available. The default is to list only available engine versions.
|
11387
11392
|
# @return [Boolean]
|
11388
11393
|
#
|
11389
11394
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBEngineVersionsMessage AWS API Documentation
|
@@ -12154,10 +12159,10 @@ module Aws::RDS
|
|
12154
12159
|
# @return [String]
|
12155
12160
|
#
|
12156
12161
|
# @!attribute [rw] include_shared
|
12157
|
-
#
|
12158
|
-
#
|
12159
|
-
#
|
12160
|
-
#
|
12162
|
+
# Specifies whether to include shared manual DB cluster snapshots from
|
12163
|
+
# other Amazon Web Services accounts that this Amazon Web Services
|
12164
|
+
# account has been given permission to copy or restore. By default,
|
12165
|
+
# these snapshots are not included.
|
12161
12166
|
#
|
12162
12167
|
# You can give an Amazon Web Services account permission to restore a
|
12163
12168
|
# manual DB snapshot from another Amazon Web Services account by using
|
@@ -12167,10 +12172,9 @@ module Aws::RDS
|
|
12167
12172
|
# @return [Boolean]
|
12168
12173
|
#
|
12169
12174
|
# @!attribute [rw] include_public
|
12170
|
-
#
|
12171
|
-
#
|
12172
|
-
#
|
12173
|
-
# not included.
|
12175
|
+
# Specifies whether to include manual DB cluster snapshots that are
|
12176
|
+
# public and can be copied or restored by any Amazon Web Services
|
12177
|
+
# account. By default, the public snapshots are not included.
|
12174
12178
|
#
|
12175
12179
|
# You can share a manual DB snapshot as public by using the
|
12176
12180
|
# ModifyDBSnapshotAttribute API.
|
@@ -12434,7 +12438,7 @@ module Aws::RDS
|
|
12434
12438
|
# The type of source that is generating the events. For RDS Proxy
|
12435
12439
|
# events, specify `db-proxy`.
|
12436
12440
|
#
|
12437
|
-
# Valid
|
12441
|
+
# Valid Values: `db-instance` \| `db-cluster` \| `db-parameter-group`
|
12438
12442
|
# \| `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot` \|
|
12439
12443
|
# `db-proxy`
|
12440
12444
|
# @return [String]
|
@@ -12929,8 +12933,8 @@ module Aws::RDS
|
|
12929
12933
|
# @return [String]
|
12930
12934
|
#
|
12931
12935
|
# @!attribute [rw] vpc
|
12932
|
-
#
|
12933
|
-
#
|
12936
|
+
# Specifies whether to show only VPC or non-VPC offerings. RDS Custom
|
12937
|
+
# supports only VPC offerings.
|
12934
12938
|
#
|
12935
12939
|
# RDS Custom supports only VPC offerings. If you describe non-VPC
|
12936
12940
|
# offerings for RDS Custom, the output shows VPC offerings.
|
@@ -13060,8 +13064,8 @@ module Aws::RDS
|
|
13060
13064
|
# @return [String]
|
13061
13065
|
#
|
13062
13066
|
# @!attribute [rw] multi_az
|
13063
|
-
#
|
13064
|
-
#
|
13067
|
+
# Specifies whether to show only those reservations that support
|
13068
|
+
# Multi-AZ.
|
13065
13069
|
# @return [Boolean]
|
13066
13070
|
#
|
13067
13071
|
# @!attribute [rw] lease_id
|
@@ -13152,8 +13156,8 @@ module Aws::RDS
|
|
13152
13156
|
# @return [String]
|
13153
13157
|
#
|
13154
13158
|
# @!attribute [rw] multi_az
|
13155
|
-
#
|
13156
|
-
#
|
13159
|
+
# Specifies whether to show only those reservations that support
|
13160
|
+
# Multi-AZ.
|
13157
13161
|
# @return [Boolean]
|
13158
13162
|
#
|
13159
13163
|
# @!attribute [rw] filters
|
@@ -13354,7 +13358,7 @@ module Aws::RDS
|
|
13354
13358
|
# @return [String]
|
13355
13359
|
#
|
13356
13360
|
# @!attribute [rw] additional_data_pending
|
13357
|
-
# Boolean value that if true, indicates there is more data to be
|
13361
|
+
# A Boolean value that, if true, indicates there is more data to be
|
13358
13362
|
# downloaded.
|
13359
13363
|
# @return [Boolean]
|
13360
13364
|
#
|
@@ -13743,7 +13747,7 @@ module Aws::RDS
|
|
13743
13747
|
# Contains the details of a snapshot or cluster export to Amazon S3.
|
13744
13748
|
#
|
13745
13749
|
# This data type is used as a response element in the
|
13746
|
-
# `DescribeExportTasks`
|
13750
|
+
# `DescribeExportTasks` operation.
|
13747
13751
|
#
|
13748
13752
|
# @!attribute [rw] export_task_identifier
|
13749
13753
|
# A unique identifier for the snapshot or cluster export task. This ID
|
@@ -13757,8 +13761,9 @@ module Aws::RDS
|
|
13757
13761
|
# @return [String]
|
13758
13762
|
#
|
13759
13763
|
# @!attribute [rw] export_only
|
13760
|
-
# The data exported from the snapshot or cluster.
|
13761
|
-
#
|
13764
|
+
# The data exported from the snapshot or cluster.
|
13765
|
+
#
|
13766
|
+
# Valid Values:
|
13762
13767
|
#
|
13763
13768
|
# * `database` - Export all the data from a specified database.
|
13764
13769
|
#
|
@@ -13776,19 +13781,19 @@ module Aws::RDS
|
|
13776
13781
|
# @return [Array<String>]
|
13777
13782
|
#
|
13778
13783
|
# @!attribute [rw] snapshot_time
|
13779
|
-
# The time
|
13784
|
+
# The time when the snapshot was created.
|
13780
13785
|
# @return [Time]
|
13781
13786
|
#
|
13782
13787
|
# @!attribute [rw] task_start_time
|
13783
|
-
# The time
|
13788
|
+
# The time when the snapshot or cluster export task started.
|
13784
13789
|
# @return [Time]
|
13785
13790
|
#
|
13786
13791
|
# @!attribute [rw] task_end_time
|
13787
|
-
# The time
|
13792
|
+
# The time when the snapshot or cluster export task ended.
|
13788
13793
|
# @return [Time]
|
13789
13794
|
#
|
13790
13795
|
# @!attribute [rw] s3_bucket
|
13791
|
-
# The Amazon S3 bucket
|
13796
|
+
# The Amazon S3 bucket where the snapshot or cluster is exported to.
|
13792
13797
|
# @return [String]
|
13793
13798
|
#
|
13794
13799
|
# @!attribute [rw] s3_prefix
|
@@ -13901,12 +13906,12 @@ module Aws::RDS
|
|
13901
13906
|
end
|
13902
13907
|
|
13903
13908
|
# @!attribute [rw] db_cluster_identifier
|
13904
|
-
#
|
13905
|
-
# isn't case-sensitive.
|
13909
|
+
# The identifier of the DB cluster to force a failover for. This
|
13910
|
+
# parameter isn't case-sensitive.
|
13906
13911
|
#
|
13907
13912
|
# Constraints:
|
13908
13913
|
#
|
13909
|
-
# * Must match the identifier of an existing
|
13914
|
+
# * Must match the identifier of an existing DB cluster.
|
13910
13915
|
#
|
13911
13916
|
# ^
|
13912
13917
|
# @return [String]
|
@@ -14226,15 +14231,14 @@ module Aws::RDS
|
|
14226
14231
|
# @return [Array<String>]
|
14227
14232
|
#
|
14228
14233
|
# @!attribute [rw] is_writer
|
14229
|
-
#
|
14234
|
+
# Indicates whether the Aurora DB cluster is the primary cluster (that
|
14230
14235
|
# is, has read-write capability) for the global cluster with which it
|
14231
14236
|
# is associated.
|
14232
14237
|
# @return [Boolean]
|
14233
14238
|
#
|
14234
14239
|
# @!attribute [rw] global_write_forwarding_status
|
14235
|
-
#
|
14236
|
-
#
|
14237
|
-
# enabling it.
|
14240
|
+
# The status of write forwarding for a secondary cluster in the global
|
14241
|
+
# cluster.
|
14238
14242
|
# @return [String]
|
14239
14243
|
#
|
14240
14244
|
# @!attribute [rw] synchronization_status
|
@@ -14292,12 +14296,12 @@ module Aws::RDS
|
|
14292
14296
|
# `DescribeDBSecurityGroups` action.
|
14293
14297
|
#
|
14294
14298
|
# @!attribute [rw] status
|
14295
|
-
#
|
14299
|
+
# The status of the IP range. Status can be "authorizing",
|
14296
14300
|
# "authorized", "revoking", and "revoked".
|
14297
14301
|
# @return [String]
|
14298
14302
|
#
|
14299
14303
|
# @!attribute [rw] cidrip
|
14300
|
-
#
|
14304
|
+
# The IP range.
|
14301
14305
|
# @return [String]
|
14302
14306
|
#
|
14303
14307
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/IPRange AWS API Documentation
|
@@ -14717,9 +14721,9 @@ module Aws::RDS
|
|
14717
14721
|
# @return [String]
|
14718
14722
|
#
|
14719
14723
|
# @!attribute [rw] remove_customer_override
|
14720
|
-
#
|
14721
|
-
#
|
14722
|
-
#
|
14724
|
+
# Specifies whether to remove the override for the default
|
14725
|
+
# certificate. If the override is removed, the default certificate is
|
14726
|
+
# the system default.
|
14723
14727
|
# @return [Boolean]
|
14724
14728
|
#
|
14725
14729
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyCertificatesMessage AWS API Documentation
|
@@ -17414,7 +17418,7 @@ module Aws::RDS
|
|
17414
17418
|
# specify `db-proxy`. If this value isn't specified, all events are
|
17415
17419
|
# returned.
|
17416
17420
|
#
|
17417
|
-
# Valid
|
17421
|
+
# Valid Values: `db-instance` \| `db-cluster` \| `db-parameter-group`
|
17418
17422
|
# \| `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot` \|
|
17419
17423
|
# `db-proxy`
|
17420
17424
|
# @return [String]
|
@@ -17431,7 +17435,7 @@ module Aws::RDS
|
|
17431
17435
|
# @return [Array<String>]
|
17432
17436
|
#
|
17433
17437
|
# @!attribute [rw] enabled
|
17434
|
-
#
|
17438
|
+
# Specifies whether to activate the subscription.
|
17435
17439
|
# @return [Boolean]
|
17436
17440
|
#
|
17437
17441
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyEventSubscriptionMessage AWS API Documentation
|
@@ -17567,9 +17571,9 @@ module Aws::RDS
|
|
17567
17571
|
# @return [Array<String>]
|
17568
17572
|
#
|
17569
17573
|
# @!attribute [rw] apply_immediately
|
17570
|
-
#
|
17571
|
-
#
|
17572
|
-
#
|
17574
|
+
# Specifies whether to apply the change immediately or during the next
|
17575
|
+
# maintenance window for each instance associated with the option
|
17576
|
+
# group.
|
17573
17577
|
# @return [Boolean]
|
17574
17578
|
#
|
17575
17579
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyOptionGroupMessage AWS API Documentation
|
@@ -17601,7 +17605,7 @@ module Aws::RDS
|
|
17601
17605
|
#
|
17602
17606
|
class NetworkTypeNotSupported < Aws::EmptyStructure; end
|
17603
17607
|
|
17604
|
-
#
|
17608
|
+
# The details of an option.
|
17605
17609
|
#
|
17606
17610
|
# @!attribute [rw] option_name
|
17607
17611
|
# The name of the option.
|
@@ -17612,11 +17616,11 @@ module Aws::RDS
|
|
17612
17616
|
# @return [String]
|
17613
17617
|
#
|
17614
17618
|
# @!attribute [rw] persistent
|
17615
|
-
#
|
17619
|
+
# Indicates whether this option is persistent.
|
17616
17620
|
# @return [Boolean]
|
17617
17621
|
#
|
17618
17622
|
# @!attribute [rw] permanent
|
17619
|
-
#
|
17623
|
+
# Indicates whether this option is permanent.
|
17620
17624
|
# @return [Boolean]
|
17621
17625
|
#
|
17622
17626
|
# @!attribute [rw] port
|
@@ -17829,7 +17833,7 @@ module Aws::RDS
|
|
17829
17833
|
# @return [String]
|
17830
17834
|
#
|
17831
17835
|
# @!attribute [rw] port_required
|
17832
|
-
#
|
17836
|
+
# Indicates whether the option requires a port.
|
17833
17837
|
# @return [Boolean]
|
17834
17838
|
#
|
17835
17839
|
# @!attribute [rw] default_port
|
@@ -17886,7 +17890,7 @@ module Aws::RDS
|
|
17886
17890
|
# @return [Array<Types::OptionVersion>]
|
17887
17891
|
#
|
17888
17892
|
# @!attribute [rw] copyable_cross_account
|
17889
|
-
#
|
17893
|
+
# Indicates whether the option can be copied across Amazon Web
|
17890
17894
|
# Services accounts.
|
17891
17895
|
# @return [Boolean]
|
17892
17896
|
#
|
@@ -17939,13 +17943,13 @@ module Aws::RDS
|
|
17939
17943
|
# @return [String]
|
17940
17944
|
#
|
17941
17945
|
# @!attribute [rw] is_modifiable
|
17942
|
-
#
|
17943
|
-
#
|
17946
|
+
# Indicates whether this option group option can be changed from the
|
17947
|
+
# default value.
|
17944
17948
|
# @return [Boolean]
|
17945
17949
|
#
|
17946
17950
|
# @!attribute [rw] is_required
|
17947
|
-
#
|
17948
|
-
#
|
17951
|
+
# Indicates whether a value must be specified for this option setting
|
17952
|
+
# of the option group option.
|
17949
17953
|
# @return [Boolean]
|
17950
17954
|
#
|
17951
17955
|
# @!attribute [rw] minimum_engine_version_per_allowed_value
|
@@ -18050,12 +18054,12 @@ module Aws::RDS
|
|
18050
18054
|
# @return [String]
|
18051
18055
|
#
|
18052
18056
|
# @!attribute [rw] is_modifiable
|
18053
|
-
#
|
18054
|
-
#
|
18057
|
+
# Indicates whether the option setting can be modified from the
|
18058
|
+
# default.
|
18055
18059
|
# @return [Boolean]
|
18056
18060
|
#
|
18057
18061
|
# @!attribute [rw] is_collection
|
18058
|
-
# Indicates
|
18062
|
+
# Indicates whether the option setting is part of a collection.
|
18059
18063
|
# @return [Boolean]
|
18060
18064
|
#
|
18061
18065
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/OptionSetting AWS API Documentation
|
@@ -18082,8 +18086,7 @@ module Aws::RDS
|
|
18082
18086
|
# @return [String]
|
18083
18087
|
#
|
18084
18088
|
# @!attribute [rw] is_default
|
18085
|
-
#
|
18086
|
-
# otherwise false.
|
18089
|
+
# Indicates whether the version is the default version of the option.
|
18087
18090
|
# @return [Boolean]
|
18088
18091
|
#
|
18089
18092
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/OptionVersion AWS API Documentation
|
@@ -18141,7 +18144,7 @@ module Aws::RDS
|
|
18141
18144
|
# @return [Boolean]
|
18142
18145
|
#
|
18143
18146
|
# @!attribute [rw] storage_type
|
18144
|
-
#
|
18147
|
+
# The storage type for a DB instance.
|
18145
18148
|
# @return [String]
|
18146
18149
|
#
|
18147
18150
|
# @!attribute [rw] supports_iops
|
@@ -18159,8 +18162,7 @@ module Aws::RDS
|
|
18159
18162
|
# @return [Boolean]
|
18160
18163
|
#
|
18161
18164
|
# @!attribute [rw] supports_performance_insights
|
18162
|
-
#
|
18163
|
-
# false.
|
18165
|
+
# Indicates whether a DB instance supports Performance Insights.
|
18164
18166
|
# @return [Boolean]
|
18165
18167
|
#
|
18166
18168
|
# @!attribute [rw] min_storage_size
|
@@ -18197,16 +18199,16 @@ module Aws::RDS
|
|
18197
18199
|
# @return [Array<String>]
|
18198
18200
|
#
|
18199
18201
|
# @!attribute [rw] supports_storage_autoscaling
|
18200
|
-
#
|
18201
|
-
# that use the specified DB instance class.
|
18202
|
+
# Indicates whether Amazon RDS can automatically scale storage for DB
|
18203
|
+
# instances that use the specified DB instance class.
|
18202
18204
|
# @return [Boolean]
|
18203
18205
|
#
|
18204
18206
|
# @!attribute [rw] supports_kerberos_authentication
|
18205
|
-
#
|
18207
|
+
# Indicates whether a DB instance supports Kerberos Authentication.
|
18206
18208
|
# @return [Boolean]
|
18207
18209
|
#
|
18208
18210
|
# @!attribute [rw] outpost_capable
|
18209
|
-
#
|
18211
|
+
# Indicates whether a DB instance supports RDS on Outposts.
|
18210
18212
|
#
|
18211
18213
|
# For more information about RDS on Outposts, see [Amazon RDS on
|
18212
18214
|
# Amazon Web Services Outposts][1] in the *Amazon RDS User Guide.*
|
@@ -18224,12 +18226,13 @@ module Aws::RDS
|
|
18224
18226
|
# @return [Array<String>]
|
18225
18227
|
#
|
18226
18228
|
# @!attribute [rw] supports_global_databases
|
18227
|
-
#
|
18228
|
-
#
|
18229
|
+
# Indicates whether you can use Aurora global databases with a
|
18230
|
+
# specific combination of other DB engine attributes.
|
18229
18231
|
# @return [Boolean]
|
18230
18232
|
#
|
18231
18233
|
# @!attribute [rw] supports_clusters
|
18232
|
-
#
|
18234
|
+
# Indicates whether DB instances can be configured as a Multi-AZ DB
|
18235
|
+
# cluster.
|
18233
18236
|
#
|
18234
18237
|
# For more information on Multi-AZ DB clusters, see [ Multi-AZ
|
18235
18238
|
# deployments with two readable standby DB instances][1] in the
|
@@ -18370,11 +18373,11 @@ module Aws::RDS
|
|
18370
18373
|
# `DescribeEngineDefaultParameters` and `DescribeDBParameters` actions.
|
18371
18374
|
#
|
18372
18375
|
# @!attribute [rw] parameter_name
|
18373
|
-
#
|
18376
|
+
# The name of the parameter.
|
18374
18377
|
# @return [String]
|
18375
18378
|
#
|
18376
18379
|
# @!attribute [rw] parameter_value
|
18377
|
-
#
|
18380
|
+
# The value of the parameter.
|
18378
18381
|
# @return [String]
|
18379
18382
|
#
|
18380
18383
|
# @!attribute [rw] description
|
@@ -18382,7 +18385,7 @@ module Aws::RDS
|
|
18382
18385
|
# @return [String]
|
18383
18386
|
#
|
18384
18387
|
# @!attribute [rw] source
|
18385
|
-
#
|
18388
|
+
# The source of the parameter value.
|
18386
18389
|
# @return [String]
|
18387
18390
|
#
|
18388
18391
|
# @!attribute [rw] apply_type
|
@@ -18561,8 +18564,8 @@ module Aws::RDS
|
|
18561
18564
|
# @return [Integer]
|
18562
18565
|
#
|
18563
18566
|
# @!attribute [rw] multi_az
|
18564
|
-
#
|
18565
|
-
#
|
18567
|
+
# Indicates whether the Single-AZ DB instance will change to a
|
18568
|
+
# Multi-AZ deployment.
|
18566
18569
|
# @return [Boolean]
|
18567
18570
|
#
|
18568
18571
|
# @!attribute [rw] engine_version
|
@@ -18618,7 +18621,7 @@ module Aws::RDS
|
|
18618
18621
|
# @return [Array<Types::ProcessorFeature>]
|
18619
18622
|
#
|
18620
18623
|
# @!attribute [rw] iam_database_authentication_enabled
|
18621
|
-
#
|
18624
|
+
# Indicates whether mapping of Amazon Web Services Identity and Access
|
18622
18625
|
# Management (IAM) accounts to database accounts is enabled.
|
18623
18626
|
# @return [Boolean]
|
18624
18627
|
#
|
@@ -19044,8 +19047,8 @@ module Aws::RDS
|
|
19044
19047
|
# @return [String]
|
19045
19048
|
#
|
19046
19049
|
# @!attribute [rw] force_failover
|
19047
|
-
#
|
19048
|
-
#
|
19050
|
+
# Specifies whether the reboot is conducted through a Multi-AZ
|
19051
|
+
# failover.
|
19049
19052
|
#
|
19050
19053
|
# Constraint: You can't enable force failover if the instance isn't
|
19051
19054
|
# configured for Multi-AZ.
|
@@ -19331,7 +19334,7 @@ module Aws::RDS
|
|
19331
19334
|
# @return [String]
|
19332
19335
|
#
|
19333
19336
|
# @!attribute [rw] multi_az
|
19334
|
-
# Indicates
|
19337
|
+
# Indicates whether the reservation applies to Multi-AZ deployments.
|
19335
19338
|
# @return [Boolean]
|
19336
19339
|
#
|
19337
19340
|
# @!attribute [rw] state
|
@@ -19455,7 +19458,7 @@ module Aws::RDS
|
|
19455
19458
|
# @return [String]
|
19456
19459
|
#
|
19457
19460
|
# @!attribute [rw] multi_az
|
19458
|
-
# Indicates
|
19461
|
+
# Indicates whether the offering applies to Multi-AZ deployments.
|
19459
19462
|
# @return [Boolean]
|
19460
19463
|
#
|
19461
19464
|
# @!attribute [rw] recurring_charges
|
@@ -19512,8 +19515,8 @@ module Aws::RDS
|
|
19512
19515
|
# @return [String]
|
19513
19516
|
#
|
19514
19517
|
# @!attribute [rw] reset_all_parameters
|
19515
|
-
#
|
19516
|
-
#
|
19518
|
+
# Specifies whether to reset all parameters in the DB cluster
|
19519
|
+
# parameter group to their default values. You can't use this
|
19517
19520
|
# parameter if there is a list of parameter names specified for the
|
19518
19521
|
# `Parameters` parameter.
|
19519
19522
|
# @return [Boolean]
|
@@ -19545,9 +19548,9 @@ module Aws::RDS
|
|
19545
19548
|
# @return [String]
|
19546
19549
|
#
|
19547
19550
|
# @!attribute [rw] reset_all_parameters
|
19548
|
-
#
|
19549
|
-
#
|
19550
|
-
#
|
19551
|
+
# Specifies whether to reset all parameters in the DB parameter group
|
19552
|
+
# to default values. By default, all parameters in the DB parameter
|
19553
|
+
# group are reset to default values.
|
19551
19554
|
# @return [Boolean]
|
19552
19555
|
#
|
19553
19556
|
# @!attribute [rw] parameters
|
@@ -19798,7 +19801,7 @@ module Aws::RDS
|
|
19798
19801
|
# @return [Array<Types::Tag>]
|
19799
19802
|
#
|
19800
19803
|
# @!attribute [rw] storage_encrypted
|
19801
|
-
#
|
19804
|
+
# Specifies whether the restored DB cluster is encrypted.
|
19802
19805
|
# @return [Boolean]
|
19803
19806
|
#
|
19804
19807
|
# @!attribute [rw] kms_key_id
|
@@ -19818,9 +19821,9 @@ module Aws::RDS
|
|
19818
19821
|
# @return [String]
|
19819
19822
|
#
|
19820
19823
|
# @!attribute [rw] enable_iam_database_authentication
|
19821
|
-
#
|
19822
|
-
#
|
19823
|
-
#
|
19824
|
+
# Specifies whether to enable mapping of Amazon Web Services Identity
|
19825
|
+
# and Access Management (IAM) accounts to database accounts. By
|
19826
|
+
# default, mapping isn't enabled.
|
19824
19827
|
#
|
19825
19828
|
# For more information, see [ IAM Database Authentication][1] in the
|
19826
19829
|
# *Amazon Aurora User Guide*.
|
@@ -19834,7 +19837,7 @@ module Aws::RDS
|
|
19834
19837
|
# The identifier for the database engine that was backed up to create
|
19835
19838
|
# the files stored in the Amazon S3 bucket.
|
19836
19839
|
#
|
19837
|
-
# Valid
|
19840
|
+
# Valid Values: `mysql`
|
19838
19841
|
# @return [String]
|
19839
19842
|
#
|
19840
19843
|
# @!attribute [rw] source_engine_version
|
@@ -19900,16 +19903,15 @@ module Aws::RDS
|
|
19900
19903
|
# @return [Array<String>]
|
19901
19904
|
#
|
19902
19905
|
# @!attribute [rw] deletion_protection
|
19903
|
-
#
|
19904
|
-
#
|
19905
|
-
#
|
19906
|
-
# enabled.
|
19906
|
+
# Specifies whether to enable deletion protection for the DB cluster.
|
19907
|
+
# The database can't be deleted when deletion protection is enabled.
|
19908
|
+
# By default, deletion protection isn't enabled.
|
19907
19909
|
# @return [Boolean]
|
19908
19910
|
#
|
19909
19911
|
# @!attribute [rw] copy_tags_to_snapshot
|
19910
|
-
#
|
19911
|
-
#
|
19912
|
-
#
|
19912
|
+
# Specifies whether to copy all tags from the restored DB cluster to
|
19913
|
+
# snapshots of the restored DB cluster. The default is not to copy
|
19914
|
+
# them.
|
19913
19915
|
# @return [Boolean]
|
19914
19916
|
#
|
19915
19917
|
# @!attribute [rw] domain
|
@@ -19946,7 +19948,7 @@ module Aws::RDS
|
|
19946
19948
|
# @!attribute [rw] network_type
|
19947
19949
|
# The network type of the DB cluster.
|
19948
19950
|
#
|
19949
|
-
# Valid
|
19951
|
+
# Valid Values:
|
19950
19952
|
#
|
19951
19953
|
# * `IPV4`
|
19952
19954
|
#
|
@@ -19965,8 +19967,8 @@ module Aws::RDS
|
|
19965
19967
|
# @return [String]
|
19966
19968
|
#
|
19967
19969
|
# @!attribute [rw] manage_master_user_password
|
19968
|
-
#
|
19969
|
-
#
|
19970
|
+
# Specifies whether to manage the master user password with Amazon Web
|
19971
|
+
# Services Secrets Manager.
|
19970
19972
|
#
|
19971
19973
|
# For more information, see [Password management with Amazon Web
|
19972
19974
|
# Services Secrets Manager][1] in the *Amazon RDS User Guide* and
|
@@ -20013,7 +20015,7 @@ module Aws::RDS
|
|
20013
20015
|
# @!attribute [rw] storage_type
|
20014
20016
|
# Specifies the storage type to be associated with the DB cluster.
|
20015
20017
|
#
|
20016
|
-
# Valid
|
20018
|
+
# Valid Values: `aurora`, `aurora-iopt1`
|
20017
20019
|
#
|
20018
20020
|
# Default: `aurora`
|
20019
20021
|
#
|
@@ -20282,9 +20284,9 @@ module Aws::RDS
|
|
20282
20284
|
# @return [String]
|
20283
20285
|
#
|
20284
20286
|
# @!attribute [rw] enable_iam_database_authentication
|
20285
|
-
#
|
20286
|
-
#
|
20287
|
-
#
|
20287
|
+
# Specifies whether to enable mapping of Amazon Web Services Identity
|
20288
|
+
# and Access Management (IAM) accounts to database accounts. By
|
20289
|
+
# default, mapping isn't enabled.
|
20288
20290
|
#
|
20289
20291
|
# For more information, see [ IAM Database Authentication][1] in the
|
20290
20292
|
# *Amazon Aurora User Guide*.
|
@@ -20393,27 +20395,26 @@ module Aws::RDS
|
|
20393
20395
|
# @return [String]
|
20394
20396
|
#
|
20395
20397
|
# @!attribute [rw] deletion_protection
|
20396
|
-
#
|
20397
|
-
#
|
20398
|
-
#
|
20399
|
-
# enabled.
|
20398
|
+
# Specifies whether to enable deletion protection for the DB cluster.
|
20399
|
+
# The database can't be deleted when deletion protection is enabled.
|
20400
|
+
# By default, deletion protection isn't enabled.
|
20400
20401
|
#
|
20401
20402
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
20402
20403
|
# @return [Boolean]
|
20403
20404
|
#
|
20404
20405
|
# @!attribute [rw] copy_tags_to_snapshot
|
20405
|
-
#
|
20406
|
-
#
|
20407
|
-
#
|
20406
|
+
# Specifies whether to copy all tags from the restored DB cluster to
|
20407
|
+
# snapshots of the restored DB cluster. The default is not to copy
|
20408
|
+
# them.
|
20408
20409
|
#
|
20409
20410
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
20410
20411
|
# @return [Boolean]
|
20411
20412
|
#
|
20412
20413
|
# @!attribute [rw] domain
|
20413
|
-
#
|
20414
|
-
#
|
20415
|
-
#
|
20416
|
-
#
|
20414
|
+
# The Active Directory directory ID to restore the DB cluster in. The
|
20415
|
+
# domain must be created prior to this operation. Currently, only
|
20416
|
+
# MySQL, Microsoft SQL Server, Oracle, and PostgreSQL DB instances can
|
20417
|
+
# be created in an Active Directory Domain.
|
20417
20418
|
#
|
20418
20419
|
# For more information, see [ Kerberos Authentication][1] in the
|
20419
20420
|
# *Amazon RDS User Guide*.
|
@@ -20426,8 +20427,8 @@ module Aws::RDS
|
|
20426
20427
|
# @return [String]
|
20427
20428
|
#
|
20428
20429
|
# @!attribute [rw] domain_iam_role_name
|
20429
|
-
#
|
20430
|
-
#
|
20430
|
+
# The name of the IAM role to be used when making API calls to the
|
20431
|
+
# Directory Service.
|
20431
20432
|
#
|
20432
20433
|
# Valid for: Aurora DB clusters only
|
20433
20434
|
# @return [String]
|
@@ -20454,7 +20455,7 @@ module Aws::RDS
|
|
20454
20455
|
# When specified for a Multi-AZ DB cluster, a value for the `Iops`
|
20455
20456
|
# parameter is required.
|
20456
20457
|
#
|
20457
|
-
# Valid
|
20458
|
+
# Valid Values: `aurora`, `aurora-iopt1` (Aurora DB clusters); `io1`
|
20458
20459
|
# (Multi-AZ DB clusters)
|
20459
20460
|
#
|
20460
20461
|
# Default: `aurora` (Aurora DB clusters); `io1` (Multi-AZ DB clusters)
|
@@ -20481,8 +20482,7 @@ module Aws::RDS
|
|
20481
20482
|
# @return [Integer]
|
20482
20483
|
#
|
20483
20484
|
# @!attribute [rw] publicly_accessible
|
20484
|
-
#
|
20485
|
-
# accessible.
|
20485
|
+
# Specifies whether the DB cluster is publicly accessible.
|
20486
20486
|
#
|
20487
20487
|
# When the DB cluster is publicly accessible, its Domain Name System
|
20488
20488
|
# (DNS) endpoint resolves to the private IP address from within the DB
|
@@ -20534,7 +20534,7 @@ module Aws::RDS
|
|
20534
20534
|
# @!attribute [rw] network_type
|
20535
20535
|
# The network type of the DB cluster.
|
20536
20536
|
#
|
20537
|
-
# Valid
|
20537
|
+
# Valid Values:
|
20538
20538
|
#
|
20539
20539
|
# * `IPV4`
|
20540
20540
|
#
|
@@ -20695,9 +20695,9 @@ module Aws::RDS
|
|
20695
20695
|
# @return [Time]
|
20696
20696
|
#
|
20697
20697
|
# @!attribute [rw] use_latest_restorable_time
|
20698
|
-
#
|
20699
|
-
#
|
20700
|
-
#
|
20698
|
+
# Specifies whether to restore the DB cluster to the latest restorable
|
20699
|
+
# backup time. By default, the DB cluster isn't restored to the
|
20700
|
+
# latest restorable backup time.
|
20701
20701
|
#
|
20702
20702
|
# Constraints: Can't be specified if `RestoreToTime` parameter is
|
20703
20703
|
# provided.
|
@@ -20779,9 +20779,9 @@ module Aws::RDS
|
|
20779
20779
|
# @return [String]
|
20780
20780
|
#
|
20781
20781
|
# @!attribute [rw] enable_iam_database_authentication
|
20782
|
-
#
|
20783
|
-
#
|
20784
|
-
#
|
20782
|
+
# Specifies whether to enable mapping of Amazon Web Services Identity
|
20783
|
+
# and Access Management (IAM) accounts to database accounts. By
|
20784
|
+
# default, mapping isn't enabled.
|
20785
20785
|
#
|
20786
20786
|
# For more information, see [ IAM Database Authentication][1] in the
|
20787
20787
|
# *Amazon Aurora User Guide*.
|
@@ -20868,25 +20868,24 @@ module Aws::RDS
|
|
20868
20868
|
# @return [String]
|
20869
20869
|
#
|
20870
20870
|
# @!attribute [rw] deletion_protection
|
20871
|
-
#
|
20872
|
-
#
|
20873
|
-
#
|
20874
|
-
# enabled.
|
20871
|
+
# Specifies whether to enable deletion protection for the DB cluster.
|
20872
|
+
# The database can't be deleted when deletion protection is enabled.
|
20873
|
+
# By default, deletion protection isn't enabled.
|
20875
20874
|
#
|
20876
20875
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
20877
20876
|
# @return [Boolean]
|
20878
20877
|
#
|
20879
20878
|
# @!attribute [rw] copy_tags_to_snapshot
|
20880
|
-
#
|
20881
|
-
#
|
20882
|
-
#
|
20879
|
+
# Specifies whether to copy all tags from the restored DB cluster to
|
20880
|
+
# snapshots of the restored DB cluster. The default is not to copy
|
20881
|
+
# them.
|
20883
20882
|
#
|
20884
20883
|
# Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
20885
20884
|
# @return [Boolean]
|
20886
20885
|
#
|
20887
20886
|
# @!attribute [rw] domain
|
20888
|
-
#
|
20889
|
-
#
|
20887
|
+
# The Active Directory directory ID to restore the DB cluster in. The
|
20888
|
+
# domain must be created prior to this operation.
|
20890
20889
|
#
|
20891
20890
|
# For Amazon Aurora DB clusters, Amazon RDS can use Kerberos
|
20892
20891
|
# Authentication to authenticate users that connect to the DB cluster.
|
@@ -20901,8 +20900,8 @@ module Aws::RDS
|
|
20901
20900
|
# @return [String]
|
20902
20901
|
#
|
20903
20902
|
# @!attribute [rw] domain_iam_role_name
|
20904
|
-
#
|
20905
|
-
#
|
20903
|
+
# The name of the IAM role to be used when making API calls to the
|
20904
|
+
# Directory Service.
|
20906
20905
|
#
|
20907
20906
|
# Valid for: Aurora DB clusters only
|
20908
20907
|
# @return [String]
|
@@ -20948,7 +20947,7 @@ module Aws::RDS
|
|
20948
20947
|
# When specified for a Multi-AZ DB cluster, a value for the `Iops`
|
20949
20948
|
# parameter is required.
|
20950
20949
|
#
|
20951
|
-
# Valid
|
20950
|
+
# Valid Values: `aurora`, `aurora-iopt1` (Aurora DB clusters); `io1`
|
20952
20951
|
# (Multi-AZ DB clusters)
|
20953
20952
|
#
|
20954
20953
|
# Default: `aurora` (Aurora DB clusters); `io1` (Multi-AZ DB clusters)
|
@@ -20957,8 +20956,7 @@ module Aws::RDS
|
|
20957
20956
|
# @return [String]
|
20958
20957
|
#
|
20959
20958
|
# @!attribute [rw] publicly_accessible
|
20960
|
-
#
|
20961
|
-
# accessible.
|
20959
|
+
# Specifies whether the DB cluster is publicly accessible.
|
20962
20960
|
#
|
20963
20961
|
# When the DB cluster is publicly accessible, its Domain Name System
|
20964
20962
|
# (DNS) endpoint resolves to the private IP address from within the DB
|
@@ -21028,7 +21026,7 @@ module Aws::RDS
|
|
21028
21026
|
# @!attribute [rw] network_type
|
21029
21027
|
# The network type of the DB cluster.
|
21030
21028
|
#
|
21031
|
-
# Valid
|
21029
|
+
# Valid Values:
|
21032
21030
|
#
|
21033
21031
|
# * `IPV4`
|
21034
21032
|
#
|
@@ -21201,8 +21199,7 @@ module Aws::RDS
|
|
21201
21199
|
# @return [String]
|
21202
21200
|
#
|
21203
21201
|
# @!attribute [rw] multi_az
|
21204
|
-
#
|
21205
|
-
# deployment.
|
21202
|
+
# Specifies whether the DB instance is a Multi-AZ deployment.
|
21206
21203
|
#
|
21207
21204
|
# This setting doesn't apply to RDS Custom.
|
21208
21205
|
#
|
@@ -21211,8 +21208,7 @@ module Aws::RDS
|
|
21211
21208
|
# @return [Boolean]
|
21212
21209
|
#
|
21213
21210
|
# @!attribute [rw] publicly_accessible
|
21214
|
-
#
|
21215
|
-
# accessible.
|
21211
|
+
# Specifies whether the DB instance is publicly accessible.
|
21216
21212
|
#
|
21217
21213
|
# When the DB instance is publicly accessible, its Domain Name System
|
21218
21214
|
# (DNS) endpoint resolves to the private IP address from within the DB
|
@@ -21229,8 +21225,8 @@ module Aws::RDS
|
|
21229
21225
|
# @return [Boolean]
|
21230
21226
|
#
|
21231
21227
|
# @!attribute [rw] auto_minor_version_upgrade
|
21232
|
-
#
|
21233
|
-
#
|
21228
|
+
# Specifies whether to automatically apply minor version upgrades to
|
21229
|
+
# the DB instance during the maintenance window.
|
21234
21230
|
#
|
21235
21231
|
# If you restore an RDS Custom DB instance, you must disable this
|
21236
21232
|
# parameter.
|
@@ -21243,7 +21239,7 @@ module Aws::RDS
|
|
21243
21239
|
#
|
21244
21240
|
# Default: Same as source.
|
21245
21241
|
#
|
21246
|
-
# Valid
|
21242
|
+
# Valid Values: `license-included` \| `bring-your-own-license` \|
|
21247
21243
|
# `general-public-license`
|
21248
21244
|
# @return [String]
|
21249
21245
|
#
|
@@ -21333,7 +21329,7 @@ module Aws::RDS
|
|
21333
21329
|
# @!attribute [rw] storage_type
|
21334
21330
|
# Specifies the storage type to be associated with the DB instance.
|
21335
21331
|
#
|
21336
|
-
# Valid
|
21332
|
+
# Valid Values: `gp2 | gp3 | io1 | standard`
|
21337
21333
|
#
|
21338
21334
|
# If you specify `io1` or `gp3`, you must also include a value for the
|
21339
21335
|
# `Iops` parameter.
|
@@ -21412,6 +21408,10 @@ module Aws::RDS
|
|
21412
21408
|
#
|
21413
21409
|
# Constraints:
|
21414
21410
|
#
|
21411
|
+
# * Can't be longer than 64 characters.
|
21412
|
+
#
|
21413
|
+
# ^
|
21414
|
+
#
|
21415
21415
|
# Example:
|
21416
21416
|
# `arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456`
|
21417
21417
|
# @return [String]
|
@@ -21432,8 +21432,8 @@ module Aws::RDS
|
|
21432
21432
|
# @return [Array<String>]
|
21433
21433
|
#
|
21434
21434
|
# @!attribute [rw] copy_tags_to_snapshot
|
21435
|
-
#
|
21436
|
-
#
|
21435
|
+
# Specifies whether to copy all tags from the restored DB instance to
|
21436
|
+
# snapshots of the DB instance.
|
21437
21437
|
#
|
21438
21438
|
# In most cases, tags aren't copied by default. However, when you
|
21439
21439
|
# restore a DB instance from a DB snapshot, RDS checks whether you
|
@@ -21458,9 +21458,9 @@ module Aws::RDS
|
|
21458
21458
|
# @return [String]
|
21459
21459
|
#
|
21460
21460
|
# @!attribute [rw] enable_iam_database_authentication
|
21461
|
-
#
|
21462
|
-
#
|
21463
|
-
#
|
21461
|
+
# Specifies whether to enable mapping of Amazon Web Services Identity
|
21462
|
+
# and Access Management (IAM) accounts to database accounts. By
|
21463
|
+
# default, mapping is disabled.
|
21464
21464
|
#
|
21465
21465
|
# For more information about IAM database authentication, see [ IAM
|
21466
21466
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -21494,8 +21494,8 @@ module Aws::RDS
|
|
21494
21494
|
# @return [Array<Types::ProcessorFeature>]
|
21495
21495
|
#
|
21496
21496
|
# @!attribute [rw] use_default_processor_features
|
21497
|
-
#
|
21498
|
-
#
|
21497
|
+
# Specifies whether the DB instance class of the DB instance uses its
|
21498
|
+
# default processor features.
|
21499
21499
|
#
|
21500
21500
|
# This setting doesn't apply to RDS Custom.
|
21501
21501
|
# @return [Boolean]
|
@@ -21521,10 +21521,10 @@ module Aws::RDS
|
|
21521
21521
|
# @return [String]
|
21522
21522
|
#
|
21523
21523
|
# @!attribute [rw] deletion_protection
|
21524
|
-
#
|
21525
|
-
#
|
21526
|
-
#
|
21527
|
-
#
|
21524
|
+
# Specifies whether to enable deletion protection for the DB instance.
|
21525
|
+
# The database can't be deleted when deletion protection is enabled.
|
21526
|
+
# By default, deletion protection isn't enabled. For more
|
21527
|
+
# information, see [ Deleting a DB Instance][1].
|
21528
21528
|
#
|
21529
21529
|
#
|
21530
21530
|
#
|
@@ -21532,8 +21532,8 @@ module Aws::RDS
|
|
21532
21532
|
# @return [Boolean]
|
21533
21533
|
#
|
21534
21534
|
# @!attribute [rw] enable_customer_owned_ip
|
21535
|
-
#
|
21536
|
-
#
|
21535
|
+
# Specifies whether to enable a customer-owned IP address (CoIP) for
|
21536
|
+
# an RDS on Outposts DB instance.
|
21537
21537
|
#
|
21538
21538
|
# A *CoIP* provides local or external connectivity to resources in
|
21539
21539
|
# your Outpost subnets through your on-premises network. For some use
|
@@ -21597,7 +21597,7 @@ module Aws::RDS
|
|
21597
21597
|
# @!attribute [rw] network_type
|
21598
21598
|
# The network type of the DB instance.
|
21599
21599
|
#
|
21600
|
-
# Valid
|
21600
|
+
# Valid Values:
|
21601
21601
|
#
|
21602
21602
|
# * `IPV4`
|
21603
21603
|
#
|
@@ -21929,9 +21929,9 @@ module Aws::RDS
|
|
21929
21929
|
# @return [Integer]
|
21930
21930
|
#
|
21931
21931
|
# @!attribute [rw] multi_az
|
21932
|
-
#
|
21933
|
-
#
|
21934
|
-
#
|
21932
|
+
# Specifies whether the DB instance is a Multi-AZ deployment. If the
|
21933
|
+
# DB instance is a Multi-AZ deployment, you can't set the
|
21934
|
+
# `AvailabilityZone` parameter.
|
21935
21935
|
# @return [Boolean]
|
21936
21936
|
#
|
21937
21937
|
# @!attribute [rw] engine_version
|
@@ -21942,9 +21942,9 @@ module Aws::RDS
|
|
21942
21942
|
# @return [String]
|
21943
21943
|
#
|
21944
21944
|
# @!attribute [rw] auto_minor_version_upgrade
|
21945
|
-
#
|
21946
|
-
#
|
21947
|
-
#
|
21945
|
+
# Specifies whether to automatically apply minor engine upgrades to
|
21946
|
+
# the DB instance during the maintenance window. By default, minor
|
21947
|
+
# engine upgrades are not applied automatically.
|
21948
21948
|
# @return [Boolean]
|
21949
21949
|
#
|
21950
21950
|
# @!attribute [rw] license_model
|
@@ -21970,8 +21970,7 @@ module Aws::RDS
|
|
21970
21970
|
# @return [String]
|
21971
21971
|
#
|
21972
21972
|
# @!attribute [rw] publicly_accessible
|
21973
|
-
#
|
21974
|
-
# accessible.
|
21973
|
+
# Specifies whether the DB instance is publicly accessible.
|
21975
21974
|
#
|
21976
21975
|
# When the DB instance is publicly accessible, its Domain Name System
|
21977
21976
|
# (DNS) endpoint resolves to the private IP address from within the DB
|
@@ -22000,7 +21999,7 @@ module Aws::RDS
|
|
22000
21999
|
# @!attribute [rw] storage_type
|
22001
22000
|
# Specifies the storage type to be associated with the DB instance.
|
22002
22001
|
#
|
22003
|
-
# Valid
|
22002
|
+
# Valid Values: `gp2 | gp3 | io1 | standard`
|
22004
22003
|
#
|
22005
22004
|
# If you specify `io1` or `gp3`, you must also include a value for the
|
22006
22005
|
# `Iops` parameter.
|
@@ -22009,8 +22008,7 @@ module Aws::RDS
|
|
22009
22008
|
# @return [String]
|
22010
22009
|
#
|
22011
22010
|
# @!attribute [rw] storage_encrypted
|
22012
|
-
#
|
22013
|
-
# not.
|
22011
|
+
# Specifies whether the new DB instance is encrypted or not.
|
22014
22012
|
# @return [Boolean]
|
22015
22013
|
#
|
22016
22014
|
# @!attribute [rw] kms_key_id
|
@@ -22030,8 +22028,8 @@ module Aws::RDS
|
|
22030
22028
|
# @return [String]
|
22031
22029
|
#
|
22032
22030
|
# @!attribute [rw] copy_tags_to_snapshot
|
22033
|
-
#
|
22034
|
-
#
|
22031
|
+
# Specifies whether to copy all tags from the DB instance to snapshots
|
22032
|
+
# of the DB instance. By default, tags are not copied.
|
22035
22033
|
# @return [Boolean]
|
22036
22034
|
#
|
22037
22035
|
# @!attribute [rw] monitoring_interval
|
@@ -22063,9 +22061,9 @@ module Aws::RDS
|
|
22063
22061
|
# @return [String]
|
22064
22062
|
#
|
22065
22063
|
# @!attribute [rw] enable_iam_database_authentication
|
22066
|
-
#
|
22067
|
-
#
|
22068
|
-
#
|
22064
|
+
# Specifies whether to enable mapping of Amazon Web Services Identity
|
22065
|
+
# and Access Management (IAM) accounts to database accounts. By
|
22066
|
+
# default, mapping isn't enabled.
|
22069
22067
|
#
|
22070
22068
|
# For more information about IAM database authentication, see [ IAM
|
22071
22069
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
@@ -22105,8 +22103,8 @@ module Aws::RDS
|
|
22105
22103
|
# @return [String]
|
22106
22104
|
#
|
22107
22105
|
# @!attribute [rw] enable_performance_insights
|
22108
|
-
#
|
22109
|
-
#
|
22106
|
+
# Specifies whether to enable Performance Insights for the DB
|
22107
|
+
# instance.
|
22110
22108
|
#
|
22111
22109
|
# For more information, see [Using Amazon Performance Insights][1] in
|
22112
22110
|
# the *Amazon RDS User Guide*.
|
@@ -22171,15 +22169,15 @@ module Aws::RDS
|
|
22171
22169
|
# @return [Array<Types::ProcessorFeature>]
|
22172
22170
|
#
|
22173
22171
|
# @!attribute [rw] use_default_processor_features
|
22174
|
-
#
|
22175
|
-
#
|
22172
|
+
# Specifies whether the DB instance class of the DB instance uses its
|
22173
|
+
# default processor features.
|
22176
22174
|
# @return [Boolean]
|
22177
22175
|
#
|
22178
22176
|
# @!attribute [rw] deletion_protection
|
22179
|
-
#
|
22180
|
-
#
|
22181
|
-
#
|
22182
|
-
#
|
22177
|
+
# Specifies whether to enable deletion protection for the DB instance.
|
22178
|
+
# The database can't be deleted when deletion protection is enabled.
|
22179
|
+
# By default, deletion protection isn't enabled. For more
|
22180
|
+
# information, see [ Deleting a DB Instance][1].
|
22183
22181
|
#
|
22184
22182
|
#
|
22185
22183
|
#
|
@@ -22202,7 +22200,7 @@ module Aws::RDS
|
|
22202
22200
|
# @!attribute [rw] network_type
|
22203
22201
|
# The network type of the DB instance.
|
22204
22202
|
#
|
22205
|
-
# Valid
|
22203
|
+
# Valid Values:
|
22206
22204
|
#
|
22207
22205
|
# * `IPV4`
|
22208
22206
|
#
|
@@ -22227,8 +22225,8 @@ module Aws::RDS
|
|
22227
22225
|
# @return [Integer]
|
22228
22226
|
#
|
22229
22227
|
# @!attribute [rw] manage_master_user_password
|
22230
|
-
#
|
22231
|
-
#
|
22228
|
+
# Specifies whether to manage the master user password with Amazon Web
|
22229
|
+
# Services Secrets Manager.
|
22232
22230
|
#
|
22233
22231
|
# For more information, see [Password management with Amazon Web
|
22234
22232
|
# Services Secrets Manager][1] in the *Amazon RDS User Guide.*
|
@@ -22733,8 +22731,8 @@ module Aws::RDS
|
|
22733
22731
|
# @return [Array<Types::ProcessorFeature>]
|
22734
22732
|
#
|
22735
22733
|
# @!attribute [rw] use_default_processor_features
|
22736
|
-
#
|
22737
|
-
#
|
22734
|
+
# Specifies whether the DB instance class of the DB instance uses its
|
22735
|
+
# default processor features.
|
22738
22736
|
#
|
22739
22737
|
# This setting doesn't apply to RDS Custom.
|
22740
22738
|
# @return [Boolean]
|
@@ -23107,9 +23105,9 @@ module Aws::RDS
|
|
23107
23105
|
# @return [Integer]
|
23108
23106
|
#
|
23109
23107
|
# @!attribute [rw] auto_pause
|
23110
|
-
#
|
23111
|
-
#
|
23112
|
-
#
|
23108
|
+
# Indicates whether to allow or disallow automatic pause for an Aurora
|
23109
|
+
# DB cluster in `serverless` DB engine mode. A DB cluster can be
|
23110
|
+
# paused only when it's idle (it has no connections).
|
23113
23111
|
#
|
23114
23112
|
# <note markdown="1"> If a DB cluster is paused for more than seven days, the DB cluster
|
23115
23113
|
# might be backed up with a snapshot. In this case, the DB cluster is
|
@@ -23188,8 +23186,8 @@ module Aws::RDS
|
|
23188
23186
|
# @return [Integer]
|
23189
23187
|
#
|
23190
23188
|
# @!attribute [rw] auto_pause
|
23191
|
-
#
|
23192
|
-
#
|
23189
|
+
# Indicates whether automatic pause is allowed for the Aurora DB
|
23190
|
+
# cluster in `serverless` DB engine mode.
|
23193
23191
|
#
|
23194
23192
|
# When the value is set to false for an Aurora Serverless v1 DB
|
23195
23193
|
# cluster, the DB cluster automatically resumes.
|
@@ -23345,8 +23343,9 @@ module Aws::RDS
|
|
23345
23343
|
# @return [String]
|
23346
23344
|
#
|
23347
23345
|
# @!attribute [rw] supports_db_instance_automated_backups_replication
|
23348
|
-
#
|
23349
|
-
# automated backups to the current Amazon Web Services
|
23346
|
+
# Indicates whether the source Amazon Web Services Region supports
|
23347
|
+
# replicating automated backups to the current Amazon Web Services
|
23348
|
+
# Region.
|
23350
23349
|
# @return [Boolean]
|
23351
23350
|
#
|
23352
23351
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SourceRegion AWS API Documentation
|
@@ -23712,8 +23711,9 @@ module Aws::RDS
|
|
23712
23711
|
#
|
23713
23712
|
# @!attribute [rw] export_only
|
23714
23713
|
# The data to be exported from the snapshot or cluster. If this
|
23715
|
-
# parameter
|
23716
|
-
#
|
23714
|
+
# parameter isn't provided, all of the data is exported.
|
23715
|
+
#
|
23716
|
+
# Valid Values:
|
23717
23717
|
#
|
23718
23718
|
# * `database` - Export all the data from a specified database.
|
23719
23719
|
#
|
@@ -24291,13 +24291,13 @@ module Aws::RDS
|
|
24291
24291
|
# @return [String]
|
24292
24292
|
#
|
24293
24293
|
# @!attribute [rw] auto_upgrade
|
24294
|
-
#
|
24295
|
-
#
|
24294
|
+
# Indicates whether the target version is applied to any source DB
|
24295
|
+
# instances that have `AutoMinorVersionUpgrade` set to true.
|
24296
24296
|
# @return [Boolean]
|
24297
24297
|
#
|
24298
24298
|
# @!attribute [rw] is_major_version_upgrade
|
24299
|
-
#
|
24300
|
-
#
|
24299
|
+
# Indicates whether upgrading to the target version requires upgrading
|
24300
|
+
# the major version of the database engine.
|
24301
24301
|
# @return [Boolean]
|
24302
24302
|
#
|
24303
24303
|
# @!attribute [rw] supported_engine_modes
|
@@ -24306,25 +24306,25 @@ module Aws::RDS
|
|
24306
24306
|
# @return [Array<String>]
|
24307
24307
|
#
|
24308
24308
|
# @!attribute [rw] supports_parallel_query
|
24309
|
-
#
|
24310
|
-
#
|
24309
|
+
# Indicates whether you can use Aurora parallel query with the target
|
24310
|
+
# engine version.
|
24311
24311
|
# @return [Boolean]
|
24312
24312
|
#
|
24313
24313
|
# @!attribute [rw] supports_global_databases
|
24314
|
-
#
|
24315
|
-
#
|
24314
|
+
# Indicates whether you can use Aurora global databases with the
|
24315
|
+
# target engine version.
|
24316
24316
|
# @return [Boolean]
|
24317
24317
|
#
|
24318
24318
|
# @!attribute [rw] supports_babelfish
|
24319
|
-
#
|
24320
|
-
#
|
24319
|
+
# Indicates whether you can use Babelfish for Aurora PostgreSQL with
|
24320
|
+
# the target engine version.
|
24321
24321
|
# @return [Boolean]
|
24322
24322
|
#
|
24323
24323
|
# @!attribute [rw] supports_local_write_forwarding
|
24324
|
-
#
|
24325
|
-
#
|
24326
|
-
#
|
24327
|
-
#
|
24324
|
+
# Indicates whether the target engine version supports forwarding
|
24325
|
+
# write operations from reader DB instances to the writer DB instance
|
24326
|
+
# in the DB cluster. By default, write operations aren't allowed on
|
24327
|
+
# reader DB instances.
|
24328
24328
|
#
|
24329
24329
|
# Valid for: Aurora DB clusters only
|
24330
24330
|
# @return [Boolean]
|
@@ -24370,10 +24370,10 @@ module Aws::RDS
|
|
24370
24370
|
# @return [String]
|
24371
24371
|
#
|
24372
24372
|
# @!attribute [rw] iam_auth
|
24373
|
-
#
|
24374
|
-
# Access Management (IAM) authentication for
|
24375
|
-
# The `ENABLED` value is valid only for
|
24376
|
-
# SQL Server.
|
24373
|
+
# A value that indicates whether to require or disallow Amazon Web
|
24374
|
+
# Services Identity and Access Management (IAM) authentication for
|
24375
|
+
# connections to the proxy. The `ENABLED` value is valid only for
|
24376
|
+
# proxies with RDS for Microsoft SQL Server.
|
24377
24377
|
# @return [String]
|
24378
24378
|
#
|
24379
24379
|
# @!attribute [rw] client_password_auth_type
|
@@ -24489,8 +24489,8 @@ module Aws::RDS
|
|
24489
24489
|
# @return [Array<Types::DoubleRange>]
|
24490
24490
|
#
|
24491
24491
|
# @!attribute [rw] supports_storage_autoscaling
|
24492
|
-
#
|
24493
|
-
# instances that use the new instance class.
|
24492
|
+
# Indicates whether or not Amazon RDS can automatically scale storage
|
24493
|
+
# for DB instances that use the new instance class.
|
24494
24494
|
# @return [Boolean]
|
24495
24495
|
#
|
24496
24496
|
# @!attribute [rw] provisioned_storage_throughput
|