aws-sdk-rds 1.221.0 → 1.223.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: 8a5da6fef32c3d69ad2abcd436440b46aa6735a15cd025669ba876398760ca7e
4
- data.tar.gz: 26062b67eb003325ebb6bf3bce912db864de3057b30c87fc6307e573b6d9d594
3
+ metadata.gz: cf5ff7a76c335839325e3553b3dfbad7ff2b9e2af04561e1c6c2df2738a4c094
4
+ data.tar.gz: 6337a121050b82a3926de2d09d159d54d41a21cfe411c5b95860f8fb1b685a29
5
5
  SHA512:
6
- metadata.gz: ea961d9b8a6ebbffef11310ff0d8e5ce18d43e551624a19d47cbe911a890e8de1af771bb2040ca434cd433bcc2364212bb0a4f6798de502320763486057e6538
7
- data.tar.gz: 10cd91a2d809d25559af22a8d06915bdfaac0b7ec7a70b81e7c526e9d2d5fd8c4150f78e206bf46654939274b5342fbb0c9c2d53ab2556f1d52548a67ce9e1ba
6
+ metadata.gz: 805247ea80911bf42369e97a527f8329ccf6c5edc0693cd27f700f3f5f2d80cd010091551e2f6a82f92fd1e842f241b4a02880d6036e86b29cb8aae008c91778
7
+ data.tar.gz: 598055c60d8e3b3cb58152b69119841fc909e3ed06e8fd3ef68d2d20d82e71f891a9ea1f79c12f5a3c2d281876aa166e407fcfa429b0fe34bd20218d0989e93b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.223.0 (2024-03-18)
5
+ ------------------
6
+
7
+ * Feature - This release launches the ModifyIntegration API and support for data filtering for zero-ETL Integrations.
8
+
9
+ 1.222.0 (2024-03-14)
10
+ ------------------
11
+
12
+ * Feature - Updates Amazon RDS documentation for EBCDIC collation for RDS for Db2.
13
+
4
14
  1.221.0 (2024-03-07)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.221.0
1
+ 1.223.0
@@ -4197,7 +4197,9 @@ module Aws::RDS
4197
4197
  #
4198
4198
  # : The name of the database to create when the DB instance is created.
4199
4199
  # If this parameter isn't specified, no database is created in the DB
4200
- # instance.
4200
+ # instance. In some cases, we recommend that you don't add a database
4201
+ # name. For more information, see [Additional considerations][1] in
4202
+ # the *Amazon RDS User Guide*.
4201
4203
  #
4202
4204
  # Constraints:
4203
4205
  #
@@ -4271,6 +4273,10 @@ module Aws::RDS
4271
4273
  #
4272
4274
  # : Not applicable. Must be null.
4273
4275
  #
4276
+ #
4277
+ #
4278
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-db-instance-prereqs.html#db2-prereqs-additional-considerations
4279
+ #
4274
4280
  # @option params [required, String] :db_instance_identifier
4275
4281
  # The identifier for this DB instance. This parameter is stored as a
4276
4282
  # lowercase string.
@@ -7895,6 +7901,20 @@ module Aws::RDS
7895
7901
  #
7896
7902
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
7897
7903
  #
7904
+ # @option params [String] :data_filter
7905
+ # Data filtering options for the integration. For more information, see
7906
+ # [Data filtering for Aurora zero-ETL integrations with Amazon
7907
+ # Redshift][1].
7908
+ #
7909
+ # Valid for: Integrations with Aurora MySQL source DB clusters only
7910
+ #
7911
+ #
7912
+ #
7913
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/zero-etl.filtering.html
7914
+ #
7915
+ # @option params [String] :description
7916
+ # A description of the integration.
7917
+ #
7898
7918
  # @return [Types::Integration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7899
7919
  #
7900
7920
  # * {Types::Integration#source_arn #source_arn} => String
@@ -7907,6 +7927,8 @@ module Aws::RDS
7907
7927
  # * {Types::Integration#tags #tags} => Array<Types::Tag>
