aws-sdk-docdb 1.109.0 → 1.110.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 663636d0706791f6cde670f91ad7db4481ca68e659911caa8476c6707540c34b
4
- data.tar.gz: 8bb97c13da42d8712f44b4eb83e958b9b242bab0e84b2831391556239592d031
3
+ metadata.gz: 18ab0067245403d18cc8b2f6e8e82604c6c71bef8ff1616f4703a186c71c10b3
4
+ data.tar.gz: 1e5f5868df073ee8e90f33f155ffe08694fe013499581514b2d07c9fba4b89d7
5
5
  SHA512:
6
- metadata.gz: c310cf34ee1ecb118cfcc5e68de699a0596c794b77e299474c51b40652bcdad51a2242d3a2d49eb7800f9a0bd40edf2b33e64fefd7c4e3d9b31f7578dd619a29
7
- data.tar.gz: 510bc3c135b10b58eef000f4937a9be35201efe34192421b3d5f2b4fe54897dd2bc79ae9d6d911fd8204b5de1743e439c705dab2bbcbadba527e7121d51d5337
6
+ metadata.gz: a57756ee6dd77328e9ab56f8ffd48990e1cc6aea55dc4a3a011845563ba655fff23214c71bb30b18b6cf4d8988dbd548c22c2077dbb7b22c38067f97e037b98a
7
+ data.tar.gz: 5ae1af7d97e205763299fd0d84bf671e45b5eb6c1a7ed8d953211e0a46c57ee9957b6416430c1cd92fb35af7c3839275a491b6bd235c7375ce0a1351f812a76b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.110.0 (2026-09-21)
5
+ ------------------
6
+
7
+ * Feature - Add support for CopyTagsToSnapshot field in CreateDbCluster, ModifyDbCluster, RestoreDbClusterFromSnapshot and RestoreDbClusterToPointInTime for DocumentDB.
8
+
4
9
  1.109.0 (2026-09-11)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.109.0
1
+ 1.110.0
@@ -1019,8 +1019,8 @@ module Aws::DocDB
1019
1019
  #
1020
1020
  #
1021
1021
  #
1022
- # [1]: https://docs.aws.amazon.com/documentdb/latest/developerguide/event-auditing.html
1023
- # [2]: https://docs.aws.amazon.com/documentdb/latest/developerguide/profiling.html
1022
+ # [1]: https://docs.aws.amazon.com/documentdb/latest/devguide/event-auditing.html
1023
+ # [2]: https://docs.aws.amazon.com/documentdb/latest/devguide/profiling.html
1024
1024
  #
1025
1025
  # @option params [Boolean] :deletion_protection
1026
1026
  # Specifies whether this cluster can be deleted. If `DeletionProtection`
@@ -1095,7 +1095,11 @@ module Aws::DocDB
1095
1095
  #
1096
1096
  #
1097
1097
  #
1098
- # [1]: https://docs.aws.amazon.com/documentdb/latest/developerguide/vpc-clusters.html
1098
+ # [1]: https://docs.aws.amazon.com/documentdb/latest/devguide/vpc-clusters.html
1099
+ #
1100
+ # @option params [Boolean] :copy_tags_to_snapshot
1101
+ # Specifies whether to copy all tags from the DB cluster to snapshots of
1102
+ # the DB cluster. The default is not to copy them.
1099
1103
  #
1100
1104
  # @option params [String] :source_region
1101
1105
  # The source region of the snapshot. This is only needed when the
@@ -1141,6 +1145,7 @@ module Aws::DocDB
1141
1145
  # manage_master_user_password: false,
1142
1146
  # master_user_secret_kms_key_id: "String",
1143
1147
  # network_type: "String",
1148
+ # copy_tags_to_snapshot: false,
1144
1149
  # source_region: "String",
1145
1150
  # })
1146
1151
  #
@@ -1197,6 +1202,7 @@ module Aws::DocDB
1197
1202
  # resp.db_cluster.master_user_secret.secret_status #=> String
1198
1203
  # resp.db_cluster.master_user_secret.kms_key_id #=> String
1199
1204
  # resp.db_cluster.network_type #=> String
1205
+ # resp.db_cluster.copy_tags_to_snapshot #=> Boolean
1200
1206
  #
1201
1207
  # @see http://docs.aws.amazon.com/goto/WebAPI/docdb-2014-10-31/CreateDBCluster AWS API Documentation
1202
1208
  #
@@ -1227,9 +1233,9 @@ module Aws::DocDB
1227
1233
  #
1228
1234
  #
1229
1235
  #
