aws-sdk-rds 1.198.0 → 1.199.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: 661543dd8e45831d733b0bb299ba3000a00889eaa07de9c3248cff92b986639e
4
- data.tar.gz: 54021b753ff8b674879c2cf17404b4bec76eb6ec7c1d7c6a657822bd62b35781
3
+ metadata.gz: 1417f5f6e20b58cc90909525e86d211a68b1f57a49cbe207a3b8041a3d332891
4
+ data.tar.gz: ec8466687914cd2dcf57b33409a91161bbdc5146b1caa6071d99db3ea4ee7306
5
5
  SHA512:
6
- metadata.gz: 0aa22690f8c9914b8e3dfa65ac953848b41174efcc61e08a989b728f7dbaa2e91d7c5a350cd217c73cb8e5e7433081726e0d504c039eace9aa6671dc3cd2130f
7
- data.tar.gz: 89bfa64851dcb558fd076c4ab994a723f136400894fc36548ebdcf6c5b8cb366ea14a989df563c98d5d64d484dec50b88d657392768cafcbaa45d85afdd9ecd5
6
+ metadata.gz: 65063eec80ef37c38700eb85190541a6931075937fbed27d6fe32501dd9eee8521c311f9f521d515c53e1c1636ffb045f2392b28744b93de14e00341efa41a7b
7
+ data.tar.gz: a48854f75c4ba97a254b3e9d6c6a89a136745b2f9c593ea21918d344683b74dfe060c2ed7375b498debcf14a75f1ce121b24da31b0f8066f699c9e891377e8af
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.199.0 (2023-10-30)
5
+ ------------------
6
+
7
+ * Feature - This release launches the CreateIntegration, DeleteIntegration, and DescribeIntegrations APIs to manage zero-ETL Integrations.
8
+
4
9
  1.198.0 (2023-10-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.198.0
1
+ 1.199.0
@@ -2355,6 +2355,7 @@ module Aws::RDS
2355
2355
  # * {Types::DBEngineVersion#supports_certificate_rotation_without_restart #supports_certificate_rotation_without_restart} => Boolean
2356
2356
  # * {Types::DBEngineVersion#supported_ca_certificate_identifiers #supported_ca_certificate_identifiers} => Array<String>
2357
2357
  # * {Types::DBEngineVersion#supports_local_write_forwarding #supports_local_write_forwarding} => Boolean
2358
+ # * {Types::DBEngineVersion#supports_integrations #supports_integrations} => Boolean
2358
2359
  #
2359
2360
  # @example Request syntax with placeholder values
2360
2361
  #
@@ -2407,6 +2408,7 @@ module Aws::RDS
2407
2408
  # resp.valid_upgrade_target[0].supports_global_databases #=> Boolean
2408
2409
  # resp.valid_upgrade_target[0].supports_babelfish #=> Boolean
2409
2410
  # resp.valid_upgrade_target[0].supports_local_write_forwarding #=> Boolean
2411
+ # resp.valid_upgrade_target[0].supports_integrations #=> Boolean
2410
2412
  # resp.supported_timezones #=> Array
2411
2413
  # resp.supported_timezones[0].timezone_name #=> String
2412
2414
  # resp.exportable_log_types #=> Array
@@ -2435,6 +2437,7 @@ module Aws::RDS
2435
2437
  # resp.supported_ca_certificate_identifiers #=> Array
2436
2438
  # resp.supported_ca_certificate_identifiers[0] #=> String
2437
2439
  # resp.supports_local_write_forwarding #=> Boolean
2440
+ # resp.supports_integrations #=> Boolean
2438
2441
  #
2439
2442
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateCustomDBEngineVersion AWS API Documentation
2440
2443
  #
@@ -7585,6 +7588,110 @@ module Aws::RDS
7585
7588
  req.send_request(options)
7586
7589
  end
7587
7590
 
7591
+ # Creates a zero-ETL integration with Amazon Redshift. For more
7592
+ # information, see [Working with Amazon Aurora zero-ETL integrations
7593
+ # with Amazon Redshift][1] in the *Amazon Aurora User Guide*.
7594
+ #
7595
+ #
7596
+ #
7597
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/zero-etl.html
7598
+ #
7599
+ # @option params [required, String] :source_arn
7600
+ # The Amazon Resource Name (ARN) of the Aurora DB cluster to use as the
7601
+ # source for replication.
7602
+ #
7603
+ # @option params [required, String] :target_arn
7604
+ # The ARN of the Redshift data warehouse to use as the target for
7605
+ # replication.
7606
+ #
7607
+ # @option params [required, String] :integration_name
7608
+ # The name of the integration.
7609
+ #
7610
+ # @option params [String] :kms_key_id
7611
+ # The Amazon Web Services Key Management System (Amazon Web Services
7612
+ # KMS) key identifier for the key to use to encrypt the integration. If
7613
+ # you don't specify an encryption key, Aurora uses a default Amazon Web
7614
+ # Services owned key.
7615
+ #
7616
+ # @option params [Hash<String,String>] :additional_encryption_context
7617
+ # An optional set of non-secret key–value pairs that contains additional
7618
+ # contextual information about the data. For more information, see
7619
+ # [Encryption context][1] in the *Amazon Web Services Key Management
7620
+ # Service Developer Guide*.
7621
+ #
7622
+ # You can only include this parameter if you specify the `KMSKeyId`
7623
+ # parameter.
7624
+ #
7625
+ #
7626
+ #
7627
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context
7628
+ #
7629
+ # @option params [Array<Types::Tag>] :tags
7630
+ # A list of tags. For more information, see [Tagging Amazon RDS
7631
+ # Resources][1] in the *Amazon RDS User Guide.*
7632
+ #
7633
+ #
7634
+ #
7635
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
7636
+ #
7637
+ # @return [Types::Integration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
7638
+ #
7639
+ # * {Types::Integration#source_arn #source_arn} => String
7640
+ # * {Types::Integration#target_arn #target_arn} => String
7641
+ # * {Types::Integration#integration_name #integration_name} => String
7642
+ # * {Types::Integration#integration_arn #integration_arn} => String
7643
+ # * {Types::Integration#kms_key_id #kms_key_id} => String
7644
+ # * {Types::Integration#additional_encryption_context #additional_encryption_context} => Hash&lt;String,String&gt;
7645
+ # * {Types::Integration#status #status} => String
7646
+ # * {Types::Integration#tags #tags} => Array&lt;Types::Tag&gt;
7647
+ # * {Types::Integration#create_time #create_time} => Time
7648
+ # * {Types::Integration#errors #errors} => Array&lt;Types::IntegrationError&gt;
7649
+ #
7650
+ # @example Request syntax with placeholder values
7651
+ #
7652
+ # resp = client.create_integration({
7653
+ # source_arn: "SourceArn", # required
7654
+ # target_arn: "Arn", # required
7655
+ # integration_name: "IntegrationName", # required
7656
+ # kms_key_id: "String",
7657
+ # additional_encryption_context: {
7658
+ # "String" => "String",
7659
+ # },
7660
+ # tags: [
7661
+ # {
7662
+ # key: "String",
7663
+ # value: "String",
7664
+ # },
7665
+ # ],
7666
+ # })
7667
+ #
7668
+ # @example Response structure
7669
+ #
7670
+ # resp.source_arn #=> String
7671
+ # resp.target_arn #=> String
7672
+ # resp.integration_name #=> String
7673
+ # resp.integration_arn #=> String
7674
+ # resp.kms_key_id #=> String
7675
+ # resp.additional_encryption_context #=> Hash
7676
+ # resp.additional_encryption_context["String"] #=> String
7677
+ # resp.status #=> String, one of "creating", "active", "modifying", "failed", "deleting", "syncing", "needs_attention"
7678
+ # resp.tags #=> Array
7679
+ # resp.tags[0].key #=> String
7680
+ # resp.tags[0].value #=> String
7681
+ # resp.create_time #=> Time
7682
+ # resp.errors #=> Array
7683
+ # resp.errors[0].error_code #=> String
7684
+ # resp.errors[0].error_message #=> String
7685
+ #
7686
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateIntegration AWS API Documentation
7687
+ #
7688
+ # @overload create_integration(params = {})
7689
+ # @param [Hash] params ({})
7690
+ def create_integration(params = {}, options = {})
7691
+ req = build_request(:create_integration, params)
7692
+ req.send_request(options)
7693
+ end
7694
+
7588
7695
  # Creates a new option group. You can create up to 20 option groups.
7589
7696
  #
7590
7697
  # This command doesn't apply to RDS Custom.
@@ -8010,6 +8117,7 @@ module Aws::RDS
8010
8117
  # * {Types::DBEngineVersion#supports_certificate_rotation_without_restart #supports_certificate_rotation_without_restart} => Boolean
8011
8118
  # * {Types::DBEngineVersion#supported_ca_certificate_identifiers #supported_ca_certificate_identifiers} => Array&lt;String&gt;
8012
8119
  # * {Types::DBEngineVersion#supports_local_write_forwarding #supports_local_write_forwarding} => Boolean
8120
+ # * {Types::DBEngineVersion#supports_integrations #supports_integrations} => Boolean
8013
8121
  #
8014
8122
  # @example Request syntax with placeholder values
8015
8123
  #
@@ -8048,6 +8156,7 @@ module Aws::RDS
8048
8156
  # resp.valid_upgrade_target[0].supports_global_databases #=> Boolean
8049
8157
  # resp.valid_upgrade_target[0].supports_babelfish #=> Boolean
8050
8158
  # resp.valid_upgrade_target[0].supports_local_write_forwarding #=> Boolean
8159
+ # resp.valid_upgrade_target[0].supports_integrations #=> Boolean
8051
8160
  # resp.supported_timezones #=> Array
8052
8161
  # resp.supported_timezones[0].timezone_name #=> String
8053
8162
  # resp.exportable_log_types #=> Array
@@ -8076,6 +8185,7 @@ module Aws::RDS
8076
8185
  # resp.supported_ca_certificate_identifiers #=> Array
8077
8186
  # resp.supported_ca_certificate_identifiers[0] #=> String
8078
8187
  # resp.supports_local_write_forwarding #=> Boolean
8188
+ # resp.supports_integrations #=> Boolean
8079
8189
  #
8080
8190
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteCustomDBEngineVersion AWS API Documentation
8081
8191
  #
@@ -9533,6 +9643,63 @@ module Aws::RDS
9533
9643
  req.send_request(options)
9534
9644
  end
9535
9645
 
9646
+ # Deletes a zero-ETL integration with Amazon Redshift. For more
9647
+ # information, see [Deleting Amazon Aurora zero-ETL integrations with
9648
+ # Amazon Redshift][1] in the *Amazon Aurora User Guide*
9649
+ #
9650
+ #
9651
+ #
9652
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/zero-etl.deleting.html
9653
+ #
9654
+ # @option params [required, String] :integration_identifier
9655
+ # The unique identifier of the integration.
9656
+ #
9657
+ # @return [Types::Integration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9658
+ #
9659
+ # * {Types::Integration#source_arn #source_arn} => String
9660
+ # * {Types::Integration#target_arn #target_arn} => String
9661
+ # * {Types::Integration#integration_name #integration_name} => String
9662
+ # * {Types::Integration#integration_arn #integration_arn} => String
9663
+ # * {Types::Integration#kms_key_id #kms_key_id} => String
9664
+ # * {Types::Integration#additional_encryption_context #additional_encryption_context} => Hash&lt;String,String&gt;
9665
+ # * {Types::Integration#status #status} => String
9666
+ # * {Types::Integration#tags #tags} => Array&lt;Types::Tag&gt;
9667
+ # * {Types::Integration#create_time #create_time} => Time
9668
+ # * {Types::Integration#errors #errors} => Array&lt;Types::IntegrationError&gt;
9669
+ #
9670
+ # @example Request syntax with placeholder values
9671
+ #
9672
+ # resp = client.delete_integration({
9673
+ # integration_identifier: "IntegrationIdentifier", # required
9674
+ # })
9675
+ #
9676
+ # @example Response structure
9677
+ #
9678
+ # resp.source_arn #=> String
9679
+ # resp.target_arn #=> String
9680
+ # resp.integration_name #=> String
9681
+ # resp.integration_arn #=> String
9682
+ # resp.kms_key_id #=> String
9683
+ # resp.additional_encryption_context #=> Hash
9684
+ # resp.additional_encryption_context["String"] #=> String
9685
+ # resp.status #=> String, one of "creating", "active", "modifying", "failed", "deleting", "syncing", "needs_attention"
9686
+ # resp.tags #=> Array
9687
+ # resp.tags[0].key #=> String
9688
+ # resp.tags[0].value #=> String
9689
+ # resp.create_time #=> Time
9690
+ # resp.errors #=> Array
9691
+ # resp.errors[0].error_code #=> String
9692
+ # resp.errors[0].error_message #=> String
9693
+ #
9694
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteIntegration AWS API Documentation
9695
+ #
9696
+ # @overload delete_integration(params = {})
9697
+ # @param [Hash] params ({})
9698
+ def delete_integration(params = {}, options = {})
9699
+ req = build_request(:delete_integration, params)
9700
+ req.send_request(options)
9701
+ end
9702
+
9536
9703
  # Deletes an existing option group.
9537
9704
  #
9538
9705
  # @option params [required, String] :option_group_name
@@ -11771,6 +11938,7 @@ module Aws::RDS
11771
11938
  # resp.db_engine_versions[0].valid_upgrade_target[0].supports_global_databases #=> Boolean
11772
11939
  # resp.db_engine_versions[0].valid_upgrade_target[0].supports_babelfish #=> Boolean
11773
11940
  # resp.db_engine_versions[0].valid_upgrade_target[0].supports_local_write_forwarding #=> Boolean
11941
+ # resp.db_engine_versions[0].valid_upgrade_target[0].supports_integrations #=> Boolean
11774
11942
  # resp.db_engine_versions[0].supported_timezones #=> Array
11775
11943
  # resp.db_engine_versions[0].supported_timezones[0].timezone_name #=> String
11776
11944
  # resp.db_engine_versions[0].exportable_log_types #=> Array
@@ -11799,6 +11967,7 @@ module Aws::RDS
11799
11967
  # resp.db_engine_versions[0].supported_ca_certificate_identifiers #=> Array
11800
11968
  # resp.db_engine_versions[0].supported_ca_certificate_identifiers[0] #=> String
11801
11969
  # resp.db_engine_versions[0].supports_local_write_forwarding #=> Boolean
11970
+ # resp.db_engine_versions[0].supports_integrations #=> Boolean
11802
11971
  #
11803
11972
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBEngineVersions AWS API Documentation
11804
11973
  #
@@ -14481,6 +14650,87 @@ module Aws::RDS
14481
14650
  req.send_request(options)
14482
14651
  end
14483
14652
 
14653
+ # Describe one or more zero-ETL integration with Amazon Redshift. For
14654
+ # more information, see [Viewing and monitoring Amazon Aurora zero-ETL
14655
+ # integrations with Amazon Redshift][1] in the *Amazon Aurora User
14656
+ # Guide*
14657
+ #
14658
+ #
14659
+ #
14660
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/zero-etl.describingmonitoring.html
14661
+ #
14662
+ # @option params [String] :integration_identifier
14663
+ # The unique identifier of the integration.
14664
+ #
14665
+ # @option params [Array<Types::Filter>] :filters
14666
+ # A filter that specifies one or more resources to return.
14667
+ #
14668
+ # @option params [Integer] :max_records
14669
+ # The maximum number of records to include in the response. If more
14670
+ # records exist than the specified `MaxRecords` value, a pagination
14671
+ # token called a marker is included in the response so that you can
14672
+ # retrieve the remaining results.
14673
+ #
14674
+ # Default: 100
14675
+ #
14676
+ # Constraints: Minimum 20, maximum 100.
14677
+ #
14678
+ # @option params [String] :marker
14679
+ # An optional pagination token provided by a previous
14680
+ # `DescribeIntegrations` request. If this parameter is specified, the
14681
+ # response includes only records beyond the marker, up to the value
14682
+ # specified by `MaxRecords`.
14683
+ #
14684
+ # @return [Types::DescribeIntegrationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
14685
+ #
14686
+ # * {Types::DescribeIntegrationsResponse#marker #marker} => String
14687
+ # * {Types::DescribeIntegrationsResponse#integrations #integrations} => Array&lt;Types::Integration&gt;
14688
+ #
14689
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
14690
+ #
14691
+ # @example Request syntax with placeholder values
14692
+ #
14693
+ # resp = client.describe_integrations({
14694
+ # integration_identifier: "IntegrationIdentifier",
14695
+ # filters: [
14696
+ # {
14697
+ # name: "String", # required
14698
+ # values: ["String"], # required
14699
+ # },
14700
+ # ],
14701
+ # max_records: 1,
14702
+ # marker: "Marker",
14703
+ # })
14704
+ #
14705
+ # @example Response structure
14706
+ #
14707
+ # resp.marker #=> String
14708
+ # resp.integrations #=> Array
14709
+ # resp.integrations[0].source_arn #=> String
14710
+ # resp.integrations[0].target_arn #=> String
14711
+ # resp.integrations[0].integration_name #=> String
14712
+ # resp.integrations[0].integration_arn #=> String
14713
+ # resp.integrations[0].kms_key_id #=> String
14714
+ # resp.integrations[0].additional_encryption_context #=> Hash
14715
+ # resp.integrations[0].additional_encryption_context["String"] #=> String
14716
+ # resp.integrations[0].status #=> String, one of "creating", "active", "modifying", "failed", "deleting", "syncing", "needs_attention"
14717
+ # resp.integrations[0].tags #=> Array
14718
+ # resp.integrations[0].tags[0].key #=> String
14719
+ # resp.integrations[0].tags[0].value #=> String
14720
+ # resp.integrations[0].create_time #=> Time
14721
+ # resp.integrations[0].errors #=> Array
14722
+ # resp.integrations[0].errors[0].error_code #=> String
14723
+ # resp.integrations[0].errors[0].error_message #=> String
14724
+ #
14725
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeIntegrations AWS API Documentation
14726
+ #
14727
+ # @overload describe_integrations(params = {})
14728
+ # @param [Hash] params ({})
14729
+ def describe_integrations(params = {}, options = {})
14730
+ req = build_request(:describe_integrations, params)
14731
+ req.send_request(options)
14732
+ end
14733
+
14484
14734
  # Describes all available options.
14485
14735
  #
14486
14736
  # @option params [required, String] :engine_name
@@ -16633,6 +16883,7 @@ module Aws::RDS
16633
16883
  # * {Types::DBEngineVersion#supports_certificate_rotation_without_restart #supports_certificate_rotation_without_restart} => Boolean
16634
16884
  # * {Types::DBEngineVersion#supported_ca_certificate_identifiers #supported_ca_certificate_identifiers} => Array&lt;String&gt;
16635
16885
  # * {Types::DBEngineVersion#supports_local_write_forwarding #supports_local_write_forwarding} => Boolean
16886
+ # * {Types::DBEngineVersion#supports_integrations #supports_integrations} => Boolean
16636
16887
  #
16637
16888
  # @example Request syntax with placeholder values
16638
16889
  #
@@ -16673,6 +16924,7 @@ module Aws::RDS
16673
16924
  # resp.valid_upgrade_target[0].supports_global_databases #=> Boolean
16674
16925
  # resp.valid_upgrade_target[0].supports_babelfish #=> Boolean
16675
16926
  # resp.valid_upgrade_target[0].supports_local_write_forwarding #=> Boolean
16927
+ # resp.valid_upgrade_target[0].supports_integrations #=> Boolean
16676
16928
  # resp.supported_timezones #=> Array
16677
16929
  # resp.supported_timezones[0].timezone_name #=> String
16678
16930
  # resp.exportable_log_types #=> Array
@@ -16701,6 +16953,7 @@ module Aws::RDS
16701
16953
  # resp.supported_ca_certificate_identifiers #=> Array
16702
16954
  # resp.supported_ca_certificate_identifiers[0] #=> String
16703
16955
  # resp.supports_local_write_forwarding #=> Boolean
16956
+ # resp.supports_integrations #=> Boolean
16704
16957
  #
16705
16958
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyCustomDBEngineVersion AWS API Documentation
16706
16959
  #
@@ -28443,7 +28696,7 @@ module Aws::RDS
28443
28696
  params: params,
28444
28697
  config: config)
