aws-sdk-rds 1.222.0 → 1.224.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 503c7bee05e92e01c1d1696023c373435b014f1bc6490b3fc433772d9b8ffeda
4
- data.tar.gz: f0875e3148cee8342afdf53370348b59250fed4dcf4240f1620751cb4c82b602
3
+ metadata.gz: 2220d80eb06ef67ca2ebd063fd31cf81c297a38ec1a917e60329e178699bf943
4
+ data.tar.gz: 570598031726e06b71a3bca1c55e19df2036989903db43cc379386ddf7c6522c
5
5
  SHA512:
6
- metadata.gz: 3df2656bbe3ae03f4546066025fe96d059f931bb54ed8b9fafc79c28952902cb0a9e353f0c2959a92b55c5a19fe8e21649bad788a7a9c2ef95136a5f454a5c80
7
- data.tar.gz: 5e86063421fef4fe9bc1515b34db3e6f99395bd8548e26da36b172b3a872ba734bcaea61edc87f765970d236ef4cd99b7f2d86945fddedd2956ac179cc2f9ef1
6
+ metadata.gz: 48a066de518402ab2f68f01832989f86af63f40d549c9ada22945ea5da06575be37f757396395de04d14f8317fc1428dc7f480497b102d8620fda5ca44c9c768
7
+ data.tar.gz: c578cf27528687f3ae0b93627ab61ad71e3bea5bc45695326bffca75ef298f97c4cd856c4f72b20bb013ca29f9b90054aa2b6722a80f82ea3e606a8a73b02dad
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.224.0 (2024-04-09)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for specifying the CA certificate to use for the new db instance when restoring from db snapshot, restoring from s3, restoring to point in time, and creating a db instance read replica.
8
+
9
+ 1.223.0 (2024-03-18)
10
+ ------------------
11
+
12
+ * Feature - This release launches the ModifyIntegration API and support for data filtering for zero-ETL Integrations.
13
+
4
14
  1.222.0 (2024-03-14)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.222.0
1
+ 1.224.0
@@ -2914,7 +2914,8 @@ module Aws::RDS
2914
2914
  # `serverless`.
2915
2915
  #
2916
2916
  # The `serverless` engine mode only applies for Aurora Serverless v1 DB
2917
- # clusters.
2917
+ # clusters. Aurora Serverless v2 DB clusters use the `provisioned`
2918
+ # engine mode.
2918
2919
  #
2919
2920
  # For information about limitations and requirements for Serverless DB
2920
2921
  # clusters, see the following sections in the *Amazon Aurora User
@@ -6403,6 +6404,22 @@ module Aws::RDS
6403
6404
  # replica. This option migrates the read replica from the old storage
6404
6405
  # file system layout to the preferred layout.
6405
6406
  #
6407
+ # @option params [String] :ca_certificate_identifier
6408
+ # The CA certificate identifier to use for the read replica's server
6409
+ # certificate.
6410
+ #
6411
+ # This setting doesn't apply to RDS Custom DB instances.
6412
+ #
6413
+ # For more information, see [Using SSL/TLS to encrypt a connection to a
6414
+ # DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS to
6415
+ # encrypt a connection to a DB cluster][2] in the *Amazon Aurora User
6416
+ # Guide*.
6417
+ #
6418
+ #
6419
+ #
6420
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
6421
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
6422
+ #
6406
6423
  # @option params [String] :source_region
6407
6424
  # The source region of the snapshot. This is only needed when the
6408
6425
  # shapshot is encrypted and in a different region.
@@ -6490,6 +6507,7 @@ module Aws::RDS
6490
6507
  # source_db_cluster_identifier: "String",
6491
6508
  # dedicated_log_volume: false,
6492
6509
  # upgrade_storage_config: false,
6510
+ # ca_certificate_identifier: "String",
6493
6511
  # source_region: "String",
6494
6512
  # })
6495
6513
  #
@@ -7901,6 +7919,20 @@ module Aws::RDS
7901
7919
  #
7902
7920
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
7903
7921
  #
7922
+ # @option params [String] :data_filter
7923
+ # Data filtering options for the integration. For more information, see
7924
+ # [Data filtering for Aurora zero-ETL integrations with Amazon
7925
+ # Redshift][1].
7926
+ #
7927
+ # Valid for: Integrations with Aurora MySQL source DB clusters only
7928
+ #
7929
+ #
7930
+ #
7931
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/zero-etl.filtering.html
7932
+ #
7933
+ # @option params [String] :description
7934
+ # A description of the integration.
7935
+ #
7904
7936
  # @return [Types::Integration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7905
7937
  #
7906
7938
  # * {Types::Integration#source_arn #source_arn} => String
@@ -7913,6 +7945,8 @@ module Aws::RDS
7913
7945
  # * {Types::Integration#tags #tags} => Array<Types::Tag>
7914
7946
  # * {Types::Integration#create_time #create_time} => Time
7915
7947
  # * {Types::Integration#errors #errors} => Array<Types::IntegrationError>
7948
+ # * {Types::Integration#data_filter #data_filter} => String
7949
+ # * {Types::Integration#description #description} => String
7916
7950
  #
7917
7951
  #
7918
7952
  # @example Example: To create a zero-ETL integration
@@ -7928,6 +7962,7 @@ module Aws::RDS
7928
7962
  # resp.to_h outputs the following:
7929
7963
  # {
7930
7964
  # create_time: Time.parse("2023-12-28T17:20:20.629Z"),
7965
+ # integration_arn: "arn:aws:rds:us-east-1:123456789012:integration:5b9f3d79-7392-4a3e-896c-58eaa1b53231",
7931
7966
  # integration_name: "my-integration",
7932
7967
  # kms_key_id: "arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa",
7933
7968
  # source_arn: "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster",
@@ -7953,6 +7988,8 @@ module Aws::RDS
7953
7988
  # value: "String",
7954
7989
  # },
7955
7990
  # ],
7991
+ # data_filter: "DataFilter",
7992
+ # description: "IntegrationDescription",
7956
7993
  # })
7957
7994
  #
7958
7995
  # @example Response structure
@@ -7972,6 +8009,8 @@ module Aws::RDS
7972
8009
  # resp.errors #=> Array
7973
8010
  # resp.errors[0].error_code #=> String
7974
8011
  # resp.errors[0].error_message #=> String
8012
+ # resp.data_filter #=> String
8013
+ # resp.description #=> String
7975
8014
  #
7976
8015
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateIntegration AWS API Documentation
7977
8016
  #
@@ -10120,6 +10159,8 @@ module Aws::RDS
10120
10159
  # * {Types::Integration#tags #tags} => Array<Types::Tag>
10121
10160
  # * {Types::Integration#create_time #create_time} => Time
10122
10161
  # * {Types::Integration#errors #errors} => Array<Types::IntegrationError>
10162
+ # * {Types::Integration#data_filter #data_filter} => String
10163
+ # * {Types::Integration#description #description} => String
10123
10164
  #
10124
10165
  #
10125
10166
  # @example Example: To delete a zero-ETL integration
@@ -10133,6 +10174,7 @@ module Aws::RDS
10133
10174
  # resp.to_h outputs the following:
10134
10175
  # {
10135
10176
  # create_time: Time.parse("2023-12-28T17:20:20.629Z"),