7908
7928
  # * {Types::Integration#create_time #create_time} => Time
7909
7929
  # * {Types::Integration#errors #errors} => Array<Types::IntegrationError>
7930
+ # * {Types::Integration#data_filter #data_filter} => String
7931
+ # * {Types::Integration#description #description} => String
7910
7932
  #
7911
7933
  #
7912
7934
  # @example Example: To create a zero-ETL integration
@@ -7922,6 +7944,7 @@ module Aws::RDS
7922
7944
  # resp.to_h outputs the following:
7923
7945
  # {
7924
7946
  # create_time: Time.parse("2023-12-28T17:20:20.629Z"),
7947
+ # integration_arn: "arn:aws:rds:us-east-1:123456789012:integration:5b9f3d79-7392-4a3e-896c-58eaa1b53231",
7925
7948
  # integration_name: "my-integration",
7926
7949
  # kms_key_id: "arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa",
7927
7950
  # source_arn: "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster",
@@ -7947,6 +7970,8 @@ module Aws::RDS
7947
7970
  # value: "String",
7948
7971
  # },
7949
7972
  # ],
7973
+ # data_filter: "DataFilter",
7974
+ # description: "IntegrationDescription",
7950
7975
  # })
7951
7976
  #
7952
7977
  # @example Response structure
@@ -7966,6 +7991,8 @@ module Aws::RDS
7966
7991
  # resp.errors #=> Array
7967
7992
  # resp.errors[0].error_code #=> String
7968
7993
  # resp.errors[0].error_message #=> String
7994
+ # resp.data_filter #=> String
7995
+ # resp.description #=> String
7969
7996
  #
7970
7997
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateIntegration AWS API Documentation
7971
7998
  #
@@ -10114,6 +10141,8 @@ module Aws::RDS
10114
10141
  # * {Types::Integration#tags #tags} => Array<Types::Tag>
10115
10142
  # * {Types::Integration#create_time #create_time} => Time
10116
10143
  # * {Types::Integration#errors #errors} => Array<Types::IntegrationError>
10144
+ # * {Types::Integration#data_filter #data_filter} => String
10145
+ # * {Types::Integration#description #description} => String
10117
10146
  #
10118
10147
  #
10119
10148
  # @example Example: To delete a zero-ETL integration
@@ -10127,6 +10156,7 @@ module Aws::RDS
10127
10156
  # resp.to_h outputs the following:
10128
10157
  # {
10129
10158
  # create_time: Time.parse("2023-12-28T17:20:20.629Z"),
10159
+ # integration_arn: "arn:aws:rds:us-east-1:123456789012:integration:5b9f3d79-7392-4a3e-896c-58eaa1b53231",
10130
10160
  # integration_name: "my-integration",
10131
10161
  # kms_key_id: "arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa",
10132
10162
  # source_arn: "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster",
@@ -10159,6 +10189,8 @@ module Aws::RDS
10159
10189
  # resp.errors #=> Array
10160
10190
  # resp.errors[0].error_code #=> String
10161
10191
  # resp.errors[0].error_message #=> String
10192
+ # resp.data_filter #=> String
10193
+ # resp.description #=> String
10162
10194
  #
10163
10195
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteIntegration AWS API Documentation
10164
10196
  #
@@ -15553,7 +15585,14 @@ module Aws::RDS
15553
15585
  # ^
15554
15586
  #
15555
15587
  # @option params [Array<Types::Filter>] :filters
15556
- # This parameter isn't currently supported.
15588
+ # A filter that specifies one or more global database clusters to
15589
+ # describe. This parameter is case-sensitive.
15590
+ #
15591
+ # Currently, the only supported filter is `region`.
15592
+ #
15593
+ # If used, the request returns information about any global cluster with
15594
+ # at least one member (primary or secondary) in the specified Amazon Web
15595
+ # Services Regions.
15557
15596
  #
