aws-sdk-rds 1.277.0 → 1.300.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 +115 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +1790 -1463
- data/lib/aws-sdk-rds/client_api.rb +244 -156
- data/lib/aws-sdk-rds/customizations.rb +0 -1
- data/lib/aws-sdk-rds/db_cluster.rb +404 -335
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +2 -2
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +25 -25
- data/lib/aws-sdk-rds/db_engine_version.rb +55 -55
- data/lib/aws-sdk-rds/db_instance.rb +452 -353
- data/lib/aws-sdk-rds/db_parameter_group.rb +2 -2
- data/lib/aws-sdk-rds/db_snapshot.rb +91 -66
- data/lib/aws-sdk-rds/db_subnet_group.rb +4 -1
- data/lib/aws-sdk-rds/endpoint_parameters.rb +4 -4
- data/lib/aws-sdk-rds/errors.rb +11 -1
- data/lib/aws-sdk-rds/option_group.rb +1 -1
- data/lib/aws-sdk-rds/resource.rb +257 -236
- data/lib/aws-sdk-rds/types.rb +1559 -1153
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +115 -102
- data/sig/db_cluster.rbs +72 -61
- data/sig/db_cluster_snapshot.rbs +6 -6
- data/sig/db_engine_version.rbs +21 -21
- data/sig/db_instance.rbs +50 -44
- data/sig/db_snapshot.rbs +17 -12
- data/sig/errors.rbs +2 -0
- data/sig/event.rbs +1 -1
- data/sig/resource.rbs +24 -21
- data/sig/types.rbs +140 -115
- metadata +4 -4
data/sig/types.rbs
CHANGED
|
@@ -188,12 +188,12 @@ module Aws::RDS
|
|
|
188
188
|
attr_accessor iam_database_authentication_enabled: bool
|
|
189
189
|
attr_accessor engine_version: ::String
|
|
190
190
|
attr_accessor backup_retention_period: ::Integer
|
|
191
|
+
attr_accessor storage_type: ::String
|
|
191
192
|
attr_accessor allocated_storage: ::Integer
|
|
192
193
|
attr_accessor rds_custom_cluster_configuration: Types::RdsCustomClusterConfiguration
|
|
193
194
|
attr_accessor iops: ::Integer
|
|
194
|
-
attr_accessor storage_type: ::String
|
|
195
195
|
attr_accessor certificate_details: Types::CertificateDetails
|
|
196
|
-
SENSITIVE: []
|
|
196
|
+
SENSITIVE: [:master_user_password]
|
|
197
197
|
end
|
|
198
198
|
|
|
199
199
|
class ConnectionPoolConfiguration
|
|
@@ -241,7 +241,7 @@ module Aws::RDS
|
|
|
241
241
|
attr_accessor copy_tags: bool
|
|
242
242
|
attr_accessor tags: ::Array[Types::Tag]
|
|
243
243
|
attr_accessor source_region: ::String
|
|
244
|
-
SENSITIVE: []
|
|
244
|
+
SENSITIVE: [:pre_signed_url]
|
|
245
245
|
end
|
|
246
246
|
|
|
247
247
|
class CopyDBClusterSnapshotResult
|
|
@@ -271,9 +271,11 @@ module Aws::RDS
|
|
|
271
271
|
attr_accessor pre_signed_url: ::String
|
|
272
272
|
attr_accessor option_group_name: ::String
|
|
273
273
|
attr_accessor target_custom_availability_zone: ::String
|
|
274
|
+
attr_accessor snapshot_target: ::String
|
|
274
275
|
attr_accessor copy_option_group: bool
|
|
276
|
+
attr_accessor snapshot_availability_zone: ::String
|
|
275
277
|
attr_accessor source_region: ::String
|
|
276
|
-
SENSITIVE: []
|
|
278
|
+
SENSITIVE: [:pre_signed_url]
|
|
277
279
|
end
|
|
278
280
|
|
|
279
281
|
class CopyDBSnapshotResult
|
|
@@ -325,11 +327,11 @@ module Aws::RDS
|
|
|
325
327
|
attr_accessor database_installation_files_s3_prefix: ::String
|
|
326
328
|
attr_accessor image_id: ::String
|
|
327
329
|
attr_accessor kms_key_id: ::String
|
|
330
|
+
attr_accessor source_custom_db_engine_version_identifier: ::String
|
|
331
|
+
attr_accessor use_aws_provided_latest_image: bool
|
|
328
332
|
attr_accessor description: ::String
|
|
329
333
|
attr_accessor manifest: ::String
|
|
330
334
|
attr_accessor tags: ::Array[Types::Tag]
|
|
331
|
-
attr_accessor source_custom_db_engine_version_identifier: ::String
|
|
332
|
-
attr_accessor use_aws_provided_latest_image: bool
|
|
333
335
|
SENSITIVE: []
|
|
334
336
|
end
|
|
335
337
|
|
|
@@ -371,6 +373,12 @@ module Aws::RDS
|
|
|
371
373
|
attr_accessor engine_mode: ::String
|
|
372
374
|
attr_accessor scaling_configuration: Types::ScalingConfiguration
|
|
373
375
|
attr_accessor rds_custom_cluster_configuration: Types::RdsCustomClusterConfiguration
|
|
376
|
+
attr_accessor db_cluster_instance_class: ::String
|
|
377
|
+
attr_accessor allocated_storage: ::Integer
|
|
378
|
+
attr_accessor storage_type: ::String
|
|
379
|
+
attr_accessor iops: ::Integer
|
|
380
|
+
attr_accessor publicly_accessible: bool
|
|
381
|
+
attr_accessor auto_minor_version_upgrade: bool
|
|
374
382
|
attr_accessor deletion_protection: bool
|
|
375
383
|
attr_accessor global_cluster_identifier: ::String
|
|
376
384
|
attr_accessor enable_http_endpoint: bool
|
|
@@ -378,12 +386,8 @@ module Aws::RDS
|
|
|
378
386
|
attr_accessor domain: ::String
|
|
379
387
|
attr_accessor domain_iam_role_name: ::String
|
|
380
388
|
attr_accessor enable_global_write_forwarding: bool
|
|
381
|
-
attr_accessor
|
|
382
|
-
attr_accessor
|
|
383
|
-
attr_accessor storage_type: ::String
|
|
384
|
-
attr_accessor iops: ::Integer
|
|
385
|
-
attr_accessor publicly_accessible: bool
|
|
386
|
-
attr_accessor auto_minor_version_upgrade: bool
|
|
389
|
+
attr_accessor network_type: ::String
|
|
390
|
+
attr_accessor serverless_v2_scaling_configuration: Types::ServerlessV2ScalingConfiguration
|
|
387
391
|
attr_accessor monitoring_interval: ::Integer
|
|
388
392
|
attr_accessor monitoring_role_arn: ::String
|
|
389
393
|
attr_accessor database_insights_mode: ("standard" | "advanced")
|
|
@@ -391,17 +395,16 @@ module Aws::RDS
|
|
|
391
395
|
attr_accessor performance_insights_kms_key_id: ::String
|
|
392
396
|
attr_accessor performance_insights_retention_period: ::Integer
|
|
393
397
|
attr_accessor enable_limitless_database: bool
|
|
394
|
-
attr_accessor serverless_v2_scaling_configuration: Types::ServerlessV2ScalingConfiguration
|
|
395
|
-
attr_accessor network_type: ::String
|
|
396
398
|
attr_accessor cluster_scalability_type: ("standard" | "limitless")
|
|
397
399
|
attr_accessor db_system_id: ::String
|
|
398
400
|
attr_accessor manage_master_user_password: bool
|
|
399
|
-
attr_accessor master_user_secret_kms_key_id: ::String
|
|
400
401
|
attr_accessor enable_local_write_forwarding: bool
|
|
402
|
+
attr_accessor master_user_secret_kms_key_id: ::String
|
|
401
403
|
attr_accessor ca_certificate_identifier: ::String
|
|
402
404
|
attr_accessor engine_lifecycle_support: ::String
|
|
405
|
+
attr_accessor master_user_authentication_type: ("password" | "iam-db-auth")
|
|
403
406
|
attr_accessor source_region: ::String
|
|
404
|
-
SENSITIVE: []
|
|
407
|
+
SENSITIVE: [:master_user_password, :pre_signed_url]
|
|
405
408
|
end
|
|
406
409
|
|
|
407
410
|
class CreateDBClusterParameterGroupMessage
|
|
@@ -456,6 +459,7 @@ module Aws::RDS
|
|
|
456
459
|
attr_accessor auto_minor_version_upgrade: bool
|
|
457
460
|
attr_accessor license_model: ::String
|
|
458
461
|
attr_accessor iops: ::Integer
|
|
462
|
+
attr_accessor storage_throughput: ::Integer
|
|
459
463
|
attr_accessor option_group_name: ::String
|
|
460
464
|
attr_accessor character_set_name: ::String
|
|
461
465
|
attr_accessor nchar_character_set_name: ::String
|
|
@@ -488,18 +492,18 @@ module Aws::RDS
|
|
|
488
492
|
attr_accessor deletion_protection: bool
|
|
489
493
|
attr_accessor max_allocated_storage: ::Integer
|
|
490
494
|
attr_accessor enable_customer_owned_ip: bool
|
|
491
|
-
attr_accessor custom_iam_instance_profile: ::String
|
|
492
|
-
attr_accessor backup_target: ::String
|
|
493
495
|
attr_accessor network_type: ::String
|
|
494
|
-
attr_accessor
|
|
496
|
+
attr_accessor backup_target: ::String
|
|
497
|
+
attr_accessor custom_iam_instance_profile: ::String
|
|
498
|
+
attr_accessor db_system_id: ::String
|
|
499
|
+
attr_accessor ca_certificate_identifier: ::String
|
|
495
500
|
attr_accessor manage_master_user_password: bool
|
|
496
501
|
attr_accessor master_user_secret_kms_key_id: ::String
|
|
497
|
-
attr_accessor ca_certificate_identifier: ::String
|
|
498
|
-
attr_accessor db_system_id: ::String
|
|
499
|
-
attr_accessor dedicated_log_volume: bool
|
|
500
502
|
attr_accessor multi_tenant: bool
|
|
503
|
+
attr_accessor dedicated_log_volume: bool
|
|
501
504
|
attr_accessor engine_lifecycle_support: ::String
|
|
502
|
-
|
|
505
|
+
attr_accessor master_user_authentication_type: ("password" | "iam-db-auth")
|
|
506
|
+
SENSITIVE: [:master_user_password, :tde_credential_password]
|
|
503
507
|
end
|
|
504
508
|
|
|
505
509
|
class CreateDBInstanceReadReplicaMessage
|
|
@@ -511,6 +515,7 @@ module Aws::RDS
|
|
|
511
515
|
attr_accessor multi_az: bool
|
|
512
516
|
attr_accessor auto_minor_version_upgrade: bool
|
|
513
517
|
attr_accessor iops: ::Integer
|
|
518
|
+
attr_accessor storage_throughput: ::Integer
|
|
514
519
|
attr_accessor option_group_name: ::String
|
|
515
520
|
attr_accessor db_parameter_group_name: ::String
|
|
516
521
|
attr_accessor publicly_accessible: bool
|
|
@@ -539,18 +544,18 @@ module Aws::RDS
|
|
|
539
544
|
attr_accessor domain_auth_secret_arn: ::String
|
|
540
545
|
attr_accessor domain_dns_ips: ::Array[::String]
|
|
541
546
|
attr_accessor replica_mode: ("open-read-only" | "mounted")
|
|
547
|
+
attr_accessor enable_customer_owned_ip: bool
|
|
548
|
+
attr_accessor network_type: ::String
|
|
542
549
|
attr_accessor max_allocated_storage: ::Integer
|
|
550
|
+
attr_accessor backup_target: ::String
|
|
543
551
|
attr_accessor custom_iam_instance_profile: ::String
|
|
544
|
-
attr_accessor network_type: ::String
|
|
545
|
-
attr_accessor storage_throughput: ::Integer
|
|
546
|
-
attr_accessor enable_customer_owned_ip: bool
|
|
547
552
|
attr_accessor allocated_storage: ::Integer
|
|
548
553
|
attr_accessor source_db_cluster_identifier: ::String
|
|
549
554
|
attr_accessor dedicated_log_volume: bool
|
|
550
555
|
attr_accessor upgrade_storage_config: bool
|
|
551
556
|
attr_accessor ca_certificate_identifier: ::String
|
|
552
557
|
attr_accessor source_region: ::String
|
|
553
|
-
SENSITIVE: []
|
|
558
|
+
SENSITIVE: [:pre_signed_url]
|
|
554
559
|
end
|
|
555
560
|
|
|
556
561
|
class CreateDBInstanceReadReplicaResult
|
|
@@ -583,6 +588,7 @@ module Aws::RDS
|
|
|
583
588
|
attr_accessor vpc_security_group_ids: ::Array[::String]
|
|
584
589
|
attr_accessor target_role: ("READ_WRITE" | "READ_ONLY")
|
|
585
590
|
attr_accessor tags: ::Array[Types::Tag]
|
|
591
|
+
attr_accessor endpoint_network_type: ("IPV4" | "IPV6" | "DUAL")
|
|
586
592
|
SENSITIVE: []
|
|
587
593
|
end
|
|
588
594
|
|
|
@@ -594,6 +600,7 @@ module Aws::RDS
|
|
|
594
600
|
class CreateDBProxyRequest
|
|
595
601
|
attr_accessor db_proxy_name: ::String
|
|
596
602
|
attr_accessor engine_family: ("MYSQL" | "POSTGRESQL" | "SQLSERVER")
|
|
603
|
+
attr_accessor default_auth_scheme: ("IAM_AUTH" | "NONE")
|
|
597
604
|
attr_accessor auth: ::Array[Types::UserAuthConfig]
|
|
598
605
|
attr_accessor role_arn: ::String
|
|
599
606
|
attr_accessor vpc_subnet_ids: ::Array[::String]
|
|
@@ -602,6 +609,8 @@ module Aws::RDS
|
|
|
602
609
|
attr_accessor idle_client_timeout: ::Integer
|
|
603
610
|
attr_accessor debug_logging: bool
|
|
604
611
|
attr_accessor tags: ::Array[Types::Tag]
|
|
612
|
+
attr_accessor endpoint_network_type: ("IPV4" | "IPV6" | "DUAL")
|
|
613
|
+
attr_accessor target_connection_network_type: ("IPV4" | "IPV6")
|
|
605
614
|
SENSITIVE: []
|
|
606
615
|
end
|
|
607
616
|
|
|
@@ -764,7 +773,6 @@ module Aws::RDS
|
|
|
764
773
|
attr_accessor db_cluster_parameter_group: ::String
|
|
765
774
|
attr_accessor db_subnet_group: ::String
|
|
766
775
|
attr_accessor status: ::String
|
|
767
|
-
attr_accessor automatic_restart_time: ::Time
|
|
768
776
|
attr_accessor percent_progress: ::String
|
|
769
777
|
attr_accessor earliest_restorable_time: ::Time
|
|
770
778
|
attr_accessor endpoint: ::String
|
|
@@ -779,6 +787,7 @@ module Aws::RDS
|
|
|
779
787
|
attr_accessor db_cluster_option_group_memberships: ::Array[Types::DBClusterOptionGroupStatus]
|
|
780
788
|
attr_accessor preferred_backup_window: ::String
|
|
781
789
|
attr_accessor preferred_maintenance_window: ::String
|
|
790
|
+
attr_accessor upgrade_rollout_order: ("first" | "second" | "last")
|
|
782
791
|
attr_accessor replication_source_identifier: ::String
|
|
783
792
|
attr_accessor read_replica_identifiers: ::Array[::String]
|
|
784
793
|
attr_accessor status_infos: ::Array[Types::DBClusterStatusInfo]
|
|
@@ -798,9 +807,17 @@ module Aws::RDS
|
|
|
798
807
|
attr_accessor backtrack_consumed_change_records: ::Integer
|
|
799
808
|
attr_accessor enabled_cloudwatch_logs_exports: ::Array[::String]
|
|
800
809
|
attr_accessor capacity: ::Integer
|
|
810
|
+
attr_accessor pending_modified_values: Types::ClusterPendingModifiedValues
|
|
801
811
|
attr_accessor engine_mode: ::String
|
|
802
812
|
attr_accessor scaling_configuration_info: Types::ScalingConfigurationInfo
|
|
803
813
|
attr_accessor rds_custom_cluster_configuration: Types::RdsCustomClusterConfiguration
|
|
814
|
+
attr_accessor db_cluster_instance_class: ::String
|
|
815
|
+
attr_accessor storage_type: ::String
|
|
816
|
+
attr_accessor iops: ::Integer
|
|
817
|
+
attr_accessor storage_throughput: ::Integer
|
|
818
|
+
attr_accessor io_optimized_next_allowed_modification_time: ::Time
|
|
819
|
+
attr_accessor publicly_accessible: bool
|
|
820
|
+
attr_accessor auto_minor_version_upgrade: bool
|
|
804
821
|
attr_accessor deletion_protection: bool
|
|
805
822
|
attr_accessor http_endpoint_enabled: bool
|
|
806
823
|
attr_accessor activity_stream_mode: ("sync" | "async")
|
|
@@ -811,29 +828,24 @@ module Aws::RDS
|
|
|
811
828
|
attr_accessor cross_account_clone: bool
|
|
812
829
|
attr_accessor domain_memberships: ::Array[Types::DomainMembership]
|
|
813
830
|
attr_accessor tag_list: ::Array[Types::Tag]
|
|
831
|
+
attr_accessor global_cluster_identifier: ::String
|
|
814
832
|
attr_accessor global_write_forwarding_status: ("enabled" | "disabled" | "enabling" | "disabling" | "unknown")
|
|
815
833
|
attr_accessor global_write_forwarding_requested: bool
|
|
816
|
-
attr_accessor
|
|
817
|
-
attr_accessor
|
|
818
|
-
attr_accessor
|
|
819
|
-
attr_accessor
|
|
820
|
-
attr_accessor publicly_accessible: bool
|
|
821
|
-
attr_accessor auto_minor_version_upgrade: bool
|
|
834
|
+
attr_accessor network_type: ::String
|
|
835
|
+
attr_accessor automatic_restart_time: ::Time
|
|
836
|
+
attr_accessor serverless_v2_scaling_configuration: Types::ServerlessV2ScalingConfigurationInfo
|
|
837
|
+
attr_accessor serverless_v2_platform_version: ::String
|
|
822
838
|
attr_accessor monitoring_interval: ::Integer
|
|
823
839
|
attr_accessor monitoring_role_arn: ::String
|
|
824
840
|
attr_accessor database_insights_mode: ("standard" | "advanced")
|
|
825
841
|
attr_accessor performance_insights_enabled: bool
|
|
826
842
|
attr_accessor performance_insights_kms_key_id: ::String
|
|
827
843
|
attr_accessor performance_insights_retention_period: ::Integer
|
|
828
|
-
attr_accessor serverless_v2_scaling_configuration: Types::ServerlessV2ScalingConfigurationInfo
|
|
829
|
-
attr_accessor network_type: ::String
|
|
830
844
|
attr_accessor db_system_id: ::String
|
|
831
845
|
attr_accessor master_user_secret: Types::MasterUserSecret
|
|
832
|
-
attr_accessor io_optimized_next_allowed_modification_time: ::Time
|
|
833
846
|
attr_accessor local_write_forwarding_status: ("enabled" | "disabled" | "enabling" | "disabling" | "requested")
|
|
834
847
|
attr_accessor aws_backup_recovery_point_arn: ::String
|
|
835
848
|
attr_accessor limitless_database: Types::LimitlessDatabase
|
|
836
|
-
attr_accessor storage_throughput: ::Integer
|
|
837
849
|
attr_accessor cluster_scalability_type: ("standard" | "limitless")
|
|
838
850
|
attr_accessor certificate_details: Types::CertificateDetails
|
|
839
851
|
attr_accessor engine_lifecycle_support: ::String
|
|
@@ -867,8 +879,8 @@ module Aws::RDS
|
|
|
867
879
|
attr_accessor kms_key_id: ::String
|
|
868
880
|
attr_accessor storage_type: ::String
|
|
869
881
|
attr_accessor iops: ::Integer
|
|
870
|
-
attr_accessor aws_backup_recovery_point_arn: ::String
|
|
871
882
|
attr_accessor storage_throughput: ::Integer
|
|
883
|
+
attr_accessor aws_backup_recovery_point_arn: ::String
|
|
872
884
|
SENSITIVE: []
|
|
873
885
|
end
|
|
874
886
|
|
|
@@ -1034,10 +1046,10 @@ module Aws::RDS
|
|
|
1034
1046
|
attr_accessor source_db_cluster_snapshot_arn: ::String
|
|
1035
1047
|
attr_accessor iam_database_authentication_enabled: bool
|
|
1036
1048
|
attr_accessor tag_list: ::Array[Types::Tag]
|
|
1037
|
-
attr_accessor db_system_id: ::String
|
|
1038
1049
|
attr_accessor storage_type: ::String
|
|
1039
|
-
attr_accessor db_cluster_resource_id: ::String
|
|
1040
1050
|
attr_accessor storage_throughput: ::Integer
|
|
1051
|
+
attr_accessor db_cluster_resource_id: ::String
|
|
1052
|
+
attr_accessor db_system_id: ::String
|
|
1041
1053
|
SENSITIVE: []
|
|
1042
1054
|
end
|
|
1043
1055
|
|
|
@@ -1075,13 +1087,20 @@ module Aws::RDS
|
|
|
1075
1087
|
|
|
1076
1088
|
class DBEngineVersion
|
|
1077
1089
|
attr_accessor engine: ::String
|
|
1090
|
+
attr_accessor major_engine_version: ::String
|
|
1078
1091
|
attr_accessor engine_version: ::String
|
|
1092
|
+
attr_accessor database_installation_files_s3_bucket_name: ::String
|
|
1093
|
+
attr_accessor database_installation_files_s3_prefix: ::String
|
|
1094
|
+
attr_accessor custom_db_engine_version_manifest: ::String
|
|
1079
1095
|
attr_accessor db_parameter_group_family: ::String
|
|
1080
1096
|
attr_accessor db_engine_description: ::String
|
|
1097
|
+
attr_accessor db_engine_version_arn: ::String
|
|
1081
1098
|
attr_accessor db_engine_version_description: ::String
|
|
1082
1099
|
attr_accessor default_character_set: Types::CharacterSet
|
|
1083
1100
|
attr_accessor image: Types::CustomDBEngineVersionAMI
|
|
1084
1101
|
attr_accessor db_engine_media_type: ::String
|
|
1102
|
+
attr_accessor kms_key_id: ::String
|
|
1103
|
+
attr_accessor create_time: ::Time
|
|
1085
1104
|
attr_accessor supported_character_sets: ::Array[Types::CharacterSet]
|
|
1086
1105
|
attr_accessor supported_nchar_character_sets: ::Array[Types::CharacterSet]
|
|
1087
1106
|
attr_accessor valid_upgrade_target: ::Array[Types::UpgradeTarget]
|
|
@@ -1094,15 +1113,8 @@ module Aws::RDS
|
|
|
1094
1113
|
attr_accessor status: ::String
|
|
1095
1114
|
attr_accessor supports_parallel_query: bool
|
|
1096
1115
|
attr_accessor supports_global_databases: bool
|
|
1097
|
-
attr_accessor major_engine_version: ::String
|
|
1098
|
-
attr_accessor database_installation_files_s3_bucket_name: ::String
|
|
1099
|
-
attr_accessor database_installation_files_s3_prefix: ::String
|
|
1100
|
-
attr_accessor db_engine_version_arn: ::String
|
|
1101
|
-
attr_accessor kms_key_id: ::String
|
|
1102
|
-
attr_accessor create_time: ::Time
|
|
1103
1116
|
attr_accessor tag_list: ::Array[Types::Tag]
|
|
1104
1117
|
attr_accessor supports_babelfish: bool
|
|
1105
|
-
attr_accessor custom_db_engine_version_manifest: ::String
|
|
1106
1118
|
attr_accessor supports_limitless_database: bool
|
|
1107
1119
|
attr_accessor supports_certificate_rotation_without_restart: bool
|
|
1108
1120
|
attr_accessor supported_ca_certificate_identifiers: ::Array[::String]
|
|
@@ -1123,7 +1135,6 @@ module Aws::RDS
|
|
|
1123
1135
|
attr_accessor db_instance_class: ::String
|
|
1124
1136
|
attr_accessor engine: ::String
|
|
1125
1137
|
attr_accessor db_instance_status: ::String
|
|
1126
|
-
attr_accessor automatic_restart_time: ::Time
|
|
1127
1138
|
attr_accessor master_username: ::String
|
|
1128
1139
|
attr_accessor db_name: ::String
|
|
1129
1140
|
attr_accessor endpoint: Types::Endpoint
|
|
@@ -1137,6 +1148,7 @@ module Aws::RDS
|
|
|
1137
1148
|
attr_accessor availability_zone: ::String
|
|
1138
1149
|
attr_accessor db_subnet_group: Types::DBSubnetGroup
|
|
1139
1150
|
attr_accessor preferred_maintenance_window: ::String
|
|
1151
|
+
attr_accessor upgrade_rollout_order: ("first" | "second" | "last")
|
|
1140
1152
|
attr_accessor pending_modified_values: Types::PendingModifiedValues
|
|
1141
1153
|
attr_accessor latest_restorable_time: ::Time
|
|
1142
1154
|
attr_accessor multi_az: bool
|
|
@@ -1148,6 +1160,7 @@ module Aws::RDS
|
|
|
1148
1160
|
attr_accessor replica_mode: ("open-read-only" | "mounted")
|
|
1149
1161
|
attr_accessor license_model: ::String
|
|
1150
1162
|
attr_accessor iops: ::Integer
|
|
1163
|
+
attr_accessor storage_throughput: ::Integer
|
|
1151
1164
|
attr_accessor option_group_memberships: ::Array[Types::OptionGroupMembership]
|
|
1152
1165
|
attr_accessor character_set_name: ::String
|
|
1153
1166
|
attr_accessor nchar_character_set_name: ::String
|
|
@@ -1182,29 +1195,29 @@ module Aws::RDS
|
|
|
1182
1195
|
attr_accessor listener_endpoint: Types::Endpoint
|
|
1183
1196
|
attr_accessor max_allocated_storage: ::Integer
|
|
1184
1197
|
attr_accessor tag_list: ::Array[Types::Tag]
|
|
1185
|
-
attr_accessor
|
|
1198
|
+
attr_accessor automation_mode: ("full" | "all-paused")
|
|
1199
|
+
attr_accessor resume_full_automation_mode_time: ::Time
|
|
1186
1200
|
attr_accessor customer_owned_ip_enabled: bool
|
|
1187
|
-
attr_accessor
|
|
1201
|
+
attr_accessor network_type: ::String
|
|
1188
1202
|
attr_accessor activity_stream_status: ("stopped" | "starting" | "started" | "stopping")
|
|
1189
1203
|
attr_accessor activity_stream_kms_key_id: ::String
|
|
1190
1204
|
attr_accessor activity_stream_kinesis_stream_name: ::String
|
|
1191
1205
|
attr_accessor activity_stream_mode: ("sync" | "async")
|
|
1192
1206
|
attr_accessor activity_stream_engine_native_audit_fields_included: bool
|
|
1193
|
-
attr_accessor
|
|
1194
|
-
attr_accessor
|
|
1195
|
-
attr_accessor custom_iam_instance_profile: ::String
|
|
1207
|
+
attr_accessor aws_backup_recovery_point_arn: ::String
|
|
1208
|
+
attr_accessor db_instance_automated_backups_replications: ::Array[Types::DBInstanceAutomatedBackupsReplication]
|
|
1196
1209
|
attr_accessor backup_target: ::String
|
|
1197
|
-
attr_accessor
|
|
1210
|
+
attr_accessor automatic_restart_time: ::Time
|
|
1211
|
+
attr_accessor custom_iam_instance_profile: ::String
|
|
1198
1212
|
attr_accessor activity_stream_policy_status: ("locked" | "unlocked" | "locking-policy" | "unlocking-policy")
|
|
1199
|
-
attr_accessor
|
|
1213
|
+
attr_accessor certificate_details: Types::CertificateDetails
|
|
1200
1214
|
attr_accessor db_system_id: ::String
|
|
1201
1215
|
attr_accessor master_user_secret: Types::MasterUserSecret
|
|
1202
|
-
attr_accessor certificate_details: Types::CertificateDetails
|
|
1203
1216
|
attr_accessor read_replica_source_db_cluster_identifier: ::String
|
|
1204
1217
|
attr_accessor percent_progress: ::String
|
|
1218
|
+
attr_accessor multi_tenant: bool
|
|
1205
1219
|
attr_accessor dedicated_log_volume: bool
|
|
1206
1220
|
attr_accessor is_storage_config_upgrade_available: bool
|
|
1207
|
-
attr_accessor multi_tenant: bool
|
|
1208
1221
|
attr_accessor engine_lifecycle_support: ::String
|
|
1209
1222
|
SENSITIVE: []
|
|
1210
1223
|
end
|
|
@@ -1229,6 +1242,7 @@ module Aws::RDS
|
|
|
1229
1242
|
attr_accessor engine_version: ::String
|
|
1230
1243
|
attr_accessor license_model: ::String
|
|
1231
1244
|
attr_accessor iops: ::Integer
|
|
1245
|
+
attr_accessor storage_throughput: ::Integer
|
|
1232
1246
|
attr_accessor option_group_name: ::String
|
|
1233
1247
|
attr_accessor tde_credential_arn: ::String
|
|
1234
1248
|
attr_accessor encrypted: bool
|
|
@@ -1240,10 +1254,9 @@ module Aws::RDS
|
|
|
1240
1254
|
attr_accessor db_instance_automated_backups_arn: ::String
|
|
1241
1255
|
attr_accessor db_instance_automated_backups_replications: ::Array[Types::DBInstanceAutomatedBackupsReplication]
|
|
1242
1256
|
attr_accessor backup_target: ::String
|
|
1243
|
-
attr_accessor
|
|
1257
|
+
attr_accessor multi_tenant: bool
|
|
1244
1258
|
attr_accessor aws_backup_recovery_point_arn: ::String
|
|
1245
1259
|
attr_accessor dedicated_log_volume: bool
|
|
1246
|
-
attr_accessor multi_tenant: bool
|
|
1247
1260
|
SENSITIVE: []
|
|
1248
1261
|
end
|
|
1249
1262
|
|
|
@@ -1358,6 +1371,7 @@ module Aws::RDS
|
|
|
1358
1371
|
attr_accessor vpc_id: ::String
|
|
1359
1372
|
attr_accessor vpc_security_group_ids: ::Array[::String]
|
|
1360
1373
|
attr_accessor vpc_subnet_ids: ::Array[::String]
|
|
1374
|
+
attr_accessor default_auth_scheme: ::String
|
|
1361
1375
|
attr_accessor auth: ::Array[Types::UserAuthConfigInfo]
|
|
1362
1376
|
attr_accessor role_arn: ::String
|
|
1363
1377
|
attr_accessor endpoint: ::String
|
|
@@ -1366,6 +1380,8 @@ module Aws::RDS
|
|
|
1366
1380
|
attr_accessor debug_logging: bool
|
|
1367
1381
|
attr_accessor created_date: ::Time
|
|
1368
1382
|
attr_accessor updated_date: ::Time
|
|
1383
|
+
attr_accessor endpoint_network_type: ("IPV4" | "IPV6" | "DUAL")
|
|
1384
|
+
attr_accessor target_connection_network_type: ("IPV4" | "IPV6")
|
|
1369
1385
|
SENSITIVE: []
|
|
1370
1386
|
end
|
|
1371
1387
|
|
|
@@ -1384,6 +1400,7 @@ module Aws::RDS
|
|
|
1384
1400
|
attr_accessor created_date: ::Time
|
|
1385
1401
|
attr_accessor target_role: ("READ_WRITE" | "READ_ONLY")
|
|
1386
1402
|
attr_accessor is_default: bool
|
|
1403
|
+
attr_accessor endpoint_network_type: ("IPV4" | "IPV6" | "DUAL")
|
|
1387
1404
|
SENSITIVE: []
|
|
1388
1405
|
end
|
|
1389
1406
|
|
|
@@ -1542,6 +1559,7 @@ module Aws::RDS
|
|
|
1542
1559
|
attr_accessor license_model: ::String
|
|
1543
1560
|
attr_accessor snapshot_type: ::String
|
|
1544
1561
|
attr_accessor iops: ::Integer
|
|
1562
|
+
attr_accessor storage_throughput: ::Integer
|
|
1545
1563
|
attr_accessor option_group_name: ::String
|
|
1546
1564
|
attr_accessor percent_progress: ::Integer
|
|
1547
1565
|
attr_accessor source_region: ::String
|
|
@@ -1556,13 +1574,13 @@ module Aws::RDS
|
|
|
1556
1574
|
attr_accessor processor_features: ::Array[Types::ProcessorFeature]
|
|
1557
1575
|
attr_accessor dbi_resource_id: ::String
|
|
1558
1576
|
attr_accessor tag_list: ::Array[Types::Tag]
|
|
1577
|
+
attr_accessor snapshot_target: ::String
|
|
1559
1578
|
attr_accessor original_snapshot_create_time: ::Time
|
|
1560
1579
|
attr_accessor snapshot_database_time: ::Time
|
|
1561
|
-
attr_accessor snapshot_target: ::String
|
|
1562
|
-
attr_accessor storage_throughput: ::Integer
|
|
1563
1580
|
attr_accessor db_system_id: ::String
|
|
1564
|
-
attr_accessor dedicated_log_volume: bool
|
|
1565
1581
|
attr_accessor multi_tenant: bool
|
|
1582
|
+
attr_accessor dedicated_log_volume: bool
|
|
1583
|
+
attr_accessor snapshot_availability_zone: ::String
|
|
1566
1584
|
SENSITIVE: []
|
|
1567
1585
|
end
|
|
1568
1586
|
|
|
@@ -2205,7 +2223,7 @@ module Aws::RDS
|
|
|
2205
2223
|
|
|
2206
2224
|
class DescribeEventsMessage
|
|
2207
2225
|
attr_accessor source_identifier: ::String
|
|
2208
|
-
attr_accessor source_type: ("db-instance" | "db-parameter-group" | "db-security-group" | "db-snapshot" | "db-cluster" | "db-cluster-snapshot" | "custom-engine-version" | "db-proxy" | "blue-green-deployment")
|
|
2226
|
+
attr_accessor source_type: ("db-instance" | "db-parameter-group" | "db-security-group" | "db-snapshot" | "db-cluster" | "db-cluster-snapshot" | "custom-engine-version" | "db-proxy" | "blue-green-deployment" | "db-shard-group" | "zero-etl")
|
|
2209
2227
|
attr_accessor start_time: ::Time
|
|
2210
2228
|
attr_accessor end_time: ::Time
|
|
2211
2229
|
attr_accessor duration: ::Integer
|
|
@@ -2384,7 +2402,7 @@ module Aws::RDS
|
|
|
2384
2402
|
attr_accessor log_file_data: ::String
|
|
2385
2403
|
attr_accessor marker: ::String
|
|
2386
2404
|
attr_accessor additional_data_pending: bool
|
|
2387
|
-
SENSITIVE: []
|
|
2405
|
+
SENSITIVE: [:log_file_data]
|
|
2388
2406
|
end
|
|
2389
2407
|
|
|
2390
2408
|
class DownloadDBLogFilePortionMessage
|
|
@@ -2433,7 +2451,7 @@ module Aws::RDS
|
|
|
2433
2451
|
|
|
2434
2452
|
class Event
|
|
2435
2453
|
attr_accessor source_identifier: ::String
|
|
2436
|
-
attr_accessor source_type: ("db-instance" | "db-parameter-group" | "db-security-group" | "db-snapshot" | "db-cluster" | "db-cluster-snapshot" | "custom-engine-version" | "db-proxy" | "blue-green-deployment")
|
|
2454
|
+
attr_accessor source_type: ("db-instance" | "db-parameter-group" | "db-security-group" | "db-snapshot" | "db-cluster" | "db-cluster-snapshot" | "custom-engine-version" | "db-proxy" | "blue-green-deployment" | "db-shard-group" | "zero-etl")
|
|
2437
2455
|
attr_accessor message: ::String
|
|
2438
2456
|
attr_accessor event_categories: ::Array[::String]
|
|
2439
2457
|
attr_accessor date: ::Time
|
|
@@ -2629,10 +2647,10 @@ module Aws::RDS
|
|
|
2629
2647
|
attr_accessor additional_encryption_context: ::Hash[::String, ::String]
|
|
2630
2648
|
attr_accessor status: ("creating" | "active" | "modifying" | "failed" | "deleting" | "syncing" | "needs_attention")
|
|
2631
2649
|
attr_accessor tags: ::Array[Types::Tag]
|
|
2632
|
-
attr_accessor create_time: ::Time
|
|
2633
|
-
attr_accessor errors: ::Array[Types::IntegrationError]
|
|
2634
2650
|
attr_accessor data_filter: ::String
|
|
2635
2651
|
attr_accessor description: ::String
|
|
2652
|
+
attr_accessor create_time: ::Time
|
|
2653
|
+
attr_accessor errors: ::Array[Types::IntegrationError]
|
|
2636
2654
|
SENSITIVE: []
|
|
2637
2655
|
end
|
|
2638
2656
|
|
|
@@ -2880,24 +2898,25 @@ module Aws::RDS
|
|
|
2880
2898
|
attr_accessor storage_type: ::String
|
|
2881
2899
|
attr_accessor iops: ::Integer
|
|
2882
2900
|
attr_accessor auto_minor_version_upgrade: bool
|
|
2901
|
+
attr_accessor network_type: ::String
|
|
2902
|
+
attr_accessor serverless_v2_scaling_configuration: Types::ServerlessV2ScalingConfiguration
|
|
2883
2903
|
attr_accessor monitoring_interval: ::Integer
|
|
2884
2904
|
attr_accessor monitoring_role_arn: ::String
|
|
2885
2905
|
attr_accessor database_insights_mode: ("standard" | "advanced")
|
|
2886
2906
|
attr_accessor enable_performance_insights: bool
|
|
2887
2907
|
attr_accessor performance_insights_kms_key_id: ::String
|
|
2888
2908
|
attr_accessor performance_insights_retention_period: ::Integer
|
|
2889
|
-
attr_accessor serverless_v2_scaling_configuration: Types::ServerlessV2ScalingConfiguration
|
|
2890
|
-
attr_accessor network_type: ::String
|
|
2891
2909
|
attr_accessor manage_master_user_password: bool
|
|
2892
2910
|
attr_accessor rotate_master_user_password: bool
|
|
2911
|
+
attr_accessor enable_local_write_forwarding: bool
|
|
2893
2912
|
attr_accessor master_user_secret_kms_key_id: ::String
|
|
2894
2913
|
attr_accessor engine_mode: ::String
|
|
2895
2914
|
attr_accessor allow_engine_mode_change: bool
|
|
2896
|
-
attr_accessor enable_local_write_forwarding: bool
|
|
2897
2915
|
attr_accessor aws_backup_recovery_point_arn: ::String
|
|
2898
2916
|
attr_accessor enable_limitless_database: bool
|
|
2899
2917
|
attr_accessor ca_certificate_identifier: ::String
|
|
2900
|
-
|
|
2918
|
+
attr_accessor master_user_authentication_type: ("password" | "iam-db-auth")
|
|
2919
|
+
SENSITIVE: [:master_user_password]
|
|
2901
2920
|
end
|
|
2902
2921
|
|
|
2903
2922
|
class ModifyDBClusterParameterGroupMessage
|
|
@@ -2943,6 +2962,7 @@ module Aws::RDS
|
|
|
2943
2962
|
attr_accessor auto_minor_version_upgrade: bool
|
|
2944
2963
|
attr_accessor license_model: ::String
|
|
2945
2964
|
attr_accessor iops: ::Integer
|
|
2965
|
+
attr_accessor storage_throughput: ::Integer
|
|
2946
2966
|
attr_accessor option_group_name: ::String
|
|
2947
2967
|
attr_accessor new_db_instance_identifier: ::String
|
|
2948
2968
|
attr_accessor storage_type: ::String
|
|
@@ -2954,13 +2974,13 @@ module Aws::RDS
|
|
|
2954
2974
|
attr_accessor domain_ou: ::String
|
|
2955
2975
|
attr_accessor domain_auth_secret_arn: ::String
|
|
2956
2976
|
attr_accessor domain_dns_ips: ::Array[::String]
|
|
2977
|
+
attr_accessor disable_domain: bool
|
|
2957
2978
|
attr_accessor copy_tags_to_snapshot: bool
|
|
2958
2979
|
attr_accessor monitoring_interval: ::Integer
|
|
2959
2980
|
attr_accessor db_port_number: ::Integer
|
|
2960
2981
|
attr_accessor publicly_accessible: bool
|
|
2961
2982
|
attr_accessor monitoring_role_arn: ::String
|
|
2962
2983
|
attr_accessor domain_iam_role_name: ::String
|
|
2963
|
-
attr_accessor disable_domain: bool
|
|
2964
2984
|
attr_accessor promotion_tier: ::Integer
|
|
2965
2985
|
attr_accessor enable_iam_database_authentication: bool
|
|
2966
2986
|
attr_accessor database_insights_mode: ("standard" | "advanced")
|
|
@@ -2974,19 +2994,19 @@ module Aws::RDS
|
|
|
2974
2994
|
attr_accessor max_allocated_storage: ::Integer
|
|
2975
2995
|
attr_accessor certificate_rotation_restart: bool
|
|
2976
2996
|
attr_accessor replica_mode: ("open-read-only" | "mounted")
|
|
2977
|
-
attr_accessor enable_customer_owned_ip: bool
|
|
2978
|
-
attr_accessor aws_backup_recovery_point_arn: ::String
|
|
2979
2997
|
attr_accessor automation_mode: ("full" | "all-paused")
|
|
2980
2998
|
attr_accessor resume_full_automation_mode_minutes: ::Integer
|
|
2999
|
+
attr_accessor enable_customer_owned_ip: bool
|
|
2981
3000
|
attr_accessor network_type: ::String
|
|
2982
|
-
attr_accessor
|
|
3001
|
+
attr_accessor aws_backup_recovery_point_arn: ::String
|
|
2983
3002
|
attr_accessor manage_master_user_password: bool
|
|
2984
3003
|
attr_accessor rotate_master_user_password: bool
|
|
2985
3004
|
attr_accessor master_user_secret_kms_key_id: ::String
|
|
2986
|
-
attr_accessor engine: ::String
|
|
2987
|
-
attr_accessor dedicated_log_volume: bool
|
|
2988
3005
|
attr_accessor multi_tenant: bool
|
|
2989
|
-
|
|
3006
|
+
attr_accessor dedicated_log_volume: bool
|
|
3007
|
+
attr_accessor engine: ::String
|
|
3008
|
+
attr_accessor master_user_authentication_type: ("password" | "iam-db-auth")
|
|
3009
|
+
SENSITIVE: [:master_user_password, :tde_credential_password]
|
|
2990
3010
|
end
|
|
2991
3011
|
|
|
2992
3012
|
class ModifyDBInstanceResult
|
|
@@ -3015,6 +3035,7 @@ module Aws::RDS
|
|
|
3015
3035
|
class ModifyDBProxyRequest
|
|
3016
3036
|
attr_accessor db_proxy_name: ::String
|
|
3017
3037
|
attr_accessor new_db_proxy_name: ::String
|
|
3038
|
+
attr_accessor default_auth_scheme: ("IAM_AUTH" | "NONE")
|
|
3018
3039
|
attr_accessor auth: ::Array[Types::UserAuthConfig]
|
|
3019
3040
|
attr_accessor require_tls: bool
|
|
3020
3041
|
attr_accessor idle_client_timeout: ::Integer
|
|
@@ -3271,7 +3292,7 @@ module Aws::RDS
|
|
|
3271
3292
|
attr_accessor allowed_values: ::String
|
|
3272
3293
|
attr_accessor is_modifiable: bool
|
|
3273
3294
|
attr_accessor is_collection: bool
|
|
3274
|
-
SENSITIVE: []
|
|
3295
|
+
SENSITIVE: [:value]
|
|
3275
3296
|
end
|
|
3276
3297
|
|
|
3277
3298
|
class OptionVersion
|
|
@@ -3293,6 +3314,7 @@ module Aws::RDS
|
|
|
3293
3314
|
attr_accessor supports_storage_encryption: bool
|
|
3294
3315
|
attr_accessor storage_type: ::String
|
|
3295
3316
|
attr_accessor supports_iops: bool
|
|
3317
|
+
attr_accessor supports_storage_throughput: bool
|
|
3296
3318
|
attr_accessor supports_enhanced_monitoring: bool
|
|
3297
3319
|
attr_accessor supports_iam_database_authentication: bool
|
|
3298
3320
|
attr_accessor supports_performance_insights: bool
|
|
@@ -3302,6 +3324,10 @@ module Aws::RDS
|
|
|
3302
3324
|
attr_accessor max_iops_per_db_instance: ::Integer
|
|
3303
3325
|
attr_accessor min_iops_per_gib: ::Float
|
|
3304
3326
|
attr_accessor max_iops_per_gib: ::Float
|
|
3327
|
+
attr_accessor min_storage_throughput_per_db_instance: ::Integer
|
|
3328
|
+
attr_accessor max_storage_throughput_per_db_instance: ::Integer
|
|
3329
|
+
attr_accessor min_storage_throughput_per_iops: ::Float
|
|
3330
|
+
attr_accessor max_storage_throughput_per_iops: ::Float
|
|
3305
3331
|
attr_accessor available_processor_features: ::Array[Types::AvailableProcessorFeature]
|
|
3306
3332
|
attr_accessor supported_engine_modes: ::Array[::String]
|
|
3307
3333
|
attr_accessor supports_storage_autoscaling: bool
|
|
@@ -3309,14 +3335,10 @@ module Aws::RDS
|
|
|
3309
3335
|
attr_accessor outpost_capable: bool
|
|
3310
3336
|
attr_accessor supported_activity_stream_modes: ::Array[::String]
|
|
3311
3337
|
attr_accessor supports_global_databases: bool
|
|
3312
|
-
attr_accessor supports_clusters: bool
|
|
3313
3338
|
attr_accessor supported_network_types: ::Array[::String]
|
|
3314
|
-
attr_accessor
|
|
3315
|
-
attr_accessor min_storage_throughput_per_db_instance: ::Integer
|
|
3316
|
-
attr_accessor max_storage_throughput_per_db_instance: ::Integer
|
|
3317
|
-
attr_accessor min_storage_throughput_per_iops: ::Float
|
|
3318
|
-
attr_accessor max_storage_throughput_per_iops: ::Float
|
|
3339
|
+
attr_accessor supports_clusters: bool
|
|
3319
3340
|
attr_accessor supports_dedicated_log_volume: bool
|
|
3341
|
+
attr_accessor supports_http_endpoint: bool
|
|
3320
3342
|
SENSITIVE: []
|
|
3321
3343
|
end
|
|
3322
3344
|
|
|
@@ -3378,20 +3400,20 @@ module Aws::RDS
|
|
|
3378
3400
|
attr_accessor engine_version: ::String
|
|
3379
3401
|
attr_accessor license_model: ::String
|
|
3380
3402
|
attr_accessor iops: ::Integer
|
|
3403
|
+
attr_accessor storage_throughput: ::Integer
|
|
3381
3404
|
attr_accessor db_instance_identifier: ::String
|
|
3382
3405
|
attr_accessor storage_type: ::String
|
|
3383
3406
|
attr_accessor ca_certificate_identifier: ::String
|
|
3384
3407
|
attr_accessor db_subnet_group_name: ::String
|
|
3385
3408
|
attr_accessor pending_cloudwatch_logs_exports: Types::PendingCloudwatchLogsExports
|
|
3386
3409
|
attr_accessor processor_features: ::Array[Types::ProcessorFeature]
|
|
3387
|
-
attr_accessor iam_database_authentication_enabled: bool
|
|
3388
3410
|
attr_accessor automation_mode: ("full" | "all-paused")
|
|
3389
3411
|
attr_accessor resume_full_automation_mode_time: ::Time
|
|
3390
|
-
attr_accessor storage_throughput: ::Integer
|
|
3391
|
-
attr_accessor engine: ::String
|
|
3392
|
-
attr_accessor dedicated_log_volume: bool
|
|
3393
3412
|
attr_accessor multi_tenant: bool
|
|
3394
|
-
|
|
3413
|
+
attr_accessor iam_database_authentication_enabled: bool
|
|
3414
|
+
attr_accessor dedicated_log_volume: bool
|
|
3415
|
+
attr_accessor engine: ::String
|
|
3416
|
+
SENSITIVE: [:master_user_password]
|
|
3395
3417
|
end
|
|
3396
3418
|
|
|
3397
3419
|
class PerformanceInsightsMetricDimensionGroup
|
|
@@ -3706,13 +3728,13 @@ module Aws::RDS
|
|
|
3706
3728
|
attr_accessor copy_tags_to_snapshot: bool
|
|
3707
3729
|
attr_accessor domain: ::String
|
|
3708
3730
|
attr_accessor domain_iam_role_name: ::String
|
|
3709
|
-
attr_accessor
|
|
3731
|
+
attr_accessor storage_type: ::String
|
|
3710
3732
|
attr_accessor network_type: ::String
|
|
3733
|
+
attr_accessor serverless_v2_scaling_configuration: Types::ServerlessV2ScalingConfiguration
|
|
3711
3734
|
attr_accessor manage_master_user_password: bool
|
|
3712
3735
|
attr_accessor master_user_secret_kms_key_id: ::String
|
|
3713
|
-
attr_accessor storage_type: ::String
|
|
3714
3736
|
attr_accessor engine_lifecycle_support: ::String
|
|
3715
|
-
SENSITIVE: []
|
|
3737
|
+
SENSITIVE: [:master_user_password]
|
|
3716
3738
|
end
|
|
3717
3739
|
|
|
3718
3740
|
class RestoreDBClusterFromS3Result
|
|
@@ -3747,8 +3769,8 @@ module Aws::RDS
|
|
|
3747
3769
|
attr_accessor storage_type: ::String
|
|
3748
3770
|
attr_accessor iops: ::Integer
|
|
3749
3771
|
attr_accessor publicly_accessible: bool
|
|
3750
|
-
attr_accessor serverless_v2_scaling_configuration: Types::ServerlessV2ScalingConfiguration
|
|
3751
3772
|
attr_accessor network_type: ::String
|
|
3773
|
+
attr_accessor serverless_v2_scaling_configuration: Types::ServerlessV2ScalingConfiguration
|
|
3752
3774
|
attr_accessor rds_custom_cluster_configuration: Types::RdsCustomClusterConfiguration
|
|
3753
3775
|
attr_accessor monitoring_interval: ::Integer
|
|
3754
3776
|
attr_accessor monitoring_role_arn: ::String
|
|
@@ -3784,15 +3806,15 @@ module Aws::RDS
|
|
|
3784
3806
|
attr_accessor copy_tags_to_snapshot: bool
|
|
3785
3807
|
attr_accessor domain: ::String
|
|
3786
3808
|
attr_accessor domain_iam_role_name: ::String
|
|
3787
|
-
attr_accessor scaling_configuration: Types::ScalingConfiguration
|
|
3788
|
-
attr_accessor engine_mode: ::String
|
|
3789
3809
|
attr_accessor db_cluster_instance_class: ::String
|
|
3790
3810
|
attr_accessor storage_type: ::String
|
|
3791
3811
|
attr_accessor publicly_accessible: bool
|
|
3792
3812
|
attr_accessor iops: ::Integer
|
|
3793
|
-
attr_accessor serverless_v2_scaling_configuration: Types::ServerlessV2ScalingConfiguration
|
|
3794
3813
|
attr_accessor network_type: ::String
|
|
3795
3814
|
attr_accessor source_db_cluster_resource_id: ::String
|
|
3815
|
+
attr_accessor serverless_v2_scaling_configuration: Types::ServerlessV2ScalingConfiguration
|
|
3816
|
+
attr_accessor scaling_configuration: Types::ScalingConfiguration
|
|
3817
|
+
attr_accessor engine_mode: ::String
|
|
3796
3818
|
attr_accessor rds_custom_cluster_configuration: Types::RdsCustomClusterConfiguration
|
|
3797
3819
|
attr_accessor monitoring_interval: ::Integer
|
|
3798
3820
|
attr_accessor monitoring_role_arn: ::String
|
|
@@ -3822,6 +3844,7 @@ module Aws::RDS
|
|
|
3822
3844
|
attr_accessor db_name: ::String
|
|
3823
3845
|
attr_accessor engine: ::String
|
|
3824
3846
|
attr_accessor iops: ::Integer
|
|
3847
|
+
attr_accessor storage_throughput: ::Integer
|
|
3825
3848
|
attr_accessor option_group_name: ::String
|
|
3826
3849
|
attr_accessor tags: ::Array[Types::Tag]
|
|
3827
3850
|
attr_accessor storage_type: ::String
|
|
@@ -3842,18 +3865,17 @@ module Aws::RDS
|
|
|
3842
3865
|
attr_accessor db_parameter_group_name: ::String
|
|
3843
3866
|
attr_accessor deletion_protection: bool
|
|
3844
3867
|
attr_accessor enable_customer_owned_ip: bool
|
|
3845
|
-
attr_accessor custom_iam_instance_profile: ::String
|
|
3846
|
-
attr_accessor backup_target: ::String
|
|
3847
3868
|
attr_accessor network_type: ::String
|
|
3848
|
-
attr_accessor
|
|
3849
|
-
attr_accessor
|
|
3869
|
+
attr_accessor backup_target: ::String
|
|
3870
|
+
attr_accessor custom_iam_instance_profile: ::String
|
|
3850
3871
|
attr_accessor allocated_storage: ::Integer
|
|
3872
|
+
attr_accessor db_cluster_snapshot_identifier: ::String
|
|
3851
3873
|
attr_accessor dedicated_log_volume: bool
|
|
3852
3874
|
attr_accessor ca_certificate_identifier: ::String
|
|
3853
3875
|
attr_accessor engine_lifecycle_support: ::String
|
|
3854
3876
|
attr_accessor manage_master_user_password: bool
|
|
3855
3877
|
attr_accessor master_user_secret_kms_key_id: ::String
|
|
3856
|
-
SENSITIVE: []
|
|
3878
|
+
SENSITIVE: [:tde_credential_password]
|
|
3857
3879
|
end
|
|
3858
3880
|
|
|
3859
3881
|
class RestoreDBInstanceFromDBSnapshotResult
|
|
@@ -3883,6 +3905,7 @@ module Aws::RDS
|
|
|
3883
3905
|
attr_accessor auto_minor_version_upgrade: bool
|
|
3884
3906
|
attr_accessor license_model: ::String
|
|
3885
3907
|
attr_accessor iops: ::Integer
|
|
3908
|
+
attr_accessor storage_throughput: ::Integer
|
|
3886
3909
|
attr_accessor option_group_name: ::String
|
|
3887
3910
|
attr_accessor publicly_accessible: bool
|
|
3888
3911
|
attr_accessor tags: ::Array[Types::Tag]
|
|
@@ -3908,13 +3931,12 @@ module Aws::RDS
|
|
|
3908
3931
|
attr_accessor deletion_protection: bool
|
|
3909
3932
|
attr_accessor max_allocated_storage: ::Integer
|
|
3910
3933
|
attr_accessor network_type: ::String
|
|
3911
|
-
attr_accessor storage_throughput: ::Integer
|
|
3912
3934
|
attr_accessor manage_master_user_password: bool
|
|
3913
3935
|
attr_accessor master_user_secret_kms_key_id: ::String
|
|
3914
3936
|
attr_accessor dedicated_log_volume: bool
|
|
3915
3937
|
attr_accessor ca_certificate_identifier: ::String
|
|
3916
3938
|
attr_accessor engine_lifecycle_support: ::String
|
|
3917
|
-
SENSITIVE: []
|
|
3939
|
+
SENSITIVE: [:master_user_password]
|
|
3918
3940
|
end
|
|
3919
3941
|
|
|
3920
3942
|
class RestoreDBInstanceFromS3Result
|
|
@@ -3938,6 +3960,7 @@ module Aws::RDS
|
|
|
3938
3960
|
attr_accessor db_name: ::String
|
|
3939
3961
|
attr_accessor engine: ::String
|
|
3940
3962
|
attr_accessor iops: ::Integer
|
|
3963
|
+
attr_accessor storage_throughput: ::Integer
|
|
3941
3964
|
attr_accessor option_group_name: ::String
|
|
3942
3965
|
attr_accessor copy_tags_to_snapshot: bool
|
|
3943
3966
|
attr_accessor tags: ::Array[Types::Tag]
|
|
@@ -3959,19 +3982,18 @@ module Aws::RDS
|
|
|
3959
3982
|
attr_accessor deletion_protection: bool
|
|
3960
3983
|
attr_accessor source_dbi_resource_id: ::String
|
|
3961
3984
|
attr_accessor max_allocated_storage: ::Integer
|
|
3962
|
-
attr_accessor source_db_instance_automated_backups_arn: ::String
|
|
3963
3985
|
attr_accessor enable_customer_owned_ip: bool
|
|
3964
|
-
attr_accessor custom_iam_instance_profile: ::String
|
|
3965
|
-
attr_accessor backup_target: ::String
|
|
3966
3986
|
attr_accessor network_type: ::String
|
|
3967
|
-
attr_accessor
|
|
3987
|
+
attr_accessor source_db_instance_automated_backups_arn: ::String
|
|
3988
|
+
attr_accessor backup_target: ::String
|
|
3989
|
+
attr_accessor custom_iam_instance_profile: ::String
|
|
3968
3990
|
attr_accessor allocated_storage: ::Integer
|
|
3969
3991
|
attr_accessor dedicated_log_volume: bool
|
|
3970
3992
|
attr_accessor ca_certificate_identifier: ::String
|
|
3971
3993
|
attr_accessor engine_lifecycle_support: ::String
|
|
3972
3994
|
attr_accessor manage_master_user_password: bool
|
|
3973
3995
|
attr_accessor master_user_secret_kms_key_id: ::String
|
|
3974
|
-
SENSITIVE: []
|
|
3996
|
+
SENSITIVE: [:tde_credential_password]
|
|
3975
3997
|
end
|
|
3976
3998
|
|
|
3977
3999
|
class RestoreDBInstanceToPointInTimeResult
|
|
@@ -4096,8 +4118,8 @@ module Aws::RDS
|
|
|
4096
4118
|
attr_accessor kinesis_stream_name: ::String
|
|
4097
4119
|
attr_accessor status: ("stopped" | "starting" | "started" | "stopping")
|
|
4098
4120
|
attr_accessor mode: ("sync" | "async")
|
|
4099
|
-
attr_accessor apply_immediately: bool
|
|
4100
4121
|
attr_accessor engine_native_audit_fields_included: bool
|
|
4122
|
+
attr_accessor apply_immediately: bool
|
|
4101
4123
|
SENSITIVE: []
|
|
4102
4124
|
end
|
|
4103
4125
|
|
|
@@ -4117,7 +4139,7 @@ module Aws::RDS
|
|
|
4117
4139
|
attr_accessor kms_key_id: ::String
|
|
4118
4140
|
attr_accessor pre_signed_url: ::String
|
|
4119
4141
|
attr_accessor source_region: ::String
|
|
4120
|
-
SENSITIVE: []
|
|
4142
|
+
SENSITIVE: [:pre_signed_url]
|
|
4121
4143
|
end
|
|
4122
4144
|
|
|
4123
4145
|
class StartDBInstanceAutomatedBackupsReplicationResult
|
|
@@ -4277,8 +4299,8 @@ module Aws::RDS
|
|
|
4277
4299
|
end
|
|
4278
4300
|
|
|
4279
4301
|
class TargetHealth
|
|
4280
|
-
attr_accessor state: ("REGISTERING" | "AVAILABLE" | "UNAVAILABLE")
|
|
4281
|
-
attr_accessor reason: ("UNREACHABLE" | "CONNECTION_FAILED" | "AUTH_FAILURE" | "PENDING_PROXY_CAPACITY" | "INVALID_REPLICATION_STATE")
|
|
4302
|
+
attr_accessor state: ("REGISTERING" | "AVAILABLE" | "UNAVAILABLE" | "UNUSED")
|
|
4303
|
+
attr_accessor reason: ("UNREACHABLE" | "CONNECTION_FAILED" | "AUTH_FAILURE" | "PENDING_PROXY_CAPACITY" | "INVALID_REPLICATION_STATE" | "PROMOTED")
|
|
4282
4304
|
attr_accessor description: ::String
|
|
4283
4305
|
SENSITIVE: []
|
|
4284
4306
|
end
|
|
@@ -4378,12 +4400,15 @@ module Aws::RDS
|
|
|
4378
4400
|
attr_accessor storage_size: ::Array[Types::Range]
|
|
4379
4401
|
attr_accessor provisioned_iops: ::Array[Types::Range]
|
|
4380
4402
|
attr_accessor iops_to_storage_ratio: ::Array[Types::DoubleRange]
|
|
4381
|
-
attr_accessor supports_storage_autoscaling: bool
|
|
4382
4403
|
attr_accessor provisioned_storage_throughput: ::Array[Types::Range]
|
|
4383
4404
|
attr_accessor storage_throughput_to_iops_ratio: ::Array[Types::DoubleRange]
|
|
4405
|
+
attr_accessor supports_storage_autoscaling: bool
|
|
4384
4406
|
SENSITIVE: []
|
|
4385
4407
|
end
|
|
4386
4408
|
|
|
4409
|
+
class VpcEncryptionControlViolationException < Aws::EmptyStructure
|
|
4410
|
+
end
|
|
4411
|
+
|
|
4387
4412
|
class VpcSecurityGroupMembership
|
|
4388
4413
|
attr_accessor vpc_security_group_id: ::String
|
|
4389
4414
|
attr_accessor status: ::String
|