aws-sdk-rds 1.222.0 → 1.223.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 503c7bee05e92e01c1d1696023c373435b014f1bc6490b3fc433772d9b8ffeda
4
- data.tar.gz: f0875e3148cee8342afdf53370348b59250fed4dcf4240f1620751cb4c82b602
3
+ metadata.gz: cf5ff7a76c335839325e3553b3dfbad7ff2b9e2af04561e1c6c2df2738a4c094
4
+ data.tar.gz: 6337a121050b82a3926de2d09d159d54d41a21cfe411c5b95860f8fb1b685a29
5
5
  SHA512:
6
- metadata.gz: 3df2656bbe3ae03f4546066025fe96d059f931bb54ed8b9fafc79c28952902cb0a9e353f0c2959a92b55c5a19fe8e21649bad788a7a9c2ef95136a5f454a5c80
7
- data.tar.gz: 5e86063421fef4fe9bc1515b34db3e6f99395bd8548e26da36b172b3a872ba734bcaea61edc87f765970d236ef4cd99b7f2d86945fddedd2956ac179cc2f9ef1
6
+ metadata.gz: 805247ea80911bf42369e97a527f8329ccf6c5edc0693cd27f700f3f5f2d80cd010091551e2f6a82f92fd1e842f241b4a02880d6036e86b29cb8aae008c91778
7
+ data.tar.gz: 598055c60d8e3b3cb58152b69119841fc909e3ed06e8fd3ef68d2d20d82e71f891a9ea1f79c12f5a3c2d281876aa166e407fcfa429b0fe34bd20218d0989e93b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.222.0 (2024-03-14)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.222.0
1
+ 1.223.0
@@ -7901,6 +7901,20 @@ module Aws::RDS
7901
7901
  #
7902
7902
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
7903
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
+ #
7904
7918
  # @return [Types::Integration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7905
7919
  #
7906
7920
  # * {Types::Integration#source_arn #source_arn} => String
@@ -7913,6 +7927,8 @@ module Aws::RDS
7913
7927
  # * {Types::Integration#tags #tags} => Array<Types::Tag>
7914
7928
  # * {Types::Integration#create_time #create_time} => Time
7915
7929
  # * {Types::Integration#errors #errors} => Array<Types::IntegrationError>
7930
+ # * {Types::Integration#data_filter #data_filter} => String
7931
+ # * {Types::Integration#description #description} => String
7916
7932
  #
7917
7933
  #
7918
7934
  # @example Example: To create a zero-ETL integration
@@ -7928,6 +7944,7 @@ module Aws::RDS
7928
7944
  # resp.to_h outputs the following:
7929
7945
  # {
7930
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",
7931
7948
  # integration_name: "my-integration",
7932
7949
  # kms_key_id: "arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa",
7933
7950
  # source_arn: "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster",
@@ -7953,6 +7970,8 @@ module Aws::RDS
7953
7970
  # value: "String",
7954
7971
  # },
7955
7972
  # ],
7973
+ # data_filter: "DataFilter",
7974
+ # description: "IntegrationDescription",
7956
7975
  # })
7957
7976
  #
7958
7977
  # @example Response structure
@@ -7972,6 +7991,8 @@ module Aws::RDS
7972
7991
  # resp.errors #=> Array
7973
7992
  # resp.errors[0].error_code #=> String
7974
7993
  # resp.errors[0].error_message #=> String
7994
+ # resp.data_filter #=> String
7995
+ # resp.description #=> String
7975
7996
  #
7976
7997
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateIntegration AWS API Documentation
7977
7998
  #
@@ -10120,6 +10141,8 @@ module Aws::RDS
10120
10141
  # * {Types::Integration#tags #tags} => Array<Types::Tag>
10121
10142
  # * {Types::Integration#create_time #create_time} => Time
10122
10143
  # * {Types::Integration#errors #errors} => Array<Types::IntegrationError>
10144
+ # * {Types::Integration#data_filter #data_filter} => String
10145
+ # * {Types::Integration#description #description} => String
10123
10146
  #
10124
10147
  #