10177
+ # integration_arn: "arn:aws:rds:us-east-1:123456789012:integration:5b9f3d79-7392-4a3e-896c-58eaa1b53231",
10136
10178
  # integration_name: "my-integration",
10137
10179
  # kms_key_id: "arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa",
10138
10180
  # source_arn: "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster",
@@ -10165,6 +10207,8 @@ module Aws::RDS
10165
10207
  # resp.errors #=> Array
10166
10208
  # resp.errors[0].error_code #=> String
10167
10209
  # resp.errors[0].error_message #=> String
10210
+ # resp.data_filter #=> String
10211
+ # resp.description #=> String
10168
10212
  #
10169
10213
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteIntegration AWS API Documentation
10170
10214
  #
@@ -15710,6 +15754,7 @@ module Aws::RDS
15710
15754
  # integrations: [
15711
15755
  # {
15712
15756
  # create_time: Time.parse("2023-12-28T17:20:20.629Z"),
15757
+ # integration_arn: "arn:aws:rds:us-east-1:123456789012:integration:5b9f3d79-7392-4a3e-896c-58eaa1b53231",
15713
15758
  # integration_name: "my-integration",
15714
15759
  # kms_key_id: "arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa",
15715
15760
  # source_arn: "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster",
@@ -15754,6 +15799,8 @@ module Aws::RDS
15754
15799
  # resp.integrations[0].errors #=> Array
15755
15800
  # resp.integrations[0].errors[0].error_code #=> String
15756
15801
  # resp.integrations[0].errors[0].error_message #=> String
15802
+ # resp.integrations[0].data_filter #=> String
15803
+ # resp.integrations[0].description #=> String
15757
15804
  #
15758
15805
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeIntegrations AWS API Documentation
15759
15806
  #
@@ -22127,6 +22174,108 @@ module Aws::RDS
22127
22174
  req.send_request(options)
22128
22175
  end
22129
22176
 
22177
+ # Modifies a zero-ETL integration with Amazon Redshift.
22178
+ #
22179
+ # <note markdown="1"> Currently, you can only modify integrations that have Aurora MySQL
22180
+ # source DB clusters. Integrations with Aurora PostgreSQL and RDS
22181
+ # sources currently don't support modifying the integration.
22182
+ #
22183
+ # </note>
22184
+ #
22185
+ # @option params [required, String] :integration_identifier
22186
+ # The unique identifier of the integration to modify.
22187
+ #
22188
+ # @option params [String] :integration_name
22189
+ # A new name for the integration.
22190
+ #
22191
+ # @option params [String] :data_filter
22192
+ # A new data filter for the integration. For more information, see [Data
22193
+ # filtering for Aurora zero-ETL integrations with Amazon Redshift][1].
22194
+ #
22195
+ #
22196
+ #
22197
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Zero_ETL_Filtering.html
22198
+ #
22199
+ # @option params [String] :description
22200
+ # A new description for the integration.
22201
+ #
22202
+ # @return [Types::Integration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
22203
+ #
22204
+ # * {Types::Integration#source_arn #source_arn} => String
22205
+ # * {Types::Integration#target_arn #target_arn} => String
22206
+ # * {Types::Integration#integration_name #integration_name} => String
22207
+ # * {Types::Integration#integration_arn #integration_arn} => String
22208
+ # * {Types::Integration#kms_key_id #kms_key_id} => String
22209
+ # * {Types::Integration#additional_encryption_context #additional_encryption_context} => Hash&lt;String,String&gt;
22210
+ # * {Types::Integration#status #status} => String
22211
+ # * {Types::Integration#tags #tags} => Array&lt;Types::Tag&gt;
22212
+ # * {Types::Integration#create_time #create_time} => Time
22213
+ # * {Types::Integration#errors #errors} => Array&lt;Types::IntegrationError&gt;
22214
+ # * {Types::Integration#data_filter #data_filter} => String
22215
+ # * {Types::Integration#description #description} => String
22216
+ #
22217
+ #
22218
+ # @example Example: To modify a zero-ETL integration
22219
+ #
22220
+ # # The following example modifies the name of an existing zero-ETL integration.
22221
+ #
22222
+ # resp = client.modify_integration({
22223
+ # integration_identifier: "a1b2c3d4-5678-90ab-cdef-EXAMPLE11111",
22224
+ # integration_name: "my-renamed-integration",
22225
+ # })
22226
+ #
22227
+ # resp.to_h outputs the following:
22228
+ # {
22229
+ # create_time: Time.parse("2023-12-28T17:20:20.629Z"),
22230
+ # data_filter: "include: *.*",
22231
+ # integration_arn: "arn:aws:rds:us-east-1:123456789012:integration:5b9f3d79-7392-4a3e-896c-58eaa1b53231",
22232
+ # integration_name: "my-renamed-integration",
22233
+ # kms_key_id: "arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa",
22234
+ # source_arn: "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster",
22235
+ # status: "active",
22236
+ # tags: [
22237
+ # ],
22238
+ # target_arn: "arn:aws:redshift-serverless:us-east-1:123456789012:namespace/62c70612-0302-4db7-8414-b5e3e049f0d8",
22239
+ # }
22240
+ #
22241
+ # @example Request syntax with placeholder values
22242
+ #
22243
+ # resp = client.modify_integration({
22244
+ # integration_identifier: "IntegrationIdentifier", # required
22245
+ # integration_name: "IntegrationName",
22246
+ # data_filter: "DataFilter",
22247
+ # description: "IntegrationDescription",
22248
+ # })
22249
+ #
22250
+ # @example Response structure
22251
+ #
22252
+ # resp.source_arn #=> String
22253
+ # resp.target_arn #=> String
22254
+ # resp.integration_name #=> String
22255
+ # resp.integration_arn #=> String
22256
+ # resp.kms_key_id #=> String
22257
+ # resp.additional_encryption_context #=> Hash
22258
+ # resp.additional_encryption_context["String"] #=> String
22259
+ # resp.status #=> String, one of "creating", "active", "modifying", "failed", "deleting", "syncing", "needs_attention"
22260
+ # resp.tags #=> Array
22261
+ # resp.tags[0].key #=> String
22262
+ # resp.tags[0].value #=> String
22263
+ # resp.create_time #=> Time
22264
+ # resp.errors #=> Array
22265
+ # resp.errors[0].error_code #=> String
22266
+ # resp.errors[0].error_message #=> String
22267
+ # resp.data_filter #=> String
22268
+ # resp.description #=> String
22269
+ #
22270
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyIntegration AWS API Documentation
22271
+ #
22272
+ # @overload modify_integration(params = {})
22273
+ # @param [Hash] params ({})
22274
+ def modify_integration(params = {}, options = {})
22275
+ req = build_request(:modify_integration, params)
22276
+ req.send_request(options)
22277
+ end
22278
+
22130
22279
  # Modifies an existing option group.
22131
22280
  #
22132
22281
  # @option params [required, String] :option_group_name
@@ -26555,6 +26704,22 @@ module Aws::RDS
26555
26704
  # Specifies whether to enable a dedicated log volume (DLV) for the DB
26556
26705
  # instance.
26557
26706
  #