1230
- # [1]: https://docs.aws.amazon.com/documentdb/latest/developerguide/cluster_parameter_group-create.html
1231
- # [2]: https://docs.aws.amazon.com/documentdb/latest/developerguide/cluster_parameter_group-copy.html
1232
- # [3]: https://docs.aws.amazon.com/documentdb/latest/developerguide/cluster_parameter_group-modify.html
1236
+ # [1]: https://docs.aws.amazon.com/documentdb/latest/devguide/cluster_parameter_group-create.html
1237
+ # [2]: https://docs.aws.amazon.com/documentdb/latest/devguide/cluster_parameter_group-copy.html
1238
+ # [3]: https://docs.aws.amazon.com/documentdb/latest/devguide/cluster_parameter_group-modify.html
1233
1239
  #
1234
1240
  # @option params [required, String] :db_cluster_parameter_group_name
1235
1241
  # The name of the cluster parameter group.
@@ -1446,7 +1452,7 @@ module Aws::DocDB
1446
1452
  #
1447
1453
  #
1448
1454
  #
1449
- # [1]: https://docs.aws.amazon.com/documentdb/latest/developerguide/performance-insights.html
1455
+ # [1]: https://docs.aws.amazon.com/documentdb/latest/devguide/performance-insights.html
1450
1456
  #
1451
1457
  # @option params [String] :performance_insights_kms_key_id
1452
1458
  # The KMS key identifier for encryption of Performance Insights data.
@@ -1470,8 +1476,8 @@ module Aws::DocDB
1470
1476
  #
1471
1477
  #
1472
1478
  #
1473
- # [1]: https://docs.aws.amazon.com/documentdb/latest/developerguide/ca_cert_rotation.html
1474
- # [2]: https://docs.aws.amazon.com/documentdb/latest/developerguide/security.encryption.ssl.html
1479
+ # [1]: https://docs.aws.amazon.com/documentdb/latest/devguide/ca_cert_rotation.html
1480
+ # [2]: https://docs.aws.amazon.com/documentdb/latest/devguide/security.encryption.ssl.html
1475
1481
  #
1476
1482
  # @return [Types::CreateDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1477
1483
  #
@@ -1968,6 +1974,7 @@ module Aws::DocDB
1968
1974
  # resp.db_cluster.master_user_secret.secret_status #=> String
1969
1975
  # resp.db_cluster.master_user_secret.kms_key_id #=> String
1970
1976
  # resp.db_cluster.network_type #=> String
1977
+ # resp.db_cluster.copy_tags_to_snapshot #=> Boolean
1971
1978
  #
1972
1979
  # @see http://docs.aws.amazon.com/goto/WebAPI/docdb-2014-10-31/DeleteDBCluster AWS API Documentation
1973
1980
  #
@@ -2833,6 +2840,7 @@ module Aws::DocDB
2833
2840
  # resp.db_clusters[0].master_user_secret.secret_status #=> String
2834
2841
  # resp.db_clusters[0].master_user_secret.kms_key_id #=> String
2835
2842
  # resp.db_clusters[0].network_type #=> String
2843
+ # resp.db_clusters[0].copy_tags_to_snapshot #=> Boolean
2836
2844
  #
2837
2845
  # @see http://docs.aws.amazon.com/goto/WebAPI/docdb-2014-10-31/DescribeDBClusters AWS API Documentation
2838
2846
  #
@@ -3824,6 +3832,7 @@ module Aws::DocDB
3824
3832
  # resp.db_cluster.master_user_secret.secret_status #=> String
3825
3833
  # resp.db_cluster.master_user_secret.kms_key_id #=> String
3826
3834
  # resp.db_cluster.network_type #=> String
3835
+ # resp.db_cluster.copy_tags_to_snapshot #=> Boolean
3827
3836
  #
3828
3837
  # @see http://docs.aws.amazon.com/goto/WebAPI/docdb-2014-10-31/FailoverDBCluster AWS API Documentation
3829
3838
  #
@@ -4225,7 +4234,11 @@ module Aws::DocDB
4225
4234
  #
4226
4235
  #
4227
4236
  #
4228
- # [1]: https://docs.aws.amazon.com/documentdb/latest/developerguide/vpc-clusters.html
4237
+ # [1]: https://docs.aws.amazon.com/documentdb/latest/devguide/vpc-clusters.html
4238
+ #
4239
+ # @option params [Boolean] :copy_tags_to_snapshot
4240
+ # Specifies whether to copy all tags from the DB cluster to snapshots of
4241
+ # the DB cluster. The default is not to copy them.
4229
4242
  #
4230
4243
  # @return [Types::ModifyDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4231
4244
  #
@@ -4260,6 +4273,7 @@ module Aws::DocDB
4260
4273
  # master_user_secret_kms_key_id: "String",