10125
10148
  # @example Example: To delete a zero-ETL integration
@@ -10133,6 +10156,7 @@ module Aws::RDS
10133
10156
  # resp.to_h outputs the following:
10134
10157
  # {
10135
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",
10136
10160
  # integration_name: "my-integration",
10137
10161
  # kms_key_id: "arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa",
10138
10162
  # source_arn: "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster",
@@ -10165,6 +10189,8 @@ module Aws::RDS
10165
10189
  # resp.errors #=> Array
10166
10190
  # resp.errors[0].error_code #=> String
10167
10191
  # resp.errors[0].error_message #=> String
10192
+ # resp.data_filter #=> String
10193
+ # resp.description #=> String
10168
10194
  #
10169
10195
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteIntegration AWS API Documentation
10170
10196
  #
@@ -15710,6 +15736,7 @@ module Aws::RDS
15710
15736
  # integrations: [
15711
15737
  # {
15712
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",
15713
15740
  # integration_name: "my-integration",
15714
15741
  # kms_key_id: "arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLEaaaaa",
15715
15742
  # source_arn: "arn:aws:rds:us-east-1:123456789012:cluster:my-cluster",
@@ -15754,6 +15781,8 @@ module Aws::RDS
15754
15781
  # resp.integrations[0].errors #=> Array
15755
15782
  # resp.integrations[0].errors[0].error_code #=> String
15756
15783
  # resp.integrations[0].errors[0].error_message #=> String
15784
+ # resp.integrations[0].data_filter #=> String
15785
+ # resp.integrations[0].description #=> String
15757
15786
  #
15758
15787
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeIntegrations AWS API Documentation
15759
15788
  #
@@ -22127,6 +22156,108 @@ module Aws::RDS
22127
22156
  req.send_request(options)
22128
22157
  end
22129
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
+
22130
22261
  # Modifies an existing option group.
22131
22262
  #
22132
22263
  # @option params [required, String] :option_group_name
@@ -30517,7 +30648,7 @@ module Aws::RDS
30517
30648
  params: params,
30518
30649
  config: config)
30519
30650
  context[:gem_name] = 'aws-sdk-rds'
30520
- context[:gem_version] = '1.222.0'
30651
+ context[:gem_version] = '1.223.0'
30521
30652
  Seahorse::Client::Request.new(handlers, context)
30522
30653
  end
30523
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"
@@ -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
@@ -6145,6 +6145,22 @@ module Aws::RDS
6145
6145
  # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
6146
6146
  # @return [Array<Types::Tag>]
6147
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
+ #
6148
6164
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateIntegrationMessage AWS API Documentation
6149
6165
  #
6150
6166
  class CreateIntegrationMessage < Struct.new(
@@ -6153,7 +6169,9 @@ module Aws::RDS
6153
6169
  :integration_name,
6154
6170
  :kms_key_id,
6155
6171
  :additional_encryption_context,
6156
- :tags)
6172
+ :tags,
6173
+ :data_filter,
6174
+ :description)
6157
6175
  SENSITIVE = []
6158
6176
  include Aws::Structure
6159
6177
  end
@@ -15975,6 +15993,16 @@ module Aws::RDS
15975
15993
  # Any errors associated with the integration.
15976
15994
  # @return [Array<Types::IntegrationError>]
15977
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
+ #
15978
16006
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/Integration AWS API Documentation
15979
16007
  #
15980
16008
  class Integration < Struct.new(
@@ -15987,7 +16015,9 @@ module Aws::RDS
15987
16015
  :status,
15988
16016
  :tags,
15989
16017
  :create_time,
15990
- :errors)
16018
+ :errors,
16019
+ :data_filter,
16020
+ :description)
15991
16021
  SENSITIVE = []
15992
16022
  include Aws::Structure
15993
16023
  end
@@ -19476,6 +19506,39 @@ module Aws::RDS
19476
19506
  include Aws::Structure
19477
19507
  end
19478
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
+
19479
19542
  # @!attribute [rw] option_group_name
19480
19543
  # The name of the option group to be modified.
19481
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.222.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.222.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-14 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