26707
+ # @option params [String] :ca_certificate_identifier
26708
+ # The CA certificate identifier to use for the DB instance's server
26709
+ # certificate.
26710
+ #
26711
+ # This setting doesn't apply to RDS Custom DB instances.
26712
+ #
26713
+ # For more information, see [Using SSL/TLS to encrypt a connection to a
26714
+ # DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS to
26715
+ # encrypt a connection to a DB cluster][2] in the *Amazon Aurora User
26716
+ # Guide*.
26717
+ #
26718
+ #
26719
+ #
26720
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
26721
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
26722
+ #
26558
26723
  # @return [Types::RestoreDBInstanceFromDBSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
26559
26724
  #
26560
26725
  # * {Types::RestoreDBInstanceFromDBSnapshotResult#db_instance #db_instance} => Types::DBInstance
@@ -26650,6 +26815,7 @@ module Aws::RDS
26650
26815
  # db_cluster_snapshot_identifier: "String",
26651
26816
  # allocated_storage: 1,
26652
26817
  # dedicated_log_volume: false,
26818
+ # ca_certificate_identifier: "String",
26653
26819
  # })
26654
26820
  #
26655
26821
  # @example Response structure
@@ -27324,6 +27490,22 @@ module Aws::RDS
27324
27490
  # Specifies whether to enable a dedicated log volume (DLV) for the DB
27325
27491
  # instance.
27326
27492
  #
27493
+ # @option params [String] :ca_certificate_identifier
27494
+ # The CA certificate identifier to use for the DB instance's server
27495
+ # certificate.
27496
+ #
27497
+ # This setting doesn't apply to RDS Custom DB instances.
27498
+ #
27499
+ # For more information, see [Using SSL/TLS to encrypt a connection to a
27500
+ # DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS to
27501
+ # encrypt a connection to a DB cluster][2] in the *Amazon Aurora User
27502
+ # Guide*.
27503
+ #
27504
+ #
27505
+ #
27506
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
27507
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
27508
+ #
27327
27509
  # @return [Types::RestoreDBInstanceFromS3Result] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
27328
27510
  #
27329
27511
  # * {Types::RestoreDBInstanceFromS3Result#db_instance #db_instance} => Types::DBInstance
@@ -27390,6 +27572,7 @@ module Aws::RDS
27390
27572
  # manage_master_user_password: false,
27391
27573
  # master_user_secret_kms_key_id: "String",
27392
27574
  # dedicated_log_volume: false,
27575
+ # ca_certificate_identifier: "String",
27393
27576
  # })
27394
27577
  #
27395
27578
  # @example Response structure
@@ -28107,6 +28290,22 @@ module Aws::RDS
28107
28290
  # Specifies whether to enable a dedicated log volume (DLV) for the DB
28108
28291
  # instance.
28109
28292
  #
28293
+ # @option params [String] :ca_certificate_identifier
28294
+ # The CA certificate identifier to use for the DB instance's server
28295
+ # certificate.
28296
+ #
28297
+ # This setting doesn't apply to RDS Custom DB instances.
28298
+ #
28299
+ # For more information, see [Using SSL/TLS to encrypt a connection to a
28300
+ # DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS to
28301
+ # encrypt a connection to a DB cluster][2] in the *Amazon Aurora User
28302
+ # Guide*.
28303
+ #
28304
+ #
28305
+ #
28306
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
28307
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
28308
+ #
28110
28309
  # @return [Types::RestoreDBInstanceToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
28111
28310
  #
28112
28311
  # * {Types::RestoreDBInstanceToPointInTimeResult#db_instance #db_instance} => Types::DBInstance
@@ -28265,6 +28464,7 @@ module Aws::RDS
28265
28464
  # storage_throughput: 1,
28266
28465
  # allocated_storage: 1,
28267
28466
  # dedicated_log_volume: false,
28467
+ # ca_certificate_identifier: "String",
28268
28468
  # })
28269
28469
  #
28270
28470
  # @example Response structure
@@ -30517,7 +30717,7 @@ module Aws::RDS
30517
30717
  params: params,
30518
30718
  config: config)
30519
30719
  context[:gem_name] = 'aws-sdk-rds'
30520
- context[:gem_version] = '1.222.0'
30720
+ context[:gem_version] = '1.224.0'
30521
30721
  Seahorse::Client::Request.new(handlers, context)
30522
30722
  end
30523
30723
 
@@ -274,6 +274,7 @@ module Aws::RDS
274
274
  DBSubnetGroups = Shapes::ListShape.new(name: 'DBSubnetGroups')
275
275
  DBSubnetQuotaExceededFault = Shapes::StructureShape.new(name: 'DBSubnetQuotaExceededFault')
276
276
  DBUpgradeDependencyFailureFault = Shapes::StructureShape.new(name: 'DBUpgradeDependencyFailureFault')
277
+ DataFilter = Shapes::StringShape.new(name: 'DataFilter')
277
278
  DatabaseArn = Shapes::StringShape.new(name: 'DatabaseArn')
278
279
  DeleteBlueGreenDeploymentRequest = Shapes::StructureShape.new(name: 'DeleteBlueGreenDeploymentRequest')
279
280
  DeleteBlueGreenDeploymentResponse = Shapes::StructureShape.new(name: 'DeleteBlueGreenDeploymentResponse')
@@ -447,6 +448,7 @@ module Aws::RDS
447
448
  IntegrationAlreadyExistsFault = Shapes::StructureShape.new(name: 'IntegrationAlreadyExistsFault')
448
449
  IntegrationArn = Shapes::StringShape.new(name: 'IntegrationArn')
449
450
  IntegrationConflictOperationFault = Shapes::StructureShape.new(name: 'IntegrationConflictOperationFault')
451
+ IntegrationDescription = Shapes::StringShape.new(name: 'IntegrationDescription')
450
452
  IntegrationError = Shapes::StructureShape.new(name: 'IntegrationError')
451
453
  IntegrationErrorList = Shapes::ListShape.new(name: 'IntegrationErrorList')
452
454
  IntegrationIdentifier = Shapes::StringShape.new(name: 'IntegrationIdentifier')
@@ -541,6 +543,7 @@ module Aws::RDS
541
543
  ModifyEventSubscriptionResult = Shapes::StructureShape.new(name: 'ModifyEventSubscriptionResult')
542
544
  ModifyGlobalClusterMessage = Shapes::StructureShape.new(name: 'ModifyGlobalClusterMessage')
543
545
  ModifyGlobalClusterResult = Shapes::StructureShape.new(name: 'ModifyGlobalClusterResult')
546
+ ModifyIntegrationMessage = Shapes::StructureShape.new(name: 'ModifyIntegrationMessage')
544
547
  ModifyOptionGroupMessage = Shapes::StructureShape.new(name: 'ModifyOptionGroupMessage')
545
548
  ModifyOptionGroupResult = Shapes::StructureShape.new(name: 'ModifyOptionGroupResult')
546
549
  ModifyTenantDatabaseMessage = Shapes::StructureShape.new(name: 'ModifyTenantDatabaseMessage')
@@ -1205,6 +1208,7 @@ module Aws::RDS
1205
1208
  CreateDBInstanceReadReplicaMessage.add_member(:source_db_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "SourceDBClusterIdentifier"))
1206
1209
  CreateDBInstanceReadReplicaMessage.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DedicatedLogVolume"))
1207
1210
  CreateDBInstanceReadReplicaMessage.add_member(:upgrade_storage_config, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "UpgradeStorageConfig"))