28445
28698
  context[:gem_name] = 'aws-sdk-rds'
28446
- context[:gem_version] = '1.198.0'
28699
+ context[:gem_version] = '1.199.0'
28447
28700
  Seahorse::Client::Request.new(handlers, context)
28448
28701
  end
28449
28702
 
@@ -28,6 +28,7 @@ module Aws::RDS
28
28
  ApplyMethod = Shapes::StringShape.new(name: 'ApplyMethod')
29
29
  ApplyPendingMaintenanceActionMessage = Shapes::StructureShape.new(name: 'ApplyPendingMaintenanceActionMessage')
30
30
  ApplyPendingMaintenanceActionResult = Shapes::StructureShape.new(name: 'ApplyPendingMaintenanceActionResult')
31
+ Arn = Shapes::StringShape.new(name: 'Arn')
31
32
  AttributeValueList = Shapes::ListShape.new(name: 'AttributeValueList')
32
33
  AuditPolicyState = Shapes::StringShape.new(name: 'AuditPolicyState')
33
34
  AuthScheme = Shapes::StringShape.new(name: 'AuthScheme')
@@ -114,6 +115,7 @@ module Aws::RDS
114
115
  CreateEventSubscriptionResult = Shapes::StructureShape.new(name: 'CreateEventSubscriptionResult')