4261
4274
  # rotate_master_user_password: false,
4262
4275
  # network_type: "String",
4276
+ # copy_tags_to_snapshot: false,
4263
4277
  # })
4264
4278
  #
4265
4279
  # @example Response structure
@@ -4315,6 +4329,7 @@ module Aws::DocDB
4315
4329
  # resp.db_cluster.master_user_secret.secret_status #=> String
4316
4330
  # resp.db_cluster.master_user_secret.kms_key_id #=> String
4317
4331
  # resp.db_cluster.network_type #=> String
4332
+ # resp.db_cluster.copy_tags_to_snapshot #=> Boolean
4318
4333
  #
4319
4334
  # @see http://docs.aws.amazon.com/goto/WebAPI/docdb-2014-10-31/ModifyDBCluster AWS API Documentation
4320
4335
  #
@@ -4568,7 +4583,7 @@ module Aws::DocDB
4568
4583
  #
4569
4584
  #
4570
4585
  #
4571
- # [1]: https://docs.aws.amazon.com/documentdb/latest/developerguide/performance-insights.html
4586
+ # [1]: https://docs.aws.amazon.com/documentdb/latest/devguide/performance-insights.html
4572
4587
  #
4573
4588
  # @option params [String] :performance_insights_kms_key_id
4574
4589
  # The KMS key identifier for encryption of Performance Insights data.
@@ -4599,8 +4614,8 @@ module Aws::DocDB
4599
4614
  #
4600
4615
  #
4601
4616
  #
4602
- # [1]: https://docs.aws.amazon.com/documentdb/latest/developerguide/ca_cert_rotation.html
4603
- # [2]: https://docs.aws.amazon.com/documentdb/latest/developerguide/security.encryption.ssl.html
4617
+ # [1]: https://docs.aws.amazon.com/documentdb/latest/devguide/ca_cert_rotation.html
4618
+ # [2]: https://docs.aws.amazon.com/documentdb/latest/devguide/security.encryption.ssl.html
4604
4619
  #
4605
4620
  # @return [Types::ModifyDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4606
4621
  #
@@ -5356,7 +5371,11 @@ module Aws::DocDB
5356
5371
  #
5357
5372
  #
5358
5373
  #
5359
- # [1]: https://docs.aws.amazon.com/documentdb/latest/developerguide/vpc-clusters.html
5374
+ # [1]: https://docs.aws.amazon.com/documentdb/latest/devguide/vpc-clusters.html
5375
+ #
5376
+ # @option params [Boolean] :copy_tags_to_snapshot
5377
+ # Specifies whether to copy all tags from the restored DB cluster to
5378
+ # snapshots of the restored DB cluster. The default is not to copy them.
5360
5379
  #
5361
5380
  # @return [Types::RestoreDBClusterFromSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5362
5381
  #
@@ -5389,6 +5408,7 @@ module Aws::DocDB
5389
5408
  # },
5390
5409
  # storage_type: "String",
5391
5410
  # network_type: "String",
5411
+ # copy_tags_to_snapshot: false,
5392
5412
  # })
5393
5413
  #
5394
5414
  # @example Response structure
@@ -5444,6 +5464,7 @@ module Aws::DocDB
5444
5464
  # resp.db_cluster.master_user_secret.secret_status #=> String
5445
5465
  # resp.db_cluster.master_user_secret.kms_key_id #=> String
5446
5466
  # resp.db_cluster.network_type #=> String
5467
+ # resp.db_cluster.copy_tags_to_snapshot #=> Boolean
5447
5468
  #
5448
5469
  # @see http://docs.aws.amazon.com/goto/WebAPI/docdb-2014-10-31/RestoreDBClusterFromSnapshot AWS API Documentation
5449
5470
  #
@@ -5613,7 +5634,11 @@ module Aws::DocDB
5613
5634
  #
5614
5635
  #
5615
5636
  #
5616
- # [1]: https://docs.aws.amazon.com/documentdb/latest/developerguide/vpc-clusters.html
5637
+ # [1]: https://docs.aws.amazon.com/documentdb/latest/devguide/vpc-clusters.html
5638
+ #
5639
+ # @option params [Boolean] :copy_tags_to_snapshot
5640
+ # Specifies whether to copy all tags from the restored DB cluster to
5641
+ # snapshots of the restored DB cluster. The default is not to copy them.
5617
5642
  #
5618
5643
  # @return [Types::RestoreDBClusterToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5619
5644
  #
@@ -5645,6 +5670,7 @@ module Aws::DocDB
5645
5670
  # },
5646
5671
  # storage_type: "String",
5647
5672
  # network_type: "String",