15558
15597
  # @option params [Integer] :max_records
15559
15598
  # The maximum number of records to include in the response. If more
@@ -15697,6 +15736,7 @@ module Aws::RDS
15697
15736
  # integrations: [
15698
15737
  # {
15699
15738
  # create_time: Time.parse("2023-12-28T17:20:20.629Z"),
15739
+ # integration_arn: "arn:aws:rds:us-east-1:123456789012:integration:5b9f3d79-7392-4a3e-896c-58eaa1b53231",
15700
15740
  # integration_name: "my-integration",
15701
15741
  # kms_key_id: "arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa",
15702
15742
  # source_arn: "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster",
@@ -15741,6 +15781,8 @@ module Aws::RDS
15741
15781
  # resp.integrations[0].errors #=> Array
15742
15782
  # resp.integrations[0].errors[0].error_code #=> String
15743
15783
  # resp.integrations[0].errors[0].error_message #=> String
15784
+ # resp.integrations[0].data_filter #=> String
15785
+ # resp.integrations[0].description #=> String
15744
15786
  #
15745
15787
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeIntegrations AWS API Documentation
15746
15788
  #
@@ -22114,6 +22156,108 @@ module Aws::RDS
22114
22156
  req.send_request(options)
22115
22157
  end
22116
22158
 
22159
+ # Modifies a zero-ETL integration with Amazon Redshift.
22160
+ #
22161
+ # <note markdown="1"> Currently, you can only modify integrations that have Aurora MySQL
22162
+ # source DB clusters. Integrations with Aurora PostgreSQL and RDS
22163
+ # sources currently don't support modifying the integration.
22164
+ #
22165
+ # </note>
22166
+ #
22167
+ # @option params [required, String] :integration_identifier
22168
+ # The unique identifier of the integration to modify.
22169
+ #
22170
+ # @option params [String] :integration_name
22171
+ # A new name for the integration.
22172
+ #
22173
+ # @option params [String] :data_filter
22174
+ # A new data filter for the integration. For more information, see [Data
22175
+ # filtering for Aurora zero-ETL integrations with Amazon Redshift][1].
22176
+ #
22177
+ #
22178
+ #
22179
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Zero_ETL_Filtering.html
22180
+ #
22181
+ # @option params [String] :description
22182
+ # A new description for the integration.
22183
+ #
22184
+ # @return [Types::Integration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
22185
+ #
22186
+ # * {Types::Integration#source_arn #source_arn} => String
22187
+ # * {Types::Integration#target_arn #target_arn} => String
22188
+ # * {Types::Integration#integration_name #integration_name} => String
22189
+ # * {Types::Integration#integration_arn #integration_arn} => String
22190
+ # * {Types::Integration#kms_key_id #kms_key_id} => String
22191
+ # * {Types::Integration#additional_encryption_context #additional_encryption_context} => Hash&lt;String,String&gt;
22192
+ # * {Types::Integration#status #status} => String
22193
+ # * {Types::Integration#tags #tags} => Array&lt;Types::Tag&gt;
22194
+ # * {Types::Integration#create_time #create_time} => Time
22195
+ # * {Types::Integration#errors #errors} => Array&lt;Types::IntegrationError&gt;
22196
+ # * {Types::Integration#data_filter #data_filter} => String
22197
+ # * {Types::Integration#description #description} => String
22198
+ #
22199
+ #
22200
+ # @example Example: To modify a zero-ETL integration
22201
+ #
22202
+ # # The following example modifies the name of an existing zero-ETL integration.
22203
+ #
22204
+ # resp = client.modify_integration({
22205
+ # integration_identifier: "a1b2c3d4-5678-90ab-cdef-EXAMPLE11111",
22206
+ # integration_name: "my-renamed-integration",
22207
+ # })
22208
+ #
22209
+ # resp.to_h outputs the following:
22210
+ # {
22211
+ # create_time: Time.parse("2023-12-28T17:20:20.629Z"),
22212
+ # data_filter: "include: *.*",
22213
+ # integration_arn: "arn:aws:rds:us-east-1:123456789012:integration:5b9f3d79-7392-4a3e-896c-58eaa1b53231",
22214
+ # integration_name: "my-renamed-integration",
22215
+ # kms_key_id: "arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa",
22216
+ # source_arn: "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster",
22217
+ # status: "active",
22218
+ # tags: [
22219
+ # ],
22220
+ # target_arn: "arn:aws:redshift-serverless:us-east-1:123456789012:namespace/62c70612-0302-4db7-8414-b5e3e049f0d8",
22221
+ # }
22222
+ #
22223
+ # @example Request syntax with placeholder values
22224
+ #
22225
+ # resp = client.modify_integration({
22226
+ # integration_identifier: "IntegrationIdentifier", # required
22227
+ # integration_name: "IntegrationName",
22228
+ # data_filter: "DataFilter",
22229
+ # description: "IntegrationDescription",
22230
+ # })
22231
+ #
22232
+ # @example Response structure
22233
+ #
22234
+ # resp.source_arn #=> String
22235
+ # resp.target_arn #=> String
22236
+ # resp.integration_name #=> String
22237
+ # resp.integration_arn #=> String
22238
+ # resp.kms_key_id #=> String
22239
+ # resp.additional_encryption_context #=> Hash
22240
+ # resp.additional_encryption_context["String"] #=> String
22241
+ # resp.status #=> String, one of "creating", "active", "modifying", "failed", "deleting", "syncing", "needs_attention"
22242
+ # resp.tags #=> Array
22243
+ # resp.tags[0].key #=> String
22244
+ # resp.tags[0].value #=> String
22245
+ # resp.create_time #=> Time
22246
+ # resp.errors #=> Array
22247
+ # resp.errors[0].error_code #=> String
22248
+ # resp.errors[0].error_message #=> String
22249
+ # resp.data_filter #=> String
22250
+ # resp.description #=> String
22251
+ #
22252
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyIntegration AWS API Documentation
22253
+ #
22254
+ # @overload modify_integration(params = {})
22255
+ # @param [Hash] params ({})
22256
+ def modify_integration(params = {}, options = {})
22257
+ req = build_request(:modify_integration, params)
22258
+ req.send_request(options)
22259
+ end
22260
+
22117
22261
  # Modifies an existing option group.