1211
+ CreateDBInstanceReadReplicaMessage.add_member(:ca_certificate_identifier, Shapes::ShapeRef.new(shape: String, location_name: "CACertificateIdentifier"))
1208
1212
  CreateDBInstanceReadReplicaMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
1209
1213
  CreateDBInstanceReadReplicaMessage.struct_class = Types::CreateDBInstanceReadReplicaMessage
1210
1214
 
@@ -1311,6 +1315,8 @@ module Aws::RDS
1311
1315
  CreateIntegrationMessage.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KMSKeyId"))
1312
1316
  CreateIntegrationMessage.add_member(:additional_encryption_context, Shapes::ShapeRef.new(shape: EncryptionContextMap, location_name: "AdditionalEncryptionContext"))
1313
1317
  CreateIntegrationMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
1318
+ CreateIntegrationMessage.add_member(:data_filter, Shapes::ShapeRef.new(shape: DataFilter, location_name: "DataFilter"))
1319
+ CreateIntegrationMessage.add_member(:description, Shapes::ShapeRef.new(shape: IntegrationDescription, location_name: "Description"))
1314
1320
  CreateIntegrationMessage.struct_class = Types::CreateIntegrationMessage
1315
1321
 
1316
1322
  CreateOptionGroupMessage.add_member(:option_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "OptionGroupName"))
@@ -2863,6 +2869,8 @@ module Aws::RDS
2863
2869
  Integration.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
2864
2870
  Integration.add_member(:create_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "CreateTime"))
2865
2871
  Integration.add_member(:errors, Shapes::ShapeRef.new(shape: IntegrationErrorList, location_name: "Errors"))
2872
+ Integration.add_member(:data_filter, Shapes::ShapeRef.new(shape: DataFilter, location_name: "DataFilter"))
2873
+ Integration.add_member(:description, Shapes::ShapeRef.new(shape: IntegrationDescription, location_name: "Description"))
2866
2874
  Integration.struct_class = Types::Integration
2867
2875
 
2868
2876
  IntegrationAlreadyExistsFault.struct_class = Types::IntegrationAlreadyExistsFault
@@ -3244,6 +3252,12 @@ module Aws::RDS
3244
3252
  ModifyGlobalClusterResult.add_member(:global_cluster, Shapes::ShapeRef.new(shape: GlobalCluster, location_name: "GlobalCluster"))
3245
3253
  ModifyGlobalClusterResult.struct_class = Types::ModifyGlobalClusterResult
3246
3254
 
3255
+ ModifyIntegrationMessage.add_member(:integration_identifier, Shapes::ShapeRef.new(shape: IntegrationIdentifier, required: true, location_name: "IntegrationIdentifier"))
3256
+ ModifyIntegrationMessage.add_member(:integration_name, Shapes::ShapeRef.new(shape: IntegrationName, location_name: "IntegrationName"))
3257
+ ModifyIntegrationMessage.add_member(:data_filter, Shapes::ShapeRef.new(shape: DataFilter, location_name: "DataFilter"))
3258
+ ModifyIntegrationMessage.add_member(:description, Shapes::ShapeRef.new(shape: IntegrationDescription, location_name: "Description"))
3259
+ ModifyIntegrationMessage.struct_class = Types::ModifyIntegrationMessage
3260
+
3247
3261
  ModifyOptionGroupMessage.add_member(:option_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "OptionGroupName"))
3248
3262
  ModifyOptionGroupMessage.add_member(:options_to_include, Shapes::ShapeRef.new(shape: OptionConfigurationList, location_name: "OptionsToInclude"))
3249
3263
  ModifyOptionGroupMessage.add_member(:options_to_remove, Shapes::ShapeRef.new(shape: OptionNamesList, location_name: "OptionsToRemove"))
@@ -3858,6 +3872,7 @@ module Aws::RDS
3858
3872
  RestoreDBInstanceFromDBSnapshotMessage.add_member(:db_cluster_snapshot_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterSnapshotIdentifier"))
3859
3873
  RestoreDBInstanceFromDBSnapshotMessage.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "AllocatedStorage"))
3860
3874
  RestoreDBInstanceFromDBSnapshotMessage.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DedicatedLogVolume"))
3875
+ RestoreDBInstanceFromDBSnapshotMessage.add_member(:ca_certificate_identifier, Shapes::ShapeRef.new(shape: String, location_name: "CACertificateIdentifier"))
3861
3876
  RestoreDBInstanceFromDBSnapshotMessage.struct_class = Types::RestoreDBInstanceFromDBSnapshotMessage
3862
3877
 
3863
3878
  RestoreDBInstanceFromDBSnapshotResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
@@ -3912,6 +3927,7 @@ module Aws::RDS
3912
3927
  RestoreDBInstanceFromS3Message.add_member(:manage_master_user_password, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ManageMasterUserPassword"))
3913
3928
  RestoreDBInstanceFromS3Message.add_member(:master_user_secret_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "MasterUserSecretKmsKeyId"))
3914
3929
  RestoreDBInstanceFromS3Message.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DedicatedLogVolume"))
3930
+ RestoreDBInstanceFromS3Message.add_member(:ca_certificate_identifier, Shapes::ShapeRef.new(shape: String, location_name: "CACertificateIdentifier"))
3915
3931
  RestoreDBInstanceFromS3Message.struct_class = Types::RestoreDBInstanceFromS3Message
3916
3932
 
3917
3933
  RestoreDBInstanceFromS3Result.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
@@ -3961,6 +3977,7 @@ module Aws::RDS
3961
3977
  RestoreDBInstanceToPointInTimeMessage.add_member(:storage_throughput, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "StorageThroughput"))
3962
3978
  RestoreDBInstanceToPointInTimeMessage.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "AllocatedStorage"))
3963
3979
  RestoreDBInstanceToPointInTimeMessage.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DedicatedLogVolume"))
3980
+ RestoreDBInstanceToPointInTimeMessage.add_member(:ca_certificate_identifier, Shapes::ShapeRef.new(shape: String, location_name: "CACertificateIdentifier"))
3964
3981
  RestoreDBInstanceToPointInTimeMessage.struct_class = Types::RestoreDBInstanceToPointInTimeMessage
3965
3982
 
3966
3983
  RestoreDBInstanceToPointInTimeResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
@@ -4611,6 +4628,7 @@ module Aws::RDS
4611
4628
  o.errors << Shapes::ShapeRef.new(shape: DomainNotFoundFault)
4612
4629
  o.errors << Shapes::ShapeRef.new(shape: NetworkTypeNotSupported)
4613
4630
  o.errors << Shapes::ShapeRef.new(shape: TenantDatabaseQuotaExceededFault)
4631
+ o.errors << Shapes::ShapeRef.new(shape: CertificateNotFoundFault)
4614
4632
  end)
4615
4633
 
4616
4634
  api.add_operation(:create_db_parameter_group, Seahorse::Model::Operation.new.tap do |o|
@@ -5955,6 +5973,17 @@ module Aws::RDS
5955
5973
  o.errors << Shapes::ShapeRef.new(shape: InvalidDBInstanceStateFault)
5956
5974
  end)
5957
5975
 