5673
+ # copy_tags_to_snapshot: false,
5648
5674
  # })
5649
5675
  #
5650
5676
  # @example Response structure
@@ -5700,6 +5726,7 @@ module Aws::DocDB
5700
5726
  # resp.db_cluster.master_user_secret.secret_status #=> String
5701
5727
  # resp.db_cluster.master_user_secret.kms_key_id #=> String
5702
5728
  # resp.db_cluster.network_type #=> String
5729
+ # resp.db_cluster.copy_tags_to_snapshot #=> Boolean
5703
5730
  #
5704
5731
  # @see http://docs.aws.amazon.com/goto/WebAPI/docdb-2014-10-31/RestoreDBClusterToPointInTime AWS API Documentation
5705
5732
  #
@@ -5716,7 +5743,7 @@ module Aws::DocDB
5716
5743
  #
5717
5744
  #
5718
5745
  #
5719
- # [1]: https://docs.aws.amazon.com/documentdb/latest/developerguide/db-cluster-stop-start.html
5746
+ # [1]: https://docs.aws.amazon.com/documentdb/latest/devguide/db-cluster-stop-start.html
5720
5747
  #
5721
5748
  # @option params [required, String] :db_cluster_identifier
5722
5749
  # The identifier of the cluster to restart. Example:
@@ -5785,6 +5812,7 @@ module Aws::DocDB
5785
5812
  # resp.db_cluster.master_user_secret.secret_status #=> String
5786
5813
  # resp.db_cluster.master_user_secret.kms_key_id #=> String
5787
5814
  # resp.db_cluster.network_type #=> String
5815
+ # resp.db_cluster.copy_tags_to_snapshot #=> Boolean
5788
5816
  #
5789
5817
  # @see http://docs.aws.amazon.com/goto/WebAPI/docdb-2014-10-31/StartDBCluster AWS API Documentation
5790
5818
  #
@@ -5801,7 +5829,7 @@ module Aws::DocDB
5801
5829
  #
5802
5830
  #
5803
5831
  #
5804
- # [1]: https://docs.aws.amazon.com/documentdb/latest/developerguide/db-cluster-stop-start.html
5832
+ # [1]: https://docs.aws.amazon.com/documentdb/latest/devguide/db-cluster-stop-start.html
5805
5833
  #
5806
5834
  # @option params [required, String] :db_cluster_identifier
5807
5835
  # The identifier of the cluster to stop. Example:
@@ -5870,6 +5898,7 @@ module Aws::DocDB
5870
5898
  # resp.db_cluster.master_user_secret.secret_status #=> String
5871
5899
  # resp.db_cluster.master_user_secret.kms_key_id #=> String
5872
5900
  # resp.db_cluster.network_type #=> String
5901
+ # resp.db_cluster.copy_tags_to_snapshot #=> Boolean
5873
5902
  #
5874
5903
  # @see http://docs.aws.amazon.com/goto/WebAPI/docdb-2014-10-31/StopDBCluster AWS API Documentation
5875
5904
  #
@@ -5976,7 +6005,7 @@ module Aws::DocDB
5976
6005
  tracer: tracer
5977
6006
  )
5978
6007
  context[:gem_name] = 'aws-sdk-docdb'
5979
- context[:gem_version] = '1.109.0'
6008
+ context[:gem_version] = '1.110.0'
5980
6009
  Seahorse::Client::Request.new(handlers, context)
5981
6010
  end
5982
6011
 
@@ -375,6 +375,7 @@ module Aws::DocDB
375
375
  CreateDBClusterMessage.add_member(:manage_master_user_password, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ManageMasterUserPassword"))
376
376
  CreateDBClusterMessage.add_member(:master_user_secret_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "MasterUserSecretKmsKeyId"))
377
377
  CreateDBClusterMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
378
+ CreateDBClusterMessage.add_member(:copy_tags_to_snapshot, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CopyTagsToSnapshot"))
378
379
  CreateDBClusterMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
379
380
  CreateDBClusterMessage.struct_class = Types::CreateDBClusterMessage
380
381
 
@@ -486,6 +487,7 @@ module Aws::DocDB
486
487
  DBCluster.add_member(:serverless_v2_scaling_configuration, Shapes::ShapeRef.new(shape: ServerlessV2ScalingConfigurationInfo, location_name: "ServerlessV2ScalingConfiguration"))
487
488
  DBCluster.add_member(:master_user_secret, Shapes::ShapeRef.new(shape: ClusterMasterUserSecret, location_name: "MasterUserSecret"))
488
489
  DBCluster.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
490
+ DBCluster.add_member(:copy_tags_to_snapshot, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CopyTagsToSnapshot"))
489
491
  DBCluster.struct_class = Types::DBCluster
490
492
 
491
493
  DBClusterAlreadyExistsFault.struct_class = Types::DBClusterAlreadyExistsFault
@@ -1020,6 +1022,7 @@ module Aws::DocDB
1020
1022
  ModifyDBClusterMessage.add_member(:master_user_secret_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "MasterUserSecretKmsKeyId"))
1021
1023
  ModifyDBClusterMessage.add_member(:rotate_master_user_password, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "RotateMasterUserPassword"))