22118
22262
  #
22119
22263
  # @option params [required, String] :option_group_name
@@ -30504,7 +30648,7 @@ module Aws::RDS
30504
30648
  params: params,
30505
30649
  config: config)
30506
30650
  context[:gem_name] = 'aws-sdk-rds'
30507
- context[:gem_version] = '1.221.0'
30651
+ context[:gem_version] = '1.223.0'
30508
30652
  Seahorse::Client::Request.new(handlers, context)
30509
30653
  end
30510
30654
 
@@ -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')
@@ -1311,6 +1314,8 @@ module Aws::RDS
1311
1314
  CreateIntegrationMessage.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KMSKeyId"))
1312
1315
  CreateIntegrationMessage.add_member(:additional_encryption_context, Shapes::ShapeRef.new(shape: EncryptionContextMap, location_name: "AdditionalEncryptionContext"))
1313
1316
  CreateIntegrationMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
1317
+ CreateIntegrationMessage.add_member(:data_filter, Shapes::ShapeRef.new(shape: DataFilter, location_name: "DataFilter"))
1318
+ CreateIntegrationMessage.add_member(:description, Shapes::ShapeRef.new(shape: IntegrationDescription, location_name: "Description"))
1314
1319
  CreateIntegrationMessage.struct_class = Types::CreateIntegrationMessage
1315
1320
 
1316
1321
  CreateOptionGroupMessage.add_member(:option_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "OptionGroupName"))
@@ -2863,6 +2868,8 @@ module Aws::RDS
2863
2868
  Integration.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
2864
2869
  Integration.add_member(:create_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "CreateTime"))