5976
+ api.add_operation(:modify_integration, Seahorse::Model::Operation.new.tap do |o|
5977
+ o.name = "ModifyIntegration"
5978
+ o.http_method = "POST"
5979
+ o.http_request_uri = "/"
5980
+ o.input = Shapes::ShapeRef.new(shape: ModifyIntegrationMessage)
5981
+ o.output = Shapes::ShapeRef.new(shape: Integration)
5982
+ o.errors << Shapes::ShapeRef.new(shape: IntegrationNotFoundFault)
5983
+ o.errors << Shapes::ShapeRef.new(shape: InvalidIntegrationStateFault)
5984
+ o.errors << Shapes::ShapeRef.new(shape: IntegrationConflictOperationFault)
5985
+ end)
5986
+
5958
5987
  api.add_operation(:modify_option_group, Seahorse::Model::Operation.new.tap do |o|
5959
5988
  o.name = "ModifyOptionGroup"
5960
5989
  o.http_method = "POST"
@@ -6245,6 +6274,7 @@ module Aws::RDS
6245
6274
  o.errors << Shapes::ShapeRef.new(shape: BackupPolicyNotFoundFault)
6246
6275
  o.errors << Shapes::ShapeRef.new(shape: NetworkTypeNotSupported)
6247
6276
  o.errors << Shapes::ShapeRef.new(shape: DBClusterSnapshotNotFoundFault)
6277
+ o.errors << Shapes::ShapeRef.new(shape: CertificateNotFoundFault)
6248
6278
  o.errors << Shapes::ShapeRef.new(shape: TenantDatabaseQuotaExceededFault)
6249
6279
  end)
6250
6280
 
@@ -6272,6 +6302,7 @@ module Aws::RDS
6272
6302
  o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
6273
6303
  o.errors << Shapes::ShapeRef.new(shape: BackupPolicyNotFoundFault)
6274
6304
  o.errors << Shapes::ShapeRef.new(shape: NetworkTypeNotSupported)
6305
+ o.errors << Shapes::ShapeRef.new(shape: CertificateNotFoundFault)
6275
6306
  end)
6276
6307
 
6277
6308
  api.add_operation(:restore_db_instance_to_point_in_time, Seahorse::Model::Operation.new.tap do |o|
@@ -6304,6 +6335,7 @@ module Aws::RDS
6304
6335
  o.errors << Shapes::ShapeRef.new(shape: DBInstanceAutomatedBackupNotFoundFault)
6305
6336
  o.errors << Shapes::ShapeRef.new(shape: NetworkTypeNotSupported)
6306
6337
  o.errors << Shapes::ShapeRef.new(shape: TenantDatabaseQuotaExceededFault)
6338
+ o.errors << Shapes::ShapeRef.new(shape: CertificateNotFoundFault)
6307
6339
  end)
6308
6340
 
6309
6341
  api.add_operation(:revoke_db_security_group_ingress, Seahorse::Model::Operation.new.tap do |o|
@@ -1299,7 +1299,8 @@ module Aws::RDS
1299
1299
  # `serverless`.
1300
1300
  #
1301
1301
  # The `serverless` engine mode only applies for Aurora Serverless v1 DB
1302
- # clusters.
1302
+ # clusters. Aurora Serverless v2 DB clusters use the `provisioned`
1303
+ # engine mode.
1303
1304
  #
1304
1305
  # For information about limitations and requirements for Serverless DB
1305
1306
  # clusters, see the following sections in the *Amazon Aurora User
@@ -2233,6 +2233,7 @@ module Aws::RDS
2233
2233
  # source_db_cluster_identifier: "String",
2234
2234
  # dedicated_log_volume: false,
2235
2235
  # upgrade_storage_config: false,
2236
+ # ca_certificate_identifier: "String",
2236
2237
  # source_region: "String",
2237
2238
  # })
2238
2239
  # @param [Hash] options ({})
@@ -2791,6 +2792,21 @@ module Aws::RDS
2791
2792
  # Whether to upgrade the storage file system configuration on the read
2792
2793
  # replica. This option migrates the read replica from the old storage
2793
2794
  # file system layout to the preferred layout.
2795
+ # @option options [String] :ca_certificate_identifier
2796
+ # The CA certificate identifier to use for the read replica's server
2797
+ # certificate.
2798
+ #
2799
+ # This setting doesn't apply to RDS Custom DB instances.
2800
+ #
2801
+ # For more information, see [Using SSL/TLS to encrypt a connection to a
2802
+ # DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS to
2803
+ # encrypt a connection to a DB cluster][2] in the *Amazon Aurora User
2804
+ # Guide*.
2805
+ #
2806
+ #
2807
+ #
2808
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
2809
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
2794
2810
  # @option options [String] :source_region
2795
2811
  # The source region of the snapshot. This is only needed when the
2796
2812
  # shapshot is encrypted and in a different region.
@@ -4134,6 +4150,7 @@ module Aws::RDS
4134
4150
  # storage_throughput: 1,
4135
4151
  # allocated_storage: 1,
4136
4152
  # dedicated_log_volume: false,
4153
+ # ca_certificate_identifier: "String",
4137
4154
  # })
4138
4155
  # @param [Hash] options ({})
4139
4156
  # @option options [required, String] :target_db_instance_identifier
@@ -4608,6 +4625,21 @@ module Aws::RDS
4608
4625
  # @option options [Boolean] :dedicated_log_volume
4609
4626
  # Specifies whether to enable a dedicated log volume (DLV) for the DB
4610
4627
  # instance.
4628
+ # @option options [String] :ca_certificate_identifier
4629
+ # The CA certificate identifier to use for the DB instance's server
4630
+ # certificate.
4631
+ #
4632
+ # This setting doesn't apply to RDS Custom DB instances.
4633
+ #
4634
+ # For more information, see [Using SSL/TLS to encrypt a connection to a
4635
+ # DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS to
4636
+ # encrypt a connection to a DB cluster][2] in the *Amazon Aurora User
4637
+ # Guide*.
4638
+ #
4639
+ #
4640
+ #
4641
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
4642
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
4611
4643
  # @return [DBInstance]
4612
4644
  def restore(options = {})
4613
4645
  options = options.merge(source_db_instance_identifier: @id)
@@ -706,6 +706,7 @@ module Aws::RDS
706
706
  # db_cluster_snapshot_identifier: "String",
707
707
  # allocated_storage: 1,
708
708
  # dedicated_log_volume: false,
709
+ # ca_certificate_identifier: "String",
709
710
  # })
710
711
  # @param [Hash] options ({})
711
712
  # @option options [required, String] :db_instance_identifier
@@ -1154,6 +1155,21 @@ module Aws::RDS
1154
1155
  # @option options [Boolean] :dedicated_log_volume
1155
1156
  # Specifies whether to enable a dedicated log volume (DLV) for the DB
1156
1157
  # instance.
1158
+ # @option options [String] :ca_certificate_identifier
1159
+ # The CA certificate identifier to use for the DB instance's server
1160
+ # certificate.
1161
+ #
1162
+ # This setting doesn't apply to RDS Custom DB instances.
1163
+ #
1164
+ # For more information, see [Using SSL/TLS to encrypt a connection to a
1165
+ # DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS to
1166
+ # encrypt a connection to a DB cluster][2] in the *Amazon Aurora User
1167
+ # Guide*.
1168
+ #
1169
+ #
1170
+ #
1171
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
1172
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
1157
1173
  # @return [DBInstance]
1158
1174
  def restore(options = {})
1159
1175
  options = options.merge(db_snapshot_identifier: @snapshot_id)
@@ -1776,6 +1776,20 @@ module Aws::RDS
1776
1776
  end
1777
1777
  end
1778
1778
 
1779
+ class ModifyIntegration
1780
+ def self.build(context)
1781
+ unless context.config.regional_endpoint
1782
+ endpoint = context.config.endpoint.to_s
1783
+ end
1784
+ Aws::RDS::EndpointParameters.new(
1785
+ region: context.config.region,
1786
+ use_dual_stack: context.config.use_dualstack_endpoint,
1787
+ use_fips: context.config.use_fips_endpoint,
1788
+ endpoint: endpoint,
1789
+ )
1790
+ end
1791
+ end
1792
+
1779
1793
  class ModifyOptionGroup
1780
1794
  def self.build(context)
1781
1795
  unless context.config.regional_endpoint
@@ -310,6 +310,8 @@ module Aws::RDS
310
310
  Aws::RDS::Endpoints::ModifyEventSubscription.build(context)
311
311
  when :modify_global_cluster
312
312
  Aws::RDS::Endpoints::ModifyGlobalCluster.build(context)
313
+ when :modify_integration
314
+ Aws::RDS::Endpoints::ModifyIntegration.build(context)
313
315
  when :modify_option_group
314
316
  Aws::RDS::Endpoints::ModifyOptionGroup.build(context)
315
317
  when :modify_tenant_database
@@ -501,7 +501,8 @@ module Aws::RDS
501
501
  # `serverless`.
502
502
  #
503
503
  # The `serverless` engine mode only applies for Aurora Serverless v1 DB
504
- # clusters.
504
+ # clusters. Aurora Serverless v2 DB clusters use the `provisioned`
505
+ # engine mode.
505
506
  #
506
507
  # For information about limitations and requirements for Serverless DB
507
508
  # clusters, see the following sections in the *Amazon Aurora User
@@ -2485,7 +2485,8 @@ module Aws::RDS
2485
2485
  # `serverless`.
2486
2486
  #
2487
2487
  # The `serverless` engine mode only applies for Aurora Serverless v1
2488
- # DB clusters.
2488
+ # DB clusters. Aurora Serverless v2 DB clusters use the `provisioned`
2489
+ # engine mode.
2489
2490
  #
2490
2491
  # For information about limitations and requirements for Serverless DB
2491
2492
  # clusters, see the following sections in the *Amazon Aurora User
@@ -5271,6 +5272,23 @@ module Aws::RDS
5271
5272
  # file system layout to the preferred layout.
5272
5273
  # @return [Boolean]
5273
5274
  #
5275
+ # @!attribute [rw] ca_certificate_identifier
5276
+ # The CA certificate identifier to use for the read replica's server
5277
+ # certificate.
5278
+ #
5279
+ # This setting doesn't apply to RDS Custom DB instances.
5280
+ #
5281
+ # For more information, see [Using SSL/TLS to encrypt a connection to
5282
+ # a DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS
5283
+ # to encrypt a connection to a DB cluster][2] in the *Amazon Aurora
5284
+ # User Guide*.
5285
+ #
5286
+ #
5287
+ #
5288
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
5289
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
5290
+ # @return [String]
5291
+ #
5274
5292
  # @!attribute [rw] source_region
5275
5293
  # The source region of the snapshot. This is only needed when the
5276
5294
  # shapshot is encrypted and in a different region.
@@ -5323,6 +5341,7 @@ module Aws::RDS
5323
5341
  :source_db_cluster_identifier,
5324
5342
  :dedicated_log_volume,
5325
5343
  :upgrade_storage_config,
5344
+ :ca_certificate_identifier,
5326
5345
  :source_region)