1022
1024
  ModifyDBClusterMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
1025
+ ModifyDBClusterMessage.add_member(:copy_tags_to_snapshot, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CopyTagsToSnapshot"))
1023
1026
  ModifyDBClusterMessage.struct_class = Types::ModifyDBClusterMessage
1024
1027
 
1025
1028
  ModifyDBClusterParameterGroupMessage.add_member(:db_cluster_parameter_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterParameterGroupName"))
@@ -1206,6 +1209,7 @@ module Aws::DocDB
1206
1209
  RestoreDBClusterFromSnapshotMessage.add_member(:serverless_v2_scaling_configuration, Shapes::ShapeRef.new(shape: ServerlessV2ScalingConfiguration, location_name: "ServerlessV2ScalingConfiguration"))
1207
1210
  RestoreDBClusterFromSnapshotMessage.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
1208
1211
  RestoreDBClusterFromSnapshotMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
1212
+ RestoreDBClusterFromSnapshotMessage.add_member(:copy_tags_to_snapshot, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CopyTagsToSnapshot"))
1209
1213
  RestoreDBClusterFromSnapshotMessage.struct_class = Types::RestoreDBClusterFromSnapshotMessage
1210
1214
 
1211
1215
  RestoreDBClusterFromSnapshotResult.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
@@ -1226,6 +1230,7 @@ module Aws::DocDB
1226
1230
  RestoreDBClusterToPointInTimeMessage.add_member(:serverless_v2_scaling_configuration, Shapes::ShapeRef.new(shape: ServerlessV2ScalingConfiguration, location_name: "ServerlessV2ScalingConfiguration"))
1227
1231
  RestoreDBClusterToPointInTimeMessage.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
1228
1232
  RestoreDBClusterToPointInTimeMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
1233
+ RestoreDBClusterToPointInTimeMessage.add_member(:copy_tags_to_snapshot, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CopyTagsToSnapshot"))
1229
1234
  RestoreDBClusterToPointInTimeMessage.struct_class = Types::RestoreDBClusterToPointInTimeMessage
1230
1235
 
1231
1236
  RestoreDBClusterToPointInTimeResult.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
@@ -207,8 +207,8 @@ module Aws::DocDB
207
207
  #
208
208
  #
209
209
  #
210
- # [1]: https://docs.aws.amazon.com/documentdb/latest/developerguide/ca_cert_rotation.html
211
- # [2]: https://docs.aws.amazon.com/documentdb/latest/developerguide/security.encryption.ssl.html
210
+ # [1]: https://docs.aws.amazon.com/documentdb/latest/devguide/ca_cert_rotation.html
211
+ # [2]: https://docs.aws.amazon.com/documentdb/latest/devguide/security.encryption.ssl.html
212
212
  #
213
213
  # @!attribute [rw] ca_identifier
214
214
  # The CA identifier of the CA certificate used for the DB instance's
@@ -698,8 +698,8 @@ module Aws::DocDB
698
698
  #
699
699
  #
700
700
  #
701
- # [1]: https://docs.aws.amazon.com/documentdb/latest/developerguide/event-auditing.html
702
- # [2]: https://docs.aws.amazon.com/documentdb/latest/developerguide/profiling.html
701
+ # [1]: https://docs.aws.amazon.com/documentdb/latest/devguide/event-auditing.html
702
+ # [2]: https://docs.aws.amazon.com/documentdb/latest/devguide/profiling.html
703
703
  # @return [Array<String>]
704
704
  #
705
705
  # @!attribute [rw] deletion_protection
@@ -782,9 +782,14 @@ module Aws::DocDB
782
782
  #
783
783
  #
784
784
  #
785
- # [1]: https://docs.aws.amazon.com/documentdb/latest/developerguide/vpc-clusters.html
785
+ # [1]: https://docs.aws.amazon.com/documentdb/latest/devguide/vpc-clusters.html
786
786
  # @return [String]
787
787
  #
788
+ # @!attribute [rw] copy_tags_to_snapshot
789
+ # Specifies whether to copy all tags from the DB cluster to snapshots
790
+ # of the DB cluster. The default is not to copy them.
791
+ # @return [Boolean]
792
+ #
788
793
  # @!attribute [rw] source_region
789
794
  # The source region of the snapshot. This is only needed when the
790
795
  # shapshot is encrypted and in a different region.
@@ -818,6 +823,7 @@ module Aws::DocDB
818
823
  :manage_master_user_password,
819
824
  :master_user_secret_kms_key_id,
820
825
  :network_type,
826
+ :copy_tags_to_snapshot,
821
827
  :source_region)
822
828
  SENSITIVE = []
823
829
  include Aws::Structure
@@ -1033,7 +1039,7 @@ module Aws::DocDB
1033
1039
  #
1034
1040
  #
1035
1041
  #
1036
- # [1]: https://docs.aws.amazon.com/documentdb/latest/developerguide/performance-insights.html
1042
+ # [1]: https://docs.aws.amazon.com/documentdb/latest/devguide/performance-insights.html
1037
1043
  # @return [Boolean]
1038
1044
  #
1039
1045
  # @!attribute [rw] performance_insights_kms_key_id
@@ -1059,8 +1065,8 @@ module Aws::DocDB
1059
1065
  #
1060
1066
  #
1061
1067
  #
1062
- # [1]: https://docs.aws.amazon.com/documentdb/latest/developerguide/ca_cert_rotation.html
1063
- # [2]: https://docs.aws.amazon.com/documentdb/latest/developerguide/security.encryption.ssl.html
1068
+ # [1]: https://docs.aws.amazon.com/documentdb/latest/devguide/ca_cert_rotation.html
1069
+ # [2]: https://docs.aws.amazon.com/documentdb/latest/devguide/security.encryption.ssl.html
1064
1070
  # @return [String]
1065
1071
  #
1066
1072
  # @see http://docs.aws.amazon.com/goto/WebAPI/docdb-2014-10-31/CreateDBInstanceMessage AWS API Documentation
@@ -1503,9 +1509,14 @@ module Aws::DocDB
1503
1509
  #
1504
1510
  #
1505
1511
  #
1506
- # [1]: https://docs.aws.amazon.com/documentdb/latest/developerguide/vpc-clusters.html
1512
+ # [1]: https://docs.aws.amazon.com/documentdb/latest/devguide/vpc-clusters.html
1507
1513
  # @return [String]
1508
1514
  #
1515
+ # @!attribute [rw] copy_tags_to_snapshot
1516
+ # Specifies whether to copy all tags from the DB cluster to snapshots
1517
+ # of the DB cluster. The default is not to copy them.
1518
+ # @return [Boolean]
1519
+ #
1509
1520
  # @see http://docs.aws.amazon.com/goto/WebAPI/docdb-2014-10-31/DBCluster AWS API Documentation
1510
1521
  #
1511
1522
  class DBCluster < Struct.new(
@@ -1545,7 +1556,8 @@ module Aws::DocDB
1545
1556
  :storage_type,
1546
1557
  :serverless_v2_scaling_configuration,
1547
1558
  :master_user_secret,
1548
- :network_type)
1559
+ :network_type,
1560
+ :copy_tags_to_snapshot)
1549
1561
  SENSITIVE = []
1550
1562
  include Aws::Structure
1551
1563
  end
@@ -2010,8 +2022,8 @@ module Aws::DocDB
2010
2022
  #
2011
2023
  #
2012
2024
  #
2013
- # [1]: https://docs.aws.amazon.com/documentdb/latest/developerguide/ca_cert_rotation.html
2014
- # [2]: https://docs.aws.amazon.com/documentdb/latest/developerguide/security.encryption.ssl.html
2025
+ # [1]: https://docs.aws.amazon.com/documentdb/latest/devguide/ca_cert_rotation.html
2026
+ # [2]: https://docs.aws.amazon.com/documentdb/latest/devguide/security.encryption.ssl.html
2015
2027
  # @return [Array<String>]
2016
2028
  #
2017
2029
  # @!attribute [rw] supports_certificate_rotation_without_restart
@@ -4551,9 +4563,14 @@ module Aws::DocDB
4551
4563
  #
4552
4564
  #
4553
4565
  #
4554
- # [1]: https://docs.aws.amazon.com/documentdb/latest/developerguide/vpc-clusters.html
4566
+ # [1]: https://docs.aws.amazon.com/documentdb/latest/devguide/vpc-clusters.html
4555
4567
  # @return [String]
4556
4568
  #
4569
+ # @!attribute [rw] copy_tags_to_snapshot
4570
+ # Specifies whether to copy all tags from the DB cluster to snapshots
4571
+ # of the DB cluster. The default is not to copy them.
4572
+ # @return [Boolean]
4573
+ #
4557
4574
  # @see http://docs.aws.amazon.com/goto/WebAPI/docdb-2014-10-31/ModifyDBClusterMessage AWS API Documentation
4558
4575
  #
4559
4576
  class ModifyDBClusterMessage < Struct.new(
@@ -4576,7 +4593,8 @@ module Aws::DocDB
4576
4593
  :manage_master_user_password,
4577
4594
  :master_user_secret_kms_key_id,
4578
4595
  :rotate_master_user_password,
4579
- :network_type)
4596
+ :network_type,
4597
+ :copy_tags_to_snapshot)
4580
4598
  SENSITIVE = []
4581
4599
  include Aws::Structure
4582
4600
  end
@@ -4787,7 +4805,7 @@ module Aws::DocDB
4787
4805
  #
4788
4806
  #
4789
4807
  #
4790
- # [1]: https://docs.aws.amazon.com/documentdb/latest/developerguide/performance-insights.html
4808
+ # [1]: https://docs.aws.amazon.com/documentdb/latest/devguide/performance-insights.html
4791
4809
  # @return [Boolean]
4792
4810
  #
4793
4811
  # @!attribute [rw] performance_insights_kms_key_id
@@ -4821,8 +4839,8 @@ module Aws::DocDB
4821
4839
  #
4822
4840
  #
4823
4841
  #
4824
- # [1]: https://docs.aws.amazon.com/documentdb/latest/developerguide/ca_cert_rotation.html
4825
- # [2]: https://docs.aws.amazon.com/documentdb/latest/developerguide/security.encryption.ssl.html
4842
+ # [1]: https://docs.aws.amazon.com/documentdb/latest/devguide/ca_cert_rotation.html
4843
+ # [2]: https://docs.aws.amazon.com/documentdb/latest/devguide/security.encryption.ssl.html
4826
4844
  # @return [Boolean]
4827
4845
  #
4828
4846
  # @see http://docs.aws.amazon.com/goto/WebAPI/docdb-2014-10-31/ModifyDBInstanceMessage AWS API Documentation
@@ -5687,9 +5705,15 @@ module Aws::DocDB
5687
5705
  #
5688
5706
  #
5689
5707
  #
5690
- # [1]: https://docs.aws.amazon.com/documentdb/latest/developerguide/vpc-clusters.html
5708
+ # [1]: https://docs.aws.amazon.com/documentdb/latest/devguide/vpc-clusters.html
5691
5709
  # @return [String]
5692
5710
  #
5711
+ # @!attribute [rw] copy_tags_to_snapshot
5712
+ # Specifies whether to copy all tags from the restored DB cluster to
5713
+ # snapshots of the restored DB cluster. The default is not to copy
5714
+ # them.
5715
+ # @return [Boolean]
5716
+ #
5693
5717
  # @see http://docs.aws.amazon.com/goto/WebAPI/docdb-2014-10-31/RestoreDBClusterFromSnapshotMessage AWS API Documentation
5694
5718
  #
5695
5719
  class RestoreDBClusterFromSnapshotMessage < Struct.new(
@@ -5708,7 +5732,8 @@ module Aws::DocDB
5708
5732
  :db_cluster_parameter_group_name,
5709
5733
  :serverless_v2_scaling_configuration,
5710
5734
  :storage_type,
5711
- :network_type)
5735
+ :network_type,
5736
+ :copy_tags_to_snapshot)
5712
5737
  SENSITIVE = []