115
116
  CreateGlobalClusterMessage = Shapes::StructureShape.new(name: 'CreateGlobalClusterMessage')
116
117
  CreateGlobalClusterResult = Shapes::StructureShape.new(name: 'CreateGlobalClusterResult')
118
+ CreateIntegrationMessage = Shapes::StructureShape.new(name: 'CreateIntegrationMessage')
117
119
  CreateOptionGroupMessage = Shapes::StructureShape.new(name: 'CreateOptionGroupMessage')
118
120
  CreateOptionGroupResult = Shapes::StructureShape.new(name: 'CreateOptionGroupResult')
119
121
  CustomAvailabilityZoneNotFoundFault = Shapes::StructureShape.new(name: 'CustomAvailabilityZoneNotFoundFault')
@@ -281,6 +283,7 @@ module Aws::RDS
281
283
  DeleteEventSubscriptionResult = Shapes::StructureShape.new(name: 'DeleteEventSubscriptionResult')
282
284
  DeleteGlobalClusterMessage = Shapes::StructureShape.new(name: 'DeleteGlobalClusterMessage')
283
285
  DeleteGlobalClusterResult = Shapes::StructureShape.new(name: 'DeleteGlobalClusterResult')
286
+ DeleteIntegrationMessage = Shapes::StructureShape.new(name: 'DeleteIntegrationMessage')
284
287
  DeleteOptionGroupMessage = Shapes::StructureShape.new(name: 'DeleteOptionGroupMessage')
285
288
  DeregisterDBProxyTargetsRequest = Shapes::StructureShape.new(name: 'DeregisterDBProxyTargetsRequest')
286
289
  DeregisterDBProxyTargetsResponse = Shapes::StructureShape.new(name: 'DeregisterDBProxyTargetsResponse')
@@ -328,6 +331,8 @@ module Aws::RDS
328
331
  DescribeEventsMessage = Shapes::StructureShape.new(name: 'DescribeEventsMessage')
329
332
  DescribeExportTasksMessage = Shapes::StructureShape.new(name: 'DescribeExportTasksMessage')
330
333
  DescribeGlobalClustersMessage = Shapes::StructureShape.new(name: 'DescribeGlobalClustersMessage')
334
+ DescribeIntegrationsMessage = Shapes::StructureShape.new(name: 'DescribeIntegrationsMessage')
335
+ DescribeIntegrationsResponse = Shapes::StructureShape.new(name: 'DescribeIntegrationsResponse')
331
336
  DescribeOptionGroupOptionsMessage = Shapes::StructureShape.new(name: 'DescribeOptionGroupOptionsMessage')
332
337
  DescribeOptionGroupsMessage = Shapes::StructureShape.new(name: 'DescribeOptionGroupsMessage')
333
338
  DescribeOrderableDBInstanceOptionsMessage = Shapes::StructureShape.new(name: 'DescribeOrderableDBInstanceOptionsMessage')
@@ -350,6 +355,7 @@ module Aws::RDS
350
355
  EC2SecurityGroup = Shapes::StructureShape.new(name: 'EC2SecurityGroup')
351
356
  EC2SecurityGroupList = Shapes::ListShape.new(name: 'EC2SecurityGroupList')
352
357
  Ec2ImagePropertiesNotSupportedFault = Shapes::StructureShape.new(name: 'Ec2ImagePropertiesNotSupportedFault')
