aws-sdk-rds 1.212.0 → 1.213.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/client.rb +450 -7
- data/lib/aws-sdk-rds/client_api.rb +132 -0
- data/lib/aws-sdk-rds/db_cluster.rb +18 -0
- data/lib/aws-sdk-rds/endpoints.rb +70 -0
- data/lib/aws-sdk-rds/errors.rb +66 -0
- data/lib/aws-sdk-rds/event_subscription.rb +12 -2
- data/lib/aws-sdk-rds/plugins/endpoints.rb +10 -0
- data/lib/aws-sdk-rds/resource.rb +18 -2
- data/lib/aws-sdk-rds/types.rb +362 -4
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
@@ -109,6 +109,7 @@ module Aws::RDS
|
|
109
109
|
CreateDBProxyResponse = Shapes::StructureShape.new(name: 'CreateDBProxyResponse')
|
110
110
|
CreateDBSecurityGroupMessage = Shapes::StructureShape.new(name: 'CreateDBSecurityGroupMessage')
|
111
111
|
CreateDBSecurityGroupResult = Shapes::StructureShape.new(name: 'CreateDBSecurityGroupResult')
|
112
|
+
CreateDBShardGroupMessage = Shapes::StructureShape.new(name: 'CreateDBShardGroupMessage')
|
112
113
|
CreateDBSnapshotMessage = Shapes::StructureShape.new(name: 'CreateDBSnapshotMessage')
|
113
114
|
CreateDBSnapshotResult = Shapes::StructureShape.new(name: 'CreateDBSnapshotResult')
|
114
115
|
CreateDBSubnetGroupMessage = Shapes::StructureShape.new(name: 'CreateDBSubnetGroupMessage')
|
@@ -246,6 +247,10 @@ module Aws::RDS
|
|
246
247
|
DBSecurityGroupNotSupportedFault = Shapes::StructureShape.new(name: 'DBSecurityGroupNotSupportedFault')
|
247
248
|
DBSecurityGroupQuotaExceededFault = Shapes::StructureShape.new(name: 'DBSecurityGroupQuotaExceededFault')
|
248
249
|
DBSecurityGroups = Shapes::ListShape.new(name: 'DBSecurityGroups')
|
250
|
+
DBShardGroup = Shapes::StructureShape.new(name: 'DBShardGroup')
|
251
|
+
DBShardGroupAlreadyExistsFault = Shapes::StructureShape.new(name: 'DBShardGroupAlreadyExistsFault')
|
252
|
+
DBShardGroupNotFoundFault = Shapes::StructureShape.new(name: 'DBShardGroupNotFoundFault')
|
253
|
+
DBShardGroupsList = Shapes::ListShape.new(name: 'DBShardGroupsList')
|
249
254
|
DBSnapshot = Shapes::StructureShape.new(name: 'DBSnapshot')
|
250
255
|
DBSnapshotAlreadyExistsFault = Shapes::StructureShape.new(name: 'DBSnapshotAlreadyExistsFault')
|
251
256
|
DBSnapshotAttribute = Shapes::StructureShape.new(name: 'DBSnapshotAttribute')
|
@@ -290,6 +295,7 @@ module Aws::RDS
|
|
290
295
|
DeleteDBProxyRequest = Shapes::StructureShape.new(name: 'DeleteDBProxyRequest')
|
291
296
|
DeleteDBProxyResponse = Shapes::StructureShape.new(name: 'DeleteDBProxyResponse')
|
292
297
|
DeleteDBSecurityGroupMessage = Shapes::StructureShape.new(name: 'DeleteDBSecurityGroupMessage')
|
298
|
+
DeleteDBShardGroupMessage = Shapes::StructureShape.new(name: 'DeleteDBShardGroupMessage')
|
293
299
|
DeleteDBSnapshotMessage = Shapes::StructureShape.new(name: 'DeleteDBSnapshotMessage')
|
294
300
|
DeleteDBSnapshotResult = Shapes::StructureShape.new(name: 'DeleteDBSnapshotResult')
|
295
301
|
DeleteDBSubnetGroupMessage = Shapes::StructureShape.new(name: 'DeleteDBSubnetGroupMessage')
|
@@ -335,6 +341,8 @@ module Aws::RDS
|
|
335
341
|
DescribeDBProxyTargetsResponse = Shapes::StructureShape.new(name: 'DescribeDBProxyTargetsResponse')
|
336
342
|
DescribeDBRecommendationsMessage = Shapes::StructureShape.new(name: 'DescribeDBRecommendationsMessage')
|
337
343
|
DescribeDBSecurityGroupsMessage = Shapes::StructureShape.new(name: 'DescribeDBSecurityGroupsMessage')
|
344
|
+
DescribeDBShardGroupsMessage = Shapes::StructureShape.new(name: 'DescribeDBShardGroupsMessage')
|
345
|
+
DescribeDBShardGroupsResponse = Shapes::StructureShape.new(name: 'DescribeDBShardGroupsResponse')
|
338
346
|
DescribeDBSnapshotAttributesMessage = Shapes::StructureShape.new(name: 'DescribeDBSnapshotAttributesMessage')
|
339
347
|
DescribeDBSnapshotAttributesResult = Shapes::StructureShape.new(name: 'DescribeDBSnapshotAttributesResult')
|
340
348
|
DescribeDBSnapshotTenantDatabasesMessage = Shapes::StructureShape.new(name: 'DescribeDBSnapshotTenantDatabasesMessage')
|
@@ -459,6 +467,7 @@ module Aws::RDS
|
|
459
467
|
InvalidDBProxyEndpointStateFault = Shapes::StructureShape.new(name: 'InvalidDBProxyEndpointStateFault')
|
460
468
|
InvalidDBProxyStateFault = Shapes::StructureShape.new(name: 'InvalidDBProxyStateFault')
|
461
469
|
InvalidDBSecurityGroupStateFault = Shapes::StructureShape.new(name: 'InvalidDBSecurityGroupStateFault')
|
470
|
+
InvalidDBShardGroupStateFault = Shapes::StructureShape.new(name: 'InvalidDBShardGroupStateFault')
|
462
471
|
InvalidDBSnapshotStateFault = Shapes::StructureShape.new(name: 'InvalidDBSnapshotStateFault')
|
463
472
|
InvalidDBSubnetGroupFault = Shapes::StructureShape.new(name: 'InvalidDBSubnetGroupFault')
|
464
473
|
InvalidDBSubnetGroupStateFault = Shapes::StructureShape.new(name: 'InvalidDBSubnetGroupStateFault')
|
@@ -469,6 +478,7 @@ module Aws::RDS
|
|
469
478
|
InvalidExportTaskStateFault = Shapes::StructureShape.new(name: 'InvalidExportTaskStateFault')
|
470
479
|
InvalidGlobalClusterStateFault = Shapes::StructureShape.new(name: 'InvalidGlobalClusterStateFault')
|
471
480
|
InvalidIntegrationStateFault = Shapes::StructureShape.new(name: 'InvalidIntegrationStateFault')
|
481
|
+
InvalidMaxAcuFault = Shapes::StructureShape.new(name: 'InvalidMaxAcuFault')
|
472
482
|
InvalidOptionGroupStateFault = Shapes::StructureShape.new(name: 'InvalidOptionGroupStateFault')
|
473
483
|
InvalidResourceStateFault = Shapes::StructureShape.new(name: 'InvalidResourceStateFault')
|
474
484
|
InvalidRestoreFault = Shapes::StructureShape.new(name: 'InvalidRestoreFault')
|
@@ -479,6 +489,8 @@ module Aws::RDS
|
|
479
489
|
KMSKeyNotAccessibleFault = Shapes::StructureShape.new(name: 'KMSKeyNotAccessibleFault')
|
480
490
|
KeyList = Shapes::ListShape.new(name: 'KeyList')
|
481
491
|
KmsKeyIdOrArn = Shapes::StringShape.new(name: 'KmsKeyIdOrArn')
|
492
|
+
LimitlessDatabase = Shapes::StructureShape.new(name: 'LimitlessDatabase')
|
493
|
+
LimitlessDatabaseStatus = Shapes::StringShape.new(name: 'LimitlessDatabaseStatus')
|
482
494
|
ListTagsForResourceMessage = Shapes::StructureShape.new(name: 'ListTagsForResourceMessage')
|
483
495
|
LocalWriteForwardingStatus = Shapes::StringShape.new(name: 'LocalWriteForwardingStatus')
|
484
496
|
LogTypeList = Shapes::ListShape.new(name: 'LogTypeList')
|
@@ -486,6 +498,7 @@ module Aws::RDS
|
|
486
498
|
LongOptional = Shapes::IntegerShape.new(name: 'LongOptional')
|
487
499
|
Marker = Shapes::StringShape.new(name: 'Marker')
|
488
500
|
MasterUserSecret = Shapes::StructureShape.new(name: 'MasterUserSecret')
|
501
|
+
MaxDBShardGroupLimitReached = Shapes::StructureShape.new(name: 'MaxDBShardGroupLimitReached')
|
489
502
|
MaxRecords = Shapes::IntegerShape.new(name: 'MaxRecords')
|
490
503
|
Metric = Shapes::StructureShape.new(name: 'Metric')
|
491
504
|
MetricList = Shapes::ListShape.new(name: 'MetricList')
|
@@ -516,6 +529,7 @@ module Aws::RDS
|
|
516
529
|
ModifyDBProxyTargetGroupRequest = Shapes::StructureShape.new(name: 'ModifyDBProxyTargetGroupRequest')
|
517
530
|
ModifyDBProxyTargetGroupResponse = Shapes::StructureShape.new(name: 'ModifyDBProxyTargetGroupResponse')
|
518
531
|
ModifyDBRecommendationMessage = Shapes::StructureShape.new(name: 'ModifyDBRecommendationMessage')
|
532
|
+
ModifyDBShardGroupMessage = Shapes::StructureShape.new(name: 'ModifyDBShardGroupMessage')
|
519
533
|
ModifyDBSnapshotAttributeMessage = Shapes::StructureShape.new(name: 'ModifyDBSnapshotAttributeMessage')
|
520
534
|
ModifyDBSnapshotAttributeResult = Shapes::StructureShape.new(name: 'ModifyDBSnapshotAttributeResult')
|
521
535
|
ModifyDBSnapshotMessage = Shapes::StructureShape.new(name: 'ModifyDBSnapshotMessage')
|
@@ -592,6 +606,7 @@ module Aws::RDS
|
|
592
606
|
RebootDBClusterResult = Shapes::StructureShape.new(name: 'RebootDBClusterResult')
|
593
607
|
RebootDBInstanceMessage = Shapes::StructureShape.new(name: 'RebootDBInstanceMessage')
|
594
608
|
RebootDBInstanceResult = Shapes::StructureShape.new(name: 'RebootDBInstanceResult')
|
609
|
+
RebootDBShardGroupMessage = Shapes::StructureShape.new(name: 'RebootDBShardGroupMessage')
|
595
610
|
RecommendedAction = Shapes::StructureShape.new(name: 'RecommendedAction')
|
596
611
|
RecommendedActionList = Shapes::ListShape.new(name: 'RecommendedActionList')
|
597
612
|
RecommendedActionParameter = Shapes::StructureShape.new(name: 'RecommendedActionParameter')
|
@@ -725,6 +740,7 @@ module Aws::RDS
|
|
725
740
|
TenantDatabasesList = Shapes::ListShape.new(name: 'TenantDatabasesList')
|
726
741
|
TenantDatabasesMessage = Shapes::StructureShape.new(name: 'TenantDatabasesMessage')
|
727
742
|
Timezone = Shapes::StructureShape.new(name: 'Timezone')
|
743
|
+
UnsupportedDBEngineVersionFault = Shapes::StructureShape.new(name: 'UnsupportedDBEngineVersionFault')
|
728
744
|
UpgradeTarget = Shapes::StructureShape.new(name: 'UpgradeTarget')
|
729
745
|
UserAuthConfig = Shapes::StructureShape.new(name: 'UserAuthConfig')
|
730
746
|
UserAuthConfigInfo = Shapes::StructureShape.new(name: 'UserAuthConfigInfo')
|
@@ -1048,6 +1064,7 @@ module Aws::RDS
|
|
1048
1064
|
CreateDBClusterMessage.add_member(:enable_performance_insights, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnablePerformanceInsights"))
|
1049
1065
|
CreateDBClusterMessage.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
|
1050
1066
|
CreateDBClusterMessage.add_member(:performance_insights_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PerformanceInsightsRetentionPeriod"))
|
1067
|
+
CreateDBClusterMessage.add_member(:enable_limitless_database, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableLimitlessDatabase"))
|
1051
1068
|
CreateDBClusterMessage.add_member(:serverless_v2_scaling_configuration, Shapes::ShapeRef.new(shape: ServerlessV2ScalingConfiguration, location_name: "ServerlessV2ScalingConfiguration"))
|
1052
1069
|
CreateDBClusterMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
1053
1070
|
CreateDBClusterMessage.add_member(:db_system_id, Shapes::ShapeRef.new(shape: String, location_name: "DBSystemId"))
|
@@ -1237,6 +1254,13 @@ module Aws::RDS
|
|
1237
1254
|
CreateDBSecurityGroupResult.add_member(:db_security_group, Shapes::ShapeRef.new(shape: DBSecurityGroup, location_name: "DBSecurityGroup"))
|
1238
1255
|
CreateDBSecurityGroupResult.struct_class = Types::CreateDBSecurityGroupResult
|
1239
1256
|
|
1257
|
+
CreateDBShardGroupMessage.add_member(:db_shard_group_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBShardGroupIdentifier"))
|
1258
|
+
CreateDBShardGroupMessage.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterIdentifier"))
|
1259
|
+
CreateDBShardGroupMessage.add_member(:compute_redundancy, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "ComputeRedundancy"))
|
1260
|
+
CreateDBShardGroupMessage.add_member(:max_acu, Shapes::ShapeRef.new(shape: DoubleOptional, required: true, location_name: "MaxACU"))
|
1261
|
+
CreateDBShardGroupMessage.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "PubliclyAccessible"))
|
1262
|
+
CreateDBShardGroupMessage.struct_class = Types::CreateDBShardGroupMessage
|
1263
|
+
|
1240
1264
|
CreateDBSnapshotMessage.add_member(:db_snapshot_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBSnapshotIdentifier"))
|
1241
1265
|
CreateDBSnapshotMessage.add_member(:db_instance_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBInstanceIdentifier"))
|
1242
1266
|
CreateDBSnapshotMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
@@ -1396,6 +1420,7 @@ module Aws::RDS
|
|
1396
1420
|
DBCluster.add_member(:io_optimized_next_allowed_modification_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "IOOptimizedNextAllowedModificationTime"))
|
1397
1421
|
DBCluster.add_member(:local_write_forwarding_status, Shapes::ShapeRef.new(shape: LocalWriteForwardingStatus, location_name: "LocalWriteForwardingStatus"))
|
1398
1422
|
DBCluster.add_member(:aws_backup_recovery_point_arn, Shapes::ShapeRef.new(shape: String, location_name: "AwsBackupRecoveryPointArn"))
|
1423
|
+
DBCluster.add_member(:limitless_database, Shapes::ShapeRef.new(shape: LimitlessDatabase, location_name: "LimitlessDatabase"))
|
1399
1424
|
DBCluster.struct_class = Types::DBCluster
|
1400
1425
|
|
1401
1426
|
DBClusterAlreadyExistsFault.struct_class = Types::DBClusterAlreadyExistsFault
|
@@ -1970,6 +1995,22 @@ module Aws::RDS
|
|
1970
1995
|
|
1971
1996
|
DBSecurityGroups.member = Shapes::ShapeRef.new(shape: DBSecurityGroup, location_name: "DBSecurityGroup")
|
1972
1997
|
|
1998
|
+
DBShardGroup.add_member(:db_shard_group_resource_id, Shapes::ShapeRef.new(shape: String, location_name: "DBShardGroupResourceId"))
|
1999
|
+
DBShardGroup.add_member(:db_shard_group_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBShardGroupIdentifier"))
|
2000
|
+
DBShardGroup.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterIdentifier"))
|
2001
|
+
DBShardGroup.add_member(:max_acu, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MaxACU"))
|
2002
|
+
DBShardGroup.add_member(:compute_redundancy, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "ComputeRedundancy"))
|
2003
|
+
DBShardGroup.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
|
2004
|
+
DBShardGroup.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "PubliclyAccessible"))
|
2005
|
+
DBShardGroup.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "Endpoint"))
|
2006
|
+
DBShardGroup.struct_class = Types::DBShardGroup
|
2007
|
+
|
2008
|
+
DBShardGroupAlreadyExistsFault.struct_class = Types::DBShardGroupAlreadyExistsFault
|
2009
|
+
|
2010
|
+
DBShardGroupNotFoundFault.struct_class = Types::DBShardGroupNotFoundFault
|
2011
|
+
|
2012
|
+
DBShardGroupsList.member = Shapes::ShapeRef.new(shape: DBShardGroup, location_name: "DBShardGroup")
|
2013
|
+
|
1973
2014
|
DBSnapshot.add_member(:db_snapshot_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBSnapshotIdentifier"))
|
1974
2015
|
DBSnapshot.add_member(:db_instance_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBInstanceIdentifier"))
|
1975
2016
|
DBSnapshot.add_member(:snapshot_create_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "SnapshotCreateTime"))
|
@@ -2152,6 +2193,9 @@ module Aws::RDS
|
|
2152
2193
|
DeleteDBSecurityGroupMessage.add_member(:db_security_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBSecurityGroupName"))
|
2153
2194
|
DeleteDBSecurityGroupMessage.struct_class = Types::DeleteDBSecurityGroupMessage
|
2154
2195
|
|
2196
|
+
DeleteDBShardGroupMessage.add_member(:db_shard_group_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBShardGroupIdentifier"))
|
2197
|
+
DeleteDBShardGroupMessage.struct_class = Types::DeleteDBShardGroupMessage
|
2198
|
+
|
2155
2199
|
DeleteDBSnapshotMessage.add_member(:db_snapshot_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBSnapshotIdentifier"))
|
2156
2200
|
DeleteDBSnapshotMessage.struct_class = Types::DeleteDBSnapshotMessage
|
2157
2201
|
|
@@ -2388,6 +2432,16 @@ module Aws::RDS
|
|
2388
2432
|
DescribeDBSecurityGroupsMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
2389
2433
|
DescribeDBSecurityGroupsMessage.struct_class = Types::DescribeDBSecurityGroupsMessage
|
2390
2434
|
|
2435
|
+
DescribeDBShardGroupsMessage.add_member(:db_shard_group_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBShardGroupIdentifier"))
|
2436
|
+
DescribeDBShardGroupsMessage.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filters"))
|
2437
|
+
DescribeDBShardGroupsMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
2438
|
+
DescribeDBShardGroupsMessage.add_member(:max_records, Shapes::ShapeRef.new(shape: MaxRecords, location_name: "MaxRecords"))
|
2439
|
+
DescribeDBShardGroupsMessage.struct_class = Types::DescribeDBShardGroupsMessage
|
2440
|
+
|
2441
|
+
DescribeDBShardGroupsResponse.add_member(:db_shard_groups, Shapes::ShapeRef.new(shape: DBShardGroupsList, location_name: "DBShardGroups"))
|
2442
|
+
DescribeDBShardGroupsResponse.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
2443
|
+
DescribeDBShardGroupsResponse.struct_class = Types::DescribeDBShardGroupsResponse
|
2444
|
+
|
2391
2445
|
DescribeDBSnapshotAttributesMessage.add_member(:db_snapshot_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBSnapshotIdentifier"))
|
2392
2446
|
DescribeDBSnapshotAttributesMessage.struct_class = Types::DescribeDBSnapshotAttributesMessage
|
2393
2447
|
|
@@ -2846,6 +2900,8 @@ module Aws::RDS
|
|
2846
2900
|
|
2847
2901
|
InvalidDBSecurityGroupStateFault.struct_class = Types::InvalidDBSecurityGroupStateFault
|
2848
2902
|
|
2903
|
+
InvalidDBShardGroupStateFault.struct_class = Types::InvalidDBShardGroupStateFault
|
2904
|
+
|
2849
2905
|
InvalidDBSnapshotStateFault.struct_class = Types::InvalidDBSnapshotStateFault
|
2850
2906
|
|
2851
2907
|
InvalidDBSubnetGroupFault.struct_class = Types::InvalidDBSubnetGroupFault
|
@@ -2866,6 +2922,8 @@ module Aws::RDS
|
|
2866
2922
|
|
2867
2923
|
InvalidIntegrationStateFault.struct_class = Types::InvalidIntegrationStateFault
|
2868
2924
|
|
2925
|
+
InvalidMaxAcuFault.struct_class = Types::InvalidMaxAcuFault
|
2926
|
+
|
2869
2927
|
InvalidOptionGroupStateFault.struct_class = Types::InvalidOptionGroupStateFault
|
2870
2928
|
|
2871
2929
|
InvalidResourceStateFault.struct_class = Types::InvalidResourceStateFault
|
@@ -2885,6 +2943,10 @@ module Aws::RDS
|
|
2885
2943
|
|
2886
2944
|
KeyList.member = Shapes::ShapeRef.new(shape: String)
|
2887
2945
|
|
2946
|
+
LimitlessDatabase.add_member(:status, Shapes::ShapeRef.new(shape: LimitlessDatabaseStatus, location_name: "Status"))
|
2947
|
+
LimitlessDatabase.add_member(:min_required_acu, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MinRequiredACU"))
|
2948
|
+
LimitlessDatabase.struct_class = Types::LimitlessDatabase
|
2949
|
+
|
2888
2950
|
ListTagsForResourceMessage.add_member(:resource_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ResourceName"))
|
2889
2951
|
ListTagsForResourceMessage.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filters"))
|
2890
2952
|
ListTagsForResourceMessage.struct_class = Types::ListTagsForResourceMessage
|
@@ -2896,6 +2958,8 @@ module Aws::RDS
|
|
2896
2958
|
MasterUserSecret.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
|
2897
2959
|
MasterUserSecret.struct_class = Types::MasterUserSecret
|
2898
2960
|
|
2961
|
+
MaxDBShardGroupLimitReached.struct_class = Types::MaxDBShardGroupLimitReached
|
2962
|
+
|
2899
2963
|
Metric.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "Name"))
|
2900
2964
|
Metric.add_member(:references, Shapes::ShapeRef.new(shape: MetricReferenceList, location_name: "References"))
|
2901
2965
|
Metric.add_member(:statistics_details, Shapes::ShapeRef.new(shape: String, location_name: "StatisticsDetails"))
|
@@ -2999,6 +3063,7 @@ module Aws::RDS
|
|
2999
3063
|
ModifyDBClusterMessage.add_member(:allow_engine_mode_change, Shapes::ShapeRef.new(shape: Boolean, location_name: "AllowEngineModeChange"))
|
3000
3064
|
ModifyDBClusterMessage.add_member(:enable_local_write_forwarding, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableLocalWriteForwarding"))
|
3001
3065
|
ModifyDBClusterMessage.add_member(:aws_backup_recovery_point_arn, Shapes::ShapeRef.new(shape: AwsBackupRecoveryPointArn, location_name: "AwsBackupRecoveryPointArn"))
|
3066
|
+
ModifyDBClusterMessage.add_member(:enable_limitless_database, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableLimitlessDatabase"))
|
3002
3067
|
ModifyDBClusterMessage.struct_class = Types::ModifyDBClusterMessage
|
3003
3068
|
|
3004
3069
|
ModifyDBClusterParameterGroupMessage.add_member(:db_cluster_parameter_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterParameterGroupName"))
|
@@ -3122,6 +3187,10 @@ module Aws::RDS
|
|
3122
3187
|
ModifyDBRecommendationMessage.add_member(:recommended_action_updates, Shapes::ShapeRef.new(shape: RecommendedActionUpdateList, location_name: "RecommendedActionUpdates"))
|
3123
3188
|
ModifyDBRecommendationMessage.struct_class = Types::ModifyDBRecommendationMessage
|
3124
3189
|
|
3190
|
+
ModifyDBShardGroupMessage.add_member(:db_shard_group_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBShardGroupIdentifier"))
|
3191
|
+
ModifyDBShardGroupMessage.add_member(:max_acu, Shapes::ShapeRef.new(shape: DoubleOptional, location_name: "MaxACU"))
|
3192
|
+
ModifyDBShardGroupMessage.struct_class = Types::ModifyDBShardGroupMessage
|
3193
|
+
|
3125
3194
|
ModifyDBSnapshotAttributeMessage.add_member(:db_snapshot_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBSnapshotIdentifier"))
|
3126
3195
|
ModifyDBSnapshotAttributeMessage.add_member(:attribute_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "AttributeName"))
|
3127
3196
|
ModifyDBSnapshotAttributeMessage.add_member(:values_to_add, Shapes::ShapeRef.new(shape: AttributeValueList, location_name: "ValuesToAdd"))
|
@@ -3492,6 +3561,9 @@ module Aws::RDS
|
|
3492
3561
|
RebootDBInstanceResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
3493
3562
|
RebootDBInstanceResult.struct_class = Types::RebootDBInstanceResult
|
3494
3563
|
|
3564
|
+
RebootDBShardGroupMessage.add_member(:db_shard_group_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBShardGroupIdentifier"))
|
3565
|
+
RebootDBShardGroupMessage.struct_class = Types::RebootDBShardGroupMessage
|
3566
|
+
|
3495
3567
|
RecommendedAction.add_member(:action_id, Shapes::ShapeRef.new(shape: String, location_name: "ActionId"))
|
3496
3568
|
RecommendedAction.add_member(:title, Shapes::ShapeRef.new(shape: String, location_name: "Title"))
|
3497
3569
|
RecommendedAction.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
|
@@ -4140,6 +4212,8 @@ module Aws::RDS
|
|
4140
4212
|
Timezone.add_member(:timezone_name, Shapes::ShapeRef.new(shape: String, location_name: "TimezoneName"))
|
4141
4213
|
Timezone.struct_class = Types::Timezone
|
4142
4214
|
|
4215
|
+
UnsupportedDBEngineVersionFault.struct_class = Types::UnsupportedDBEngineVersionFault
|
4216
|
+
|
4143
4217
|
UpgradeTarget.add_member(:engine, Shapes::ShapeRef.new(shape: String, location_name: "Engine"))
|
4144
4218
|
UpgradeTarget.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
|
4145
4219
|
UpgradeTarget.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
|
@@ -4576,6 +4650,21 @@ module Aws::RDS
|
|
4576
4650
|
o.errors << Shapes::ShapeRef.new(shape: DBSecurityGroupNotSupportedFault)
|
4577
4651
|
end)
|
4578
4652
|
|
4653
|
+
api.add_operation(:create_db_shard_group, Seahorse::Model::Operation.new.tap do |o|
|
4654
|
+
o.name = "CreateDBShardGroup"
|
4655
|
+
o.http_method = "POST"
|
4656
|
+
o.http_request_uri = "/"
|
4657
|
+
o.input = Shapes::ShapeRef.new(shape: CreateDBShardGroupMessage)
|
4658
|
+
o.output = Shapes::ShapeRef.new(shape: DBShardGroup)
|
4659
|
+
o.errors << Shapes::ShapeRef.new(shape: DBShardGroupAlreadyExistsFault)
|
4660
|
+
o.errors << Shapes::ShapeRef.new(shape: DBClusterNotFoundFault)
|
4661
|
+
o.errors << Shapes::ShapeRef.new(shape: MaxDBShardGroupLimitReached)
|
4662
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidDBClusterStateFault)
|
4663
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidMaxAcuFault)
|
4664
|
+
o.errors << Shapes::ShapeRef.new(shape: UnsupportedDBEngineVersionFault)
|
4665
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidVPCNetworkStateFault)
|
4666
|
+
end)
|
4667
|
+
|
4579
4668
|
api.add_operation(:create_db_snapshot, Seahorse::Model::Operation.new.tap do |o|
|
4580
4669
|
o.name = "CreateDBSnapshot"
|
4581
4670
|
o.http_method = "POST"
|
@@ -4803,6 +4892,17 @@ module Aws::RDS
|
|
4803
4892
|
o.errors << Shapes::ShapeRef.new(shape: DBSecurityGroupNotFoundFault)
|
4804
4893
|
end)
|
4805
4894
|
|
4895
|
+
api.add_operation(:delete_db_shard_group, Seahorse::Model::Operation.new.tap do |o|
|
4896
|
+
o.name = "DeleteDBShardGroup"
|
4897
|
+
o.http_method = "POST"
|
4898
|
+
o.http_request_uri = "/"
|
4899
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteDBShardGroupMessage)
|
4900
|
+
o.output = Shapes::ShapeRef.new(shape: DBShardGroup)
|
4901
|
+
o.errors << Shapes::ShapeRef.new(shape: DBShardGroupNotFoundFault)
|
4902
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidDBShardGroupStateFault)
|
4903
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidDBClusterStateFault)
|
4904
|
+
end)
|
4905
|
+
|
4806
4906
|
api.add_operation(:delete_db_snapshot, Seahorse::Model::Operation.new.tap do |o|
|
4807
4907
|
o.name = "DeleteDBSnapshot"
|
4808
4908
|
o.http_method = "POST"
|
@@ -5225,6 +5325,16 @@ module Aws::RDS
|
|
5225
5325
|
)
|
5226
5326
|
end)
|
5227
5327
|
|
5328
|
+
api.add_operation(:describe_db_shard_groups, Seahorse::Model::Operation.new.tap do |o|
|
5329
|
+
o.name = "DescribeDBShardGroups"
|
5330
|
+
o.http_method = "POST"
|
5331
|
+
o.http_request_uri = "/"
|
5332
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeDBShardGroupsMessage)
|
5333
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeDBShardGroupsResponse)
|
5334
|
+
o.errors << Shapes::ShapeRef.new(shape: DBShardGroupNotFoundFault)
|
5335
|
+
o.errors << Shapes::ShapeRef.new(shape: DBClusterNotFoundFault)
|
5336
|
+
end)
|
5337
|
+
|
5228
5338
|
api.add_operation(:describe_db_snapshot_attributes, Seahorse::Model::Operation.new.tap do |o|
|
5229
5339
|
o.name = "DescribeDBSnapshotAttributes"
|
5230
5340
|
o.http_method = "POST"
|
@@ -5766,6 +5876,18 @@ module Aws::RDS
|
|
5766
5876
|
o.output = Shapes::ShapeRef.new(shape: DBRecommendationMessage)
|
5767
5877
|
end)
|
5768
5878
|
|
5879
|
+
api.add_operation(:modify_db_shard_group, Seahorse::Model::Operation.new.tap do |o|
|
5880
|
+
o.name = "ModifyDBShardGroup"
|
5881
|
+
o.http_method = "POST"
|
5882
|
+
o.http_request_uri = "/"
|
5883
|
+
o.input = Shapes::ShapeRef.new(shape: ModifyDBShardGroupMessage)
|
5884
|
+
o.output = Shapes::ShapeRef.new(shape: DBShardGroup)
|
5885
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidDBClusterStateFault)
|
5886
|
+
o.errors << Shapes::ShapeRef.new(shape: DBShardGroupAlreadyExistsFault)
|
5887
|
+
o.errors << Shapes::ShapeRef.new(shape: DBShardGroupNotFoundFault)
|
5888
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidMaxAcuFault)
|
5889
|
+
end)
|
5890
|
+
|
5769
5891
|
api.add_operation(:modify_db_snapshot, Seahorse::Model::Operation.new.tap do |o|
|
5770
5892
|
o.name = "ModifyDBSnapshot"
|
5771
5893
|
o.http_method = "POST"
|
@@ -5899,6 +6021,16 @@ module Aws::RDS
|
|
5899
6021
|
o.errors << Shapes::ShapeRef.new(shape: DBInstanceNotFoundFault)
|
5900
6022
|
end)
|
5901
6023
|
|
6024
|
+
api.add_operation(:reboot_db_shard_group, Seahorse::Model::Operation.new.tap do |o|
|
6025
|
+
o.name = "RebootDBShardGroup"
|
6026
|
+
o.http_method = "POST"
|
6027
|
+
o.http_request_uri = "/"
|
6028
|
+
o.input = Shapes::ShapeRef.new(shape: RebootDBShardGroupMessage)
|
6029
|
+
o.output = Shapes::ShapeRef.new(shape: DBShardGroup)
|
6030
|
+
o.errors << Shapes::ShapeRef.new(shape: DBShardGroupNotFoundFault)
|
6031
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidDBShardGroupStateFault)
|
6032
|
+
end)
|
6033
|
+
|
5902
6034
|
api.add_operation(:register_db_proxy_targets, Seahorse::Model::Operation.new.tap do |o|
|
5903
6035
|
o.name = "RegisterDBProxyTargets"
|
5904
6036
|
o.http_method = "POST"
|
@@ -680,6 +680,12 @@ module Aws::RDS
|
|
680
680
|
data[:aws_backup_recovery_point_arn]
|
681
681
|
end
|
682
682
|
|
683
|
+
# The details for Aurora Limitless Database.
|
684
|
+
# @return [Types::LimitlessDatabase]
|
685
|
+
def limitless_database
|
686
|
+
data[:limitless_database]
|
687
|
+
end
|
688
|
+
|
683
689
|
# @!endgroup
|
684
690
|
|
685
691
|
# @return [Client]
|
@@ -881,6 +887,7 @@ module Aws::RDS
|
|
881
887
|
# enable_performance_insights: false,
|
882
888
|
# performance_insights_kms_key_id: "String",
|
883
889
|
# performance_insights_retention_period: 1,
|
890
|
+
# enable_limitless_database: false,
|
884
891
|
# serverless_v2_scaling_configuration: {
|
885
892
|
# min_capacity: 1.0,
|
886
893
|
# max_capacity: 1.0,
|
@@ -1556,6 +1563,11 @@ module Aws::RDS
|
|
1556
1563
|
#
|
1557
1564
|
# If you specify a retention period that isn't valid, such as `94`,
|
1558
1565
|
# Amazon RDS issues an error.
|
1566
|
+
# @option options [Boolean] :enable_limitless_database
|
1567
|
+
# Specifies whether to enable Aurora Limitless Database. You must enable
|
1568
|
+
# Aurora Limitless Database to create a DB shard group.
|
1569
|
+
#
|
1570
|
+
# Valid for: Aurora DB clusters only
|
1559
1571
|
# @option options [Types::ServerlessV2ScalingConfiguration] :serverless_v2_scaling_configuration
|
1560
1572
|
# Contains the scaling configuration of an Aurora Serverless v2 DB
|
1561
1573
|
# cluster.
|
@@ -1834,6 +1846,7 @@ module Aws::RDS
|
|
1834
1846
|
# allow_engine_mode_change: false,
|
1835
1847
|
# enable_local_write_forwarding: false,
|
1836
1848
|
# aws_backup_recovery_point_arn: "AwsBackupRecoveryPointArn",
|
1849
|
+
# enable_limitless_database: false,
|
1837
1850
|
# })
|
1838
1851
|
# @param [Hash] options ({})
|
1839
1852
|
# @option options [String] :new_db_cluster_identifier
|
@@ -2458,6 +2471,11 @@ module Aws::RDS
|
|
2458
2471
|
# @option options [String] :aws_backup_recovery_point_arn
|
2459
2472
|
# The Amazon Resource Name (ARN) of the recovery point in Amazon Web
|
2460
2473
|
# Services Backup.
|
2474
|
+
# @option options [Boolean] :enable_limitless_database
|
2475
|
+
# Specifies whether to enable Aurora Limitless Database. You must enable
|
2476
|
+
# Aurora Limitless Database to create a DB shard group.
|
2477
|
+
#
|
2478
|
+
# Valid for: Aurora DB clusters only
|
2461
2479
|
# @return [DBCluster]
|
2462
2480
|
def modify(options = {})
|
2463
2481
|
options = options.merge(db_cluster_identifier: @id)
|
@@ -362,6 +362,20 @@ module Aws::RDS
|
|
362
362
|
end
|
363
363
|
end
|
364
364
|
|
365
|
+
class CreateDBShardGroup
|
366
|
+
def self.build(context)
|
367
|
+
unless context.config.regional_endpoint
|
368
|
+
endpoint = context.config.endpoint.to_s
|
369
|
+
end
|
370
|
+
Aws::RDS::EndpointParameters.new(
|
371
|
+
region: context.config.region,
|
372
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
373
|
+
use_fips: context.config.use_fips_endpoint,
|
374
|
+
endpoint: endpoint,
|
375
|
+
)
|
376
|
+
end
|
377
|
+
end
|
378
|
+
|
365
379
|
class CreateDBSnapshot
|
366
380
|
def self.build(context)
|
367
381
|
unless context.config.regional_endpoint
|
@@ -642,6 +656,20 @@ module Aws::RDS
|
|
642
656
|
end
|
643
657
|
end
|
644
658
|
|
659
|
+
class DeleteDBShardGroup
|
660
|
+
def self.build(context)
|
661
|
+
unless context.config.regional_endpoint
|
662
|
+
endpoint = context.config.endpoint.to_s
|
663
|
+
end
|
664
|
+
Aws::RDS::EndpointParameters.new(
|
665
|
+
region: context.config.region,
|
666
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
667
|
+
use_fips: context.config.use_fips_endpoint,
|
668
|
+
endpoint: endpoint,
|
669
|
+
)
|
670
|
+
end
|
671
|
+
end
|
672
|
+
|
645
673
|
class DeleteDBSnapshot
|
646
674
|
def self.build(context)
|
647
675
|
unless context.config.regional_endpoint
|
@@ -1076,6 +1104,20 @@ module Aws::RDS
|
|
1076
1104
|
end
|
1077
1105
|
end
|
1078
1106
|
|
1107
|
+
class DescribeDBShardGroups
|
1108
|
+
def self.build(context)
|
1109
|
+
unless context.config.regional_endpoint
|
1110
|
+
endpoint = context.config.endpoint.to_s
|
1111
|
+
end
|
1112
|
+
Aws::RDS::EndpointParameters.new(
|
1113
|
+
region: context.config.region,
|
1114
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1115
|
+
use_fips: context.config.use_fips_endpoint,
|
1116
|
+
endpoint: endpoint,
|
1117
|
+
)
|
1118
|
+
end
|
1119
|
+
end
|
1120
|
+
|
1079
1121
|
class DescribeDBSnapshotAttributes
|
1080
1122
|
def self.build(context)
|
1081
1123
|
unless context.config.regional_endpoint
|
@@ -1650,6 +1692,20 @@ module Aws::RDS
|
|
1650
1692
|
end
|
1651
1693
|
end
|
1652
1694
|
|
1695
|
+
class ModifyDBShardGroup
|
1696
|
+
def self.build(context)
|
1697
|
+
unless context.config.regional_endpoint
|
1698
|
+
endpoint = context.config.endpoint.to_s
|
1699
|
+
end
|
1700
|
+
Aws::RDS::EndpointParameters.new(
|
1701
|
+
region: context.config.region,
|
1702
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1703
|
+
use_fips: context.config.use_fips_endpoint,
|
1704
|
+
endpoint: endpoint,
|
1705
|
+
)
|
1706
|
+
end
|
1707
|
+
end
|
1708
|
+
|
1653
1709
|
class ModifyDBSnapshot
|
1654
1710
|
def self.build(context)
|
1655
1711
|
unless context.config.regional_endpoint
|
@@ -1818,6 +1874,20 @@ module Aws::RDS
|
|
1818
1874
|
end
|
1819
1875
|
end
|
1820
1876
|
|
1877
|
+
class RebootDBShardGroup
|
1878
|
+
def self.build(context)
|
1879
|
+
unless context.config.regional_endpoint
|
1880
|
+
endpoint = context.config.endpoint.to_s
|
1881
|
+
end
|
1882
|
+
Aws::RDS::EndpointParameters.new(
|
1883
|
+
region: context.config.region,
|
1884
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
1885
|
+
use_fips: context.config.use_fips_endpoint,
|
1886
|
+
endpoint: endpoint,
|
1887
|
+
)
|
1888
|
+
end
|
1889
|
+
end
|
1890
|
+
|
1821
1891
|
class RegisterDBProxyTargets
|
1822
1892
|
def self.build(context)
|
1823
1893
|
unless context.config.regional_endpoint
|
data/lib/aws-sdk-rds/errors.rb
CHANGED
@@ -78,6 +78,8 @@ module Aws::RDS
|
|
78
78
|
# * {DBSecurityGroupNotFoundFault}
|
79
79
|
# * {DBSecurityGroupNotSupportedFault}
|
80
80
|
# * {DBSecurityGroupQuotaExceededFault}
|
81
|
+
# * {DBShardGroupAlreadyExistsFault}
|
82
|
+
# * {DBShardGroupNotFoundFault}
|
81
83
|
# * {DBSnapshotAlreadyExistsFault}
|
82
84
|
# * {DBSnapshotNotFoundFault}
|
83
85
|
# * {DBSnapshotTenantDatabaseNotFoundFault}
|
@@ -120,6 +122,7 @@ module Aws::RDS
|
|
120
122
|
# * {InvalidDBProxyEndpointStateFault}
|
121
123
|
# * {InvalidDBProxyStateFault}
|
122
124
|
# * {InvalidDBSecurityGroupStateFault}
|
125
|
+
# * {InvalidDBShardGroupStateFault}
|
123
126
|
# * {InvalidDBSnapshotStateFault}
|
124
127
|
# * {InvalidDBSubnetGroupFault}
|
125
128
|
# * {InvalidDBSubnetGroupStateFault}
|
@@ -130,6 +133,7 @@ module Aws::RDS
|
|
130
133
|
# * {InvalidExportTaskStateFault}
|
131
134
|
# * {InvalidGlobalClusterStateFault}
|
132
135
|
# * {InvalidIntegrationStateFault}
|
136
|
+
# * {InvalidMaxAcuFault}
|
133
137
|
# * {InvalidOptionGroupStateFault}
|
134
138
|
# * {InvalidResourceStateFault}
|
135
139
|
# * {InvalidRestoreFault}
|
@@ -137,6 +141,7 @@ module Aws::RDS
|
|
137
141
|
# * {InvalidSubnet}
|
138
142
|
# * {InvalidVPCNetworkStateFault}
|
139
143
|
# * {KMSKeyNotAccessibleFault}
|
144
|
+
# * {MaxDBShardGroupLimitReached}
|
140
145
|
# * {NetworkTypeNotSupported}
|
141
146
|
# * {OptionGroupAlreadyExistsFault}
|
142
147
|
# * {OptionGroupNotFoundFault}
|
@@ -166,6 +171,7 @@ module Aws::RDS
|
|
166
171
|
# * {TenantDatabaseAlreadyExistsFault}
|
167
172
|
# * {TenantDatabaseNotFoundFault}
|
168
173
|
# * {TenantDatabaseQuotaExceededFault}
|
174
|
+
# * {UnsupportedDBEngineVersionFault}
|
169
175
|
#
|
170
176
|
# Additionally, error classes are dynamically generated for service errors based on the error code
|
171
177
|
# if they are not defined above.
|
@@ -683,6 +689,26 @@ module Aws::RDS
|
|
683
689
|
end
|
684
690
|
end
|
685
691
|
|
692
|
+
class DBShardGroupAlreadyExistsFault < ServiceError
|
693
|
+
|
694
|
+
# @param [Seahorse::Client::RequestContext] context
|
695
|
+
# @param [String] message
|
696
|
+
# @param [Aws::RDS::Types::DBShardGroupAlreadyExistsFault] data
|
697
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
698
|
+
super(context, message, data)
|
699
|
+
end
|
700
|
+
end
|
701
|
+
|
702
|
+
class DBShardGroupNotFoundFault < ServiceError
|
703
|
+
|
704
|
+
# @param [Seahorse::Client::RequestContext] context
|
705
|
+
# @param [String] message
|
706
|
+
# @param [Aws::RDS::Types::DBShardGroupNotFoundFault] data
|
707
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
708
|
+
super(context, message, data)
|
709
|
+
end
|
710
|
+
end
|
711
|
+
|
686
712
|
class DBSnapshotAlreadyExistsFault < ServiceError
|
687
713
|
|
688
714
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -1103,6 +1129,16 @@ module Aws::RDS
|
|
1103
1129
|
end
|
1104
1130
|
end
|
1105
1131
|
|
1132
|
+
class InvalidDBShardGroupStateFault < ServiceError
|
1133
|
+
|
1134
|
+
# @param [Seahorse::Client::RequestContext] context
|
1135
|
+
# @param [String] message
|
1136
|
+
# @param [Aws::RDS::Types::InvalidDBShardGroupStateFault] data
|
1137
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1138
|
+
super(context, message, data)
|
1139
|
+
end
|
1140
|
+
end
|
1141
|
+
|
1106
1142
|
class InvalidDBSnapshotStateFault < ServiceError
|
1107
1143
|
|
1108
1144
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -1203,6 +1239,16 @@ module Aws::RDS
|
|
1203
1239
|
end
|
1204
1240
|
end
|
1205
1241
|
|
1242
|
+
class InvalidMaxAcuFault < ServiceError
|
1243
|
+
|
1244
|
+
# @param [Seahorse::Client::RequestContext] context
|
1245
|
+
# @param [String] message
|
1246
|
+
# @param [Aws::RDS::Types::InvalidMaxAcuFault] data
|
1247
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1248
|
+
super(context, message, data)
|
1249
|
+
end
|
1250
|
+
end
|
1251
|
+
|
1206
1252
|
class InvalidOptionGroupStateFault < ServiceError
|
1207
1253
|
|
1208
1254
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -1273,6 +1319,16 @@ module Aws::RDS
|
|
1273
1319
|
end
|
1274
1320
|
end
|
1275
1321
|
|
1322
|
+
class MaxDBShardGroupLimitReached < ServiceError
|
1323
|
+
|
1324
|
+
# @param [Seahorse::Client::RequestContext] context
|
1325
|
+
# @param [String] message
|
1326
|
+
# @param [Aws::RDS::Types::MaxDBShardGroupLimitReached] data
|
1327
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1328
|
+
super(context, message, data)
|
1329
|
+
end
|
1330
|
+
end
|
1331
|
+
|
1276
1332
|
class NetworkTypeNotSupported < ServiceError
|
1277
1333
|
|
1278
1334
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -1563,5 +1619,15 @@ module Aws::RDS
|
|
1563
1619
|
end
|
1564
1620
|
end
|
1565
1621
|
|
1622
|
+
class UnsupportedDBEngineVersionFault < ServiceError
|
1623
|
+
|
1624
|
+
# @param [Seahorse::Client::RequestContext] context
|
1625
|
+
# @param [String] message
|
1626
|
+
# @param [Aws::RDS::Types::UnsupportedDBEngineVersionFault] data
|
1627
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1628
|
+
super(context, message, data)
|
1629
|
+
end
|
1630
|
+
end
|
1631
|
+
|
1566
1632
|
end
|
1567
1633
|
end
|
@@ -302,8 +302,18 @@ module Aws::RDS
|
|
302
302
|
# @param [Hash] options ({})
|
303
303
|
# @option options [required, String] :sns_topic_arn
|
304
304
|
# The Amazon Resource Name (ARN) of the SNS topic created for event
|
305
|
-
# notification.
|
306
|
-
# and subscribe to it.
|
305
|
+
# notification. SNS automatically creates the ARN when you create a
|
306
|
+
# topic and subscribe to it.
|
307
|
+
#
|
308
|
+
# <note markdown="1"> RDS doesn't support FIFO (first in, first out) topics. For more
|
309
|
+
# information, see [Message ordering and deduplication (FIFO topics)][1]
|
310
|
+
# in the *Amazon Simple Notification Service Developer Guide*.
|
311
|
+
#
|
312
|
+
# </note>
|
313
|
+
#
|
314
|
+
#
|
315
|
+
#
|
316
|
+
# [1]: https://docs.aws.amazon.com/sns/latest/dg/sns-fifo-topics.html
|
307
317
|
# @option options [String] :source_type
|
308
318
|
# The type of source that is generating the events. For example, if you
|
309
319
|
# want to be notified of events generated by a DB instance, you set this
|