5713
5738
  include Aws::Structure
5714
5739
  end
@@ -5895,9 +5920,15 @@ module Aws::DocDB
5895
5920
  #
5896
5921
  #
5897
5922
  #
5898
- # [1]: https://docs.aws.amazon.com/documentdb/latest/developerguide/vpc-clusters.html
5923
+ # [1]: https://docs.aws.amazon.com/documentdb/latest/devguide/vpc-clusters.html
5899
5924
  # @return [String]
5900
5925
  #
5926
+ # @!attribute [rw] copy_tags_to_snapshot
5927
+ # Specifies whether to copy all tags from the restored DB cluster to
5928
+ # snapshots of the restored DB cluster. The default is not to copy
5929
+ # them.
5930
+ # @return [Boolean]
5931
+ #
5901
5932
  # @see http://docs.aws.amazon.com/goto/WebAPI/docdb-2014-10-31/RestoreDBClusterToPointInTimeMessage AWS API Documentation
5902
5933
  #
5903
5934
  class RestoreDBClusterToPointInTimeMessage < Struct.new(
@@ -5915,7 +5946,8 @@ module Aws::DocDB
5915
5946
  :deletion_protection,
5916
5947
  :serverless_v2_scaling_configuration,
5917
5948
  :storage_type,
5918
- :network_type)
5949
+ :network_type,
5950
+ :copy_tags_to_snapshot)
5919
5951
  SENSITIVE = []