2865
2870
  Integration.add_member(:errors, Shapes::ShapeRef.new(shape: IntegrationErrorList, location_name: "Errors"))
2871
+ Integration.add_member(:data_filter, Shapes::ShapeRef.new(shape: DataFilter, location_name: "DataFilter"))
2872
+ Integration.add_member(:description, Shapes::ShapeRef.new(shape: IntegrationDescription, location_name: "Description"))
2866
2873
  Integration.struct_class = Types::Integration
2867
2874
 
2868
2875
  IntegrationAlreadyExistsFault.struct_class = Types::IntegrationAlreadyExistsFault
@@ -3244,6 +3251,12 @@ module Aws::RDS
3244
3251
  ModifyGlobalClusterResult.add_member(:global_cluster, Shapes::ShapeRef.new(shape: GlobalCluster, location_name: "GlobalCluster"))
3245
3252
  ModifyGlobalClusterResult.struct_class = Types::ModifyGlobalClusterResult
3246
3253
 
3254
+ ModifyIntegrationMessage.add_member(:integration_identifier, Shapes::ShapeRef.new(shape: IntegrationIdentifier, required: true, location_name: "IntegrationIdentifier"))
3255
+ ModifyIntegrationMessage.add_member(:integration_name, Shapes::ShapeRef.new(shape: IntegrationName, location_name: "IntegrationName"))
3256
+ ModifyIntegrationMessage.add_member(:data_filter, Shapes::ShapeRef.new(shape: DataFilter, location_name: "DataFilter"))
3257
+ ModifyIntegrationMessage.add_member(:description, Shapes::ShapeRef.new(shape: IntegrationDescription, location_name: "Description"))
3258
+ ModifyIntegrationMessage.struct_class = Types::ModifyIntegrationMessage
3259
+
3247
3260
  ModifyOptionGroupMessage.add_member(:option_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "OptionGroupName"))
3248
3261
  ModifyOptionGroupMessage.add_member(:options_to_include, Shapes::ShapeRef.new(shape: OptionConfigurationList, location_name: "OptionsToInclude"))
3249
3262
  ModifyOptionGroupMessage.add_member(:options_to_remove, Shapes::ShapeRef.new(shape: OptionNamesList, location_name: "OptionsToRemove"))
@@ -5955,6 +5968,17 @@ module Aws::RDS
5955
5968
  o.errors << Shapes::ShapeRef.new(shape: InvalidDBInstanceStateFault)
5956
5969
  end)
5957
5970
 
