aws-sdk-rds 1.114.0 → 1.119.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +707 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-rds.rb +2 -2
- data/lib/aws-sdk-rds/account_quota.rb +1 -1
- data/lib/aws-sdk-rds/certificate.rb +1 -1
- data/lib/aws-sdk-rds/client.rb +423 -61
- data/lib/aws-sdk-rds/client_api.rb +135 -1
- data/lib/aws-sdk-rds/db_cluster.rb +8 -10
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +42 -1
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +1 -1
- data/lib/aws-sdk-rds/db_engine.rb +1 -1
- data/lib/aws-sdk-rds/db_engine_version.rb +1 -1
- data/lib/aws-sdk-rds/db_instance.rb +38 -17
- data/lib/aws-sdk-rds/db_log_file.rb +1 -1
- data/lib/aws-sdk-rds/db_parameter_group.rb +55 -12
- data/lib/aws-sdk-rds/db_parameter_group_family.rb +1 -1
- data/lib/aws-sdk-rds/db_security_group.rb +1 -1
- data/lib/aws-sdk-rds/db_snapshot.rb +1 -1
- data/lib/aws-sdk-rds/db_snapshot_attribute.rb +1 -1
- data/lib/aws-sdk-rds/db_subnet_group.rb +1 -1
- data/lib/aws-sdk-rds/errors.rb +45 -1
- data/lib/aws-sdk-rds/event.rb +1 -1
- data/lib/aws-sdk-rds/event_category_map.rb +1 -1
- data/lib/aws-sdk-rds/event_subscription.rb +2 -3
- data/lib/aws-sdk-rds/option_group.rb +1 -1
- data/lib/aws-sdk-rds/option_group_option.rb +1 -1
- data/lib/aws-sdk-rds/parameter.rb +1 -1
- data/lib/aws-sdk-rds/pending_maintenance_action.rb +1 -1
- 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 +73 -19
- data/lib/aws-sdk-rds/resource_pending_maintenance_action_list.rb +1 -1
- data/lib/aws-sdk-rds/types.rb +526 -51
- data/lib/aws-sdk-rds/waiters.rb +1 -1
- metadata +9 -7
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -38,6 +38,7 @@ module Aws::RDS
|
|
38
38
|
AvailabilityZones = Shapes::ListShape.new(name: 'AvailabilityZones')
|
39
39
|
AvailableProcessorFeature = Shapes::StructureShape.new(name: 'AvailableProcessorFeature')
|
40
40
|
AvailableProcessorFeatureList = Shapes::ListShape.new(name: 'AvailableProcessorFeatureList')
|
41
|
+
AwsBackupRecoveryPointArn = Shapes::StringShape.new(name: 'AwsBackupRecoveryPointArn')
|
41
42
|
BacktrackDBClusterMessage = Shapes::StructureShape.new(name: 'BacktrackDBClusterMessage')
|
42
43
|
BackupPolicyNotFoundFault = Shapes::StructureShape.new(name: 'BackupPolicyNotFoundFault')
|
43
44
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
@@ -77,6 +78,8 @@ module Aws::RDS
|
|
77
78
|
CreateDBInstanceResult = Shapes::StructureShape.new(name: 'CreateDBInstanceResult')
|
78
79
|
CreateDBParameterGroupMessage = Shapes::StructureShape.new(name: 'CreateDBParameterGroupMessage')
|
79
80
|
CreateDBParameterGroupResult = Shapes::StructureShape.new(name: 'CreateDBParameterGroupResult')
|
81
|
+
CreateDBProxyEndpointRequest = Shapes::StructureShape.new(name: 'CreateDBProxyEndpointRequest')
|
82
|
+
CreateDBProxyEndpointResponse = Shapes::StructureShape.new(name: 'CreateDBProxyEndpointResponse')
|
80
83
|
CreateDBProxyRequest = Shapes::StructureShape.new(name: 'CreateDBProxyRequest')
|
81
84
|
CreateDBProxyResponse = Shapes::StructureShape.new(name: 'CreateDBProxyResponse')
|
82
85
|
CreateDBSecurityGroupMessage = Shapes::StructureShape.new(name: 'CreateDBSecurityGroupMessage')
|
@@ -173,7 +176,16 @@ module Aws::RDS
|
|
173
176
|
DBParameterGroupsMessage = Shapes::StructureShape.new(name: 'DBParameterGroupsMessage')
|
174
177
|
DBProxy = Shapes::StructureShape.new(name: 'DBProxy')
|
175
178
|
DBProxyAlreadyExistsFault = Shapes::StructureShape.new(name: 'DBProxyAlreadyExistsFault')
|
179
|
+
DBProxyEndpoint = Shapes::StructureShape.new(name: 'DBProxyEndpoint')
|
180
|
+
DBProxyEndpointAlreadyExistsFault = Shapes::StructureShape.new(name: 'DBProxyEndpointAlreadyExistsFault')
|
181
|
+
DBProxyEndpointList = Shapes::ListShape.new(name: 'DBProxyEndpointList')
|
182
|
+
DBProxyEndpointName = Shapes::StringShape.new(name: 'DBProxyEndpointName')
|
183
|
+
DBProxyEndpointNotFoundFault = Shapes::StructureShape.new(name: 'DBProxyEndpointNotFoundFault')
|
184
|
+
DBProxyEndpointQuotaExceededFault = Shapes::StructureShape.new(name: 'DBProxyEndpointQuotaExceededFault')
|
185
|
+
DBProxyEndpointStatus = Shapes::StringShape.new(name: 'DBProxyEndpointStatus')
|
186
|
+
DBProxyEndpointTargetRole = Shapes::StringShape.new(name: 'DBProxyEndpointTargetRole')
|
176
187
|
DBProxyList = Shapes::ListShape.new(name: 'DBProxyList')
|
188
|
+
DBProxyName = Shapes::StringShape.new(name: 'DBProxyName')
|
177
189
|
DBProxyNotFoundFault = Shapes::StructureShape.new(name: 'DBProxyNotFoundFault')
|
178
190
|
DBProxyQuotaExceededFault = Shapes::StructureShape.new(name: 'DBProxyQuotaExceededFault')
|
179
191
|
DBProxyStatus = Shapes::StringShape.new(name: 'DBProxyStatus')
|
@@ -223,6 +235,8 @@ module Aws::RDS
|
|
223
235
|
DeleteDBInstanceMessage = Shapes::StructureShape.new(name: 'DeleteDBInstanceMessage')
|
224
236
|
DeleteDBInstanceResult = Shapes::StructureShape.new(name: 'DeleteDBInstanceResult')
|
225
237
|
DeleteDBParameterGroupMessage = Shapes::StructureShape.new(name: 'DeleteDBParameterGroupMessage')
|
238
|
+
DeleteDBProxyEndpointRequest = Shapes::StructureShape.new(name: 'DeleteDBProxyEndpointRequest')
|
239
|
+
DeleteDBProxyEndpointResponse = Shapes::StructureShape.new(name: 'DeleteDBProxyEndpointResponse')
|
226
240
|
DeleteDBProxyRequest = Shapes::StructureShape.new(name: 'DeleteDBProxyRequest')
|
227
241
|
DeleteDBProxyResponse = Shapes::StructureShape.new(name: 'DeleteDBProxyResponse')
|
228
242
|
DeleteDBSecurityGroupMessage = Shapes::StructureShape.new(name: 'DeleteDBSecurityGroupMessage')
|
@@ -259,6 +273,8 @@ module Aws::RDS
|
|
259
273
|
DescribeDBParametersMessage = Shapes::StructureShape.new(name: 'DescribeDBParametersMessage')
|
260
274
|
DescribeDBProxiesRequest = Shapes::StructureShape.new(name: 'DescribeDBProxiesRequest')
|
261
275
|
DescribeDBProxiesResponse = Shapes::StructureShape.new(name: 'DescribeDBProxiesResponse')
|
276
|
+
DescribeDBProxyEndpointsRequest = Shapes::StructureShape.new(name: 'DescribeDBProxyEndpointsRequest')
|
277
|
+
DescribeDBProxyEndpointsResponse = Shapes::StructureShape.new(name: 'DescribeDBProxyEndpointsResponse')
|
262
278
|
DescribeDBProxyTargetGroupsRequest = Shapes::StructureShape.new(name: 'DescribeDBProxyTargetGroupsRequest')
|
263
279
|
DescribeDBProxyTargetGroupsResponse = Shapes::StructureShape.new(name: 'DescribeDBProxyTargetGroupsResponse')
|
264
280
|
DescribeDBProxyTargetsRequest = Shapes::StructureShape.new(name: 'DescribeDBProxyTargetsRequest')
|
@@ -363,6 +379,7 @@ module Aws::RDS
|
|
363
379
|
InvalidDBInstanceAutomatedBackupStateFault = Shapes::StructureShape.new(name: 'InvalidDBInstanceAutomatedBackupStateFault')
|
364
380
|
InvalidDBInstanceStateFault = Shapes::StructureShape.new(name: 'InvalidDBInstanceStateFault')
|
365
381
|
InvalidDBParameterGroupStateFault = Shapes::StructureShape.new(name: 'InvalidDBParameterGroupStateFault')
|
382
|
+
InvalidDBProxyEndpointStateFault = Shapes::StructureShape.new(name: 'InvalidDBProxyEndpointStateFault')
|
366
383
|
InvalidDBProxyStateFault = Shapes::StructureShape.new(name: 'InvalidDBProxyStateFault')
|
367
384
|
InvalidDBSecurityGroupStateFault = Shapes::StructureShape.new(name: 'InvalidDBSecurityGroupStateFault')
|
368
385
|
InvalidDBSnapshotStateFault = Shapes::StructureShape.new(name: 'InvalidDBSnapshotStateFault')
|
@@ -400,6 +417,8 @@ module Aws::RDS
|
|
400
417
|
ModifyDBInstanceMessage = Shapes::StructureShape.new(name: 'ModifyDBInstanceMessage')
|
401
418
|
ModifyDBInstanceResult = Shapes::StructureShape.new(name: 'ModifyDBInstanceResult')
|
402
419
|
ModifyDBParameterGroupMessage = Shapes::StructureShape.new(name: 'ModifyDBParameterGroupMessage')
|
420
|
+
ModifyDBProxyEndpointRequest = Shapes::StructureShape.new(name: 'ModifyDBProxyEndpointRequest')
|
421
|
+
ModifyDBProxyEndpointResponse = Shapes::StructureShape.new(name: 'ModifyDBProxyEndpointResponse')
|
403
422
|
ModifyDBProxyRequest = Shapes::StructureShape.new(name: 'ModifyDBProxyRequest')
|
404
423
|
ModifyDBProxyResponse = Shapes::StructureShape.new(name: 'ModifyDBProxyResponse')
|
405
424
|
ModifyDBProxyTargetGroupRequest = Shapes::StructureShape.new(name: 'ModifyDBProxyTargetGroupRequest')
|
@@ -564,6 +583,7 @@ module Aws::RDS
|
|
564
583
|
TargetHealth = Shapes::StructureShape.new(name: 'TargetHealth')
|
565
584
|
TargetHealthReason = Shapes::StringShape.new(name: 'TargetHealthReason')
|
566
585
|
TargetList = Shapes::ListShape.new(name: 'TargetList')
|
586
|
+
TargetRole = Shapes::StringShape.new(name: 'TargetRole')
|
567
587
|
TargetState = Shapes::StringShape.new(name: 'TargetState')
|
568
588
|
TargetType = Shapes::StringShape.new(name: 'TargetType')
|
569
589
|
Timezone = Shapes::StructureShape.new(name: 'Timezone')
|
@@ -937,6 +957,17 @@ module Aws::RDS
|
|
937
957
|
CreateDBParameterGroupResult.add_member(:db_parameter_group, Shapes::ShapeRef.new(shape: DBParameterGroup, location_name: "DBParameterGroup"))
|
938
958
|
CreateDBParameterGroupResult.struct_class = Types::CreateDBParameterGroupResult
|
939
959
|
|
960
|
+
CreateDBProxyEndpointRequest.add_member(:db_proxy_name, Shapes::ShapeRef.new(shape: DBProxyName, required: true, location_name: "DBProxyName"))
|
961
|
+
CreateDBProxyEndpointRequest.add_member(:db_proxy_endpoint_name, Shapes::ShapeRef.new(shape: DBProxyEndpointName, required: true, location_name: "DBProxyEndpointName"))
|
962
|
+
CreateDBProxyEndpointRequest.add_member(:vpc_subnet_ids, Shapes::ShapeRef.new(shape: StringList, required: true, location_name: "VpcSubnetIds"))
|
963
|
+
CreateDBProxyEndpointRequest.add_member(:vpc_security_group_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "VpcSecurityGroupIds"))
|
964
|
+
CreateDBProxyEndpointRequest.add_member(:target_role, Shapes::ShapeRef.new(shape: DBProxyEndpointTargetRole, location_name: "TargetRole"))
|
965
|
+
CreateDBProxyEndpointRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
966
|
+
CreateDBProxyEndpointRequest.struct_class = Types::CreateDBProxyEndpointRequest
|
967
|
+
|
968
|
+
CreateDBProxyEndpointResponse.add_member(:db_proxy_endpoint, Shapes::ShapeRef.new(shape: DBProxyEndpoint, location_name: "DBProxyEndpoint"))
|
969
|
+
CreateDBProxyEndpointResponse.struct_class = Types::CreateDBProxyEndpointResponse
|
970
|
+
|
940
971
|
CreateDBProxyRequest.add_member(:db_proxy_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBProxyName"))
|
941
972
|
CreateDBProxyRequest.add_member(:engine_family, Shapes::ShapeRef.new(shape: EngineFamily, required: true, location_name: "EngineFamily"))
|
942
973
|
CreateDBProxyRequest.add_member(:auth, Shapes::ShapeRef.new(shape: UserAuthConfigList, required: true, location_name: "Auth"))
|
@@ -1327,6 +1358,7 @@ module Aws::RDS
|
|
1327
1358
|
DBInstance.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
1328
1359
|
DBInstance.add_member(:db_instance_automated_backups_replications, Shapes::ShapeRef.new(shape: DBInstanceAutomatedBackupsReplicationList, location_name: "DBInstanceAutomatedBackupsReplications"))
|
1329
1360
|
DBInstance.add_member(:customer_owned_ip_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CustomerOwnedIpEnabled"))
|
1361
|
+
DBInstance.add_member(:aws_backup_recovery_point_arn, Shapes::ShapeRef.new(shape: String, location_name: "AwsBackupRecoveryPointArn"))
|
1330
1362
|
DBInstance.struct_class = Types::DBInstance
|
1331
1363
|
|
1332
1364
|
DBInstanceAlreadyExistsFault.struct_class = Types::DBInstanceAlreadyExistsFault
|
@@ -1440,6 +1472,7 @@ module Aws::RDS
|
|
1440
1472
|
DBProxy.add_member(:db_proxy_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBProxyArn"))
|
1441
1473
|
DBProxy.add_member(:status, Shapes::ShapeRef.new(shape: DBProxyStatus, location_name: "Status"))
|
1442
1474
|
DBProxy.add_member(:engine_family, Shapes::ShapeRef.new(shape: String, location_name: "EngineFamily"))
|
1475
|
+
DBProxy.add_member(:vpc_id, Shapes::ShapeRef.new(shape: String, location_name: "VpcId"))
|
1443
1476
|
DBProxy.add_member(:vpc_security_group_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "VpcSecurityGroupIds"))
|
1444
1477
|
DBProxy.add_member(:vpc_subnet_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "VpcSubnetIds"))
|
1445
1478
|
DBProxy.add_member(:auth, Shapes::ShapeRef.new(shape: UserAuthConfigInfoList, location_name: "Auth"))
|
@@ -1454,6 +1487,27 @@ module Aws::RDS
|
|
1454
1487
|
|
1455
1488
|
DBProxyAlreadyExistsFault.struct_class = Types::DBProxyAlreadyExistsFault
|
1456
1489
|
|
1490
|
+
DBProxyEndpoint.add_member(:db_proxy_endpoint_name, Shapes::ShapeRef.new(shape: String, location_name: "DBProxyEndpointName"))
|
1491
|
+
DBProxyEndpoint.add_member(:db_proxy_endpoint_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBProxyEndpointArn"))
|
1492
|
+
DBProxyEndpoint.add_member(:db_proxy_name, Shapes::ShapeRef.new(shape: String, location_name: "DBProxyName"))
|
1493
|
+
DBProxyEndpoint.add_member(:status, Shapes::ShapeRef.new(shape: DBProxyEndpointStatus, location_name: "Status"))
|
1494
|
+
DBProxyEndpoint.add_member(:vpc_id, Shapes::ShapeRef.new(shape: String, location_name: "VpcId"))
|
1495
|
+
DBProxyEndpoint.add_member(:vpc_security_group_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "VpcSecurityGroupIds"))
|
1496
|
+
DBProxyEndpoint.add_member(:vpc_subnet_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "VpcSubnetIds"))
|
1497
|
+
DBProxyEndpoint.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "Endpoint"))
|
1498
|
+
DBProxyEndpoint.add_member(:created_date, Shapes::ShapeRef.new(shape: TStamp, location_name: "CreatedDate"))
|
1499
|
+
DBProxyEndpoint.add_member(:target_role, Shapes::ShapeRef.new(shape: DBProxyEndpointTargetRole, location_name: "TargetRole"))
|
1500
|
+
DBProxyEndpoint.add_member(:is_default, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsDefault"))
|
1501
|
+
DBProxyEndpoint.struct_class = Types::DBProxyEndpoint
|
1502
|
+
|
1503
|
+
DBProxyEndpointAlreadyExistsFault.struct_class = Types::DBProxyEndpointAlreadyExistsFault
|
1504
|
+
|
1505
|
+
DBProxyEndpointList.member = Shapes::ShapeRef.new(shape: DBProxyEndpoint)
|
1506
|
+
|
1507
|
+
DBProxyEndpointNotFoundFault.struct_class = Types::DBProxyEndpointNotFoundFault
|
1508
|
+
|
1509
|
+
DBProxyEndpointQuotaExceededFault.struct_class = Types::DBProxyEndpointQuotaExceededFault
|
1510
|
+
|
1457
1511
|
DBProxyList.member = Shapes::ShapeRef.new(shape: DBProxy)
|
1458
1512
|
|
1459
1513
|
DBProxyNotFoundFault.struct_class = Types::DBProxyNotFoundFault
|
@@ -1466,6 +1520,7 @@ module Aws::RDS
|
|
1466
1520
|
DBProxyTarget.add_member(:rds_resource_id, Shapes::ShapeRef.new(shape: String, location_name: "RdsResourceId"))
|
1467
1521
|
DBProxyTarget.add_member(:port, Shapes::ShapeRef.new(shape: Integer, location_name: "Port"))
|
1468
1522
|
DBProxyTarget.add_member(:type, Shapes::ShapeRef.new(shape: TargetType, location_name: "Type"))
|
1523
|
+
DBProxyTarget.add_member(:role, Shapes::ShapeRef.new(shape: TargetRole, location_name: "Role"))
|
1469
1524
|
DBProxyTarget.add_member(:target_health, Shapes::ShapeRef.new(shape: TargetHealth, location_name: "TargetHealth"))
|
1470
1525
|
DBProxyTarget.struct_class = Types::DBProxyTarget
|
1471
1526
|
|
@@ -1640,6 +1695,12 @@ module Aws::RDS
|
|
1640
1695
|
DeleteDBParameterGroupMessage.add_member(:db_parameter_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBParameterGroupName"))
|
1641
1696
|
DeleteDBParameterGroupMessage.struct_class = Types::DeleteDBParameterGroupMessage
|
1642
1697
|
|
1698
|
+
DeleteDBProxyEndpointRequest.add_member(:db_proxy_endpoint_name, Shapes::ShapeRef.new(shape: DBProxyEndpointName, required: true, location_name: "DBProxyEndpointName"))
|
1699
|
+
DeleteDBProxyEndpointRequest.struct_class = Types::DeleteDBProxyEndpointRequest
|
1700
|
+
|
1701
|
+
DeleteDBProxyEndpointResponse.add_member(:db_proxy_endpoint, Shapes::ShapeRef.new(shape: DBProxyEndpoint, location_name: "DBProxyEndpoint"))
|
1702
|
+
DeleteDBProxyEndpointResponse.struct_class = Types::DeleteDBProxyEndpointResponse
|
1703
|
+
|
1643
1704
|
DeleteDBProxyRequest.add_member(:db_proxy_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBProxyName"))
|
1644
1705
|
DeleteDBProxyRequest.struct_class = Types::DeleteDBProxyRequest
|
1645
1706
|
|
@@ -1817,6 +1878,17 @@ module Aws::RDS
|
|
1817
1878
|
DescribeDBProxiesResponse.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
1818
1879
|
DescribeDBProxiesResponse.struct_class = Types::DescribeDBProxiesResponse
|
1819
1880
|
|
1881
|
+
DescribeDBProxyEndpointsRequest.add_member(:db_proxy_name, Shapes::ShapeRef.new(shape: DBProxyName, location_name: "DBProxyName"))
|
1882
|
+
DescribeDBProxyEndpointsRequest.add_member(:db_proxy_endpoint_name, Shapes::ShapeRef.new(shape: DBProxyEndpointName, location_name: "DBProxyEndpointName"))
|
1883
|
+
DescribeDBProxyEndpointsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filters"))
|
1884
|
+
DescribeDBProxyEndpointsRequest.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
1885
|
+
DescribeDBProxyEndpointsRequest.add_member(:max_records, Shapes::ShapeRef.new(shape: MaxRecords, location_name: "MaxRecords"))
|
1886
|
+
DescribeDBProxyEndpointsRequest.struct_class = Types::DescribeDBProxyEndpointsRequest
|
1887
|
+
|
1888
|
+
DescribeDBProxyEndpointsResponse.add_member(:db_proxy_endpoints, Shapes::ShapeRef.new(shape: DBProxyEndpointList, location_name: "DBProxyEndpoints"))
|
1889
|
+
DescribeDBProxyEndpointsResponse.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
1890
|
+
DescribeDBProxyEndpointsResponse.struct_class = Types::DescribeDBProxyEndpointsResponse
|
1891
|
+
|
1820
1892
|
DescribeDBProxyTargetGroupsRequest.add_member(:db_proxy_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBProxyName"))
|
1821
1893
|
DescribeDBProxyTargetGroupsRequest.add_member(:target_group_name, Shapes::ShapeRef.new(shape: String, location_name: "TargetGroupName"))
|
1822
1894
|
DescribeDBProxyTargetGroupsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filters"))
|
@@ -2239,6 +2311,8 @@ module Aws::RDS
|
|
2239
2311
|
|
2240
2312
|
InvalidDBParameterGroupStateFault.struct_class = Types::InvalidDBParameterGroupStateFault
|
2241
2313
|
|
2314
|
+
InvalidDBProxyEndpointStateFault.struct_class = Types::InvalidDBProxyEndpointStateFault
|
2315
|
+
|
2242
2316
|
InvalidDBProxyStateFault.struct_class = Types::InvalidDBProxyStateFault
|
2243
2317
|
|
2244
2318
|
InvalidDBSecurityGroupStateFault.struct_class = Types::InvalidDBSecurityGroupStateFault
|
@@ -2392,6 +2466,7 @@ module Aws::RDS
|
|
2392
2466
|
ModifyDBInstanceMessage.add_member(:certificate_rotation_restart, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CertificateRotationRestart"))
|
2393
2467
|
ModifyDBInstanceMessage.add_member(:replica_mode, Shapes::ShapeRef.new(shape: ReplicaMode, location_name: "ReplicaMode"))
|
2394
2468
|
ModifyDBInstanceMessage.add_member(:enable_customer_owned_ip, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableCustomerOwnedIp"))
|
2469
|
+
ModifyDBInstanceMessage.add_member(:aws_backup_recovery_point_arn, Shapes::ShapeRef.new(shape: AwsBackupRecoveryPointArn, location_name: "AwsBackupRecoveryPointArn"))
|
2395
2470
|
ModifyDBInstanceMessage.struct_class = Types::ModifyDBInstanceMessage
|
2396
2471
|
|
2397
2472
|
ModifyDBInstanceResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
@@ -2401,6 +2476,14 @@ module Aws::RDS
|
|
2401
2476
|
ModifyDBParameterGroupMessage.add_member(:parameters, Shapes::ShapeRef.new(shape: ParametersList, required: true, location_name: "Parameters"))
|
2402
2477
|
ModifyDBParameterGroupMessage.struct_class = Types::ModifyDBParameterGroupMessage
|
2403
2478
|
|
2479
|
+
ModifyDBProxyEndpointRequest.add_member(:db_proxy_endpoint_name, Shapes::ShapeRef.new(shape: DBProxyEndpointName, required: true, location_name: "DBProxyEndpointName"))
|
2480
|
+
ModifyDBProxyEndpointRequest.add_member(:new_db_proxy_endpoint_name, Shapes::ShapeRef.new(shape: DBProxyEndpointName, location_name: "NewDBProxyEndpointName"))
|
2481
|
+
ModifyDBProxyEndpointRequest.add_member(:vpc_security_group_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "VpcSecurityGroupIds"))
|
2482
|
+
ModifyDBProxyEndpointRequest.struct_class = Types::ModifyDBProxyEndpointRequest
|
2483
|
+
|
2484
|
+
ModifyDBProxyEndpointResponse.add_member(:db_proxy_endpoint, Shapes::ShapeRef.new(shape: DBProxyEndpoint, location_name: "DBProxyEndpoint"))
|
2485
|
+
ModifyDBProxyEndpointResponse.struct_class = Types::ModifyDBProxyEndpointResponse
|
2486
|
+
|
2404
2487
|
ModifyDBProxyRequest.add_member(:db_proxy_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBProxyName"))
|
2405
2488
|
ModifyDBProxyRequest.add_member(:new_db_proxy_name, Shapes::ShapeRef.new(shape: String, location_name: "NewDBProxyName"))
|
2406
2489
|
ModifyDBProxyRequest.add_member(:auth, Shapes::ShapeRef.new(shape: UserAuthConfigList, location_name: "Auth"))
|
@@ -3607,6 +3690,19 @@ module Aws::RDS
|
|
3607
3690
|
o.errors << Shapes::ShapeRef.new(shape: DBProxyQuotaExceededFault)
|
3608
3691
|
end)
|
3609
3692
|
|
3693
|
+
api.add_operation(:create_db_proxy_endpoint, Seahorse::Model::Operation.new.tap do |o|
|
3694
|
+
o.name = "CreateDBProxyEndpoint"
|
3695
|
+
o.http_method = "POST"
|
3696
|
+
o.http_request_uri = "/"
|
3697
|
+
o.input = Shapes::ShapeRef.new(shape: CreateDBProxyEndpointRequest)
|
3698
|
+
o.output = Shapes::ShapeRef.new(shape: CreateDBProxyEndpointResponse)
|
3699
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidSubnet)
|
3700
|
+
o.errors << Shapes::ShapeRef.new(shape: DBProxyNotFoundFault)
|
3701
|
+
o.errors << Shapes::ShapeRef.new(shape: DBProxyEndpointAlreadyExistsFault)
|
3702
|
+
o.errors << Shapes::ShapeRef.new(shape: DBProxyEndpointQuotaExceededFault)
|
3703
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidDBProxyStateFault)
|
3704
|
+
end)
|
3705
|
+
|
3610
3706
|
api.add_operation(:create_db_security_group, Seahorse::Model::Operation.new.tap do |o|
|
3611
3707
|
o.name = "CreateDBSecurityGroup"
|
3612
3708
|
o.http_method = "POST"
|
@@ -3778,6 +3874,16 @@ module Aws::RDS
|
|
3778
3874
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDBProxyStateFault)
|
3779
3875
|
end)
|
3780
3876
|
|
3877
|
+
api.add_operation(:delete_db_proxy_endpoint, Seahorse::Model::Operation.new.tap do |o|
|
3878
|
+
o.name = "DeleteDBProxyEndpoint"
|
3879
|
+
o.http_method = "POST"
|
3880
|
+
o.http_request_uri = "/"
|
3881
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteDBProxyEndpointRequest)
|
3882
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteDBProxyEndpointResponse)
|
3883
|
+
o.errors << Shapes::ShapeRef.new(shape: DBProxyEndpointNotFoundFault)
|
3884
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidDBProxyEndpointStateFault)
|
3885
|
+
end)
|
3886
|
+
|
3781
3887
|
api.add_operation(:delete_db_security_group, Seahorse::Model::Operation.new.tap do |o|
|
3782
3888
|
o.name = "DeleteDBSecurityGroup"
|
3783
3889
|
o.http_method = "POST"
|
@@ -4102,6 +4208,22 @@ module Aws::RDS
|
|
4102
4208
|
)
|
4103
4209
|
end)
|
4104
4210
|
|
4211
|
+
api.add_operation(:describe_db_proxy_endpoints, Seahorse::Model::Operation.new.tap do |o|
|
4212
|
+
o.name = "DescribeDBProxyEndpoints"
|
4213
|
+
o.http_method = "POST"
|
4214
|
+
o.http_request_uri = "/"
|
4215
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeDBProxyEndpointsRequest)
|
4216
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeDBProxyEndpointsResponse)
|
4217
|
+
o.errors << Shapes::ShapeRef.new(shape: DBProxyNotFoundFault)
|
4218
|
+
o.errors << Shapes::ShapeRef.new(shape: DBProxyEndpointNotFoundFault)
|
4219
|
+
o[:pager] = Aws::Pager.new(
|
4220
|
+
limit_key: "max_records",
|
4221
|
+
tokens: {
|
4222
|
+
"marker" => "marker"
|
4223
|
+
}
|
4224
|
+
)
|
4225
|
+
end)
|
4226
|
+
|
4105
4227
|
api.add_operation(:describe_db_proxy_target_groups, Seahorse::Model::Operation.new.tap do |o|
|
4106
4228
|
o.name = "DescribeDBProxyTargetGroups"
|
4107
4229
|
o.http_method = "POST"
|
@@ -4592,6 +4714,18 @@ module Aws::RDS
|
|
4592
4714
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDBProxyStateFault)
|
4593
4715
|
end)
|
4594
4716
|
|
4717
|
+
api.add_operation(:modify_db_proxy_endpoint, Seahorse::Model::Operation.new.tap do |o|
|
4718
|
+
o.name = "ModifyDBProxyEndpoint"
|
4719
|
+
o.http_method = "POST"
|
4720
|
+
o.http_request_uri = "/"
|
4721
|
+
o.input = Shapes::ShapeRef.new(shape: ModifyDBProxyEndpointRequest)
|
4722
|
+
o.output = Shapes::ShapeRef.new(shape: ModifyDBProxyEndpointResponse)
|
4723
|
+
o.errors << Shapes::ShapeRef.new(shape: DBProxyEndpointNotFoundFault)
|
4724
|
+
o.errors << Shapes::ShapeRef.new(shape: DBProxyEndpointAlreadyExistsFault)
|
4725
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidDBProxyEndpointStateFault)
|
4726
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidDBProxyStateFault)
|
4727
|
+
end)
|
4728
|
+
|
4595
4729
|
api.add_operation(:modify_db_proxy_target_group, Seahorse::Model::Operation.new.tap do |o|
|
4596
4730
|
o.name = "ModifyDBProxyTargetGroup"
|
4597
4731
|
o.http_method = "POST"
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -777,9 +777,8 @@ module Aws::RDS
|
|
777
777
|
# parameter.
|
778
778
|
#
|
779
779
|
# The default is a 30-minute window selected at random from an 8-hour
|
780
|
-
# block of time for each AWS Region. To
|
781
|
-
# see [
|
782
|
-
# *Amazon Aurora User Guide.*
|
780
|
+
# block of time for each AWS Region. To view the time blocks available,
|
781
|
+
# see [ Backup window][1] in the *Amazon Aurora User Guide.*
|
783
782
|
#
|
784
783
|
# Constraints:
|
785
784
|
#
|
@@ -793,7 +792,7 @@ module Aws::RDS
|
|
793
792
|
#
|
794
793
|
#
|
795
794
|
#
|
796
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/
|
795
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Managing.Backups.html#Aurora.Managing.Backups.BackupWindow
|
797
796
|
# @option options [String] :preferred_maintenance_window
|
798
797
|
# The weekly time range during which system maintenance can occur, in
|
799
798
|
# Universal Coordinated Time (UTC).
|
@@ -929,7 +928,7 @@ module Aws::RDS
|
|
929
928
|
#
|
930
929
|
# **Aurora PostgreSQL**
|
931
930
|
#
|
932
|
-
# Possible
|
931
|
+
# Possible value is `postgresql`.
|
933
932
|
#
|
934
933
|
#
|
935
934
|
#
|
@@ -1262,9 +1261,8 @@ module Aws::RDS
|
|
1262
1261
|
# parameter.
|
1263
1262
|
#
|
1264
1263
|
# The default is a 30-minute window selected at random from an 8-hour
|
1265
|
-
# block of time for each AWS Region. To
|
1266
|
-
# see [
|
1267
|
-
# *Amazon Aurora User Guide.*
|
1264
|
+
# block of time for each AWS Region. To view the time blocks available,
|
1265
|
+
# see [ Backup window][1] in the *Amazon Aurora User Guide.*
|
1268
1266
|
#
|
1269
1267
|
# Constraints:
|
1270
1268
|
#
|
@@ -1278,7 +1276,7 @@ module Aws::RDS
|
|
1278
1276
|
#
|
1279
1277
|
#
|
1280
1278
|
#
|
1281
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/
|
1279
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Managing.Backups.html#Aurora.Managing.Backups.BackupWindow
|
1282
1280
|
# @option options [String] :preferred_maintenance_window
|
1283
1281
|
# The weekly time range during which system maintenance can occur, in
|
1284
1282
|
# Universal Coordinated Time (UTC).
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -216,6 +216,31 @@ module Aws::RDS
|
|
216
216
|
# **Aurora PostgreSQL**
|
217
217
|
#
|
218
218
|
# Example: `aurora-postgresql9.6`
|
219
|
+
#
|
220
|
+
# To list all of the available parameter group families for a DB engine,
|
221
|
+
# use the following command:
|
222
|
+
#
|
223
|
+
# `aws rds describe-db-engine-versions --query
|
224
|
+
# "DBEngineVersions[].DBParameterGroupFamily" --engine <engine>`
|
225
|
+
#
|
226
|
+
# For example, to list all of the available parameter group families for
|
227
|
+
# the Aurora PostgreSQL DB engine, use the following command:
|
228
|
+
#
|
229
|
+
# `aws rds describe-db-engine-versions --query
|
230
|
+
# "DBEngineVersions[].DBParameterGroupFamily" --engine
|
231
|
+
# aurora-postgresql`
|
232
|
+
#
|
233
|
+
# <note markdown="1"> The output contains duplicates.
|
234
|
+
#
|
235
|
+
# </note>
|
236
|
+
#
|
237
|
+
# The following are the valid DB engine values:
|
238
|
+
#
|
239
|
+
# * `aurora` (for MySQL 5.6-compatible Aurora)
|
240
|
+
#
|
241
|
+
# * `aurora-mysql` (for MySQL 5.7-compatible Aurora)
|
242
|
+
#
|
243
|
+
# * `aurora-postgresql`
|
219
244
|
# @option options [required, String] :description
|
220
245
|
# The description for the DB cluster parameter group.
|
221
246
|
# @option options [Array<Types::Tag>] :tags
|
@@ -264,6 +289,22 @@ module Aws::RDS
|
|
264
289
|
# @param [Hash] options ({})
|
265
290
|
# @option options [required, Array<Types::Parameter>] :parameters
|
266
291
|
# A list of parameters in the DB cluster parameter group to modify.
|
292
|
+
#
|
293
|
+
# Valid Values (for the application method): `immediate |
|
294
|
+
# pending-reboot`
|
295
|
+
#
|
296
|
+
# <note markdown="1"> You can use the `immediate` value with dynamic parameters only. You
|
297
|
+
# can use the `pending-reboot` value for both dynamic and static
|
298
|
+
# parameters.
|
299
|
+
#
|
300
|
+
# When the application method is `immediate`, changes to dynamic
|
301
|
+
# parameters are applied immediately to the DB clusters associated with
|
302
|
+
# the parameter group. When the application method is `pending-reboot`,
|
303
|
+
# changes to dynamic and static parameters are applied after a reboot
|
304
|
+
# without failover to the DB clusters associated with the parameter
|
305
|
+
# group.
|
306
|
+
#
|
307
|
+
# </note>
|
267
308
|
# @return [DBClusterParameterGroup]
|
268
309
|
def modify(options = {})
|
269
310
|
options = options.merge(db_cluster_parameter_group_name: @name)
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -50,12 +50,12 @@ module Aws::RDS
|
|
50
50
|
|
51
51
|
# Specifies the current state of this database.
|
52
52
|
#
|
53
|
-
# For information about DB instance statuses, see [DB
|
54
|
-
#
|
53
|
+
# For information about DB instance statuses, see [Viewing DB instance
|
54
|
+
# status][1] in the *Amazon RDS User Guide.*
|
55
55
|
#
|
56
56
|
#
|
57
57
|
#
|
58
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.DBInstance.Status
|
58
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/accessing-monitoring.html#Overview.DBInstance.Status
|
59
59
|
# @return [String]
|
60
60
|
def db_instance_status
|
61
61
|
data[:db_instance_status]
|
@@ -570,6 +570,12 @@ module Aws::RDS
|
|
570
570
|
data[:customer_owned_ip_enabled]
|
571
571
|
end
|
572
572
|
|
573
|
+
# The Amazon Resource Name (ARN) of the recovery point in AWS Backup.
|
574
|
+
# @return [String]
|
575
|
+
def aws_backup_recovery_point_arn
|
576
|
+
data[:aws_backup_recovery_point_arn]
|
577
|
+
end
|
578
|
+
|
573
579
|
# @!endgroup
|
574
580
|
|
575
581
|
# @return [Client]
|
@@ -1182,19 +1188,15 @@ module Aws::RDS
|
|
1182
1188
|
# @option options [String] :preferred_backup_window
|
1183
1189
|
# The daily time range during which automated backups are created if
|
1184
1190
|
# automated backups are enabled, using the `BackupRetentionPeriod`
|
1185
|
-
# parameter.
|
1186
|
-
#
|
1191
|
+
# parameter. The default is a 30-minute window selected at random from
|
1192
|
+
# an 8-hour block of time for each AWS Region. For more information, see
|
1193
|
+
# [Backup window][1] in the *Amazon RDS User Guide*.
|
1187
1194
|
#
|
1188
1195
|
# **Amazon Aurora**
|
1189
1196
|
#
|
1190
1197
|
# Not applicable. The daily time range for creating automated backups is
|
1191
1198
|
# managed by the DB cluster.
|
1192
1199
|
#
|
1193
|
-
# The default is a 30-minute window selected at random from an 8-hour
|
1194
|
-
# block of time for each AWS Region. To see the time blocks available,
|
1195
|
-
# see [ Adjusting the Preferred DB Instance Maintenance Window][2] in
|
1196
|
-
# the *Amazon RDS User Guide*.
|
1197
|
-
#
|
1198
1200
|
# Constraints:
|
1199
1201
|
#
|
1200
1202
|
# * Must be in the format `hh24:mi-hh24:mi`.
|
@@ -1208,7 +1210,6 @@ module Aws::RDS
|
|
1208
1210
|
#
|
1209
1211
|
#
|
1210
1212
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithAutomatedBackups.html#USER_WorkingWithAutomatedBackups.BackupWindow
|
1211
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow
|
1212
1213
|
# @option options [Integer] :port
|
1213
1214
|
# The port number on which the database accepts connections.
|
1214
1215
|
#
|
@@ -2186,6 +2187,7 @@ module Aws::RDS
|
|
2186
2187
|
# certificate_rotation_restart: false,
|
2187
2188
|
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
2188
2189
|
# enable_customer_owned_ip: false,
|
2190
|
+
# aws_backup_recovery_point_arn: "AwsBackupRecoveryPointArn",
|
2189
2191
|
# })
|
2190
2192
|
# @param [Hash] options ({})
|
2191
2193
|
# @option options [Integer] :allocated_storage
|
@@ -2337,10 +2339,14 @@ module Aws::RDS
|
|
2337
2339
|
# to a positive number enables backups. Setting this parameter to 0
|
2338
2340
|
# disables automated backups.
|
2339
2341
|
#
|
2340
|
-
#
|
2341
|
-
#
|
2342
|
-
#
|
2343
|
-
#
|
2342
|
+
# <note markdown="1"> Enabling and disabling backups can result in a brief I/O suspension
|
2343
|
+
# that lasts from a few seconds to a few minutes, depending on the size
|
2344
|
+
# and class of your DB instance.
|
2345
|
+
#
|
2346
|
+
# </note>
|
2347
|
+
#
|
2348
|
+
# These changes are applied during the next maintenance window unless
|
2349
|
+
# the `ApplyImmediately` parameter is enabled for this request. If you
|
2344
2350
|
# change the parameter from one non-zero value to another non-zero
|
2345
2351
|
# value, the change is asynchronously applied as soon as possible.
|
2346
2352
|
#
|
@@ -2367,7 +2373,9 @@ module Aws::RDS
|
|
2367
2373
|
# automated backups are enabled, as determined by the
|
2368
2374
|
# `BackupRetentionPeriod` parameter. Changing this parameter doesn't
|
2369
2375
|
# result in an outage and the change is asynchronously applied as soon
|
2370
|
-
# as possible.
|
2376
|
+
# as possible. The default is a 30-minute window selected at random from
|
2377
|
+
# an 8-hour block of time for each AWS Region. For more information, see
|
2378
|
+
# [Backup window][1] in the *Amazon RDS User Guide.*
|
2371
2379
|
#
|
2372
2380
|
# **Amazon Aurora**
|
2373
2381
|
#
|
@@ -2384,6 +2392,10 @@ module Aws::RDS
|
|
2384
2392
|
# * Must not conflict with the preferred maintenance window
|
2385
2393
|
#
|
2386
2394
|
# * Must be at least 30 minutes
|
2395
|
+
#
|
2396
|
+
#
|
2397
|
+
#
|
2398
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithAutomatedBackups.html#USER_WorkingWithAutomatedBackups.BackupWindow
|
2387
2399
|
# @option options [String] :preferred_maintenance_window
|
2388
2400
|
# The weekly time range (in UTC) during which system maintenance can
|
2389
2401
|
# occur, which might result in an outage. Changing this parameter
|
@@ -2395,6 +2407,9 @@ module Aws::RDS
|
|
2395
2407
|
# current time, there must be at least 30 minutes between the current
|
2396
2408
|
# time and end of the window to ensure pending changes are applied.
|
2397
2409
|
#
|
2410
|
+
# For more information, see [Amazon RDS Maintenance Window][1] in the
|
2411
|
+
# *Amazon RDS User Guide.*
|
2412
|
+
#
|
2398
2413
|
# Default: Uses existing setting
|
2399
2414
|
#
|
2400
2415
|
# Format: ddd:hh24:mi-ddd:hh24:mi
|
@@ -2402,6 +2417,10 @@ module Aws::RDS
|
|
2402
2417
|
# Valid Days: Mon \| Tue \| Wed \| Thu \| Fri \| Sat \| Sun
|
2403
2418
|
#
|
2404
2419
|
# Constraints: Must be at least 30 minutes
|
2420
|
+
#
|
2421
|
+
#
|
2422
|
+
#
|
2423
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#Concepts.DBMaintenance
|
2405
2424
|
# @option options [Boolean] :multi_az
|
2406
2425
|
# A value that indicates whether the DB instance is a Multi-AZ
|
2407
2426
|
# deployment. Changing this parameter doesn't result in an outage and
|
@@ -2802,6 +2821,8 @@ module Aws::RDS
|
|
2802
2821
|
#
|
2803
2822
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
2804
2823
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-networking-components.html#ip-addressing
|
2824
|
+
# @option options [String] :aws_backup_recovery_point_arn
|
2825
|
+
# The Amazon Resource Name (ARN) of the recovery point in AWS Backup.
|
2805
2826
|
# @return [DBInstance]
|
2806
2827
|
def modify(options = {})
|
2807
2828
|
options = options.merge(db_instance_identifier: @id)
|