5920
5952
  include Aws::Structure
5921
5953
  end
data/lib/aws-sdk-docdb.rb CHANGED
@@ -55,7 +55,7 @@ module Aws::DocDB
55
55
  autoload :EndpointProvider, 'aws-sdk-docdb/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-docdb/endpoints'
57
57
 
58
- GEM_VERSION = '1.109.0'
58
+ GEM_VERSION = '1.110.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -191,6 +191,7 @@ module Aws
191
191
  ?manage_master_user_password: bool,
192
192
  ?master_user_secret_kms_key_id: ::String,
193
193
  ?network_type: ::String,
194
+ ?copy_tags_to_snapshot: bool,
194
195
  ?source_region: ::String
195
196
  ) -> _CreateDBClusterResponseSuccess
196
197
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDBClusterResponseSuccess
@@ -757,7 +758,8 @@ module Aws
757
758
  ?manage_master_user_password: bool,
758
759
  ?master_user_secret_kms_key_id: ::String,
759
760
  ?rotate_master_user_password: bool,
760
- ?network_type: ::String
761
+ ?network_type: ::String,
762
+ ?copy_tags_to_snapshot: bool
761
763
  ) -> _ModifyDBClusterResponseSuccess
762
764
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyDBClusterResponseSuccess
763
765
 