358
+ EncryptionContextMap = Shapes::MapShape.new(name: 'EncryptionContextMap')
353
359
  Endpoint = Shapes::StructureShape.new(name: 'Endpoint')
354
360
  EngineDefaults = Shapes::StructureShape.new(name: 'EngineDefaults')
355
361
  EngineFamily = Shapes::StringShape.new(name: 'EngineFamily')
@@ -403,6 +409,18 @@ module Aws::RDS
403
409
  InsufficientStorageClusterCapacityFault = Shapes::StructureShape.new(name: 'InsufficientStorageClusterCapacityFault')
404
410
  Integer = Shapes::IntegerShape.new(name: 'Integer')
405
411
  IntegerOptional = Shapes::IntegerShape.new(name: 'IntegerOptional')
412
+ Integration = Shapes::StructureShape.new(name: 'Integration')
413
+ IntegrationAlreadyExistsFault = Shapes::StructureShape.new(name: 'IntegrationAlreadyExistsFault')
414
+ IntegrationArn = Shapes::StringShape.new(name: 'IntegrationArn')
415
+ IntegrationConflictOperationFault = Shapes::StructureShape.new(name: 'IntegrationConflictOperationFault')
416
+ IntegrationError = Shapes::StructureShape.new(name: 'IntegrationError')
417
+ IntegrationErrorList = Shapes::ListShape.new(name: 'IntegrationErrorList')
418
+ IntegrationIdentifier = Shapes::StringShape.new(name: 'IntegrationIdentifier')
419
+ IntegrationList = Shapes::ListShape.new(name: 'IntegrationList')
420
+ IntegrationName = Shapes::StringShape.new(name: 'IntegrationName')
421
+ IntegrationNotFoundFault = Shapes::StructureShape.new(name: 'IntegrationNotFoundFault')
422
+ IntegrationQuotaExceededFault = Shapes::StructureShape.new(name: 'IntegrationQuotaExceededFault')
423
+ IntegrationStatus = Shapes::StringShape.new(name: 'IntegrationStatus')
406
424
  InvalidBlueGreenDeploymentStateFault = Shapes::StructureShape.new(name: 'InvalidBlueGreenDeploymentStateFault')
407
425
  InvalidCustomDBEngineVersionStateFault = Shapes::StructureShape.new(name: 'InvalidCustomDBEngineVersionStateFault')
408
426
  InvalidDBClusterAutomatedBackupStateFault = Shapes::StructureShape.new(name: 'InvalidDBClusterAutomatedBackupStateFault')
@@ -425,6 +443,7 @@ module Aws::RDS
425
443
  InvalidExportSourceStateFault = Shapes::StructureShape.new(name: 'InvalidExportSourceStateFault')
426
444
  InvalidExportTaskStateFault = Shapes::StructureShape.new(name: 'InvalidExportTaskStateFault')
427
445
  InvalidGlobalClusterStateFault = Shapes::StructureShape.new(name: 'InvalidGlobalClusterStateFault')
446
+ InvalidIntegrationStateFault = Shapes::StructureShape.new(name: 'InvalidIntegrationStateFault')
428
447
  InvalidOptionGroupStateFault = Shapes::StructureShape.new(name: 'InvalidOptionGroupStateFault')
429
448
  InvalidRestoreFault = Shapes::StructureShape.new(name: 'InvalidRestoreFault')
430
449
  InvalidS3BucketFault = Shapes::StructureShape.new(name: 'InvalidS3BucketFault')
@@ -438,6 +457,7 @@ module Aws::RDS
438
457
  LogTypeList = Shapes::ListShape.new(name: 'LogTypeList')
439
458
  Long = Shapes::IntegerShape.new(name: 'Long')
440
459
  LongOptional = Shapes::IntegerShape.new(name: 'LongOptional')
460
+ Marker = Shapes::StringShape.new(name: 'Marker')
441
461
  MasterUserSecret = Shapes::StructureShape.new(name: 'MasterUserSecret')
442
462
  MaxRecords = Shapes::IntegerShape.new(name: 'MaxRecords')
443
463
  MinimumEngineVersionPerAllowedValue = Shapes::StructureShape.new(name: 'MinimumEngineVersionPerAllowedValue')
@@ -583,6 +603,7 @@ module Aws::RDS
583
603
  ServerlessV2ScalingConfigurationInfo = Shapes::StructureShape.new(name: 'ServerlessV2ScalingConfigurationInfo')
584
604
  SharedSnapshotQuotaExceededFault = Shapes::StructureShape.new(name: 'SharedSnapshotQuotaExceededFault')
585
605
  SnapshotQuotaExceededFault = Shapes::StructureShape.new(name: 'SnapshotQuotaExceededFault')
606
+ SourceArn = Shapes::StringShape.new(name: 'SourceArn')
586
607
  SourceClusterNotSupportedFault = Shapes::StructureShape.new(name: 'SourceClusterNotSupportedFault')
587
608
  SourceDatabaseNotSupportedFault = Shapes::StructureShape.new(name: 'SourceDatabaseNotSupportedFault')
588
609
  SourceIdsList = Shapes::ListShape.new(name: 'SourceIdsList')
@@ -1193,6 +1214,14 @@ module Aws::RDS
1193
1214
  CreateGlobalClusterResult.add_member(:global_cluster, Shapes::ShapeRef.new(shape: GlobalCluster, location_name: "GlobalCluster"))
1194
1215
  CreateGlobalClusterResult.struct_class = Types::CreateGlobalClusterResult
1195
1216
 
1217
+ CreateIntegrationMessage.add_member(:source_arn, Shapes::ShapeRef.new(shape: SourceArn, required: true, location_name: "SourceArn"))
1218
+ CreateIntegrationMessage.add_member(:target_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "TargetArn"))
1219
+ CreateIntegrationMessage.add_member(:integration_name, Shapes::ShapeRef.new(shape: IntegrationName, required: true, location_name: "IntegrationName"))
1220
+ CreateIntegrationMessage.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KMSKeyId"))
1221
+ CreateIntegrationMessage.add_member(:additional_encryption_context, Shapes::ShapeRef.new(shape: EncryptionContextMap, location_name: "AdditionalEncryptionContext"))
1222
+ CreateIntegrationMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
1223
+ CreateIntegrationMessage.struct_class = Types::CreateIntegrationMessage
1224
+
1196
1225
  CreateOptionGroupMessage.add_member(:option_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "OptionGroupName"))
1197
1226
  CreateOptionGroupMessage.add_member(:engine_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "EngineName"))
1198
1227
  CreateOptionGroupMessage.add_member(:major_engine_version, Shapes::ShapeRef.new(shape: String, required: true, location_name: "MajorEngineVersion"))
