aws-sdk-rds 1.293.0 → 1.294.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.
@@ -346,7 +346,7 @@ module Aws::RDS
346
346
  # parameters: [ # required
347
347
  # {
348
348
  # parameter_name: "String",
349
- # parameter_value: "String",
349
+ # parameter_value: "PotentiallySensitiveParameterValue",
350
350
  # description: "String",
351
351
  # source: "String",
352
352
  # apply_type: "String",
@@ -411,7 +411,7 @@ module Aws::RDS
411
411
  # parameters: [
412
412
  # {
413
413
  # parameter_name: "String",
414
- # parameter_value: "String",
414
+ # parameter_value: "PotentiallySensitiveParameterValue",
415
415
  # description: "String",
416
416
  # source: "String",
417
417
  # apply_type: "String",
@@ -127,6 +127,12 @@ module Aws::RDS
127
127
  data[:iops]
128
128
  end
129
129
 
130
+ # Specifies the storage throughput for the DB snapshot.
131
+ # @return [Integer]
132
+ def storage_throughput
133
+ data[:storage_throughput]
134
+ end
135
+
130
136
  # Provides the option group name for the DB snapshot.
131
137
  # @return [String]
132
138
  def option_group_name
@@ -234,6 +240,13 @@ module Aws::RDS
234
240
  data[:tag_list]
235
241
  end
236
242
 
243
+ # Specifies where manual snapshots are stored: Dedicated Local Zones,
244
+ # Amazon Web Services Outposts or the Amazon Web Services Region.
245
+ # @return [String]
246
+ def snapshot_target
247
+ data[:snapshot_target]
248
+ end
249
+
237
250
  # Specifies the time of the CreateDBSnapshot operation in Coordinated
238
251
  # Universal Time (UTC). Doesn't change when the snapshot is copied.
239
252
  # @return [Time]
@@ -256,19 +269,6 @@ module Aws::RDS
256
269
  data[:snapshot_database_time]
257
270
  end
258
271
 
259
- # Specifies where manual snapshots are stored: Dedicated Local Zones,
260
- # Amazon Web Services Outposts or the Amazon Web Services Region.
261
- # @return [String]
262
- def snapshot_target
263
- data[:snapshot_target]
264
- end
265
-
266
- # Specifies the storage throughput for the DB snapshot.
267
- # @return [Integer]
268
- def storage_throughput
269
- data[:storage_throughput]
270
- end
271
-
272
272
  # The Oracle system identifier (SID), which is the name of the Oracle
273
273
  # database instance that manages your database files. The Oracle SID is
274
274
  # also the name of your CDB.
@@ -277,13 +277,6 @@ module Aws::RDS
277
277
  data[:db_system_id]
278
278
  end
279
279
 
280
- # Indicates whether the DB instance has a dedicated log volume (DLV)
281
- # enabled.
282
- # @return [Boolean]
283
- def dedicated_log_volume
284
- data[:dedicated_log_volume]
285
- end
286
-
287
280
  # Indicates whether the snapshot is of a DB instance using the
288
281
  # multi-tenant configuration (TRUE) or the single-tenant configuration
289
282
  # (FALSE).
@@ -292,6 +285,13 @@ module Aws::RDS
292
285
  data[:multi_tenant]
293
286
  end
294
287
 
288
+ # Indicates whether the DB instance has a dedicated log volume (DLV)
289
+ # enabled.
290
+ # @return [Boolean]
291
+ def dedicated_log_volume
292
+ data[:dedicated_log_volume]
293
+ end
294
+
295
295
  # Specifies the name of the Availability Zone where RDS stores the DB
296
296
  # snapshot. This value is valid only for snapshots that RDS stores on a
297
297
  # Dedicated Local Zone.
@@ -489,12 +489,12 @@ module Aws::RDS
489
489
  # },
490
490
  # ],
491
491
  # copy_tags: false,
492
- # pre_signed_url: "String",
492
+ # pre_signed_url: "SensitiveString",
493
493
  # option_group_name: "String",
494
494
  # target_custom_availability_zone: "String",
495
+ # snapshot_target: "String",
495
496
  # copy_option_group: false,
496
497
  # snapshot_availability_zone: "String",
497
- # snapshot_target: "String",
498
498
  # source_region: "String",
499
499
  # })
500
500
  # @param [Hash] options ({})
@@ -636,15 +636,6 @@ module Aws::RDS
636
636
  # CAZ.
637
637
  #
638
638
  # Example: `rds-caz-aiqhTgQv`.