5971
+ api.add_operation(:modify_integration, Seahorse::Model::Operation.new.tap do |o|
5972
+ o.name = "ModifyIntegration"
5973
+ o.http_method = "POST"
5974
+ o.http_request_uri = "/"
5975
+ o.input = Shapes::ShapeRef.new(shape: ModifyIntegrationMessage)
5976
+ o.output = Shapes::ShapeRef.new(shape: Integration)
5977
+ o.errors << Shapes::ShapeRef.new(shape: IntegrationNotFoundFault)
5978
+ o.errors << Shapes::ShapeRef.new(shape: InvalidIntegrationStateFault)
5979
+ o.errors << Shapes::ShapeRef.new(shape: IntegrationConflictOperationFault)
5980
+ end)
5981
+
5958
5982
  api.add_operation(:modify_option_group, Seahorse::Model::Operation.new.tap do |o|
5959
5983
  o.name = "ModifyOptionGroup"
5960
5984
  o.http_method = "POST"
@@ -1056,7 +1056,9 @@ module Aws::RDS
1056
1056
  #
1057
1057
  # : The name of the database to create when the DB instance is created.
1058
1058
  # If this parameter isn't specified, no database is created in the DB
1059
- # instance.
1059
+ # instance. In some cases, we recommend that you don't add a database
1060
+ # name. For more information, see [Additional considerations][1] in
1061
+ # the *Amazon RDS User Guide*.
1060
1062
  #
1061
1063
  # Constraints:
1062
1064
  #
@@ -1129,6 +1131,10 @@ module Aws::RDS
1129
1131
  # RDS for SQL Server
1130
1132
  #
1131
1133
  # : Not applicable. Must be null.
1134
+ #
1135
+ #
1136
+ #
1137
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-db-instance-prereqs.html#db2-prereqs-additional-considerations
1132
1138
  # @option options [Integer] :allocated_storage
1133
1139
  # The amount of storage in gibibytes (GiB) to allocate for the DB
1134
1140
  # instance.
@@ -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
@@ -1130,7 +1130,9 @@ module Aws::RDS
1130
1130
  #
1131
1131
  # : The name of the database to create when the DB instance is created.
1132
1132
  # If this parameter isn't specified, no database is created in the DB
1133
- # instance.
1133
+ # instance. In some cases, we recommend that you don't add a database
1134
+ # name. For more information, see [Additional considerations][1] in
1135
+ # the *Amazon RDS User Guide*.
1134
1136
  #
1135
1137
  # Constraints:
1136
1138
  #
@@ -1203,6 +1205,10 @@ module Aws::RDS
1203
1205
  # RDS for SQL Server
1204
1206
  #
1205
1207
  # : Not applicable. Must be null.
1208
+ #
1209
+ #
1210
+ #
1211
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-db-instance-prereqs.html#db2-prereqs-additional-considerations
1206
1212
  # @option options [required, String] :db_instance_identifier
1207
1213
  # The identifier for this DB instance. This parameter is stored as a
1208
1214
  # lowercase string.
@@ -3252,7 +3252,9 @@ module Aws::RDS
3252
3252
  #
3253
3253
  # : The name of the database to create when the DB instance is
3254
3254
  # created. If this parameter isn't specified, no database is
3255
- # created in the DB instance.
3255
+ # created in the DB instance. In some cases, we recommend that you
3256
+ # don't add a database name. For more information, see [Additional
3257
+ # considerations][1] in the *Amazon RDS User Guide*.
3256
3258
  #
3257
3259
  # Constraints:
3258
3260
  #
@@ -3326,6 +3328,10 @@ module Aws::RDS
3326
3328
  # RDS for SQL Server
3327
3329
  #
3328
3330
  # : Not applicable. Must be null.
3331
+ #
3332
+ #
3333
+ #
3334
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-db-instance-prereqs.html#db2-prereqs-additional-considerations
3329
3335
  # @return [String]
3330
3336
  #
3331
3337
  # @!attribute [rw] db_instance_identifier
@@ -6139,6 +6145,22 @@ module Aws::RDS
6139
6145
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
6140
6146
  # @return [Array<Types::Tag>]
6141
6147
  #
6148
+ # @!attribute [rw] data_filter
6149
+ # Data filtering options for the integration. For more information,
6150
+ # see [Data filtering for Aurora zero-ETL integrations with Amazon
6151
+ # Redshift][1].
6152
+ #
6153
+ # Valid for: Integrations with Aurora MySQL source DB clusters only
6154
+ #
6155
+ #
6156
+ #
6157
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/zero-etl.filtering.html
6158
+ # @return [String]
6159
+ #
6160
+ # @!attribute [rw] description
6161
+ # A description of the integration.
6162
+ # @return [String]
6163
+ #
6142
6164
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateIntegrationMessage AWS API Documentation
6143
6165
  #
6144
6166
  class CreateIntegrationMessage < Struct.new(
@@ -6147,7 +6169,9 @@ module Aws::RDS
6147
6169
  :integration_name,
6148
6170
  :kms_key_id,
6149
6171
  :additional_encryption_context,
6150
- :tags)
6172
+ :tags,
6173
+ :data_filter,
6174
+ :description)
6151
6175
  SENSITIVE = []
6152
6176
  include Aws::Structure
6153
6177
  end
@@ -14027,7 +14051,14 @@ module Aws::RDS
14027
14051
  # @return [String]