5327
5346
  SENSITIVE = []
5328
5347
  include Aws::Structure
@@ -6145,6 +6164,22 @@ module Aws::RDS
6145
6164
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
6146
6165
  # @return [Array<Types::Tag>]
6147
6166
  #
6167
+ # @!attribute [rw] data_filter
6168
+ # Data filtering options for the integration. For more information,
6169
+ # see [Data filtering for Aurora zero-ETL integrations with Amazon
6170
+ # Redshift][1].
6171
+ #
6172
+ # Valid for: Integrations with Aurora MySQL source DB clusters only
6173
+ #
6174
+ #
6175
+ #
6176
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/zero-etl.filtering.html
6177
+ # @return [String]
6178
+ #
6179
+ # @!attribute [rw] description
6180
+ # A description of the integration.
6181
+ # @return [String]
6182
+ #
6148
6183
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateIntegrationMessage AWS API Documentation
6149
6184
  #
6150
6185
  class CreateIntegrationMessage < Struct.new(
@@ -6153,7 +6188,9 @@ module Aws::RDS
6153
6188
  :integration_name,
6154
6189
  :kms_key_id,
6155
6190
  :additional_encryption_context,
6156
- :tags)
6191
+ :tags,
6192
+ :data_filter,
6193
+ :description)
6157
6194
  SENSITIVE = []
6158
6195
  include Aws::Structure
6159
6196
  end
@@ -15975,6 +16012,16 @@ module Aws::RDS
15975
16012
  # Any errors associated with the integration.
15976
16013
  # @return [Array<Types::IntegrationError>]
15977
16014
  #
16015
+ # @!attribute [rw] data_filter
16016
+ # Data filters for the integration. These filters determine which
16017
+ # tables from the source database are sent to the target Amazon
16018
+ # Redshift data warehouse.
16019
+ # @return [String]
16020
+ #
16021
+ # @!attribute [rw] description
16022
+ # A description of the integration.
16023
+ # @return [String]
16024
+ #
15978
16025
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/Integration AWS API Documentation
15979
16026
  #
15980
16027
  class Integration < Struct.new(
@@ -15987,7 +16034,9 @@ module Aws::RDS
15987
16034
  :status,
15988
16035
  :tags,
15989
16036
  :create_time,
15990
- :errors)
16037
+ :errors,
16038
+ :data_filter,
16039
+ :description)
15991
16040
  SENSITIVE = []
15992
16041
  include Aws::Structure
15993
16042
  end
@@ -19476,6 +19525,39 @@ module Aws::RDS
19476
19525
  include Aws::Structure
19477
19526
  end
19478
19527
 
19528
+ # @!attribute [rw] integration_identifier
19529
+ # The unique identifier of the integration to modify.
19530
+ # @return [String]
19531
+ #
19532
+ # @!attribute [rw] integration_name
19533
+ # A new name for the integration.
19534
+ # @return [String]
19535
+ #
19536
+ # @!attribute [rw] data_filter
19537
+ # A new data filter for the integration. For more information, see
19538
+ # [Data filtering for Aurora zero-ETL integrations with Amazon
19539
+ # Redshift][1].
19540
+ #
19541
+ #
19542
+ #
19543
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Zero_ETL_Filtering.html
19544
+ # @return [String]
19545
+ #
19546
+ # @!attribute [rw] description
19547
+ # A new description for the integration.
19548
+ # @return [String]
19549
+ #
19550
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyIntegrationMessage AWS API Documentation
19551
+ #
19552
+ class ModifyIntegrationMessage < Struct.new(
19553
+ :integration_identifier,
19554
+ :integration_name,
19555
+ :data_filter,
19556
+ :description)
19557
+ SENSITIVE = []
19558
+ include Aws::Structure
19559
+ end
19560
+
19479
19561
  # @!attribute [rw] option_group_name
