aws-sdk-rds 1.307.0 → 1.308.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 +48 -1
- data/lib/aws-sdk-rds/client_api.rb +8 -0
- data/lib/aws-sdk-rds/db_cluster.rb +15 -0
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +15 -0
- data/lib/aws-sdk-rds/db_instance.rb +15 -0
- data/lib/aws-sdk-rds/db_snapshot.rb +15 -0
- data/lib/aws-sdk-rds/types.rb +98 -0
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/db_cluster.rbs +3 -0
- data/sig/db_cluster_snapshot.rbs +3 -0
- data/sig/db_instance.rbs +3 -0
- data/sig/db_snapshot.rbs +3 -0
- data/sig/types.rbs +7 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1ad8b8d3df8c826812feb39c6f47542f8aed87304a84f483a20b31b186569f23
|
|
4
|
+
data.tar.gz: 4de7b71d2ca82cbe2911c72438c48d87d71db30527b86521ae451253b6038329
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4b44796087f8561ba3549ba172ded3dd0ece8c4aab1d77f7d0fcfd98d38aa7bcd06348c7c1e91733b844b173d34bb5eff149fbbc1a70ff3fac6235c561995905
|
|
7
|
+
data.tar.gz: 89b32e0e67c1e537cfec6d909dbe17bbc7262506dcb473454feb13f70adb684208452cf2c114e9ced5046c4384133e42cf646d7c5db2999bcd00f7745d4846d2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.308.0 (2026-02-17)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds support for the StorageEncryptionType field to specify encryption type for DB clusters, DB instances, snapshots, automated backups, and global clusters.
|
|
8
|
+
|
|
4
9
|
1.307.0 (2026-02-10)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.308.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
|
@@ -1521,6 +1521,7 @@ module Aws::RDS
|
|
|
1521
1521
|
# resp.db_cluster_snapshot.snapshot_type #=> String
|
|
1522
1522
|
# resp.db_cluster_snapshot.percent_progress #=> Integer
|
|
1523
1523
|
# resp.db_cluster_snapshot.storage_encrypted #=> Boolean
|
|
1524
|
+
# resp.db_cluster_snapshot.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
1524
1525
|
# resp.db_cluster_snapshot.backup_retention_period #=> Integer
|
|
1525
1526
|
# resp.db_cluster_snapshot.preferred_backup_window #=> String
|
|
1526
1527
|
# resp.db_cluster_snapshot.kms_key_id #=> String
|
|
@@ -1960,6 +1961,7 @@ module Aws::RDS
|
|
|
1960
1961
|
# resp.db_snapshot.storage_type #=> String
|
|
1961
1962
|
# resp.db_snapshot.tde_credential_arn #=> String
|
|
1962
1963
|
# resp.db_snapshot.encrypted #=> Boolean
|
|
1964
|
+
# resp.db_snapshot.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
1963
1965
|
# resp.db_snapshot.backup_retention_period #=> Integer
|
|
1964
1966
|
# resp.db_snapshot.preferred_backup_window #=> String
|
|
1965
1967
|
# resp.db_snapshot.kms_key_id #=> String
|
|
@@ -3962,6 +3964,7 @@ module Aws::RDS
|
|
|
3962
3964
|
# resp.db_cluster.vpc_security_groups[0].status #=> String
|
|
3963
3965
|
# resp.db_cluster.hosted_zone_id #=> String
|
|
3964
3966
|
# resp.db_cluster.storage_encrypted #=> Boolean
|
|
3967
|
+
# resp.db_cluster.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
3965
3968
|
# resp.db_cluster.kms_key_id #=> String
|
|
3966
3969
|
# resp.db_cluster.db_cluster_resource_id #=> String
|
|
3967
3970
|
# resp.db_cluster.db_cluster_arn #=> String
|
|
@@ -4475,6 +4478,7 @@ module Aws::RDS
|
|
|
4475
4478
|
# resp.db_cluster_snapshot.snapshot_type #=> String
|
|
4476
4479
|
# resp.db_cluster_snapshot.percent_progress #=> Integer
|
|
4477
4480
|
# resp.db_cluster_snapshot.storage_encrypted #=> Boolean
|
|
4481
|
+
# resp.db_cluster_snapshot.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
4478
4482
|
# resp.db_cluster_snapshot.backup_retention_period #=> Integer
|
|
4479
4483
|
# resp.db_cluster_snapshot.preferred_backup_window #=> String
|
|
4480
4484
|
# resp.db_cluster_snapshot.kms_key_id #=> String
|
|
@@ -6167,6 +6171,7 @@ module Aws::RDS
|
|
|
6167
6171
|
# resp.db_instance.status_infos[0].status #=> String
|
|
6168
6172
|
# resp.db_instance.status_infos[0].message #=> String
|
|
6169
6173
|
# resp.db_instance.storage_type #=> String
|
|
6174
|
+
# resp.db_instance.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
6170
6175
|
# resp.db_instance.tde_credential_arn #=> String
|
|
6171
6176
|
# resp.db_instance.db_instance_port #=> Integer
|
|
6172
6177
|
# resp.db_instance.db_cluster_identifier #=> String
|
|
@@ -7233,6 +7238,7 @@ module Aws::RDS
|
|
|
7233
7238
|
# resp.db_instance.status_infos[0].status #=> String
|
|
7234
7239
|
# resp.db_instance.status_infos[0].message #=> String
|
|
7235
7240
|
# resp.db_instance.storage_type #=> String
|
|
7241
|
+
# resp.db_instance.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
7236
7242
|
# resp.db_instance.tde_credential_arn #=> String
|
|
7237
7243
|
# resp.db_instance.db_instance_port #=> Integer
|
|
7238
7244
|
# resp.db_instance.db_cluster_identifier #=> String
|
|
@@ -8112,6 +8118,7 @@ module Aws::RDS
|
|
|
8112
8118
|
# resp.db_snapshot.storage_type #=> String
|
|
8113
8119
|
# resp.db_snapshot.tde_credential_arn #=> String
|
|
8114
8120
|
# resp.db_snapshot.encrypted #=> Boolean
|
|
8121
|
+
# resp.db_snapshot.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
8115
8122
|
# resp.db_snapshot.backup_retention_period #=> Integer
|
|
8116
8123
|
# resp.db_snapshot.preferred_backup_window #=> String
|
|
8117
8124
|
# resp.db_snapshot.kms_key_id #=> String
|
|
@@ -8657,6 +8664,7 @@ module Aws::RDS
|
|
|
8657
8664
|
# resp.global_cluster.engine_lifecycle_support #=> String
|
|
8658
8665
|
# resp.global_cluster.database_name #=> String
|
|
8659
8666
|
# resp.global_cluster.storage_encrypted #=> Boolean
|
|
8667
|
+
# resp.global_cluster.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
8660
8668
|
# resp.global_cluster.deletion_protection #=> Boolean
|
|
8661
8669
|
# resp.global_cluster.global_cluster_members #=> Array
|
|
8662
8670
|
# resp.global_cluster.global_cluster_members[0].db_cluster_arn #=> String
|
|
@@ -9679,6 +9687,7 @@ module Aws::RDS
|
|
|
9679
9687
|
# resp.db_cluster.vpc_security_groups[0].status #=> String
|
|
9680
9688
|
# resp.db_cluster.hosted_zone_id #=> String
|
|
9681
9689
|
# resp.db_cluster.storage_encrypted #=> Boolean
|
|
9690
|
+
# resp.db_cluster.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
9682
9691
|
# resp.db_cluster.kms_key_id #=> String
|
|
9683
9692
|
# resp.db_cluster.db_cluster_resource_id #=> String
|
|
9684
9693
|
# resp.db_cluster.db_cluster_arn #=> String
|
|
@@ -9820,6 +9829,7 @@ module Aws::RDS
|
|
|
9820
9829
|
# resp.db_cluster_automated_backup.iam_database_authentication_enabled #=> Boolean
|
|
9821
9830
|
# resp.db_cluster_automated_backup.cluster_create_time #=> Time
|
|
9822
9831
|
# resp.db_cluster_automated_backup.storage_encrypted #=> Boolean
|
|
9832
|
+
# resp.db_cluster_automated_backup.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
9823
9833
|
# resp.db_cluster_automated_backup.allocated_storage #=> Integer
|
|
9824
9834
|
# resp.db_cluster_automated_backup.engine_version #=> String
|
|
9825
9835
|
# resp.db_cluster_automated_backup.db_cluster_arn #=> String
|
|
@@ -10072,6 +10082,7 @@ module Aws::RDS
|
|
|
10072
10082
|
# resp.db_cluster_snapshot.snapshot_type #=> String
|
|
10073
10083
|
# resp.db_cluster_snapshot.percent_progress #=> Integer
|
|
10074
10084
|
# resp.db_cluster_snapshot.storage_encrypted #=> Boolean
|
|
10085
|
+
# resp.db_cluster_snapshot.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
10075
10086
|
# resp.db_cluster_snapshot.backup_retention_period #=> Integer
|
|
10076
10087
|
# resp.db_cluster_snapshot.preferred_backup_window #=> String
|
|
10077
10088
|
# resp.db_cluster_snapshot.kms_key_id #=> String
|
|
@@ -10321,6 +10332,7 @@ module Aws::RDS
|
|
|
10321
10332
|
# resp.db_instance.status_infos[0].status #=> String
|
|
10322
10333
|
# resp.db_instance.status_infos[0].message #=> String
|
|
10323
10334
|
# resp.db_instance.storage_type #=> String
|
|
10335
|
+
# resp.db_instance.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
10324
10336
|
# resp.db_instance.tde_credential_arn #=> String
|
|
10325
10337
|
# resp.db_instance.db_instance_port #=> Integer
|
|
10326
10338
|
# resp.db_instance.db_cluster_identifier #=> String
|
|
@@ -10499,6 +10511,7 @@ module Aws::RDS
|
|
|
10499
10511
|
# resp.db_instance_automated_backup.option_group_name #=> String
|
|
10500
10512
|
# resp.db_instance_automated_backup.tde_credential_arn #=> String
|
|
10501
10513
|
# resp.db_instance_automated_backup.encrypted #=> Boolean
|
|
10514
|
+
# resp.db_instance_automated_backup.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
10502
10515
|
# resp.db_instance_automated_backup.storage_type #=> String
|
|
10503
10516
|
# resp.db_instance_automated_backup.kms_key_id #=> String
|
|
10504
10517
|
# resp.db_instance_automated_backup.timezone #=> String
|
|
@@ -10871,6 +10884,7 @@ module Aws::RDS
|
|
|
10871
10884
|
# resp.db_snapshot.storage_type #=> String
|
|
10872
10885
|
# resp.db_snapshot.tde_credential_arn #=> String
|
|
10873
10886
|
# resp.db_snapshot.encrypted #=> Boolean
|
|
10887
|
+
# resp.db_snapshot.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
10874
10888
|
# resp.db_snapshot.backup_retention_period #=> Integer
|
|
10875
10889
|
# resp.db_snapshot.preferred_backup_window #=> String
|
|
10876
10890
|
# resp.db_snapshot.kms_key_id #=> String
|
|
@@ -11079,6 +11093,7 @@ module Aws::RDS
|
|
|
11079
11093
|
# resp.global_cluster.engine_lifecycle_support #=> String
|
|
11080
11094
|
# resp.global_cluster.database_name #=> String
|
|
11081
11095
|
# resp.global_cluster.storage_encrypted #=> Boolean
|
|
11096
|
+
# resp.global_cluster.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
11082
11097
|
# resp.global_cluster.deletion_protection #=> Boolean
|
|
11083
11098
|
# resp.global_cluster.global_cluster_members #=> Array
|
|
11084
11099
|
# resp.global_cluster.global_cluster_members[0].db_cluster_arn #=> String
|
|
@@ -12003,6 +12018,7 @@ module Aws::RDS
|
|
|
12003
12018
|
# resp.db_cluster_automated_backups[0].iam_database_authentication_enabled #=> Boolean
|
|
12004
12019
|
# resp.db_cluster_automated_backups[0].cluster_create_time #=> Time
|
|
12005
12020
|
# resp.db_cluster_automated_backups[0].storage_encrypted #=> Boolean
|
|
12021
|
+
# resp.db_cluster_automated_backups[0].storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
12006
12022
|
# resp.db_cluster_automated_backups[0].allocated_storage #=> Integer
|
|
12007
12023
|
# resp.db_cluster_automated_backups[0].engine_version #=> String
|
|
12008
12024
|
# resp.db_cluster_automated_backups[0].db_cluster_arn #=> String
|
|
@@ -12916,6 +12932,7 @@ module Aws::RDS
|
|
|
12916
12932
|
# resp.db_cluster_snapshots[0].snapshot_type #=> String
|
|
12917
12933
|
# resp.db_cluster_snapshots[0].percent_progress #=> Integer
|
|
12918
12934
|
# resp.db_cluster_snapshots[0].storage_encrypted #=> Boolean
|
|
12935
|
+
# resp.db_cluster_snapshots[0].storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
12919
12936
|
# resp.db_cluster_snapshots[0].backup_retention_period #=> Integer
|
|
12920
12937
|
# resp.db_cluster_snapshots[0].preferred_backup_window #=> String
|
|
12921
12938
|
# resp.db_cluster_snapshots[0].kms_key_id #=> String
|
|
@@ -13188,6 +13205,7 @@ module Aws::RDS
|
|
|
13188
13205
|
# resp.db_clusters[0].vpc_security_groups[0].status #=> String
|
|
13189
13206
|
# resp.db_clusters[0].hosted_zone_id #=> String
|
|
13190
13207
|
# resp.db_clusters[0].storage_encrypted #=> Boolean
|
|
13208
|
+
# resp.db_clusters[0].storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
13191
13209
|
# resp.db_clusters[0].kms_key_id #=> String
|
|
13192
13210
|
# resp.db_clusters[0].db_cluster_resource_id #=> String
|
|
13193
13211
|
# resp.db_clusters[0].db_cluster_arn #=> String
|
|
@@ -13737,6 +13755,7 @@ module Aws::RDS
|
|
|
13737
13755
|
# resp.db_instance_automated_backups[0].option_group_name #=> String
|
|
13738
13756
|
# resp.db_instance_automated_backups[0].tde_credential_arn #=> String
|
|
13739
13757
|
# resp.db_instance_automated_backups[0].encrypted #=> Boolean
|
|
13758
|
+
# resp.db_instance_automated_backups[0].storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
13740
13759
|
# resp.db_instance_automated_backups[0].storage_type #=> String
|
|
13741
13760
|
# resp.db_instance_automated_backups[0].kms_key_id #=> String
|
|
13742
13761
|
# resp.db_instance_automated_backups[0].timezone #=> String
|
|
@@ -13979,6 +13998,7 @@ module Aws::RDS
|
|
|
13979
13998
|
# resp.db_instances[0].status_infos[0].status #=> String
|
|
13980
13999
|
# resp.db_instances[0].status_infos[0].message #=> String
|
|
13981
14000
|
# resp.db_instances[0].storage_type #=> String
|
|
14001
|
+
# resp.db_instances[0].storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
13982
14002
|
# resp.db_instances[0].tde_credential_arn #=> String
|
|
13983
14003
|
# resp.db_instances[0].db_instance_port #=> Integer
|
|
13984
14004
|
# resp.db_instances[0].db_cluster_identifier #=> String
|
|
@@ -15664,6 +15684,7 @@ module Aws::RDS
|
|
|
15664
15684
|
# resp.db_snapshots[0].storage_type #=> String
|
|
15665
15685
|
# resp.db_snapshots[0].tde_credential_arn #=> String
|
|
15666
15686
|
# resp.db_snapshots[0].encrypted #=> Boolean
|
|
15687
|
+
# resp.db_snapshots[0].storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
15667
15688
|
# resp.db_snapshots[0].backup_retention_period #=> Integer
|
|
15668
15689
|
# resp.db_snapshots[0].preferred_backup_window #=> String
|
|
15669
15690
|
# resp.db_snapshots[0].kms_key_id #=> String
|
|
@@ -16832,6 +16853,7 @@ module Aws::RDS
|
|
|
16832
16853
|
# resp.global_clusters[0].engine_lifecycle_support #=> String
|
|
16833
16854
|
# resp.global_clusters[0].database_name #=> String
|
|
16834
16855
|
# resp.global_clusters[0].storage_encrypted #=> Boolean
|
|
16856
|
+
# resp.global_clusters[0].storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
16835
16857
|
# resp.global_clusters[0].deletion_protection #=> Boolean
|
|
16836
16858
|
# resp.global_clusters[0].global_cluster_members #=> Array
|
|
16837
16859
|
# resp.global_clusters[0].global_cluster_members[0].db_cluster_arn #=> String
|
|
@@ -18712,6 +18734,7 @@ module Aws::RDS
|
|
|
18712
18734
|
# resp.db_cluster.vpc_security_groups[0].status #=> String
|
|
18713
18735
|
# resp.db_cluster.hosted_zone_id #=> String
|
|
18714
18736
|
# resp.db_cluster.storage_encrypted #=> Boolean
|
|
18737
|
+
# resp.db_cluster.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
18715
18738
|
# resp.db_cluster.kms_key_id #=> String
|
|
18716
18739
|
# resp.db_cluster.db_cluster_resource_id #=> String
|
|
18717
18740
|
# resp.db_cluster.db_cluster_arn #=> String
|
|
@@ -18937,6 +18960,7 @@ module Aws::RDS
|
|
|
18937
18960
|
# resp.global_cluster.engine_lifecycle_support #=> String
|
|
18938
18961
|
# resp.global_cluster.database_name #=> String
|
|
18939
18962
|
# resp.global_cluster.storage_encrypted #=> Boolean
|
|
18963
|
+
# resp.global_cluster.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
18940
18964
|
# resp.global_cluster.deletion_protection #=> Boolean
|
|
18941
18965
|
# resp.global_cluster.global_cluster_members #=> Array
|
|
18942
18966
|
# resp.global_cluster.global_cluster_members[0].db_cluster_arn #=> String
|
|
@@ -20477,6 +20501,7 @@ module Aws::RDS
|
|
|
20477
20501
|
# resp.db_cluster.vpc_security_groups[0].status #=> String
|
|
20478
20502
|
# resp.db_cluster.hosted_zone_id #=> String
|
|
20479
20503
|
# resp.db_cluster.storage_encrypted #=> Boolean
|
|
20504
|
+
# resp.db_cluster.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
20480
20505
|
# resp.db_cluster.kms_key_id #=> String
|
|
20481
20506
|
# resp.db_cluster.db_cluster_resource_id #=> String
|
|
20482
20507
|
# resp.db_cluster.db_cluster_arn #=> String
|
|
@@ -22362,6 +22387,7 @@ module Aws::RDS
|
|
|
22362
22387
|
# resp.db_instance.status_infos[0].status #=> String
|
|
22363
22388
|
# resp.db_instance.status_infos[0].message #=> String
|
|
22364
22389
|
# resp.db_instance.storage_type #=> String
|
|
22390
|
+
# resp.db_instance.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
22365
22391
|
# resp.db_instance.tde_credential_arn #=> String
|
|
22366
22392
|
# resp.db_instance.db_instance_port #=> Integer
|
|
22367
22393
|
# resp.db_instance.db_cluster_identifier #=> String
|
|
@@ -23155,6 +23181,7 @@ module Aws::RDS
|
|
|
23155
23181
|
# resp.db_snapshot.storage_type #=> String
|
|
23156
23182
|
# resp.db_snapshot.tde_credential_arn #=> String
|
|
23157
23183
|
# resp.db_snapshot.encrypted #=> Boolean
|
|
23184
|
+
# resp.db_snapshot.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
23158
23185
|
# resp.db_snapshot.backup_retention_period #=> Integer
|
|
23159
23186
|
# resp.db_snapshot.preferred_backup_window #=> String
|
|
23160
23187
|
# resp.db_snapshot.kms_key_id #=> String
|
|
@@ -23693,6 +23720,7 @@ module Aws::RDS
|
|
|
23693
23720
|
# resp.global_cluster.engine_lifecycle_support #=> String
|
|
23694
23721
|
# resp.global_cluster.database_name #=> String
|
|
23695
23722
|
# resp.global_cluster.storage_encrypted #=> Boolean
|
|
23723
|
+
# resp.global_cluster.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
23696
23724
|
# resp.global_cluster.deletion_protection #=> Boolean
|
|
23697
23725
|
# resp.global_cluster.global_cluster_members #=> Array
|
|
23698
23726
|
# resp.global_cluster.global_cluster_members[0].db_cluster_arn #=> String
|
|
@@ -24357,6 +24385,7 @@ module Aws::RDS
|
|
|
24357
24385
|
# resp.db_instance.status_infos[0].status #=> String
|
|
24358
24386
|
# resp.db_instance.status_infos[0].message #=> String
|
|
24359
24387
|
# resp.db_instance.storage_type #=> String
|
|
24388
|
+
# resp.db_instance.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
24360
24389
|
# resp.db_instance.tde_credential_arn #=> String
|
|
24361
24390
|
# resp.db_instance.db_instance_port #=> Integer
|
|
24362
24391
|
# resp.db_instance.db_cluster_identifier #=> String
|
|
@@ -24521,6 +24550,7 @@ module Aws::RDS
|
|
|
24521
24550
|
# resp.db_cluster.vpc_security_groups[0].status #=> String
|
|
24522
24551
|
# resp.db_cluster.hosted_zone_id #=> String
|
|
24523
24552
|
# resp.db_cluster.storage_encrypted #=> Boolean
|
|
24553
|
+
# resp.db_cluster.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
24524
24554
|
# resp.db_cluster.kms_key_id #=> String
|
|
24525
24555
|
# resp.db_cluster.db_cluster_resource_id #=> String
|
|
24526
24556
|
# resp.db_cluster.db_cluster_arn #=> String
|
|
@@ -24827,6 +24857,7 @@ module Aws::RDS
|
|
|
24827
24857
|
# resp.db_cluster.vpc_security_groups[0].status #=> String
|
|
24828
24858
|
# resp.db_cluster.hosted_zone_id #=> String
|
|
24829
24859
|
# resp.db_cluster.storage_encrypted #=> Boolean
|
|
24860
|
+
# resp.db_cluster.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
24830
24861
|
# resp.db_cluster.kms_key_id #=> String
|
|
24831
24862
|
# resp.db_cluster.db_cluster_resource_id #=> String
|
|
24832
24863
|
# resp.db_cluster.db_cluster_arn #=> String
|
|
@@ -25106,6 +25137,7 @@ module Aws::RDS
|
|
|
25106
25137
|
# resp.db_instance.status_infos[0].status #=> String
|
|
25107
25138
|
# resp.db_instance.status_infos[0].message #=> String
|
|
25108
25139
|
# resp.db_instance.storage_type #=> String
|
|
25140
|
+
# resp.db_instance.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
25109
25141
|
# resp.db_instance.tde_credential_arn #=> String
|
|
25110
25142
|
# resp.db_instance.db_instance_port #=> Integer
|
|
25111
25143
|
# resp.db_instance.db_cluster_identifier #=> String
|
|
@@ -25385,6 +25417,7 @@ module Aws::RDS
|
|
|
25385
25417
|
# resp.global_cluster.engine_lifecycle_support #=> String
|
|
25386
25418
|
# resp.global_cluster.database_name #=> String
|
|
25387
25419
|
# resp.global_cluster.storage_encrypted #=> Boolean
|
|
25420
|
+
# resp.global_cluster.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
25388
25421
|
# resp.global_cluster.deletion_protection #=> Boolean
|
|
25389
25422
|
# resp.global_cluster.global_cluster_members #=> Array
|
|
25390
25423
|
# resp.global_cluster.global_cluster_members[0].db_cluster_arn #=> String
|
|
@@ -26469,6 +26502,7 @@ module Aws::RDS
|
|
|
26469
26502
|
# resp.db_cluster.vpc_security_groups[0].status #=> String
|
|
26470
26503
|
# resp.db_cluster.hosted_zone_id #=> String
|
|
26471
26504
|
# resp.db_cluster.storage_encrypted #=> Boolean
|
|
26505
|
+
# resp.db_cluster.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
26472
26506
|
# resp.db_cluster.kms_key_id #=> String
|
|
26473
26507
|
# resp.db_cluster.db_cluster_resource_id #=> String
|
|
26474
26508
|
# resp.db_cluster.db_cluster_arn #=> String
|
|
@@ -27358,6 +27392,7 @@ module Aws::RDS
|
|
|
27358
27392
|
# resp.db_cluster.vpc_security_groups[0].status #=> String
|
|
27359
27393
|
# resp.db_cluster.hosted_zone_id #=> String
|
|
27360
27394
|
# resp.db_cluster.storage_encrypted #=> Boolean
|
|
27395
|
+
# resp.db_cluster.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
27361
27396
|
# resp.db_cluster.kms_key_id #=> String
|
|
27362
27397
|
# resp.db_cluster.db_cluster_resource_id #=> String
|
|
27363
27398
|
# resp.db_cluster.db_cluster_arn #=> String
|
|
@@ -28230,6 +28265,7 @@ module Aws::RDS
|
|
|
28230
28265
|
# resp.db_cluster.vpc_security_groups[0].status #=> String
|
|
28231
28266
|
# resp.db_cluster.hosted_zone_id #=> String
|
|
28232
28267
|
# resp.db_cluster.storage_encrypted #=> Boolean
|
|
28268
|
+
# resp.db_cluster.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
28233
28269
|
# resp.db_cluster.kms_key_id #=> String
|
|
28234
28270
|
# resp.db_cluster.db_cluster_resource_id #=> String
|
|
28235
28271
|
# resp.db_cluster.db_cluster_arn #=> String
|
|
@@ -29297,6 +29333,7 @@ module Aws::RDS
|
|
|
29297
29333
|
# resp.db_instance.status_infos[0].status #=> String
|
|
29298
29334
|
# resp.db_instance.status_infos[0].message #=> String
|
|
29299
29335
|
# resp.db_instance.storage_type #=> String
|
|
29336
|
+
# resp.db_instance.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
29300
29337
|
# resp.db_instance.tde_credential_arn #=> String
|
|
29301
29338
|
# resp.db_instance.db_instance_port #=> Integer
|
|
29302
29339
|
# resp.db_instance.db_cluster_identifier #=> String
|
|
@@ -30169,6 +30206,7 @@ module Aws::RDS
|
|
|
30169
30206
|
# resp.db_instance.status_infos[0].status #=> String
|
|
30170
30207
|
# resp.db_instance.status_infos[0].message #=> String
|
|
30171
30208
|
# resp.db_instance.storage_type #=> String
|
|
30209
|
+
# resp.db_instance.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
30172
30210
|
# resp.db_instance.tde_credential_arn #=> String
|
|
30173
30211
|
# resp.db_instance.db_instance_port #=> Integer
|
|
30174
30212
|
# resp.db_instance.db_cluster_identifier #=> String
|
|
@@ -31288,6 +31326,7 @@ module Aws::RDS
|
|
|
31288
31326
|
# resp.db_instance.status_infos[0].status #=> String
|
|
31289
31327
|
# resp.db_instance.status_infos[0].message #=> String
|
|
31290
31328
|
# resp.db_instance.storage_type #=> String
|
|
31329
|
+
# resp.db_instance.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
31291
31330
|
# resp.db_instance.tde_credential_arn #=> String
|
|
31292
31331
|
# resp.db_instance.db_instance_port #=> Integer
|
|
31293
31332
|
# resp.db_instance.db_cluster_identifier #=> String
|
|
@@ -31680,6 +31719,7 @@ module Aws::RDS
|
|
|
31680
31719
|
# resp.db_cluster.vpc_security_groups[0].status #=> String
|
|
31681
31720
|
# resp.db_cluster.hosted_zone_id #=> String
|
|
31682
31721
|
# resp.db_cluster.storage_encrypted #=> Boolean
|
|
31722
|
+
# resp.db_cluster.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
31683
31723
|
# resp.db_cluster.kms_key_id #=> String
|
|
31684
31724
|
# resp.db_cluster.db_cluster_resource_id #=> String
|
|
31685
31725
|
# resp.db_cluster.db_cluster_arn #=> String
|
|
@@ -31931,6 +31971,7 @@ module Aws::RDS
|
|
|
31931
31971
|
# resp.db_instance.status_infos[0].status #=> String
|
|
31932
31972
|
# resp.db_instance.status_infos[0].message #=> String
|
|
31933
31973
|
# resp.db_instance.storage_type #=> String
|
|
31974
|
+
# resp.db_instance.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
31934
31975
|
# resp.db_instance.tde_credential_arn #=> String
|
|
31935
31976
|
# resp.db_instance.db_instance_port #=> Integer
|
|
31936
31977
|
# resp.db_instance.db_cluster_identifier #=> String
|
|
@@ -32168,6 +32209,7 @@ module Aws::RDS
|
|
|
32168
32209
|
# resp.db_instance_automated_backup.option_group_name #=> String
|
|
32169
32210
|
# resp.db_instance_automated_backup.tde_credential_arn #=> String
|
|
32170
32211
|
# resp.db_instance_automated_backup.encrypted #=> Boolean
|
|
32212
|
+
# resp.db_instance_automated_backup.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
32171
32213
|
# resp.db_instance_automated_backup.storage_type #=> String
|
|
32172
32214
|
# resp.db_instance_automated_backup.kms_key_id #=> String
|
|
32173
32215
|
# resp.db_instance_automated_backup.timezone #=> String
|
|
@@ -32554,6 +32596,7 @@ module Aws::RDS
|
|
|
32554
32596
|
# resp.db_cluster.vpc_security_groups[0].status #=> String
|
|
32555
32597
|
# resp.db_cluster.hosted_zone_id #=> String
|
|
32556
32598
|
# resp.db_cluster.storage_encrypted #=> Boolean
|
|
32599
|
+
# resp.db_cluster.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
32557
32600
|
# resp.db_cluster.kms_key_id #=> String
|
|
32558
32601
|
# resp.db_cluster.db_cluster_resource_id #=> String
|
|
32559
32602
|
# resp.db_cluster.db_cluster_arn #=> String
|
|
@@ -32813,6 +32856,7 @@ module Aws::RDS
|
|
|
32813
32856
|
# resp.db_instance.status_infos[0].status #=> String
|
|
32814
32857
|
# resp.db_instance.status_infos[0].message #=> String
|
|
32815
32858
|
# resp.db_instance.storage_type #=> String
|
|
32859
|
+
# resp.db_instance.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
32816
32860
|
# resp.db_instance.tde_credential_arn #=> String
|
|
32817
32861
|
# resp.db_instance.db_instance_port #=> Integer
|
|
32818
32862
|
# resp.db_instance.db_cluster_identifier #=> String
|
|
@@ -32993,6 +33037,7 @@ module Aws::RDS
|
|
|
32993
33037
|
# resp.db_instance_automated_backup.option_group_name #=> String
|
|
32994
33038
|
# resp.db_instance_automated_backup.tde_credential_arn #=> String
|
|
32995
33039
|
# resp.db_instance_automated_backup.encrypted #=> Boolean
|
|
33040
|
+
# resp.db_instance_automated_backup.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
32996
33041
|
# resp.db_instance_automated_backup.storage_type #=> String
|
|
32997
33042
|
# resp.db_instance_automated_backup.kms_key_id #=> String
|
|
32998
33043
|
# resp.db_instance_automated_backup.timezone #=> String
|
|
@@ -33298,6 +33343,7 @@ module Aws::RDS
|
|
|
33298
33343
|
# resp.global_cluster.engine_lifecycle_support #=> String
|
|
33299
33344
|
# resp.global_cluster.database_name #=> String
|
|
33300
33345
|
# resp.global_cluster.storage_encrypted #=> Boolean
|
|
33346
|
+
# resp.global_cluster.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
33301
33347
|
# resp.global_cluster.deletion_protection #=> Boolean
|
|
33302
33348
|
# resp.global_cluster.global_cluster_members #=> Array
|
|
33303
33349
|
# resp.global_cluster.global_cluster_members[0].db_cluster_arn #=> String
|
|
@@ -33448,6 +33494,7 @@ module Aws::RDS
|
|
|
33448
33494
|
# resp.db_instance.status_infos[0].status #=> String
|
|
33449
33495
|
# resp.db_instance.status_infos[0].message #=> String
|
|
33450
33496
|
# resp.db_instance.storage_type #=> String
|
|
33497
|
+
# resp.db_instance.storage_encryption_type #=> String, one of "none", "sse-kms", "sse-rds"
|
|
33451
33498
|
# resp.db_instance.tde_credential_arn #=> String
|
|
33452
33499
|
# resp.db_instance.db_instance_port #=> Integer
|
|
33453
33500
|
# resp.db_instance.db_cluster_identifier #=> String
|
|
@@ -33558,7 +33605,7 @@ module Aws::RDS
|
|
|
33558
33605
|
tracer: tracer
|
|
33559
33606
|
)
|
|
33560
33607
|
context[:gem_name] = 'aws-sdk-rds'
|
|
33561
|
-
context[:gem_version] = '1.
|
|
33608
|
+
context[:gem_version] = '1.308.0'
|
|
33562
33609
|
Seahorse::Client::Request.new(handlers, context)
|
|
33563
33610
|
end
|
|
33564
33611
|
|
|
@@ -723,6 +723,7 @@ module Aws::RDS
|
|
|
723
723
|
StopDBInstanceAutomatedBackupsReplicationResult = Shapes::StructureShape.new(name: 'StopDBInstanceAutomatedBackupsReplicationResult')
|
|
724
724
|
StopDBInstanceMessage = Shapes::StructureShape.new(name: 'StopDBInstanceMessage')
|
|
725
725
|
StopDBInstanceResult = Shapes::StructureShape.new(name: 'StopDBInstanceResult')
|
|
726
|
+
StorageEncryptionType = Shapes::StringShape.new(name: 'StorageEncryptionType')
|
|
726
727
|
StorageQuotaExceededFault = Shapes::StructureShape.new(name: 'StorageQuotaExceededFault', error: {"code" => "StorageQuotaExceeded", "httpStatusCode" => 400, "senderFault" => true})
|
|
727
728
|
StorageTypeNotAvailableFault = Shapes::StructureShape.new(name: 'StorageTypeNotAvailableFault', error: {"code" => "StorageTypeNotAvailableFault", "httpStatusCode" => 400, "senderFault" => true})
|
|
728
729
|
StorageTypeNotSupportedFault = Shapes::StructureShape.new(name: 'StorageTypeNotSupportedFault', error: {"code" => "StorageTypeNotSupported", "httpStatusCode" => 400, "senderFault" => true})
|
|
@@ -1490,6 +1491,7 @@ module Aws::RDS
|
|
|
1490
1491
|
DBCluster.add_member(:vpc_security_groups, Shapes::ShapeRef.new(shape: VpcSecurityGroupMembershipList, location_name: "VpcSecurityGroups"))
|
|
1491
1492
|
DBCluster.add_member(:hosted_zone_id, Shapes::ShapeRef.new(shape: String, location_name: "HostedZoneId"))
|
|
1492
1493
|
DBCluster.add_member(:storage_encrypted, Shapes::ShapeRef.new(shape: Boolean, location_name: "StorageEncrypted"))
|
|
1494
|
+
DBCluster.add_member(:storage_encryption_type, Shapes::ShapeRef.new(shape: StorageEncryptionType, location_name: "StorageEncryptionType"))
|
|
1493
1495
|
DBCluster.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
|
|
1494
1496
|
DBCluster.add_member(:db_cluster_resource_id, Shapes::ShapeRef.new(shape: String, location_name: "DbClusterResourceId"))
|
|
1495
1497
|
DBCluster.add_member(:db_cluster_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterArn"))
|
|
@@ -1561,6 +1563,7 @@ module Aws::RDS
|
|
|
1561
1563
|
DBClusterAutomatedBackup.add_member(:iam_database_authentication_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "IAMDatabaseAuthenticationEnabled"))
|
|
1562
1564
|
DBClusterAutomatedBackup.add_member(:cluster_create_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "ClusterCreateTime"))
|
|
1563
1565
|
DBClusterAutomatedBackup.add_member(:storage_encrypted, Shapes::ShapeRef.new(shape: Boolean, location_name: "StorageEncrypted"))
|
|
1566
|
+
DBClusterAutomatedBackup.add_member(:storage_encryption_type, Shapes::ShapeRef.new(shape: StorageEncryptionType, location_name: "StorageEncryptionType"))
|
|
1564
1567
|
DBClusterAutomatedBackup.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: Integer, location_name: "AllocatedStorage"))
|
|
1565
1568
|
DBClusterAutomatedBackup.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
|
|
1566
1569
|
DBClusterAutomatedBackup.add_member(:db_cluster_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterArn"))
|
|
@@ -1709,6 +1712,7 @@ module Aws::RDS
|
|
|
1709
1712
|
DBClusterSnapshot.add_member(:snapshot_type, Shapes::ShapeRef.new(shape: String, location_name: "SnapshotType"))
|
|
1710
1713
|
DBClusterSnapshot.add_member(:percent_progress, Shapes::ShapeRef.new(shape: Integer, location_name: "PercentProgress"))
|
|
1711
1714
|
DBClusterSnapshot.add_member(:storage_encrypted, Shapes::ShapeRef.new(shape: Boolean, location_name: "StorageEncrypted"))
|
|
1715
|
+
DBClusterSnapshot.add_member(:storage_encryption_type, Shapes::ShapeRef.new(shape: StorageEncryptionType, location_name: "StorageEncryptionType"))
|
|
1712
1716
|
DBClusterSnapshot.add_member(:backup_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "BackupRetentionPeriod"))
|
|
1713
1717
|
DBClusterSnapshot.add_member(:preferred_backup_window, Shapes::ShapeRef.new(shape: String, location_name: "PreferredBackupWindow"))
|
|
1714
1718
|
DBClusterSnapshot.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
|
|
@@ -1832,6 +1836,7 @@ module Aws::RDS
|
|
|
1832
1836
|
DBInstance.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: Boolean, location_name: "PubliclyAccessible"))
|
|
1833
1837
|
DBInstance.add_member(:status_infos, Shapes::ShapeRef.new(shape: DBInstanceStatusInfoList, location_name: "StatusInfos"))
|
|
1834
1838
|
DBInstance.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
|
|
1839
|
+
DBInstance.add_member(:storage_encryption_type, Shapes::ShapeRef.new(shape: StorageEncryptionType, location_name: "StorageEncryptionType"))
|
|
1835
1840
|
DBInstance.add_member(:tde_credential_arn, Shapes::ShapeRef.new(shape: String, location_name: "TdeCredentialArn"))
|
|
1836
1841
|
DBInstance.add_member(:db_instance_port, Shapes::ShapeRef.new(shape: Integer, location_name: "DbInstancePort"))
|
|
1837
1842
|
DBInstance.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterIdentifier"))
|
|
@@ -1909,6 +1914,7 @@ module Aws::RDS
|
|
|
1909
1914
|
DBInstanceAutomatedBackup.add_member(:option_group_name, Shapes::ShapeRef.new(shape: String, location_name: "OptionGroupName"))
|
|
1910
1915
|
DBInstanceAutomatedBackup.add_member(:tde_credential_arn, Shapes::ShapeRef.new(shape: String, location_name: "TdeCredentialArn"))
|
|
1911
1916
|
DBInstanceAutomatedBackup.add_member(:encrypted, Shapes::ShapeRef.new(shape: Boolean, location_name: "Encrypted"))
|
|
1917
|
+
DBInstanceAutomatedBackup.add_member(:storage_encryption_type, Shapes::ShapeRef.new(shape: StorageEncryptionType, location_name: "StorageEncryptionType"))
|
|
1912
1918
|
DBInstanceAutomatedBackup.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
|
|
1913
1919
|
DBInstanceAutomatedBackup.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
|
|
1914
1920
|
DBInstanceAutomatedBackup.add_member(:timezone, Shapes::ShapeRef.new(shape: String, location_name: "Timezone"))
|
|
@@ -2191,6 +2197,7 @@ module Aws::RDS
|
|
|
2191
2197
|
DBSnapshot.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
|
|
2192
2198
|
DBSnapshot.add_member(:tde_credential_arn, Shapes::ShapeRef.new(shape: String, location_name: "TdeCredentialArn"))
|
|
2193
2199
|
DBSnapshot.add_member(:encrypted, Shapes::ShapeRef.new(shape: Boolean, location_name: "Encrypted"))
|
|
2200
|
+
DBSnapshot.add_member(:storage_encryption_type, Shapes::ShapeRef.new(shape: StorageEncryptionType, location_name: "StorageEncryptionType"))
|
|
2194
2201
|
DBSnapshot.add_member(:backup_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "BackupRetentionPeriod"))
|
|
2195
2202
|
DBSnapshot.add_member(:preferred_backup_window, Shapes::ShapeRef.new(shape: String, location_name: "PreferredBackupWindow"))
|
|
2196
2203
|
DBSnapshot.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
|
|
@@ -2972,6 +2979,7 @@ module Aws::RDS
|
|
|
2972
2979
|
GlobalCluster.add_member(:engine_lifecycle_support, Shapes::ShapeRef.new(shape: String, location_name: "EngineLifecycleSupport"))
|
|
2973
2980
|
GlobalCluster.add_member(:database_name, Shapes::ShapeRef.new(shape: String, location_name: "DatabaseName"))
|
|
2974
2981
|
GlobalCluster.add_member(:storage_encrypted, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "StorageEncrypted"))
|
|
2982
|
+
GlobalCluster.add_member(:storage_encryption_type, Shapes::ShapeRef.new(shape: StorageEncryptionType, location_name: "StorageEncryptionType"))
|
|
2975
2983
|
GlobalCluster.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
|
2976
2984
|
GlobalCluster.add_member(:global_cluster_members, Shapes::ShapeRef.new(shape: GlobalClusterMemberList, location_name: "GlobalClusterMembers"))
|
|
2977
2985
|
GlobalCluster.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "Endpoint"))
|
|
@@ -248,6 +248,21 @@ module Aws::RDS
|
|
|
248
248
|
data[:storage_encrypted]
|
|
249
249
|
end
|
|
250
250
|
|
|
251
|
+
# The type of encryption used to protect data at rest in the DB cluster.
|
|
252
|
+
# Possible values:
|
|
253
|
+
#
|
|
254
|
+
# * `none` - The DB cluster is not encrypted.
|
|
255
|
+
#
|
|
256
|
+
# * `sse-rds` - The DB cluster is encrypted using an Amazon Web Services
|
|
257
|
+
# owned KMS key.
|
|
258
|
+
#
|
|
259
|
+
# * `sse-kms` - The DB cluster is encrypted using a customer managed KMS
|
|
260
|
+
# key or Amazon Web Services managed KMS key.
|
|
261
|
+
# @return [String]
|
|
262
|
+
def storage_encryption_type
|
|
263
|
+
data[:storage_encryption_type]
|
|
264
|
+
end
|
|
265
|
+
|
|
251
266
|
# If `StorageEncrypted` is enabled, the Amazon Web Services KMS key
|
|
252
267
|
# identifier for the encrypted DB cluster.
|
|
253
268
|
#
|
|
@@ -146,6 +146,21 @@ module Aws::RDS
|
|
|
146
146
|
data[:storage_encrypted]
|
|
147
147
|
end
|
|
148
148
|
|
|
149
|
+
# The type of encryption used to protect data at rest in the DB cluster
|
|
150
|
+
# snapshot. Possible values:
|
|
151
|
+
#
|
|
152
|
+
# * `none` - The DB cluster snapshot is not encrypted.
|
|
153
|
+
#
|
|
154
|
+
# * `sse-rds` - The DB cluster snapshot is encrypted using an Amazon Web
|
|
155
|
+
# Services owned KMS key.
|
|
156
|
+
#
|
|
157
|
+
# * `sse-kms` - The DB cluster snapshot is encrypted using a customer
|
|
158
|
+
# managed KMS key or Amazon Web Services managed KMS key.
|
|
159
|
+
# @return [String]
|
|
160
|
+
def storage_encryption_type
|
|
161
|
+
data[:storage_encryption_type]
|
|
162
|
+
end
|
|
163
|
+
|
|
149
164
|
# The number of days for which automatic DB snapshots are retained.
|
|
150
165
|
# @return [Integer]
|
|
151
166
|
def backup_retention_period
|
|
@@ -337,6 +337,21 @@ module Aws::RDS
|
|
|
337
337
|
data[:storage_type]
|
|
338
338
|
end
|
|
339
339
|
|
|
340
|
+
# The type of encryption used to protect data at rest in the DB
|
|
341
|
+
# instance. Possible values:
|
|
342
|
+
#
|
|
343
|
+
# * `none` - The DB instance is not encrypted.
|
|
344
|
+
#
|
|
345
|
+
# * `sse-rds` - The DB instance is encrypted using an Amazon Web
|
|
346
|
+
# Services owned KMS key.
|
|
347
|
+
#
|
|
348
|
+
# * `sse-kms` - The DB instance is encrypted using a customer managed
|
|
349
|
+
# KMS key or Amazon Web Services managed KMS key.
|
|
350
|
+
# @return [String]
|
|
351
|
+
def storage_encryption_type
|
|
352
|
+
data[:storage_encryption_type]
|
|
353
|
+
end
|
|
354
|
+
|
|
340
355
|
# The ARN from the key store with which the instance is associated for
|
|
341
356
|
# TDE encryption.
|
|
342
357
|
# @return [String]
|
|
@@ -179,6 +179,21 @@ module Aws::RDS
|
|
|
179
179
|
data[:encrypted]
|
|
180
180
|
end
|
|
181
181
|
|
|
182
|
+
# The type of encryption used to protect data at rest in the DB
|
|
183
|
+
# snapshot. Possible values:
|
|
184
|
+
#
|
|
185
|
+
# * `none` - The DB snapshot is not encrypted.
|
|
186
|
+
#
|
|
187
|
+
# * `sse-rds` - The DB snapshot is encrypted using an Amazon Web
|
|
188
|
+
# Services owned KMS key.
|
|
189
|
+
#
|
|
190
|
+
# * `sse-kms` - The DB snapshot is encrypted using a customer managed
|
|
191
|
+
# KMS key or Amazon Web Services managed KMS key.
|
|
192
|
+
# @return [String]
|
|
193
|
+
def storage_encryption_type
|
|
194
|
+
data[:storage_encryption_type]
|
|
195
|
+
end
|
|
196
|
+
|
|
182
197
|
# The number of days for which automatic DB snapshots are retained.
|
|
183
198
|
# @return [Integer]
|
|
184
199
|
def backup_retention_period
|
data/lib/aws-sdk-rds/types.rb
CHANGED
|
@@ -7498,6 +7498,19 @@ module Aws::RDS
|
|
|
7498
7498
|
# Indicates whether the DB cluster is encrypted.
|
|
7499
7499
|
# @return [Boolean]
|
|
7500
7500
|
#
|
|
7501
|
+
# @!attribute [rw] storage_encryption_type
|
|
7502
|
+
# The type of encryption used to protect data at rest in the DB
|
|
7503
|
+
# cluster. Possible values:
|
|
7504
|
+
#
|
|
7505
|
+
# * `none` - The DB cluster is not encrypted.
|
|
7506
|
+
#
|
|
7507
|
+
# * `sse-rds` - The DB cluster is encrypted using an Amazon Web
|
|
7508
|
+
# Services owned KMS key.
|
|
7509
|
+
#
|
|
7510
|
+
# * `sse-kms` - The DB cluster is encrypted using a customer managed
|
|
7511
|
+
# KMS key or Amazon Web Services managed KMS key.
|
|
7512
|
+
# @return [String]
|
|
7513
|
+
#
|
|
7501
7514
|
# @!attribute [rw] kms_key_id
|
|
7502
7515
|
# If `StorageEncrypted` is enabled, the Amazon Web Services KMS key
|
|
7503
7516
|
# identifier for the encrypted DB cluster.
|
|
@@ -7977,6 +7990,7 @@ module Aws::RDS
|
|
|
7977
7990
|
:vpc_security_groups,
|
|
7978
7991
|
:hosted_zone_id,
|
|
7979
7992
|
:storage_encrypted,
|
|
7993
|
+
:storage_encryption_type,
|
|
7980
7994
|
:kms_key_id,
|
|
7981
7995
|
:db_cluster_resource_id,
|
|
7982
7996
|
:db_cluster_arn,
|
|
@@ -8105,6 +8119,19 @@ module Aws::RDS
|
|
|
8105
8119
|
# Indicates whether the source DB cluster is encrypted.
|
|
8106
8120
|
# @return [Boolean]
|
|
8107
8121
|
#
|
|
8122
|
+
# @!attribute [rw] storage_encryption_type
|
|
8123
|
+
# The type of encryption used to protect data at rest in the automated
|
|
8124
|
+
# backup. Possible values:
|
|
8125
|
+
#
|
|
8126
|
+
# * `none` - The automated backup is not encrypted.
|
|
8127
|
+
#
|
|
8128
|
+
# * `sse-rds` - The automated backup is encrypted using an Amazon Web
|
|
8129
|
+
# Services owned KMS key.
|
|
8130
|
+
#
|
|
8131
|
+
# * `sse-kms` - The automated backup is encrypted using a customer
|
|
8132
|
+
# managed KMS key or Amazon Web Services managed KMS key.
|
|
8133
|
+
# @return [String]
|
|
8134
|
+
#
|
|
8108
8135
|
# @!attribute [rw] allocated_storage
|
|
8109
8136
|
# For all database engines except Amazon Aurora, `AllocatedStorage`
|
|
8110
8137
|
# specifies the allocated storage size in gibibytes (GiB). For Aurora,
|
|
@@ -8214,6 +8241,7 @@ module Aws::RDS
|
|
|
8214
8241
|
:iam_database_authentication_enabled,
|
|
8215
8242
|
:cluster_create_time,
|
|
8216
8243
|
:storage_encrypted,
|
|
8244
|
+
:storage_encryption_type,
|
|
8217
8245
|
:allocated_storage,
|
|
8218
8246
|
:engine_version,
|
|
8219
8247
|
:db_cluster_arn,
|
|
@@ -8851,6 +8879,19 @@ module Aws::RDS
|
|
|
8851
8879
|
# Indicates whether the DB cluster snapshot is encrypted.
|
|
8852
8880
|
# @return [Boolean]
|
|
8853
8881
|
#
|
|
8882
|
+
# @!attribute [rw] storage_encryption_type
|
|
8883
|
+
# The type of encryption used to protect data at rest in the DB
|
|
8884
|
+
# cluster snapshot. Possible values:
|
|
8885
|
+
#
|
|
8886
|
+
# * `none` - The DB cluster snapshot is not encrypted.
|
|
8887
|
+
#
|
|
8888
|
+
# * `sse-rds` - The DB cluster snapshot is encrypted using an Amazon
|
|
8889
|
+
# Web Services owned KMS key.
|
|
8890
|
+
#
|
|
8891
|
+
# * `sse-kms` - The DB cluster snapshot is encrypted using a customer
|
|
8892
|
+
# managed KMS key or Amazon Web Services managed KMS key.
|
|
8893
|
+
# @return [String]
|
|
8894
|
+
#
|
|
8854
8895
|
# @!attribute [rw] backup_retention_period
|
|
8855
8896
|
# The number of days for which automatic DB snapshots are retained.
|
|
8856
8897
|
# @return [Integer]
|
|
@@ -8940,6 +8981,7 @@ module Aws::RDS
|
|
|
8940
8981
|
:snapshot_type,
|
|
8941
8982
|
:percent_progress,
|
|
8942
8983
|
:storage_encrypted,
|
|
8984
|
+
:storage_encryption_type,
|
|
8943
8985
|
:backup_retention_period,
|
|
8944
8986
|
:preferred_backup_window,
|
|
8945
8987
|
:kms_key_id,
|
|
@@ -9633,6 +9675,19 @@ module Aws::RDS
|
|
|
9633
9675
|
# The storage type associated with the DB instance.
|
|
9634
9676
|
# @return [String]
|
|
9635
9677
|
#
|
|
9678
|
+
# @!attribute [rw] storage_encryption_type
|
|
9679
|
+
# The type of encryption used to protect data at rest in the DB
|
|
9680
|
+
# instance. Possible values:
|
|
9681
|
+
#
|
|
9682
|
+
# * `none` - The DB instance is not encrypted.
|
|
9683
|
+
#
|
|
9684
|
+
# * `sse-rds` - The DB instance is encrypted using an Amazon Web
|
|
9685
|
+
# Services owned KMS key.
|
|
9686
|
+
#
|
|
9687
|
+
# * `sse-kms` - The DB instance is encrypted using a customer managed
|
|
9688
|
+
# KMS key or Amazon Web Services managed KMS key.
|
|
9689
|
+
# @return [String]
|
|
9690
|
+
#
|
|
9636
9691
|
# @!attribute [rw] tde_credential_arn
|
|
9637
9692
|
# The ARN from the key store with which the instance is associated for
|
|
9638
9693
|
# TDE encryption.
|
|
@@ -10077,6 +10132,7 @@ module Aws::RDS
|
|
|
10077
10132
|
:publicly_accessible,
|
|
10078
10133
|
:status_infos,
|
|
10079
10134
|
:storage_type,
|
|
10135
|
+
:storage_encryption_type,
|
|
10080
10136
|
:tde_credential_arn,
|
|
10081
10137
|
:db_instance_port,
|
|
10082
10138
|
:db_cluster_identifier,
|
|
@@ -10246,6 +10302,19 @@ module Aws::RDS
|
|
|
10246
10302
|
# Indicates whether the automated backup is encrypted.
|
|
10247
10303
|
# @return [Boolean]
|
|
10248
10304
|
#
|
|
10305
|
+
# @!attribute [rw] storage_encryption_type
|
|
10306
|
+
# The type of encryption used to protect data at rest in the automated
|
|
10307
|
+
# backup. Possible values:
|
|
10308
|
+
#
|
|
10309
|
+
# * `none` - The automated backup is not encrypted.
|
|
10310
|
+
#
|
|
10311
|
+
# * `sse-rds` - The automated backup is encrypted using an Amazon Web
|
|
10312
|
+
# Services owned KMS key.
|
|
10313
|
+
#
|
|
10314
|
+
# * `sse-kms` - The automated backup is encrypted using a customer
|
|
10315
|
+
# managed KMS key or Amazon Web Services managed KMS key.
|
|
10316
|
+
# @return [String]
|
|
10317
|
+
#
|
|
10249
10318
|
# @!attribute [rw] storage_type
|
|
10250
10319
|
# The storage type associated with the automated backup.
|
|
10251
10320
|
# @return [String]
|
|
@@ -10352,6 +10421,7 @@ module Aws::RDS
|
|
|
10352
10421
|
:option_group_name,
|
|
10353
10422
|
:tde_credential_arn,
|
|
10354
10423
|
:encrypted,
|
|
10424
|
+
:storage_encryption_type,
|
|
10355
10425
|
:storage_type,
|
|
10356
10426
|
:kms_key_id,
|
|
10357
10427
|
:timezone,
|
|
@@ -11722,6 +11792,19 @@ module Aws::RDS
|
|
|
11722
11792
|
# Indicates whether the DB snapshot is encrypted.
|
|
11723
11793
|
# @return [Boolean]
|
|
11724
11794
|
#
|
|
11795
|
+
# @!attribute [rw] storage_encryption_type
|
|
11796
|
+
# The type of encryption used to protect data at rest in the DB
|
|
11797
|
+
# snapshot. Possible values:
|
|
11798
|
+
#
|
|
11799
|
+
# * `none` - The DB snapshot is not encrypted.
|
|
11800
|
+
#
|
|
11801
|
+
# * `sse-rds` - The DB snapshot is encrypted using an Amazon Web
|
|
11802
|
+
# Services owned KMS key.
|
|
11803
|
+
#
|
|
11804
|
+
# * `sse-kms` - The DB snapshot is encrypted using a customer managed
|
|
11805
|
+
# KMS key or Amazon Web Services managed KMS key.
|
|
11806
|
+
# @return [String]
|
|
11807
|
+
#
|
|
11725
11808
|
# @!attribute [rw] backup_retention_period
|
|
11726
11809
|
# The number of days for which automatic DB snapshots are retained.
|
|
11727
11810
|
# @return [Integer]
|
|
@@ -11858,6 +11941,7 @@ module Aws::RDS
|
|
|
11858
11941
|
:storage_type,
|
|
11859
11942
|
:tde_credential_arn,
|
|
11860
11943
|
:encrypted,
|
|
11944
|
+
:storage_encryption_type,
|
|
11861
11945
|
:backup_retention_period,
|
|
11862
11946
|
:preferred_backup_window,
|
|
11863
11947
|
:kms_key_id,
|
|
@@ -17216,6 +17300,19 @@ module Aws::RDS
|
|
|
17216
17300
|
# The storage encryption setting for the global database cluster.
|
|
17217
17301
|
# @return [Boolean]
|
|
17218
17302
|
#
|
|
17303
|
+
# @!attribute [rw] storage_encryption_type
|
|
17304
|
+
# The type of encryption used to protect data at rest in the global
|
|
17305
|
+
# database cluster. Possible values:
|
|
17306
|
+
#
|
|
17307
|
+
# * `none` - The global database cluster is not encrypted.
|
|
17308
|
+
#
|
|
17309
|
+
# * `sse-rds` - The global database cluster is encrypted using an
|
|
17310
|
+
# Amazon Web Services owned KMS key.
|
|
17311
|
+
#
|
|
17312
|
+
# * `sse-kms` - The global database cluster is encrypted using a
|
|
17313
|
+
# customer managed KMS key or Amazon Web Services managed KMS key.
|
|
17314
|
+
# @return [String]
|
|
17315
|
+
#
|
|
17219
17316
|
# @!attribute [rw] deletion_protection
|
|
17220
17317
|
# The deletion protection setting for the new global database cluster.
|
|
17221
17318
|
# @return [Boolean]
|
|
@@ -17264,6 +17361,7 @@ module Aws::RDS
|
|
|
17264
17361
|
:engine_lifecycle_support,
|
|
17265
17362
|
:database_name,
|
|
17266
17363
|
:storage_encrypted,
|
|
17364
|
+
:storage_encryption_type,
|
|
17267
17365
|
:deletion_protection,
|
|
17268
17366
|
:global_cluster_members,
|
|
17269
17367
|
:endpoint,
|
data/lib/aws-sdk-rds.rb
CHANGED
|
@@ -80,7 +80,7 @@ module Aws::RDS
|
|
|
80
80
|
autoload :ReservedDBInstancesOffering, 'aws-sdk-rds/reserved_db_instances_offering'
|
|
81
81
|
autoload :ResourcePendingMaintenanceActionList, 'aws-sdk-rds/resource_pending_maintenance_action_list'
|
|
82
82
|
|
|
83
|
-
GEM_VERSION = '1.
|
|
83
|
+
GEM_VERSION = '1.308.0'
|
|
84
84
|
|
|
85
85
|
end
|
|
86
86
|
|
data/sig/db_cluster.rbs
CHANGED
|
@@ -108,6 +108,9 @@ module Aws
|
|
|
108
108
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#storage_encrypted-instance_method
|
|
109
109
|
def storage_encrypted: () -> bool
|
|
110
110
|
|
|
111
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#storage_encryption_type-instance_method
|
|
112
|
+
def storage_encryption_type: () -> ("none" | "sse-kms" | "sse-rds")
|
|
113
|
+
|
|
111
114
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#kms_key_id-instance_method
|
|
112
115
|
def kms_key_id: () -> ::String
|
|
113
116
|
|
data/sig/db_cluster_snapshot.rbs
CHANGED
|
@@ -67,6 +67,9 @@ module Aws
|
|
|
67
67
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#storage_encrypted-instance_method
|
|
68
68
|
def storage_encrypted: () -> bool
|
|
69
69
|
|
|
70
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#storage_encryption_type-instance_method
|
|
71
|
+
def storage_encryption_type: () -> ("none" | "sse-kms" | "sse-rds")
|
|
72
|
+
|
|
70
73
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBClusterSnapshot.html#backup_retention_period-instance_method
|
|
71
74
|
def backup_retention_period: () -> ::Integer
|
|
72
75
|
|
data/sig/db_instance.rbs
CHANGED
|
@@ -126,6 +126,9 @@ module Aws
|
|
|
126
126
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBInstance.html#storage_type-instance_method
|
|
127
127
|
def storage_type: () -> ::String
|
|
128
128
|
|
|
129
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBInstance.html#storage_encryption_type-instance_method
|
|
130
|
+
def storage_encryption_type: () -> ("none" | "sse-kms" | "sse-rds")
|
|
131
|
+
|
|
129
132
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBInstance.html#tde_credential_arn-instance_method
|
|
130
133
|
def tde_credential_arn: () -> ::String
|
|
131
134
|
|
data/sig/db_snapshot.rbs
CHANGED
|
@@ -85,6 +85,9 @@ module Aws
|
|
|
85
85
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBSnapshot.html#encrypted-instance_method
|
|
86
86
|
def encrypted: () -> bool
|
|
87
87
|
|
|
88
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBSnapshot.html#storage_encryption_type-instance_method
|
|
89
|
+
def storage_encryption_type: () -> ("none" | "sse-kms" | "sse-rds")
|
|
90
|
+
|
|
88
91
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBSnapshot.html#backup_retention_period-instance_method
|
|
89
92
|
def backup_retention_period: () -> ::Integer
|
|
90
93
|
|
data/sig/types.rbs
CHANGED
|
@@ -838,6 +838,7 @@ module Aws::RDS
|
|
|
838
838
|
attr_accessor vpc_security_groups: ::Array[Types::VpcSecurityGroupMembership]
|
|
839
839
|
attr_accessor hosted_zone_id: ::String
|
|
840
840
|
attr_accessor storage_encrypted: bool
|
|
841
|
+
attr_accessor storage_encryption_type: ("none" | "sse-kms" | "sse-rds")
|
|
841
842
|
attr_accessor kms_key_id: ::String
|
|
842
843
|
attr_accessor db_cluster_resource_id: ::String
|
|
843
844
|
attr_accessor db_cluster_arn: ::String
|
|
@@ -912,6 +913,7 @@ module Aws::RDS
|
|
|
912
913
|
attr_accessor iam_database_authentication_enabled: bool
|
|
913
914
|
attr_accessor cluster_create_time: ::Time
|
|
914
915
|
attr_accessor storage_encrypted: bool
|
|
916
|
+
attr_accessor storage_encryption_type: ("none" | "sse-kms" | "sse-rds")
|
|
915
917
|
attr_accessor allocated_storage: ::Integer
|
|
916
918
|
attr_accessor engine_version: ::String
|
|
917
919
|
attr_accessor db_cluster_arn: ::String
|
|
@@ -1086,6 +1088,7 @@ module Aws::RDS
|
|
|
1086
1088
|
attr_accessor snapshot_type: ::String
|
|
1087
1089
|
attr_accessor percent_progress: ::Integer
|
|
1088
1090
|
attr_accessor storage_encrypted: bool
|
|
1091
|
+
attr_accessor storage_encryption_type: ("none" | "sse-kms" | "sse-rds")
|
|
1089
1092
|
attr_accessor backup_retention_period: ::Integer
|
|
1090
1093
|
attr_accessor preferred_backup_window: ::String
|
|
1091
1094
|
attr_accessor kms_key_id: ::String
|
|
@@ -1217,6 +1220,7 @@ module Aws::RDS
|
|
|
1217
1220
|
attr_accessor publicly_accessible: bool
|
|
1218
1221
|
attr_accessor status_infos: ::Array[Types::DBInstanceStatusInfo]
|
|
1219
1222
|
attr_accessor storage_type: ::String
|
|
1223
|
+
attr_accessor storage_encryption_type: ("none" | "sse-kms" | "sse-rds")
|
|
1220
1224
|
attr_accessor tde_credential_arn: ::String
|
|
1221
1225
|
attr_accessor db_instance_port: ::Integer
|
|
1222
1226
|
attr_accessor db_cluster_identifier: ::String
|
|
@@ -1297,6 +1301,7 @@ module Aws::RDS
|
|
|
1297
1301
|
attr_accessor option_group_name: ::String
|
|
1298
1302
|
attr_accessor tde_credential_arn: ::String
|
|
1299
1303
|
attr_accessor encrypted: bool
|
|
1304
|
+
attr_accessor storage_encryption_type: ("none" | "sse-kms" | "sse-rds")
|
|
1300
1305
|
attr_accessor storage_type: ::String
|
|
1301
1306
|
attr_accessor kms_key_id: ::String
|
|
1302
1307
|
attr_accessor timezone: ::String
|
|
@@ -1621,6 +1626,7 @@ module Aws::RDS
|
|
|
1621
1626
|
attr_accessor storage_type: ::String
|
|
1622
1627
|
attr_accessor tde_credential_arn: ::String
|
|
1623
1628
|
attr_accessor encrypted: bool
|
|
1629
|
+
attr_accessor storage_encryption_type: ("none" | "sse-kms" | "sse-rds")
|
|
1624
1630
|
attr_accessor backup_retention_period: ::Integer
|
|
1625
1631
|
attr_accessor preferred_backup_window: ::String
|
|
1626
1632
|
attr_accessor kms_key_id: ::String
|
|
@@ -2636,6 +2642,7 @@ module Aws::RDS
|
|
|
2636
2642
|
attr_accessor engine_lifecycle_support: ::String
|
|
2637
2643
|
attr_accessor database_name: ::String
|
|
2638
2644
|
attr_accessor storage_encrypted: bool
|
|
2645
|
+
attr_accessor storage_encryption_type: ("none" | "sse-kms" | "sse-rds")
|
|
2639
2646
|
attr_accessor deletion_protection: bool
|
|
2640
2647
|
attr_accessor global_cluster_members: ::Array[Types::GlobalClusterMember]
|
|
2641
2648
|
attr_accessor endpoint: ::String
|