14028
14052
  #
14029
14053
  # @!attribute [rw] filters
14030
- # This parameter isn't currently supported.
14054
+ # A filter that specifies one or more global database clusters to
14055
+ # describe. This parameter is case-sensitive.
14056
+ #
14057
+ # Currently, the only supported filter is `region`.
14058
+ #
14059
+ # If used, the request returns information about any global cluster
14060
+ # with at least one member (primary or secondary) in the specified
14061
+ # Amazon Web Services Regions.
14031
14062
  # @return [Array<Types::Filter>]
14032
14063
  #
14033
14064
  # @!attribute [rw] max_records
@@ -15962,6 +15993,16 @@ module Aws::RDS
15962
15993
  # Any errors associated with the integration.
15963
15994
  # @return [Array<Types::IntegrationError>]
15964
15995
  #
15996
+ # @!attribute [rw] data_filter
15997
+ # Data filters for the integration. These filters determine which
15998
+ # tables from the source database are sent to the target Amazon
15999
+ # Redshift data warehouse.
16000
+ # @return [String]
16001
+ #
16002
+ # @!attribute [rw] description
16003
+ # A description of the integration.
16004
+ # @return [String]
16005
+ #
15965
16006
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/Integration AWS API Documentation
15966
16007
  #
15967
16008
  class Integration < Struct.new(
@@ -15974,7 +16015,9 @@ module Aws::RDS
15974
16015
  :status,
15975
16016
  :tags,
15976
16017
  :create_time,
15977
- :errors)
16018
+ :errors,
16019
+ :data_filter,
16020
+ :description)
15978
16021
  SENSITIVE = []
15979
16022
  include Aws::Structure
15980
16023
  end
@@ -19463,6 +19506,39 @@ module Aws::RDS
19463
19506
  include Aws::Structure
19464
19507
  end
19465
19508
 
19509
+ # @!attribute [rw] integration_identifier
19510
+ # The unique identifier of the integration to modify.
19511
+ # @return [String]
19512
+ #
19513
+ # @!attribute [rw] integration_name
19514
+ # A new name for the integration.
19515
+ # @return [String]
19516
+ #
19517
+ # @!attribute [rw] data_filter
19518
+ # A new data filter for the integration. For more information, see
19519
+ # [Data filtering for Aurora zero-ETL integrations with Amazon
19520
+ # Redshift][1].
19521
+ #
19522
+ #
19523
+ #
19524
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Zero_ETL_Filtering.html
19525
+ # @return [String]
19526
+ #
19527
+ # @!attribute [rw] description
19528
+ # A new description for the integration.
19529
+ # @return [String]
19530
+ #
19531
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyIntegrationMessage AWS API Documentation
19532
+ #
19533
+ class ModifyIntegrationMessage < Struct.new(
19534
+ :integration_identifier,
19535
+ :integration_name,
19536
+ :data_filter,
19537
+ :description)
19538
+ SENSITIVE = []
19539
+ include Aws::Structure
19540
+ end
19541
+
19466
19542
  # @!attribute [rw] option_group_name
19467
19543
  # The name of the option group to be modified.
19468
19544
  #
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.221.0'
81
+ GEM_VERSION = '1.223.0'
82
82
 
83
83
  end
data/sig/client.rbs CHANGED
@@ -842,6 +842,8 @@ module Aws
842
842
  def tags: () -> ::Array[Types::Tag]
843
843
  def create_time: () -> ::Time
844
844
  def errors: () -> ::Array[Types::IntegrationError]
845
+ def data_filter: () -> ::String
846
+ def description: () -> ::String
845
847
  end
846
848
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#create_integration-instance_method
847
849
  def create_integration: (
@@ -855,7 +857,9 @@ module Aws
855
857
  key: ::String?,
856
858
  value: ::String?
857
859
  },
858
- ]
860
+ ],
861
+ ?data_filter: ::String,
862
+ ?description: ::String
859
863
  ) -> _CreateIntegrationResponseSuccess