19480
19562
  # The name of the option group to be modified.
19481
19563
  #
@@ -24014,6 +24096,23 @@ module Aws::RDS
24014
24096
  # instance.
24015
24097
  # @return [Boolean]
24016
24098
  #
24099
+ # @!attribute [rw] ca_certificate_identifier
24100
+ # The CA certificate identifier to use for the DB instance's server
24101
+ # certificate.
24102
+ #
24103
+ # This setting doesn't apply to RDS Custom DB instances.
24104
+ #
24105
+ # For more information, see [Using SSL/TLS to encrypt a connection to
24106
+ # a DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS
24107
+ # to encrypt a connection to a DB cluster][2] in the *Amazon Aurora
24108
+ # User Guide*.
24109
+ #
24110
+ #
24111
+ #
24112
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
24113
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
24114
+ # @return [String]
24115
+ #
24017
24116
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshotMessage AWS API Documentation
24018
24117
  #
24019
24118
  class RestoreDBInstanceFromDBSnapshotMessage < Struct.new(
@@ -24056,7 +24155,8 @@ module Aws::RDS
24056
24155
  :storage_throughput,
24057
24156
  :db_cluster_snapshot_identifier,
24058
24157
  :allocated_storage,
24059
- :dedicated_log_volume)
24158
+ :dedicated_log_volume,
24159
+ :ca_certificate_identifier)
24060
24160
  SENSITIVE = []
24061
24161
  include Aws::Structure
24062
24162
  end
@@ -24623,6 +24723,23 @@ module Aws::RDS
24623
24723
  # instance.
24624
24724
  # @return [Boolean]
24625
24725
  #
24726
+ # @!attribute [rw] ca_certificate_identifier
24727
+ # The CA certificate identifier to use for the DB instance's server
24728
+ # certificate.
24729
+ #
24730
+ # This setting doesn't apply to RDS Custom DB instances.
24731
+ #
24732
+ # For more information, see [Using SSL/TLS to encrypt a connection to
24733
+ # a DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS
24734
+ # to encrypt a connection to a DB cluster][2] in the *Amazon Aurora
24735
+ # User Guide*.
24736
+ #
24737
+ #
24738
+ #
24739
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
24740
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
24741
+ # @return [String]
24742
+ #
24626
24743
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3Message AWS API Documentation
24627
24744
  #
24628
24745
  class RestoreDBInstanceFromS3Message < Struct.new(
@@ -24674,7 +24791,8 @@ module Aws::RDS
24674
24791
  :storage_throughput,
24675
24792
  :manage_master_user_password,
24676
24793
  :master_user_secret_kms_key_id,
24677
- :dedicated_log_volume)
24794
+ :dedicated_log_volume,
24795
+ :ca_certificate_identifier)
24678
24796
  SENSITIVE = []
24679
24797
  include Aws::Structure
24680
24798
  end
@@ -25274,6 +25392,23 @@ module Aws::RDS
25274
25392
  # instance.
25275
25393
  # @return [Boolean]
25276
25394
  #
25395
+ # @!attribute [rw] ca_certificate_identifier
25396
+ # The CA certificate identifier to use for the DB instance's server
25397
+ # certificate.
25398
+ #
25399
+ # This setting doesn't apply to RDS Custom DB instances.
25400
+ #
25401
+ # For more information, see [Using SSL/TLS to encrypt a connection to
25402
+ # a DB instance][1] in the *Amazon RDS User Guide* and [ Using SSL/TLS
25403
+ # to encrypt a connection to a DB cluster][2] in the *Amazon Aurora
25404
+ # User Guide*.
25405
+ #
25406
+ #
25407
+ #
25408
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
25409
+ # [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
25410
+ # @return [String]
25411
+ #
25277
25412
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTimeMessage AWS API Documentation
25278
25413
  #
25279
25414
  class RestoreDBInstanceToPointInTimeMessage < Struct.new(
@@ -25320,7 +25455,8 @@ module Aws::RDS
25320
25455
  :network_type,
25321
25456
  :storage_throughput,
25322
25457
  :allocated_storage,
25323
- :dedicated_log_volume)
25458
+ :dedicated_log_volume,
25459
+ :ca_certificate_identifier)
25324
25460
  SENSITIVE = []
25325
25461
  include Aws::Structure
25326
25462
  end
data/lib/aws-sdk-rds.rb CHANGED
@@ -78,6 +78,6 @@ require_relative 'aws-sdk-rds/customizations'
78
78
  # @!group service
79
79
  module Aws::RDS
80
80
 
81
- GEM_VERSION = '1.222.0'
81
+ GEM_VERSION = '1.224.0'
82
82
 
83
83
  end
data/sig/client.rbs CHANGED
@@ -645,6 +645,7 @@ module Aws
645
645
  ?source_db_cluster_identifier: ::String,
646
646
  ?dedicated_log_volume: bool,
647
647
  ?upgrade_storage_config: bool,
648
+ ?ca_certificate_identifier: ::String,
648
649
  ?source_region: ::String
649
650
  ) -> _CreateDBInstanceReadReplicaResponseSuccess
650
651
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDBInstanceReadReplicaResponseSuccess
@@ -842,6 +843,8 @@ module Aws
842
843
  def tags: () -> ::Array[Types::Tag]
843
844
  def create_time: () -> ::Time
844
845
  def errors: () -> ::Array[Types::IntegrationError]
846
+ def data_filter: () -> ::String
847
+ def description: () -> ::String
845
848
  end
846
849
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#create_integration-instance_method
847
850
  def create_integration: (
@@ -855,7 +858,9 @@ module Aws
855
858
  key: ::String?,
856
859
  value: ::String?
857
860
  },
858
- ]
861
+ ],
862
+ ?data_filter: ::String,
863
+ ?description: ::String
859
864
  ) -> _CreateIntegrationResponseSuccess
860
865
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateIntegrationResponseSuccess
861
866
 
@@ -1132,6 +1137,8 @@ module Aws
1132
1137
  def tags: () -> ::Array[Types::Tag]
1133
1138
  def create_time: () -> ::Time
1134
1139
  def errors: () -> ::Array[Types::IntegrationError]
1140
+ def data_filter: () -> ::String
1141
+ def description: () -> ::String
1135
1142
  end
1136
1143
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#delete_integration-instance_method
1137
1144
  def delete_integration: (
@@ -2600,6 +2607,30 @@ module Aws
2600
2607
  ) -> _ModifyGlobalClusterResponseSuccess
2601
2608
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyGlobalClusterResponseSuccess
2602
2609
 
2610
+ interface _ModifyIntegrationResponseSuccess
2611
+ include ::Seahorse::Client::_ResponseSuccess[Types::Integration]
2612
+ def source_arn: () -> ::String
2613
+ def target_arn: () -> ::String
2614
+ def integration_name: () -> ::String
2615
+ def integration_arn: () -> ::String
2616
+ def kms_key_id: () -> ::String
2617
+ def additional_encryption_context: () -> ::Hash[::String, ::String]
2618
+ def status: () -> ("creating" | "active" | "modifying" | "failed" | "deleting" | "syncing" | "needs_attention")
2619
+ def tags: () -> ::Array[Types::Tag]
2620
+ def create_time: () -> ::Time
2621
+ def errors: () -> ::Array[Types::IntegrationError]
2622
+ def data_filter: () -> ::String
2623
+ def description: () -> ::String
2624
+ end
2625
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#modify_integration-instance_method
2626
+ def modify_integration: (
2627
+ integration_identifier: ::String,
2628
+ ?integration_name: ::String,
2629
+ ?data_filter: ::String,
2630
+ ?description: ::String
2631
+ ) -> _ModifyIntegrationResponseSuccess
2632
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyIntegrationResponseSuccess
2633
+
2603
2634
  interface _ModifyOptionGroupResponseSuccess