639
- # @option options [Boolean] :copy_option_group
640
- # Specifies whether to copy the DB option group associated with the
641
- # source DB snapshot to the target Amazon Web Services account and
642
- # associate with the target DB snapshot. The associated option group can
643
- # be copied only with cross-account snapshot copy calls.
644
- # @option options [String] :snapshot_availability_zone
645
- # Specifies the name of the Availability Zone where RDS stores the DB
646
- # snapshot. This value is valid only for snapshots that RDS stores on a
647
- # Dedicated Local Zone.
648
639
  # @option options [String] :snapshot_target
649
640
  # Configures the location where RDS will store copied snapshots.
650
641
  #
@@ -655,6 +646,15 @@ module Aws::RDS
655
646
  # * `outposts` (Amazon Web Services Outposts)
656
647
  #
657
648
  # * `region` (Amazon Web Services Region)
649
+ # @option options [Boolean] :copy_option_group
650
+ # Specifies whether to copy the DB option group associated with the
651
+ # source DB snapshot to the target Amazon Web Services account and
652
+ # associate with the target DB snapshot. The associated option group can
653
+ # be copied only with cross-account snapshot copy calls.
654
+ # @option options [String] :snapshot_availability_zone
655
+ # Specifies the name of the Availability Zone where RDS stores the DB
656
+ # snapshot. This value is valid only for snapshots that RDS stores on a
657
+ # Dedicated Local Zone.
658
658
  # @option options [String] :source_region
659
659
  # The source region of the snapshot. This is only needed when the
660
660
  # shapshot is encrypted and in a different region.
@@ -705,6 +705,7 @@ module Aws::RDS
705
705
  # db_name: "String",
706
706
  # engine: "String",
707
707
  # iops: 1,
708
+ # storage_throughput: 1,
708
709
  # option_group_name: "String",
709
710
  # tags: [
710
711
  # {
@@ -714,7 +715,7 @@ module Aws::RDS
714
715
  # ],
715
716
  # storage_type: "String",
716
717
  # tde_credential_arn: "String",
717
- # tde_credential_password: "String",
718
+ # tde_credential_password: "SensitiveString",
718
719
  # vpc_security_group_ids: ["String"],
719
720
  # domain: "String",
720
721
  # domain_fqdn: "String",
@@ -735,12 +736,11 @@ module Aws::RDS
735
736
  # db_parameter_group_name: "String",
736
737
  # deletion_protection: false,
737
738
  # enable_customer_owned_ip: false,
738
- # custom_iam_instance_profile: "String",
739
- # backup_target: "String",
740
739
  # network_type: "String",
741
- # storage_throughput: 1,
742
- # db_cluster_snapshot_identifier: "String",
740
+ # backup_target: "String",
741
+ # custom_iam_instance_profile: "String",
743
742
  # allocated_storage: 1,
743
+ # db_cluster_snapshot_identifier: "String",
744
744
  # dedicated_log_volume: false,
745
745
  # ca_certificate_identifier: "String",
746
746
  # engine_lifecycle_support: "String",
@@ -929,6 +929,10 @@ module Aws::RDS
929
929
  #
930
930
  #
931
931
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
932
+ # @option options [Integer] :storage_throughput
933
+ # Specifies the storage throughput value for the DB instance.
934
+ #
935
+ # This setting doesn't apply to RDS Custom or Amazon Aurora.
932
936
  # @option options [String] :option_group_name
933
937
  # The name of the option group to be used for the restored DB instance.
934
938
  #
@@ -1138,27 +1142,25 @@ module Aws::RDS
1138
1142
  #
1139
1143
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
1140
1144
  # [2]: https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing
1141
- # @option options [String] :custom_iam_instance_profile
1142
- # The instance profile associated with the underlying Amazon EC2
1143
- # instance of an RDS Custom DB instance. The instance profile must meet
1144
- # the following requirements:
1145
+ # @option options [String] :network_type
1146
+ # The network type of the DB instance.
1145
1147
  #
1146
- # * The profile must exist in your account.
1148
+ # Valid Values:
1147
1149
  #
1148
- # * The profile must have an IAM role that Amazon EC2 has permissions to
1149
- # assume.
1150
+ # * `IPV4`
1150
1151
  #
1151
- # * The instance profile name and the associated IAM role name must
1152
- # start with the prefix `AWSRDSCustom`.
1152
+ # * `DUAL`
1153
1153
  #