@@ -1513,6 +1542,7 @@ module Aws::RDS
1513
1542
  DBEngineVersion.add_member(:supports_certificate_rotation_without_restart, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsCertificateRotationWithoutRestart"))
1514
1543
  DBEngineVersion.add_member(:supported_ca_certificate_identifiers, Shapes::ShapeRef.new(shape: CACertificateIdentifiersList, location_name: "SupportedCACertificateIdentifiers"))
1515
1544
  DBEngineVersion.add_member(:supports_local_write_forwarding, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsLocalWriteForwarding"))
1545
+ DBEngineVersion.add_member(:supports_integrations, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsIntegrations"))
1516
1546
  DBEngineVersion.struct_class = Types::DBEngineVersion
1517
1547
 
1518
1548
  DBEngineVersionList.member = Shapes::ShapeRef.new(shape: DBEngineVersion, location_name: "DBEngineVersion")
@@ -2000,6 +2030,9 @@ module Aws::RDS
2000
2030
  DeleteGlobalClusterResult.add_member(:global_cluster, Shapes::ShapeRef.new(shape: GlobalCluster, location_name: "GlobalCluster"))
2001
2031
  DeleteGlobalClusterResult.struct_class = Types::DeleteGlobalClusterResult
2002
2032
 
2033
+ DeleteIntegrationMessage.add_member(:integration_identifier, Shapes::ShapeRef.new(shape: IntegrationIdentifier, required: true, location_name: "IntegrationIdentifier"))
2034
+ DeleteIntegrationMessage.struct_class = Types::DeleteIntegrationMessage
2035
+
2003
2036
  DeleteOptionGroupMessage.add_member(:option_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "OptionGroupName"))
2004
2037
  DeleteOptionGroupMessage.struct_class = Types::DeleteOptionGroupMessage
2005
2038
 
@@ -2271,6 +2304,16 @@ module Aws::RDS
2271
2304
  DescribeGlobalClustersMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
2272
2305
  DescribeGlobalClustersMessage.struct_class = Types::DescribeGlobalClustersMessage
2273
2306
 
2307
+ DescribeIntegrationsMessage.add_member(:integration_identifier, Shapes::ShapeRef.new(shape: IntegrationIdentifier, location_name: "IntegrationIdentifier"))
2308
+ DescribeIntegrationsMessage.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filters"))
2309
+ DescribeIntegrationsMessage.add_member(:max_records, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxRecords"))
2310
+ DescribeIntegrationsMessage.add_member(:marker, Shapes::ShapeRef.new(shape: Marker, location_name: "Marker"))
2311
+ DescribeIntegrationsMessage.struct_class = Types::DescribeIntegrationsMessage
2312
+
2313
+ DescribeIntegrationsResponse.add_member(:marker, Shapes::ShapeRef.new(shape: Marker, location_name: "Marker"))
2314
+ DescribeIntegrationsResponse.add_member(:integrations, Shapes::ShapeRef.new(shape: IntegrationList, location_name: "Integrations"))
2315
+ DescribeIntegrationsResponse.struct_class = Types::DescribeIntegrationsResponse
2316
+
2274
2317
  DescribeOptionGroupOptionsMessage.add_member(:engine_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "EngineName"))
2275
2318
  DescribeOptionGroupOptionsMessage.add_member(:major_engine_version, Shapes::ShapeRef.new(shape: String, location_name: "MajorEngineVersion"))
2276
2319
  DescribeOptionGroupOptionsMessage.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filters"))
@@ -2379,6 +2422,9 @@ module Aws::RDS
2379
2422
 
2380
2423
  Ec2ImagePropertiesNotSupportedFault.struct_class = Types::Ec2ImagePropertiesNotSupportedFault
2381
2424
 
2425
+ EncryptionContextMap.key = Shapes::ShapeRef.new(shape: String)
2426
+ EncryptionContextMap.value = Shapes::ShapeRef.new(shape: String)
2427
+
2382
2428
  Endpoint.add_member(:address, Shapes::ShapeRef.new(shape: String, location_name: "Address"))
2383
2429
  Endpoint.add_member(:port, Shapes::ShapeRef.new(shape: Integer, location_name: "Port"))
2384
2430
  Endpoint.add_member(:hosted_zone_id, Shapes::ShapeRef.new(shape: String, location_name: "HostedZoneId"))
@@ -2550,6 +2596,34 @@ module Aws::RDS
2550
2596
 
2551
2597
  InsufficientStorageClusterCapacityFault.struct_class = Types::InsufficientStorageClusterCapacityFault
2552
2598
 
2599
+ Integration.add_member(:source_arn, Shapes::ShapeRef.new(shape: SourceArn, location_name: "SourceArn"))
2600
+ Integration.add_member(:target_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "TargetArn"))
2601
+ Integration.add_member(:integration_name, Shapes::ShapeRef.new(shape: IntegrationName, location_name: "IntegrationName"))
2602
+ Integration.add_member(:integration_arn, Shapes::ShapeRef.new(shape: IntegrationArn, location_name: "IntegrationArn"))
2603
+ Integration.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KMSKeyId"))
2604
+ Integration.add_member(:additional_encryption_context, Shapes::ShapeRef.new(shape: EncryptionContextMap, location_name: "AdditionalEncryptionContext"))
2605
+ Integration.add_member(:status, Shapes::ShapeRef.new(shape: IntegrationStatus, location_name: "Status"))
2606
+ Integration.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
2607
+ Integration.add_member(:create_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "CreateTime"))
2608
+ Integration.add_member(:errors, Shapes::ShapeRef.new(shape: IntegrationErrorList, location_name: "Errors"))
2609
+ Integration.struct_class = Types::Integration
2610
+
2611
+ IntegrationAlreadyExistsFault.struct_class = Types::IntegrationAlreadyExistsFault
2612
+
2613
+ IntegrationConflictOperationFault.struct_class = Types::IntegrationConflictOperationFault
2614
+
2615
+ IntegrationError.add_member(:error_code, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ErrorCode"))
2616
+ IntegrationError.add_member(:error_message, Shapes::ShapeRef.new(shape: String, location_name: "ErrorMessage"))
2617
+ IntegrationError.struct_class = Types::IntegrationError
2618
+
2619
+ IntegrationErrorList.member = Shapes::ShapeRef.new(shape: IntegrationError, location_name: "IntegrationError")
2620
+
2621
+ IntegrationList.member = Shapes::ShapeRef.new(shape: Integration, location_name: "Integration")
2622
+
2623
+ IntegrationNotFoundFault.struct_class = Types::IntegrationNotFoundFault
2624
+
2625
+ IntegrationQuotaExceededFault.struct_class = Types::IntegrationQuotaExceededFault
2626
+
2553
2627
  InvalidBlueGreenDeploymentStateFault.struct_class = Types::InvalidBlueGreenDeploymentStateFault
2554
2628
 
2555
2629
  InvalidCustomDBEngineVersionStateFault.struct_class = Types::InvalidCustomDBEngineVersionStateFault
@@ -2594,6 +2668,8 @@ module Aws::RDS
2594
2668
 
2595
2669
  InvalidGlobalClusterStateFault.struct_class = Types::InvalidGlobalClusterStateFault
2596
2670
 
2671
+ InvalidIntegrationStateFault.struct_class = Types::InvalidIntegrationStateFault
2672
+
2597
2673
  InvalidOptionGroupStateFault.struct_class = Types::InvalidOptionGroupStateFault
2598
2674
 
2599
2675
  InvalidRestoreFault.struct_class = Types::InvalidRestoreFault
@@ -3755,6 +3831,7 @@ module Aws::RDS
3755
3831
  UpgradeTarget.add_member(:supports_global_databases, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsGlobalDatabases"))
3756
3832
  UpgradeTarget.add_member(:supports_babelfish, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsBabelfish"))
3757
3833
  UpgradeTarget.add_member(:supports_local_write_forwarding, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsLocalWriteForwarding"))
3834
+ UpgradeTarget.add_member(:supports_integrations, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsIntegrations"))
3758
3835
  UpgradeTarget.struct_class = Types::UpgradeTarget
3759
3836
 
3760
3837
  UserAuthConfig.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
@@ -3867,6 +3944,7 @@ module Aws::RDS
3867
3944
  o.errors << Shapes::ShapeRef.new(shape: DBProxyNotFoundFault)
3868
3945
  o.errors << Shapes::ShapeRef.new(shape: DBProxyTargetGroupNotFoundFault)
3869
3946
  o.errors << Shapes::ShapeRef.new(shape: BlueGreenDeploymentNotFoundFault)
3947
+ o.errors << Shapes::ShapeRef.new(shape: IntegrationNotFoundFault)
3870
3948
  end)
3871
3949
 
3872
3950
  api.add_operation(:apply_pending_maintenance_action, Seahorse::Model::Operation.new.tap do |o|
@@ -4224,6 +4302,20 @@ module Aws::RDS
4224
4302
  o.errors << Shapes::ShapeRef.new(shape: DBClusterNotFoundFault)
4225
4303
  end)
4226
4304
 
4305
+ api.add_operation(:create_integration, Seahorse::Model::Operation.new.tap do |o|
4306
+ o.name = "CreateIntegration"
4307
+ o.http_method = "POST"
4308
+ o.http_request_uri = "/"
4309
+ o.input = Shapes::ShapeRef.new(shape: CreateIntegrationMessage)
4310
+ o.output = Shapes::ShapeRef.new(shape: Integration)
4311
+ o.errors << Shapes::ShapeRef.new(shape: DBClusterNotFoundFault)
4312
+ o.errors << Shapes::ShapeRef.new(shape: DBInstanceNotFoundFault)
4313
+ o.errors << Shapes::ShapeRef.new(shape: IntegrationAlreadyExistsFault)
4314
+ o.errors << Shapes::ShapeRef.new(shape: IntegrationQuotaExceededFault)
4315
+ o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
4316
+ o.errors << Shapes::ShapeRef.new(shape: IntegrationConflictOperationFault)
4317
+ end)
4318
+
4227
4319
  api.add_operation(:create_option_group, Seahorse::Model::Operation.new.tap do |o|
4228
4320
  o.name = "CreateOptionGroup"
4229
4321
  o.http_method = "POST"
@@ -4414,6 +4506,17 @@ module Aws::RDS
4414
4506
  o.errors << Shapes::ShapeRef.new(shape: InvalidGlobalClusterStateFault)
4415
4507
  end)
4416
4508
 
4509
+ api.add_operation(:delete_integration, Seahorse::Model::Operation.new.tap do |o|
4510
+ o.name = "DeleteIntegration"
4511
+ o.http_method = "POST"
4512
+ o.http_request_uri = "/"
4513
+ o.input = Shapes::ShapeRef.new(shape: DeleteIntegrationMessage)
4514
+ o.output = Shapes::ShapeRef.new(shape: Integration)
4515
+ o.errors << Shapes::ShapeRef.new(shape: IntegrationNotFoundFault)
4516
+ o.errors << Shapes::ShapeRef.new(shape: IntegrationConflictOperationFault)
4517
+ o.errors << Shapes::ShapeRef.new(shape: InvalidIntegrationStateFault)
4518
+ end)
4519
+
4417
4520
  api.add_operation(:delete_option_group, Seahorse::Model::Operation.new.tap do |o|
4418
4521
  o.name = "DeleteOptionGroup"
4419
4522
  o.http_method = "POST"
@@ -4887,6 +4990,21 @@ module Aws::RDS
4887
4990
  )
4888
4991
  end)
4889
4992
 
4993
+ api.add_operation(:describe_integrations, Seahorse::Model::Operation.new.tap do |o|
4994
+ o.name = "DescribeIntegrations"
4995
+ o.http_method = "POST"
4996
+ o.http_request_uri = "/"
4997
+ o.input = Shapes::ShapeRef.new(shape: DescribeIntegrationsMessage)
4998
+ o.output = Shapes::ShapeRef.new(shape: DescribeIntegrationsResponse)
4999
+ o.errors << Shapes::ShapeRef.new(shape: IntegrationNotFoundFault)
5000
+ o[:pager] = Aws::Pager.new(
5001
+ limit_key: "max_records",
5002
+ tokens: {
5003
+ "marker" => "marker"
5004
+ }
5005
+ )
5006
+ end)
5007
+
4890
5008
  api.add_operation(:describe_option_group_options, Seahorse::Model::Operation.new.tap do |o|
4891
5009
  o.name = "DescribeOptionGroupOptions"
4892
5010
  o.http_method = "POST"
@@ -5051,6 +5169,7 @@ module Aws::RDS
5051
5169
  o.errors << Shapes::ShapeRef.new(shape: DBProxyNotFoundFault)
5052
5170
  o.errors << Shapes::ShapeRef.new(shape: DBProxyTargetGroupNotFoundFault)
5053
5171
  o.errors << Shapes::ShapeRef.new(shape: BlueGreenDeploymentNotFoundFault)
5172
+ o.errors << Shapes::ShapeRef.new(shape: IntegrationNotFoundFault)
5054
5173
  end)
5055
5174
 
5056
5175
  api.add_operation(:modify_activity_stream, Seahorse::Model::Operation.new.tap do |o|
@@ -5415,6 +5534,7 @@ module Aws::RDS
5415
5534
  o.errors << Shapes::ShapeRef.new(shape: DBProxyNotFoundFault)
5416
5535
  o.errors << Shapes::ShapeRef.new(shape: DBProxyTargetGroupNotFoundFault)
5417
5536
  o.errors << Shapes::ShapeRef.new(shape: BlueGreenDeploymentNotFoundFault)
5537
+ o.errors << Shapes::ShapeRef.new(shape: IntegrationNotFoundFault)
5418
5538
  end)
5419
5539
 
5420
5540
  api.add_operation(:reset_db_cluster_parameter_group, Seahorse::Model::Operation.new.tap do |o|
@@ -288,6 +288,13 @@ module Aws::RDS
288
288
  data[:supports_local_write_forwarding]
289
289
  end
290
290
 
291
+ # Indicates whether the DB engine version supports Aurora zero-ETL
292
+ # integrations with Amazon Redshift.
293
+ # @return [Boolean]
294
+ def supports_integrations
295
+ data[:supports_integrations]
296
+ end
297
+
291
298
  # @!endgroup
292
299
 
293
300
  # @return [Client]
@@ -418,6 +418,20 @@ module Aws::RDS
418
418
  end
419
419
  end
420
420
 
421
+ class CreateIntegration
422
+ def self.build(context)
423
+ unless context.config.regional_endpoint
424
+ endpoint = context.config.endpoint.to_s
425
+ end
426
+ Aws::RDS::EndpointParameters.new(
427
+ region: context.config.region,
428
+ use_dual_stack: context.config.use_dualstack_endpoint,
429
+ use_fips: context.config.use_fips_endpoint,
430
+ endpoint: endpoint,
431
+ )
432
+ end
433
+ end
434
+
421
435
  class CreateOptionGroup
422
436
  def self.build(context)
423
437
  unless context.config.regional_endpoint
@@ -670,6 +684,20 @@ module Aws::RDS
670
684
  end
671
685
  end
672
686
 
687
+ class DeleteIntegration
688
+ def self.build(context)
689
+ unless context.config.regional_endpoint
690
+ endpoint = context.config.endpoint.to_s
691
+ end
692
+ Aws::RDS::EndpointParameters.new(
693
+ region: context.config.region,
694
+ use_dual_stack: context.config.use_dualstack_endpoint,
695
+ use_fips: context.config.use_fips_endpoint,
696
+ endpoint: endpoint,
697
+ )
698
+ end
699
+ end
700
+
673
701
  class DeleteOptionGroup
674
702
  def self.build(context)
675
703
  unless context.config.regional_endpoint
@@ -1146,6 +1174,20 @@ module Aws::RDS
1146
1174
  end
1147
1175
  end
1148
1176
 
1177
+ class DescribeIntegrations
1178
+ def self.build(context)
1179
+ unless context.config.regional_endpoint
1180
+ endpoint = context.config.endpoint.to_s
1181
+ end
1182
+ Aws::RDS::EndpointParameters.new(
1183
+ region: context.config.region,
1184
+ use_dual_stack: context.config.use_dualstack_endpoint,
1185
+ use_fips: context.config.use_fips_endpoint,
1186
+ endpoint: endpoint,
1187
+ )
1188
+ end
1189
+ end
1190
+
1149
1191
  class DescribeOptionGroupOptions
1150
1192
  def self.build(context)
1151
1193
  unless context.config.regional_endpoint
@@ -102,6 +102,10 @@ module Aws::RDS
102
102
  # * {InsufficientDBClusterCapacityFault}
103
103
  # * {InsufficientDBInstanceCapacityFault}
104
104
  # * {InsufficientStorageClusterCapacityFault}
105
+ # * {IntegrationAlreadyExistsFault}
106
+ # * {IntegrationConflictOperationFault}
107
+ # * {IntegrationNotFoundFault}
108
+ # * {IntegrationQuotaExceededFault}
105
109
  # * {InvalidBlueGreenDeploymentStateFault}
106
110
  # * {InvalidCustomDBEngineVersionStateFault}
107
111
  # * {InvalidDBClusterAutomatedBackupStateFault}
@@ -124,6 +128,7 @@ module Aws::RDS
124
128
  # * {InvalidExportSourceStateFault}
125
129
  # * {InvalidExportTaskStateFault}
126
130
  # * {InvalidGlobalClusterStateFault}
131
+ # * {InvalidIntegrationStateFault}
127
132
  # * {InvalidOptionGroupStateFault}
128
133
  # * {InvalidRestoreFault}
129
134
  # * {InvalidS3BucketFault}
@@ -913,6 +918,46 @@ module Aws::RDS
913
918
  end
914
919
  end
915
920
 
921
+ class IntegrationAlreadyExistsFault < ServiceError
922
+
923
+ # @param [Seahorse::Client::RequestContext] context
924
+ # @param [String] message
925
+ # @param [Aws::RDS::Types::IntegrationAlreadyExistsFault] data
926
+ def initialize(context, message, data = Aws::EmptyStructure.new)
927
+ super(context, message, data)
928
+ end
929
+ end
930
+
931
+ class IntegrationConflictOperationFault < ServiceError
932
+
933
+ # @param [Seahorse::Client::RequestContext] context
934
+ # @param [String] message
935
+ # @param [Aws::RDS::Types::IntegrationConflictOperationFault] data
936
+ def initialize(context, message, data = Aws::EmptyStructure.new)
937
+ super(context, message, data)
938
+ end
939
+ end
940
+
941
+ class IntegrationNotFoundFault < ServiceError
942
+
943
+ # @param [Seahorse::Client::RequestContext] context
944
+ # @param [String] message
945
+ # @param [Aws::RDS::Types::IntegrationNotFoundFault] data
946
+ def initialize(context, message, data = Aws::EmptyStructure.new)
947
+ super(context, message, data)
948
+ end
949
+ end
950
+
951
+ class IntegrationQuotaExceededFault < ServiceError
952
+
953
+ # @param [Seahorse::Client::RequestContext] context
954
+ # @param [String] message
955
+ # @param [Aws::RDS::Types::IntegrationQuotaExceededFault] data
956
+ def initialize(context, message, data = Aws::EmptyStructure.new)
957
+ super(context, message, data)
958
+ end
959
+ end
960
+
916
961
  class InvalidBlueGreenDeploymentStateFault < ServiceError
917
962
 
918
963
  # @param [Seahorse::Client::RequestContext] context
@@ -1133,6 +1178,16 @@ module Aws::RDS
1133
1178
  end
1134
1179
  end
1135
1180
 
1181
+ class InvalidIntegrationStateFault < ServiceError
1182
+
1183
+ # @param [Seahorse::Client::RequestContext] context
1184
+ # @param [String] message
1185
+ # @param [Aws::RDS::Types::InvalidIntegrationStateFault] data
1186
+ def initialize(context, message, data = Aws::EmptyStructure.new)
1187
+ super(context, message, data)
1188
+ end
1189
+ end
1190
+
1136
1191
  class InvalidOptionGroupStateFault < ServiceError
1137
1192
 
1138
1193
  # @param [Seahorse::Client::RequestContext] context
@@ -114,6 +114,8 @@ module Aws::RDS
114
114
  Aws::RDS::Endpoints::CreateEventSubscription.build(context)
115
115
  when :create_global_cluster
116
116
  Aws::RDS::Endpoints::CreateGlobalCluster.build(context)
117
+ when :create_integration
118
+ Aws::RDS::Endpoints::CreateIntegration.build(context)
117
119
  when :create_option_group
118
120
  Aws::RDS::Endpoints::CreateOptionGroup.build(context)
119
121
  when :delete_blue_green_deployment
@@ -150,6 +152,8 @@ module Aws::RDS
150
152
  Aws::RDS::Endpoints::DeleteEventSubscription.build(context)
151
153
  when :delete_global_cluster
152
154
  Aws::RDS::Endpoints::DeleteGlobalCluster.build(context)
155
+ when :delete_integration
156
+ Aws::RDS::Endpoints::DeleteIntegration.build(context)
153
157
  when :delete_option_group
154
158
  Aws::RDS::Endpoints::DeleteOptionGroup.build(context)
155
159
  when :deregister_db_proxy_targets
@@ -218,6 +222,8 @@ module Aws::RDS
218
222
  Aws::RDS::Endpoints::DescribeExportTasks.build(context)
219
223
  when :describe_global_clusters
220
224
  Aws::RDS::Endpoints::DescribeGlobalClusters.build(context)
225
+ when :describe_integrations
226
+ Aws::RDS::Endpoints::DescribeIntegrations.build(context)
221
227
  when :describe_option_group_options
222
228
  Aws::RDS::Endpoints::DescribeOptionGroupOptions.build(context)
223
229
  when :describe_option_groups
@@ -5855,6 +5855,63 @@ module Aws::RDS
5855
5855
  include Aws::Structure
5856
5856
  end
5857
5857
 
5858
+ # @!attribute [rw] source_arn
5859
+ # The Amazon Resource Name (ARN) of the Aurora DB cluster to use as
5860
+ # the source for replication.
5861
+ # @return [String]
5862
+ #
5863
+ # @!attribute [rw] target_arn
5864
+ # The ARN of the Redshift data warehouse to use as the target for
5865
+ # replication.
5866
+ # @return [String]
5867
+ #
5868
+ # @!attribute [rw] integration_name
5869
+ # The name of the integration.
5870
+ # @return [String]
5871
+ #
5872
+ # @!attribute [rw] kms_key_id
5873
+ # The Amazon Web Services Key Management System (Amazon Web Services
5874
+ # KMS) key identifier for the key to use to encrypt the integration.
5875
+ # If you don't specify an encryption key, Aurora uses a default
5876
+ # Amazon Web Services owned key.
5877
+ # @return [String]
5878
+ #
5879
+ # @!attribute [rw] additional_encryption_context
5880
+ # An optional set of non-secret key–value pairs that contains
5881
+ # additional contextual information about the data. For more
5882
+ # information, see [Encryption context][1] in the *Amazon Web Services
5883
+ # Key Management Service Developer Guide*.
5884
+ #
5885
+ # You can only include this parameter if you specify the `KMSKeyId`
5886
+ # parameter.
5887
+ #
5888
+ #
5889
+ #
5890
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context
5891
+ # @return [Hash<String,String>]
5892
+ #
5893
+ # @!attribute [rw] tags
5894
+ # A list of tags. For more information, see [Tagging Amazon RDS
5895
+ # Resources][1] in the *Amazon RDS User Guide.*
5896
+ #
5897
+ #
5898
+ #
5899
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
5900
+ # @return [Array<Types::Tag>]
5901
+ #
5902
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateIntegrationMessage AWS API Documentation
5903
+ #
5904
+ class CreateIntegrationMessage < Struct.new(
5905
+ :source_arn,
5906
+ :target_arn,
5907
+ :integration_name,
5908
+ :kms_key_id,
5909
+ :additional_encryption_context,
5910
+ :tags)
5911
+ SENSITIVE = []
5912
+ include Aws::Structure
5913
+ end
5914
+
5858
5915
  # @!attribute [rw] option_group_name
5859
5916
  # Specifies the name of the option group to be created.
5860
5917
  #
@@ -7749,6 +7806,11 @@ module Aws::RDS
7749
7806
  # Valid for: Aurora DB clusters only
7750
7807
  # @return [Boolean]
7751
7808
  #
7809
+ # @!attribute [rw] supports_integrations
7810
+ # Indicates whether the DB engine version supports Aurora zero-ETL
7811
+ # integrations with Amazon Redshift.
7812
+ # @return [Boolean]
7813
+ #
7752
7814
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBEngineVersion AWS API Documentation
7753
7815
  #
7754
7816
  class DBEngineVersion < Struct.new(
@@ -7783,7 +7845,8 @@ module Aws::RDS
7783
7845
  :custom_db_engine_version_manifest,
7784
7846
  :supports_certificate_rotation_without_restart,
7785
7847
  :supported_ca_certificate_identifiers,
7786
- :supports_local_write_forwarding)
7848
+ :supports_local_write_forwarding,
7849
+ :supports_integrations)
7787
7850
  SENSITIVE = []
7788
7851
  include Aws::Structure
7789
7852
  end
@@ -10585,6 +10648,18 @@ module Aws::RDS
10585
10648
  include Aws::Structure
10586
10649
  end
10587
10650
 
10651
+ # @!attribute [rw] integration_identifier
10652
+ # The unique identifier of the integration.
10653
+ # @return [String]
10654
+ #
10655
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteIntegrationMessage AWS API Documentation
10656
+ #
10657
+ class DeleteIntegrationMessage < Struct.new(
10658
+ :integration_identifier)
10659
+ SENSITIVE = []
10660
+ include Aws::Structure
10661
+ end
10662
+
10588
10663
  # @!attribute [rw] option_group_name
10589
10664
  # The name of the option group to be deleted.
10590
10665
  #
@@ -12796,6 +12871,61 @@ module Aws::RDS
12796
12871
  include Aws::Structure
12797
12872
  end
12798
12873
 
12874
+ # @!attribute [rw] integration_identifier
12875
+ # The unique identifier of the integration.
12876
+ # @return [String]
12877
+ #
12878
+ # @!attribute [rw] filters
12879
+ # A filter that specifies one or more resources to return.
12880
+ # @return [Array<Types::Filter>]
12881
+ #
12882
+ # @!attribute [rw] max_records
12883
+ # The maximum number of records to include in the response. If more
12884
+ # records exist than the specified `MaxRecords` value, a pagination
12885
+ # token called a marker is included in the response so that you can
12886
+ # retrieve the remaining results.
12887
+ #
12888
+ # Default: 100
12889
+ #
12890
+ # Constraints: Minimum 20, maximum 100.
12891
+ # @return [Integer]
12892
+ #
12893
+ # @!attribute [rw] marker
12894
+ # An optional pagination token provided by a previous
12895
+ # `DescribeIntegrations` request. If this parameter is specified, the
12896
+ # response includes only records beyond the marker, up to the value
12897
+ # specified by `MaxRecords`.
12898
+ # @return [String]
12899
+ #
12900
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeIntegrationsMessage AWS API Documentation
12901
+ #
12902
+ class DescribeIntegrationsMessage < Struct.new(
12903
+ :integration_identifier,
12904
+ :filters,
12905
+ :max_records,
12906
+ :marker)
12907
+ SENSITIVE = []
12908
+ include Aws::Structure
12909
+ end
12910
+
12911
+ # @!attribute [rw] marker
12912
+ # A pagination token that can be used in a later
12913
+ # `DescribeIntegrations` request.
12914
+ # @return [String]
12915
+ #
12916
+ # @!attribute [rw] integrations
12917
+ # A list of integrations.
12918
+ # @return [Array<Types::Integration>]
12919
+ #
12920
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeIntegrationsResponse AWS API Documentation
12921
+ #
12922
+ class DescribeIntegrationsResponse < Struct.new(
12923
+ :marker,
12924
+ :integrations)
12925
+ SENSITIVE = []
12926
+ include Aws::Structure
12927
+ end
12928
+
12799
12929
  # @!attribute [rw] engine_name
12800
12930
  # A required parameter. Options available for the given engine name
12801
12931
  # are described.
@@ -14433,6 +14563,133 @@ module Aws::RDS
14433
14563
  #
14434
14564
  class InsufficientStorageClusterCapacityFault < Aws::EmptyStructure; end
14435
14565
 
14566
+ # An Aurora zero-ETL integration with Amazon Redshift. For more
14567
+ # information, see [Working with Amazon Aurora zero-ETL integrations
14568
+ # with Amazon Redshift][1] in the *Amazon Aurora User Guide*.
14569
+ #
14570
+ #
14571
+ #
14572
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/zero-etl.html
14573
+ #
14574
+ # @!attribute [rw] source_arn
14575
+ # The Amazon Resource Name (ARN) of the Aurora DB cluster used as the
14576
+ # source for replication.
14577
+ # @return [String]
14578
+ #
14579
+ # @!attribute [rw] target_arn
14580
+ # The ARN of the Redshift data warehouse used as the target for
14581
+ # replication.
14582
+ # @return [String]
14583
+ #
14584
+ # @!attribute [rw] integration_name
14585
+ # The name of the integration.
14586
+ # @return [String]
14587
+ #
14588
+ # @!attribute [rw] integration_arn
14589
+ # The ARN of the integration.
14590
+ # @return [String]
14591
+ #
14592
+ # @!attribute [rw] kms_key_id
14593
+ # The Amazon Web Services Key Management System (Amazon Web Services
14594
+ # KMS) key identifier for the key used to to encrypt the integration.
14595
+ # @return [String]
14596
+ #
14597
+ # @!attribute [rw] additional_encryption_context
14598
+ # The encryption context for the integration. For more information,
14599
+ # see [Encryption context][1] in the *Amazon Web Services Key
14600
+ # Management Service Developer Guide*.
14601
+ #
14602
+ #
14603
+ #
14604
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context
14605
+ # @return [Hash<String,String>]
14606
+ #
14607
+ # @!attribute [rw] status
14608
+ # The current status of the integration.
14609
+ # @return [String]
14610
+ #
14611
+ # @!attribute [rw] tags
14612
+ # A list of tags. For more information, see [Tagging Amazon RDS
14613
+ # Resources][1] in the *Amazon RDS User Guide.*
14614
+ #
14615
+ #
14616
+ #
14617
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
14618
+ # @return [Array<Types::Tag>]
14619
+ #
14620
+ # @!attribute [rw] create_time
14621
+ # The time when the integration was created, in Universal Coordinated
14622
+ # Time (UTC).
14623
+ # @return [Time]
14624
+ #
14625
+ # @!attribute [rw] errors
14626
+ # Any errors associated with the integration.
14627
+ # @return [Array<Types::IntegrationError>]
14628
+ #
14629
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/Integration AWS API Documentation
14630
+ #
14631
+ class Integration < Struct.new(
14632
+ :source_arn,
14633
+ :target_arn,
14634
+ :integration_name,
14635
+ :integration_arn,
14636
+ :kms_key_id,
14637
+ :additional_encryption_context,
14638
+ :status,
14639
+ :tags,
14640
+ :create_time,
14641
+ :errors)
14642
+ SENSITIVE = []
14643
+ include Aws::Structure
14644
+ end
14645
+
14646
+ # The integration you are trying to create already exists.
14647
+ #
14648
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/IntegrationAlreadyExistsFault AWS API Documentation
14649
+ #
14650
+ class IntegrationAlreadyExistsFault < Aws::EmptyStructure; end
14651
+
14652
+ # A conflicting conditional operation is currently in progress against
14653
+ # this resource. Typically occurs when there are multiple requests being
14654
+ # made to the same resource at the same time, and these requests
14655
+ # conflict with each other.
14656
+ #
14657
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/IntegrationConflictOperationFault AWS API Documentation
14658
+ #
14659
+ class IntegrationConflictOperationFault < Aws::EmptyStructure; end
14660
+
14661
+ # An error associated with a zero-ETL integration with Amazon Redshift.
14662
+ #
14663
+ # @!attribute [rw] error_code
14664
+ # The error code associated with the integration.
14665
+ # @return [String]
14666
+ #
14667
+ # @!attribute [rw] error_message
14668
+ # A message explaining the error.
14669
+ # @return [String]
14670
+ #
14671
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/IntegrationError AWS API Documentation
14672
+ #
14673
+ class IntegrationError < Struct.new(
14674
+ :error_code,
14675
+ :error_message)
14676
+ SENSITIVE = []
14677
+ include Aws::Structure
14678
+ end
14679
+
14680
+ # The specified integration could not be found.
14681
+ #
14682
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/IntegrationNotFoundFault AWS API Documentation
14683
+ #
14684
+ class IntegrationNotFoundFault < Aws::EmptyStructure; end
14685
+
14686
+ # You can't crate any more zero-ETL integrations because the quota has
14687
+ # been reached.
14688
+ #
14689
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/IntegrationQuotaExceededFault AWS API Documentation
14690
+ #
14691
+ class IntegrationQuotaExceededFault < Aws::EmptyStructure; end
14692
+
14436
14693
  # The blue/green deployment can't be switched over or deleted because
14437
14694
  # there is an invalid configuration in the green environment.
14438
14695
  #
@@ -14579,6 +14836,13 @@ module Aws::RDS
14579
14836
  #
14580
14837
  class InvalidGlobalClusterStateFault < Aws::EmptyStructure; end
14581
14838
 
14839
+ # The integration is in an invalid state and can't perform the
14840
+ # requested operation.
14841
+ #
14842
+ # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/InvalidIntegrationStateFault AWS API Documentation
14843
+ #
14844
+ class InvalidIntegrationStateFault < Aws::EmptyStructure; end
14845
+
14582
14846
  # The option group isn't in the *available* state.
14583
14847
  #
14584
14848
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/InvalidOptionGroupStateFault AWS API Documentation
@@ -24434,6 +24698,11 @@ module Aws::RDS
24434
24698
  # Valid for: Aurora DB clusters only
24435
24699
  # @return [Boolean]
24436
24700
  #
24701
+ # @!attribute [rw] supports_integrations
24702
+ # Indicates whether the DB engine version supports Aurora zero-ETL
24703
+ # integrations with Amazon Redshift.
24704
+ # @return [Boolean]
24705
+ #
24437
24706
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/UpgradeTarget AWS API Documentation
24438
24707
  #
24439
24708
  class UpgradeTarget < Struct.new(
@@ -24446,7 +24715,8 @@ module Aws::RDS
24446
24715
  :supports_parallel_query,
24447
24716
  :supports_global_databases,
24448
24717
  :supports_babelfish,
24449
- :supports_local_write_forwarding)
24718
+ :supports_local_write_forwarding,
24719
+ :supports_integrations)
24450
24720
  SENSITIVE = []
24451
24721
  include Aws::Structure
24452
24722
  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.198.0'
81
+ GEM_VERSION = '1.199.0'
82
82
 
83
83
  end
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.198.0
4
+ version: 1.199.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: 2023-10-18 00:00:00.000000000 Z
11
+ date: 2023-10-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4