@@ -929,7 +931,8 @@ module Aws
929
931
  max_capacity: ::Float?
930
932
  },
931
933
  ?storage_type: ::String,
932
- ?network_type: ::String
934
+ ?network_type: ::String,
935
+ ?copy_tags_to_snapshot: bool
933
936
  ) -> _RestoreDBClusterFromSnapshotResponseSuccess
934
937
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDBClusterFromSnapshotResponseSuccess
935
938
 
@@ -961,7 +964,8 @@ module Aws
961
964
  max_capacity: ::Float?
962
965
  },
963
966
  ?storage_type: ::String,
964
- ?network_type: ::String
967
+ ?network_type: ::String,
968
+ ?copy_tags_to_snapshot: bool
965
969
  ) -> _RestoreDBClusterToPointInTimeResponseSuccess
966
970
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDBClusterToPointInTimeResponseSuccess
967
971
 
data/sig/types.rbs CHANGED
@@ -138,6 +138,7 @@ module Aws::DocDB
138
138
  attr_accessor manage_master_user_password: bool
139
139
  attr_accessor master_user_secret_kms_key_id: ::String
140
140
  attr_accessor network_type: ::String
141
+ attr_accessor copy_tags_to_snapshot: bool
141
142
  attr_accessor source_region: ::String
142
143
  SENSITIVE: []
143
144
  end
@@ -277,6 +278,7 @@ module Aws::DocDB
277
278
  attr_accessor serverless_v2_scaling_configuration: Types::ServerlessV2ScalingConfigurationInfo
278
279
  attr_accessor master_user_secret: Types::ClusterMasterUserSecret
279
280
  attr_accessor network_type: ::String
281
+ attr_accessor copy_tags_to_snapshot: bool
280
282
  SENSITIVE: []
281
283
  end
282
284
 
@@ -947,6 +949,7 @@ module Aws::DocDB
947
949
  attr_accessor master_user_secret_kms_key_id: ::String
948
950
  attr_accessor rotate_master_user_password: bool
949
951
  attr_accessor network_type: ::String
952
+ attr_accessor copy_tags_to_snapshot: bool
950
953
  SENSITIVE: []
951
954
  end
952
955
 
@@ -1179,6 +1182,7 @@ module Aws::DocDB
1179
1182
  attr_accessor serverless_v2_scaling_configuration: Types::ServerlessV2ScalingConfiguration
1180
1183
  attr_accessor storage_type: ::String
1181
1184
  attr_accessor network_type: ::String
1185
+ attr_accessor copy_tags_to_snapshot: bool
1182
1186
  SENSITIVE: []
1183
1187
  end
1184
1188
 
@@ -1203,6 +1207,7 @@ module Aws::DocDB
1203
1207
  attr_accessor serverless_v2_scaling_configuration: Types::ServerlessV2ScalingConfiguration
1204
1208
  attr_accessor storage_type: ::String
1205
1209
  attr_accessor network_type: ::String
1210
+ attr_accessor copy_tags_to_snapshot: bool
1206
1211
  SENSITIVE: []
1207
1212
  end
1208
1213
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-docdb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.109.0
4
+ version: 1.110.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services