1154
- # For the list of permissions required for the IAM role, see [ Configure
1155
- # IAM and your VPC][1] in the *Amazon RDS User Guide*.
1154
+ # The network type is determined by the `DBSubnetGroup` specified for
1155
+ # the DB instance. A `DBSubnetGroup` can support only the IPv4 protocol
1156
+ # or the IPv4 and the IPv6 protocols (`DUAL`).
1156
1157
  #
1157
- # This setting is required for RDS Custom.
1158
+ # For more information, see [ Working with a DB instance in a VPC][1] in
1159
+ # the *Amazon RDS User Guide.*
1158
1160
  #
1159
1161
  #
1160
1162
  #
1161
- # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
1163
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
1162
1164
  # @option options [String] :backup_target
1163
1165
  # Specifies where automated backups and manual snapshots are stored for
1164
1166
  # the restored DB instance.
@@ -1173,29 +1175,38 @@ module Aws::RDS
1173
1175
  #
1174
1176
  #
1175
1177
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
1176
- # @option options [String] :network_type
1177
- # The network type of the DB instance.
1178
+ # @option options [String] :custom_iam_instance_profile
1179
+ # The instance profile associated with the underlying Amazon EC2
1180
+ # instance of an RDS Custom DB instance. The instance profile must meet
1181
+ # the following requirements:
1178
1182
  #
1179
- # Valid Values:
1183
+ # * The profile must exist in your account.
1180
1184
  #
1181
- # * `IPV4`
1185
+ # * The profile must have an IAM role that Amazon EC2 has permissions to
1186
+ # assume.
1182
1187
  #
1183
- # * `DUAL`
1188
+ # * The instance profile name and the associated IAM role name must
1189
+ # start with the prefix `AWSRDSCustom`.
1184
1190
  #
1185
- # The network type is determined by the `DBSubnetGroup` specified for
1186
- # the DB instance. A `DBSubnetGroup` can support only the IPv4 protocol
1187
- # or the IPv4 and the IPv6 protocols (`DUAL`).
1191
+ # For the list of permissions required for the IAM role, see [ Configure
1192
+ # IAM and your VPC][1] in the *Amazon RDS User Guide*.
1188
1193
  #
1189
- # For more information, see [ Working with a DB instance in a VPC][1] in
1190
- # the *Amazon RDS User Guide.*
1194
+ # This setting is required for RDS Custom.
1191
1195
  #
1192
1196
  #
1193
1197
  #
1194
- # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
1195
- # @option options [Integer] :storage_throughput
1196
- # Specifies the storage throughput value for the DB instance.
1198
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc
1199
+ # @option options [Integer] :allocated_storage
1200
+ # The amount of storage (in gibibytes) to allocate initially for the DB
1201
+ # instance. Follow the allocation rules specified in CreateDBInstance.
1197
1202
  #
1198
- # This setting doesn't apply to RDS Custom or Amazon Aurora.
1203
+ # This setting isn't valid for RDS for SQL Server.
1204
+ #
1205
+ # <note markdown="1"> Be sure to allocate enough storage for your new DB instance so that
1206
+ # the restore operation can succeed. You can also allocate additional
1207
+ # storage for future growth.
1208
+ #
1209
+ # </note>
1199
1210
  # @option options [String] :db_cluster_snapshot_identifier
1200
1211
  # The identifier for the Multi-AZ DB cluster snapshot to restore from.
1201
1212
  #
@@ -1220,17 +1231,6 @@ module Aws::RDS
1220
1231
  #
1221
1232
  #
1222
1233
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html
1223
- # @option options [Integer] :allocated_storage
1224
- # The amount of storage (in gibibytes) to allocate initially for the DB
1225
- # instance. Follow the allocation rules specified in CreateDBInstance.
1226
- #
1227
- # This setting isn't valid for RDS for SQL Server.
1228
- #
1229
- # <note markdown="1"> Be sure to allocate enough storage for your new DB instance so that
1230
- # the restore operation can succeed. You can also allocate additional
1231
- # storage for future growth.
1232
- #
1233
- # </note>
1234
1234
  # @option options [Boolean] :dedicated_log_volume
1235
1235
  # Specifies whether to enable a dedicated log volume (DLV) for the DB
1236
1236
  # instance.
@@ -386,7 +386,7 @@ module Aws::RDS
386
386
  # option_settings: [
387
387
  # {
388
388
  # name: "String",
389
- # value: "String",
389
+ # value: "PotentiallySensitiveOptionSettingValue",
390
390
  # default_value: "String",
391
391
  # description: "String",
392
392
  # apply_type: "String",