2604
2635
  include ::Seahorse::Client::_ResponseSuccess[Types::ModifyOptionGroupResult]
2605
2636
  def option_group: () -> Types::OptionGroup
@@ -3057,7 +3088,8 @@ module Aws
3057
3088
  ?storage_throughput: ::Integer,
3058
3089
  ?db_cluster_snapshot_identifier: ::String,
3059
3090
  ?allocated_storage: ::Integer,
3060
- ?dedicated_log_volume: bool
3091
+ ?dedicated_log_volume: bool,
3092
+ ?ca_certificate_identifier: ::String
3061
3093
  ) -> _RestoreDBInstanceFromDBSnapshotResponseSuccess
3062
3094
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDBInstanceFromDBSnapshotResponseSuccess
3063
3095
 
@@ -3125,7 +3157,8 @@ module Aws
3125
3157
  ?storage_throughput: ::Integer,
3126
3158
  ?manage_master_user_password: bool,
3127
3159
  ?master_user_secret_kms_key_id: ::String,
3128
- ?dedicated_log_volume: bool
3160
+ ?dedicated_log_volume: bool,
3161
+ ?ca_certificate_identifier: ::String
3129
3162
  ) -> _RestoreDBInstanceFromS3ResponseSuccess
3130
3163
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDBInstanceFromS3ResponseSuccess
3131
3164
 
@@ -3188,7 +3221,8 @@ module Aws
3188
3221
  ?network_type: ::String,
3189
3222
  ?storage_throughput: ::Integer,
3190
3223
  ?allocated_storage: ::Integer,
3191
- ?dedicated_log_volume: bool
3224
+ ?dedicated_log_volume: bool,
3225
+ ?ca_certificate_identifier: ::String
3192
3226
  ) -> _RestoreDBInstanceToPointInTimeResponseSuccess
3193
3227
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDBInstanceToPointInTimeResponseSuccess
3194
3228
 
data/sig/db_instance.rbs CHANGED
@@ -414,6 +414,7 @@ module Aws
414
414
  ?source_db_cluster_identifier: ::String,
415
415
  ?dedicated_log_volume: bool,
416
416
  ?upgrade_storage_config: bool,
417
+ ?ca_certificate_identifier: ::String,
417
418
  ?source_region: ::String
418
419
  ) -> DBInstance
419
420
  | (?Hash[Symbol, untyped]) -> DBInstance
@@ -577,7 +578,8 @@ module Aws
577
578
  ?network_type: ::String,
578
579
  ?storage_throughput: ::Integer,
579
580
  ?allocated_storage: ::Integer,
580
- ?dedicated_log_volume: bool
581
+ ?dedicated_log_volume: bool,
582
+ ?ca_certificate_identifier: ::String
581
583
  ) -> DBInstance
582
584
  | (?Hash[Symbol, untyped]) -> DBInstance
583
585
 
data/sig/db_snapshot.rbs CHANGED
@@ -222,7 +222,8 @@ module Aws
222
222
  ?storage_throughput: ::Integer,
223
223
  ?db_cluster_snapshot_identifier: ::String,
224
224
  ?allocated_storage: ::Integer,
225
- ?dedicated_log_volume: bool
225
+ ?dedicated_log_volume: bool,
226
+ ?ca_certificate_identifier: ::String
226
227
  ) -> DBInstance
227
228
  | (?Hash[Symbol, untyped]) -> DBInstance
228
229
 
data/sig/types.rbs CHANGED
@@ -538,6 +538,7 @@ module Aws::RDS
538
538
  attr_accessor source_db_cluster_identifier: ::String
539
539
  attr_accessor dedicated_log_volume: bool
540
540
  attr_accessor upgrade_storage_config: bool
541
+ attr_accessor ca_certificate_identifier: ::String
541
542
  attr_accessor source_region: ::String
542
543
  SENSITIVE: []
543
544
  end
@@ -684,6 +685,8 @@ module Aws::RDS
684
685
  attr_accessor kms_key_id: ::String
685
686
  attr_accessor additional_encryption_context: ::Hash[::String, ::String]
686
687
  attr_accessor tags: ::Array[Types::Tag]
688
+ attr_accessor data_filter: ::String
689
+ attr_accessor description: ::String
687
690
  SENSITIVE: []
688
691
  end
689
692
 
@@ -2575,6 +2578,8 @@ module Aws::RDS
2575
2578
  attr_accessor tags: ::Array[Types::Tag]
2576
2579
  attr_accessor create_time: ::Time
2577
2580
  attr_accessor errors: ::Array[Types::IntegrationError]
2581
+ attr_accessor data_filter: ::String
2582
+ attr_accessor description: ::String
2578
2583
  SENSITIVE: []
2579
2584
  end
2580
2585
 
@@ -3064,6 +3069,14 @@ module Aws::RDS
3064
3069
  SENSITIVE: []
3065
3070
  end
3066
3071
 
3072
+ class ModifyIntegrationMessage
3073
+ attr_accessor integration_identifier: ::String
3074
+ attr_accessor integration_name: ::String
3075
+ attr_accessor data_filter: ::String
3076
+ attr_accessor description: ::String
3077
+ SENSITIVE: []
3078
+ end
3079
+
3067
3080
  class ModifyOptionGroupMessage
3068
3081
  attr_accessor option_group_name: ::String
3069
3082
  attr_accessor options_to_include: ::Array[Types::OptionConfiguration]
@@ -3766,6 +3779,7 @@ module Aws::RDS
3766
3779
  attr_accessor db_cluster_snapshot_identifier: ::String
3767
3780
  attr_accessor allocated_storage: ::Integer
3768
3781
  attr_accessor dedicated_log_volume: bool
3782
+ attr_accessor ca_certificate_identifier: ::String
3769
3783
  SENSITIVE: []
3770
3784
  end
3771
3785
 
@@ -3824,6 +3838,7 @@ module Aws::RDS
3824
3838
  attr_accessor manage_master_user_password: bool
3825
3839
  attr_accessor master_user_secret_kms_key_id: ::String
3826
3840
  attr_accessor dedicated_log_volume: bool
3841
+ attr_accessor ca_certificate_identifier: ::String
3827
3842
  SENSITIVE: []
3828
3843
  end
3829
3844
 
@@ -3877,6 +3892,7 @@ module Aws::RDS
3877
3892
  attr_accessor storage_throughput: ::Integer
3878
3893
  attr_accessor allocated_storage: ::Integer
3879
3894
  attr_accessor dedicated_log_volume: bool
3895
+ attr_accessor ca_certificate_identifier: ::String
3880
3896
  SENSITIVE: []
3881
3897
  end
3882
3898
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-rds
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.222.0
4
+ version: 1.224.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-03-14 00:00:00.000000000 Z
11
+ date: 2024-04-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core