860
864
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateIntegrationResponseSuccess
861
865
 
@@ -1132,6 +1136,8 @@ module Aws
1132
1136
  def tags: () -> ::Array[Types::Tag]
1133
1137
  def create_time: () -> ::Time
1134
1138
  def errors: () -> ::Array[Types::IntegrationError]
1139
+ def data_filter: () -> ::String
1140
+ def description: () -> ::String
1135
1141
  end
1136
1142
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#delete_integration-instance_method
1137
1143
  def delete_integration: (
@@ -2600,6 +2606,30 @@ module Aws
2600
2606
  ) -> _ModifyGlobalClusterResponseSuccess
2601
2607
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyGlobalClusterResponseSuccess
2602
2608
 
2609
+ interface _ModifyIntegrationResponseSuccess
2610
+ include ::Seahorse::Client::_ResponseSuccess[Types::Integration]
2611
+ def source_arn: () -> ::String
2612
+ def target_arn: () -> ::String
2613
+ def integration_name: () -> ::String
2614
+ def integration_arn: () -> ::String
2615
+ def kms_key_id: () -> ::String
2616
+ def additional_encryption_context: () -> ::Hash[::String, ::String]
2617
+ def status: () -> ("creating" | "active" | "modifying" | "failed" | "deleting" | "syncing" | "needs_attention")
2618
+ def tags: () -> ::Array[Types::Tag]
2619
+ def create_time: () -> ::Time
2620
+ def errors: () -> ::Array[Types::IntegrationError]
2621
+ def data_filter: () -> ::String
2622
+ def description: () -> ::String
2623
+ end
2624
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#modify_integration-instance_method
2625
+ def modify_integration: (
2626
+ integration_identifier: ::String,
2627
+ ?integration_name: ::String,
2628
+ ?data_filter: ::String,
2629
+ ?description: ::String
2630
+ ) -> _ModifyIntegrationResponseSuccess
2631
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyIntegrationResponseSuccess
2632
+
2603
2633
  interface _ModifyOptionGroupResponseSuccess
2604
2634
  include ::Seahorse::Client::_ResponseSuccess[Types::ModifyOptionGroupResult]
2605
2635
  def option_group: () -> Types::OptionGroup
data/sig/types.rbs CHANGED
@@ -684,6 +684,8 @@ module Aws::RDS
684
684
  attr_accessor kms_key_id: ::String
685
685
  attr_accessor additional_encryption_context: ::Hash[::String, ::String]
686
686
  attr_accessor tags: ::Array[Types::Tag]
687
+ attr_accessor data_filter: ::String
688
+ attr_accessor description: ::String
687
689
  SENSITIVE: []
688
690
  end
689
691
 
@@ -2575,6 +2577,8 @@ module Aws::RDS
2575
2577
  attr_accessor tags: ::Array[Types::Tag]
2576
2578
  attr_accessor create_time: ::Time
2577
2579
  attr_accessor errors: ::Array[Types::IntegrationError]
2580
+ attr_accessor data_filter: ::String
2581
+ attr_accessor description: ::String
2578
2582
  SENSITIVE: []
2579
2583
  end
2580
2584
 
@@ -3064,6 +3068,14 @@ module Aws::RDS
3064
3068
  SENSITIVE: []
3065
3069
  end
3066
3070
 
3071
+ class ModifyIntegrationMessage
3072
+ attr_accessor integration_identifier: ::String
3073
+ attr_accessor integration_name: ::String
3074
+ attr_accessor data_filter: ::String
3075
+ attr_accessor description: ::String
3076
+ SENSITIVE: []
3077
+ end
3078
+
3067
3079
  class ModifyOptionGroupMessage
3068
3080
  attr_accessor option_group_name: ::String
3069
3081
  attr_accessor options_to_include: ::Array[Types::OptionConfiguration]
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.221.0
4
+ version: 1.223.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-07 00:00:00.000000000 Z
11
+ date: 2024-03-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core