aws-sdk-rds 1.198.0 → 1.200.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +323 -1
- data/lib/aws-sdk-rds/client_api.rb +130 -0
- data/lib/aws-sdk-rds/db_cluster.rb +18 -0
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +6 -0
- data/lib/aws-sdk-rds/db_engine_version.rb +7 -0
- data/lib/aws-sdk-rds/endpoints.rb +42 -0
- data/lib/aws-sdk-rds/errors.rb +55 -0
- data/lib/aws-sdk-rds/plugins/endpoints.rb +6 -0
- data/lib/aws-sdk-rds/resource.rb +6 -0
- data/lib/aws-sdk-rds/types.rb +318 -4
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6bfa524890058e05c95db59a45d73303186f1f7a1a660bc412d450a6c37bc066
|
4
|
+
data.tar.gz: 68ef0778c04e750664fa6811a7fe857c60482c07d9bf3bdaa77e01f038fa6c91
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 607858b8b4c57eba162ebe75e1b405574aaf8efb50c1ee48d2c7c980c8a8b96c766d97137cc93a7ea89365ac0988a7c1a892380bc7259326a8f9524ddfc8335d
|
7
|
+
data.tar.gz: d2cffdf2ab606779837ffc57067e7ccf591cf67e17511decb181dd89a3400e78119dc0ab17effa1a1d1992a419be8b1ce2f9195b401e61b32c4b59d45a998739
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.200.0 (2023-11-01)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for customized networking resources to Amazon RDS Custom.
|
8
|
+
|
9
|
+
1.199.0 (2023-10-30)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release launches the CreateIntegration, DeleteIntegration, and DescribeIntegrations APIs to manage zero-ETL Integrations.
|
13
|
+
|
4
14
|
1.198.0 (2023-10-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.200.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -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
|
#
|
@@ -2905,6 +2908,9 @@ module Aws::RDS
|
|
2905
2908
|
#
|
2906
2909
|
# Valid for Cluster Type: Aurora DB clusters only
|
2907
2910
|
#
|
2911
|
+
# @option params [Types::RdsCustomClusterConfiguration] :rds_custom_cluster_configuration
|
2912
|
+
# Reserved for future use.
|
2913
|
+
#
|
2908
2914
|
# @option params [Boolean] :deletion_protection
|
2909
2915
|
# Specifies whether the DB cluster has deletion protection enabled. The
|
2910
2916
|
# database can't be deleted when deletion protection is enabled. By
|
@@ -3449,6 +3455,10 @@ module Aws::RDS
|
|
3449
3455
|
# timeout_action: "String",
|
3450
3456
|
# seconds_before_timeout: 1,
|
3451
3457
|
# },
|
3458
|
+
# rds_custom_cluster_configuration: {
|
3459
|
+
# interconnect_subnet_id: "String",
|
3460
|
+
# transit_gateway_multicast_domain_id: "String",
|
3461
|
+
# },
|
3452
3462
|
# deletion_protection: false,
|
3453
3463
|
# global_cluster_identifier: "String",
|
3454
3464
|
# enable_http_endpoint: false,
|
@@ -3545,6 +3555,8 @@ module Aws::RDS
|
|
3545
3555
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
3546
3556
|
# resp.db_cluster.scaling_configuration_info.timeout_action #=> String
|
3547
3557
|
# resp.db_cluster.scaling_configuration_info.seconds_before_timeout #=> Integer
|
3558
|
+
# resp.db_cluster.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
|
3559
|
+
# resp.db_cluster.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
|
3548
3560
|
# resp.db_cluster.deletion_protection #=> Boolean
|
3549
3561
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
3550
3562
|
# resp.db_cluster.activity_stream_mode #=> String, one of "sync", "async"
|
@@ -3577,6 +3589,8 @@ module Aws::RDS
|
|
3577
3589
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
3578
3590
|
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
3579
3591
|
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
3592
|
+
# resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
|
3593
|
+
# resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
|
3580
3594
|
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
3581
3595
|
# resp.db_cluster.pending_modified_values.storage_type #=> String
|
3582
3596
|
# resp.db_cluster.db_cluster_instance_class #=> String
|
@@ -7585,6 +7599,110 @@ module Aws::RDS
|
|
7585
7599
|
req.send_request(options)
|
7586
7600
|
end
|
7587
7601
|
|
7602
|
+
# Creates a zero-ETL integration with Amazon Redshift. For more
|
7603
|
+
# information, see [Working with Amazon Aurora zero-ETL integrations
|
7604
|
+
# with Amazon Redshift][1] in the *Amazon Aurora User Guide*.
|
7605
|
+
#
|
7606
|
+
#
|
7607
|
+
#
|
7608
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/zero-etl.html
|
7609
|
+
#
|
7610
|
+
# @option params [required, String] :source_arn
|
7611
|
+
# The Amazon Resource Name (ARN) of the Aurora DB cluster to use as the
|
7612
|
+
# source for replication.
|
7613
|
+
#
|
7614
|
+
# @option params [required, String] :target_arn
|
7615
|
+
# The ARN of the Redshift data warehouse to use as the target for
|
7616
|
+
# replication.
|
7617
|
+
#
|
7618
|
+
# @option params [required, String] :integration_name
|
7619
|
+
# The name of the integration.
|
7620
|
+
#
|
7621
|
+
# @option params [String] :kms_key_id
|
7622
|
+
# The Amazon Web Services Key Management System (Amazon Web Services
|
7623
|
+
# KMS) key identifier for the key to use to encrypt the integration. If
|
7624
|
+
# you don't specify an encryption key, Aurora uses a default Amazon Web
|
7625
|
+
# Services owned key.
|
7626
|
+
#
|
7627
|
+
# @option params [Hash<String,String>] :additional_encryption_context
|
7628
|
+
# An optional set of non-secret key–value pairs that contains additional
|
7629
|
+
# contextual information about the data. For more information, see
|
7630
|
+
# [Encryption context][1] in the *Amazon Web Services Key Management
|
7631
|
+
# Service Developer Guide*.
|
7632
|
+
#
|
7633
|
+
# You can only include this parameter if you specify the `KMSKeyId`
|
7634
|
+
# parameter.
|
7635
|
+
#
|
7636
|
+
#
|
7637
|
+
#
|
7638
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context
|
7639
|
+
#
|
7640
|
+
# @option params [Array<Types::Tag>] :tags
|
7641
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
7642
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
7643
|
+
#
|
7644
|
+
#
|
7645
|
+
#
|
7646
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
7647
|
+
#
|
7648
|
+
# @return [Types::Integration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7649
|
+
#
|
7650
|
+
# * {Types::Integration#source_arn #source_arn} => String
|
7651
|
+
# * {Types::Integration#target_arn #target_arn} => String
|
7652
|
+
# * {Types::Integration#integration_name #integration_name} => String
|
7653
|
+
# * {Types::Integration#integration_arn #integration_arn} => String
|
7654
|
+
# * {Types::Integration#kms_key_id #kms_key_id} => String
|
7655
|
+
# * {Types::Integration#additional_encryption_context #additional_encryption_context} => Hash<String,String>
|
7656
|
+
# * {Types::Integration#status #status} => String
|
7657
|
+
# * {Types::Integration#tags #tags} => Array<Types::Tag>
|
7658
|
+
# * {Types::Integration#create_time #create_time} => Time
|
7659
|
+
# * {Types::Integration#errors #errors} => Array<Types::IntegrationError>
|
7660
|
+
#
|
7661
|
+
# @example Request syntax with placeholder values
|
7662
|
+
#
|
7663
|
+
# resp = client.create_integration({
|
7664
|
+
# source_arn: "SourceArn", # required
|
7665
|
+
# target_arn: "Arn", # required
|
7666
|
+
# integration_name: "IntegrationName", # required
|
7667
|
+
# kms_key_id: "String",
|
7668
|
+
# additional_encryption_context: {
|
7669
|
+
# "String" => "String",
|
7670
|
+
# },
|
7671
|
+
# tags: [
|
7672
|
+
# {
|
7673
|
+
# key: "String",
|
7674
|
+
# value: "String",
|
7675
|
+
# },
|
7676
|
+
# ],
|
7677
|
+
# })
|
7678
|
+
#
|
7679
|
+
# @example Response structure
|
7680
|
+
#
|
7681
|
+
# resp.source_arn #=> String
|
7682
|
+
# resp.target_arn #=> String
|
7683
|
+
# resp.integration_name #=> String
|
7684
|
+
# resp.integration_arn #=> String
|
7685
|
+
# resp.kms_key_id #=> String
|
7686
|
+
# resp.additional_encryption_context #=> Hash
|
7687
|
+
# resp.additional_encryption_context["String"] #=> String
|
7688
|
+
# resp.status #=> String, one of "creating", "active", "modifying", "failed", "deleting", "syncing", "needs_attention"
|
7689
|
+
# resp.tags #=> Array
|
7690
|
+
# resp.tags[0].key #=> String
|
7691
|
+
# resp.tags[0].value #=> String
|
7692
|
+
# resp.create_time #=> Time
|
7693
|
+
# resp.errors #=> Array
|
7694
|
+
# resp.errors[0].error_code #=> String
|
7695
|
+
# resp.errors[0].error_message #=> String
|
7696
|
+
#
|
7697
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateIntegration AWS API Documentation
|
7698
|
+
#
|
7699
|
+
# @overload create_integration(params = {})
|
7700
|
+
# @param [Hash] params ({})
|
7701
|
+
def create_integration(params = {}, options = {})
|
7702
|
+
req = build_request(:create_integration, params)
|
7703
|
+
req.send_request(options)
|
7704
|
+
end
|
7705
|
+
|
7588
7706
|
# Creates a new option group. You can create up to 20 option groups.
|
7589
7707
|
#
|
7590
7708
|
# This command doesn't apply to RDS Custom.
|
@@ -8010,6 +8128,7 @@ module Aws::RDS
|
|
8010
8128
|
# * {Types::DBEngineVersion#supports_certificate_rotation_without_restart #supports_certificate_rotation_without_restart} => Boolean
|
8011
8129
|
# * {Types::DBEngineVersion#supported_ca_certificate_identifiers #supported_ca_certificate_identifiers} => Array<String>
|
8012
8130
|
# * {Types::DBEngineVersion#supports_local_write_forwarding #supports_local_write_forwarding} => Boolean
|
8131
|
+
# * {Types::DBEngineVersion#supports_integrations #supports_integrations} => Boolean
|
8013
8132
|
#
|
8014
8133
|
# @example Request syntax with placeholder values
|
8015
8134
|
#
|
@@ -8048,6 +8167,7 @@ module Aws::RDS
|
|
8048
8167
|
# resp.valid_upgrade_target[0].supports_global_databases #=> Boolean
|
8049
8168
|
# resp.valid_upgrade_target[0].supports_babelfish #=> Boolean
|
8050
8169
|
# resp.valid_upgrade_target[0].supports_local_write_forwarding #=> Boolean
|
8170
|
+
# resp.valid_upgrade_target[0].supports_integrations #=> Boolean
|
8051
8171
|
# resp.supported_timezones #=> Array
|
8052
8172
|
# resp.supported_timezones[0].timezone_name #=> String
|
8053
8173
|
# resp.exportable_log_types #=> Array
|
@@ -8076,6 +8196,7 @@ module Aws::RDS
|
|
8076
8196
|
# resp.supported_ca_certificate_identifiers #=> Array
|
8077
8197
|
# resp.supported_ca_certificate_identifiers[0] #=> String
|
8078
8198
|
# resp.supports_local_write_forwarding #=> Boolean
|
8199
|
+
# resp.supports_integrations #=> Boolean
|
8079
8200
|
#
|
8080
8201
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteCustomDBEngineVersion AWS API Documentation
|
8081
8202
|
#
|
@@ -8261,6 +8382,8 @@ module Aws::RDS
|
|
8261
8382
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
8262
8383
|
# resp.db_cluster.scaling_configuration_info.timeout_action #=> String
|
8263
8384
|
# resp.db_cluster.scaling_configuration_info.seconds_before_timeout #=> Integer
|
8385
|
+
# resp.db_cluster.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
|
8386
|
+
# resp.db_cluster.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
|
8264
8387
|
# resp.db_cluster.deletion_protection #=> Boolean
|
8265
8388
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
8266
8389
|
# resp.db_cluster.activity_stream_mode #=> String, one of "sync", "async"
|
@@ -8293,6 +8416,8 @@ module Aws::RDS
|
|
8293
8416
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
8294
8417
|
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
8295
8418
|
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
8419
|
+
# resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
|
8420
|
+
# resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
|
8296
8421
|
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
8297
8422
|
# resp.db_cluster.pending_modified_values.storage_type #=> String
|
8298
8423
|
# resp.db_cluster.db_cluster_instance_class #=> String
|
@@ -9533,6 +9658,63 @@ module Aws::RDS
|
|
9533
9658
|
req.send_request(options)
|
9534
9659
|
end
|
9535
9660
|
|
9661
|
+
# Deletes a zero-ETL integration with Amazon Redshift. For more
|
9662
|
+
# information, see [Deleting Amazon Aurora zero-ETL integrations with
|
9663
|
+
# Amazon Redshift][1] in the *Amazon Aurora User Guide*
|
9664
|
+
#
|
9665
|
+
#
|
9666
|
+
#
|
9667
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/zero-etl.deleting.html
|
9668
|
+
#
|
9669
|
+
# @option params [required, String] :integration_identifier
|
9670
|
+
# The unique identifier of the integration.
|
9671
|
+
#
|
9672
|
+
# @return [Types::Integration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9673
|
+
#
|
9674
|
+
# * {Types::Integration#source_arn #source_arn} => String
|
9675
|
+
# * {Types::Integration#target_arn #target_arn} => String
|
9676
|
+
# * {Types::Integration#integration_name #integration_name} => String
|
9677
|
+
# * {Types::Integration#integration_arn #integration_arn} => String
|
9678
|
+
# * {Types::Integration#kms_key_id #kms_key_id} => String
|
9679
|
+
# * {Types::Integration#additional_encryption_context #additional_encryption_context} => Hash<String,String>
|
9680
|
+
# * {Types::Integration#status #status} => String
|
9681
|
+
# * {Types::Integration#tags #tags} => Array<Types::Tag>
|
9682
|
+
# * {Types::Integration#create_time #create_time} => Time
|
9683
|
+
# * {Types::Integration#errors #errors} => Array<Types::IntegrationError>
|
9684
|
+
#
|
9685
|
+
# @example Request syntax with placeholder values
|
9686
|
+
#
|
9687
|
+
# resp = client.delete_integration({
|
9688
|
+
# integration_identifier: "IntegrationIdentifier", # required
|
9689
|
+
# })
|
9690
|
+
#
|
9691
|
+
# @example Response structure
|
9692
|
+
#
|
9693
|
+
# resp.source_arn #=> String
|
9694
|
+
# resp.target_arn #=> String
|
9695
|
+
# resp.integration_name #=> String
|
9696
|
+
# resp.integration_arn #=> String
|
9697
|
+
# resp.kms_key_id #=> String
|
9698
|
+
# resp.additional_encryption_context #=> Hash
|
9699
|
+
# resp.additional_encryption_context["String"] #=> String
|
9700
|
+
# resp.status #=> String, one of "creating", "active", "modifying", "failed", "deleting", "syncing", "needs_attention"
|
9701
|
+
# resp.tags #=> Array
|
9702
|
+
# resp.tags[0].key #=> String
|
9703
|
+
# resp.tags[0].value #=> String
|
9704
|
+
# resp.create_time #=> Time
|
9705
|
+
# resp.errors #=> Array
|
9706
|
+
# resp.errors[0].error_code #=> String
|
9707
|
+
# resp.errors[0].error_message #=> String
|
9708
|
+
#
|
9709
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteIntegration AWS API Documentation
|
9710
|
+
#
|
9711
|
+
# @overload delete_integration(params = {})
|
9712
|
+
# @param [Hash] params ({})
|
9713
|
+
def delete_integration(params = {}, options = {})
|
9714
|
+
req = build_request(:delete_integration, params)
|
9715
|
+
req.send_request(options)
|
9716
|
+
end
|
9717
|
+
|
9536
9718
|
# Deletes an existing option group.
|
9537
9719
|
#
|
9538
9720
|
# @option params [required, String] :option_group_name
|
@@ -11471,6 +11653,8 @@ module Aws::RDS
|
|
11471
11653
|
# resp.db_clusters[0].scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
11472
11654
|
# resp.db_clusters[0].scaling_configuration_info.timeout_action #=> String
|
11473
11655
|
# resp.db_clusters[0].scaling_configuration_info.seconds_before_timeout #=> Integer
|
11656
|
+
# resp.db_clusters[0].rds_custom_cluster_configuration.interconnect_subnet_id #=> String
|
11657
|
+
# resp.db_clusters[0].rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
|
11474
11658
|
# resp.db_clusters[0].deletion_protection #=> Boolean
|
11475
11659
|
# resp.db_clusters[0].http_endpoint_enabled #=> Boolean
|
11476
11660
|
# resp.db_clusters[0].activity_stream_mode #=> String, one of "sync", "async"
|
@@ -11503,6 +11687,8 @@ module Aws::RDS
|
|
11503
11687
|
# resp.db_clusters[0].pending_modified_values.engine_version #=> String
|
11504
11688
|
# resp.db_clusters[0].pending_modified_values.backup_retention_period #=> Integer
|
11505
11689
|
# resp.db_clusters[0].pending_modified_values.allocated_storage #=> Integer
|
11690
|
+
# resp.db_clusters[0].pending_modified_values.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
|
11691
|
+
# resp.db_clusters[0].pending_modified_values.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
|
11506
11692
|
# resp.db_clusters[0].pending_modified_values.iops #=> Integer
|
11507
11693
|
# resp.db_clusters[0].pending_modified_values.storage_type #=> String
|
11508
11694
|
# resp.db_clusters[0].db_cluster_instance_class #=> String
|
@@ -11771,6 +11957,7 @@ module Aws::RDS
|
|
11771
11957
|
# resp.db_engine_versions[0].valid_upgrade_target[0].supports_global_databases #=> Boolean
|
11772
11958
|
# resp.db_engine_versions[0].valid_upgrade_target[0].supports_babelfish #=> Boolean
|
11773
11959
|
# resp.db_engine_versions[0].valid_upgrade_target[0].supports_local_write_forwarding #=> Boolean
|
11960
|
+
# resp.db_engine_versions[0].valid_upgrade_target[0].supports_integrations #=> Boolean
|
11774
11961
|
# resp.db_engine_versions[0].supported_timezones #=> Array
|
11775
11962
|
# resp.db_engine_versions[0].supported_timezones[0].timezone_name #=> String
|
11776
11963
|
# resp.db_engine_versions[0].exportable_log_types #=> Array
|
@@ -11799,6 +11986,7 @@ module Aws::RDS
|
|
11799
11986
|
# resp.db_engine_versions[0].supported_ca_certificate_identifiers #=> Array
|
11800
11987
|
# resp.db_engine_versions[0].supported_ca_certificate_identifiers[0] #=> String
|
11801
11988
|
# resp.db_engine_versions[0].supports_local_write_forwarding #=> Boolean
|
11989
|
+
# resp.db_engine_versions[0].supports_integrations #=> Boolean
|
11802
11990
|
#
|
11803
11991
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBEngineVersions AWS API Documentation
|
11804
11992
|
#
|
@@ -14481,6 +14669,87 @@ module Aws::RDS
|
|
14481
14669
|
req.send_request(options)
|
14482
14670
|
end
|
14483
14671
|
|
14672
|
+
# Describe one or more zero-ETL integration with Amazon Redshift. For
|
14673
|
+
# more information, see [Viewing and monitoring Amazon Aurora zero-ETL
|
14674
|
+
# integrations with Amazon Redshift][1] in the *Amazon Aurora User
|
14675
|
+
# Guide*
|
14676
|
+
#
|
14677
|
+
#
|
14678
|
+
#
|
14679
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/zero-etl.describingmonitoring.html
|
14680
|
+
#
|
14681
|
+
# @option params [String] :integration_identifier
|
14682
|
+
# The unique identifier of the integration.
|
14683
|
+
#
|
14684
|
+
# @option params [Array<Types::Filter>] :filters
|
14685
|
+
# A filter that specifies one or more resources to return.
|
14686
|
+
#
|
14687
|
+
# @option params [Integer] :max_records
|
14688
|
+
# The maximum number of records to include in the response. If more
|
14689
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
14690
|
+
# token called a marker is included in the response so that you can
|
14691
|
+
# retrieve the remaining results.
|
14692
|
+
#
|
14693
|
+
# Default: 100
|
14694
|
+
#
|
14695
|
+
# Constraints: Minimum 20, maximum 100.
|
14696
|
+
#
|
14697
|
+
# @option params [String] :marker
|
14698
|
+
# An optional pagination token provided by a previous
|
14699
|
+
# `DescribeIntegrations` request. If this parameter is specified, the
|
14700
|
+
# response includes only records beyond the marker, up to the value
|
14701
|
+
# specified by `MaxRecords`.
|
14702
|
+
#
|
14703
|
+
# @return [Types::DescribeIntegrationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
14704
|
+
#
|
14705
|
+
# * {Types::DescribeIntegrationsResponse#marker #marker} => String
|
14706
|
+
# * {Types::DescribeIntegrationsResponse#integrations #integrations} => Array<Types::Integration>
|
14707
|
+
#
|
14708
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
14709
|
+
#
|
14710
|
+
# @example Request syntax with placeholder values
|
14711
|
+
#
|
14712
|
+
# resp = client.describe_integrations({
|
14713
|
+
# integration_identifier: "IntegrationIdentifier",
|
14714
|
+
# filters: [
|
14715
|
+
# {
|
14716
|
+
# name: "String", # required
|
14717
|
+
# values: ["String"], # required
|
14718
|
+
# },
|
14719
|
+
# ],
|
14720
|
+
# max_records: 1,
|
14721
|
+
# marker: "Marker",
|
14722
|
+
# })
|
14723
|
+
#
|
14724
|
+
# @example Response structure
|
14725
|
+
#
|
14726
|
+
# resp.marker #=> String
|
14727
|
+
# resp.integrations #=> Array
|
14728
|
+
# resp.integrations[0].source_arn #=> String
|
14729
|
+
# resp.integrations[0].target_arn #=> String
|
14730
|
+
# resp.integrations[0].integration_name #=> String
|
14731
|
+
# resp.integrations[0].integration_arn #=> String
|
14732
|
+
# resp.integrations[0].kms_key_id #=> String
|
14733
|
+
# resp.integrations[0].additional_encryption_context #=> Hash
|
14734
|
+
# resp.integrations[0].additional_encryption_context["String"] #=> String
|
14735
|
+
# resp.integrations[0].status #=> String, one of "creating", "active", "modifying", "failed", "deleting", "syncing", "needs_attention"
|
14736
|
+
# resp.integrations[0].tags #=> Array
|
14737
|
+
# resp.integrations[0].tags[0].key #=> String
|
14738
|
+
# resp.integrations[0].tags[0].value #=> String
|
14739
|
+
# resp.integrations[0].create_time #=> Time
|
14740
|
+
# resp.integrations[0].errors #=> Array
|
14741
|
+
# resp.integrations[0].errors[0].error_code #=> String
|
14742
|
+
# resp.integrations[0].errors[0].error_message #=> String
|
14743
|
+
#
|
14744
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeIntegrations AWS API Documentation
|
14745
|
+
#
|
14746
|
+
# @overload describe_integrations(params = {})
|
14747
|
+
# @param [Hash] params ({})
|
14748
|
+
def describe_integrations(params = {}, options = {})
|
14749
|
+
req = build_request(:describe_integrations, params)
|
14750
|
+
req.send_request(options)
|
14751
|
+
end
|
14752
|
+
|
14484
14753
|
# Describes all available options.
|
14485
14754
|
#
|
14486
14755
|
# @option params [required, String] :engine_name
|
@@ -15979,6 +16248,8 @@ module Aws::RDS
|
|
15979
16248
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
15980
16249
|
# resp.db_cluster.scaling_configuration_info.timeout_action #=> String
|
15981
16250
|
# resp.db_cluster.scaling_configuration_info.seconds_before_timeout #=> Integer
|
16251
|
+
# resp.db_cluster.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
|
16252
|
+
# resp.db_cluster.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
|
15982
16253
|
# resp.db_cluster.deletion_protection #=> Boolean
|
15983
16254
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
15984
16255
|
# resp.db_cluster.activity_stream_mode #=> String, one of "sync", "async"
|
@@ -16011,6 +16282,8 @@ module Aws::RDS
|
|
16011
16282
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
16012
16283
|
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
16013
16284
|
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
16285
|
+
# resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
|
16286
|
+
# resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
|
16014
16287
|
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
16015
16288
|
# resp.db_cluster.pending_modified_values.storage_type #=> String
|
16016
16289
|
# resp.db_cluster.db_cluster_instance_class #=> String
|
@@ -16633,6 +16906,7 @@ module Aws::RDS
|
|
16633
16906
|
# * {Types::DBEngineVersion#supports_certificate_rotation_without_restart #supports_certificate_rotation_without_restart} => Boolean
|
16634
16907
|
# * {Types::DBEngineVersion#supported_ca_certificate_identifiers #supported_ca_certificate_identifiers} => Array<String>
|
16635
16908
|
# * {Types::DBEngineVersion#supports_local_write_forwarding #supports_local_write_forwarding} => Boolean
|
16909
|
+
# * {Types::DBEngineVersion#supports_integrations #supports_integrations} => Boolean
|
16636
16910
|
#
|
16637
16911
|
# @example Request syntax with placeholder values
|
16638
16912
|
#
|
@@ -16673,6 +16947,7 @@ module Aws::RDS
|
|
16673
16947
|
# resp.valid_upgrade_target[0].supports_global_databases #=> Boolean
|
16674
16948
|
# resp.valid_upgrade_target[0].supports_babelfish #=> Boolean
|
16675
16949
|
# resp.valid_upgrade_target[0].supports_local_write_forwarding #=> Boolean
|
16950
|
+
# resp.valid_upgrade_target[0].supports_integrations #=> Boolean
|
16676
16951
|
# resp.supported_timezones #=> Array
|
16677
16952
|
# resp.supported_timezones[0].timezone_name #=> String
|
16678
16953
|
# resp.exportable_log_types #=> Array
|
@@ -16701,6 +16976,7 @@ module Aws::RDS
|
|
16701
16976
|
# resp.supported_ca_certificate_identifiers #=> Array
|
16702
16977
|
# resp.supported_ca_certificate_identifiers[0] #=> String
|
16703
16978
|
# resp.supports_local_write_forwarding #=> Boolean
|
16979
|
+
# resp.supports_integrations #=> Boolean
|
16704
16980
|
#
|
16705
16981
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyCustomDBEngineVersion AWS API Documentation
|
16706
16982
|
#
|
@@ -17601,6 +17877,8 @@ module Aws::RDS
|
|
17601
17877
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
17602
17878
|
# resp.db_cluster.scaling_configuration_info.timeout_action #=> String
|
17603
17879
|
# resp.db_cluster.scaling_configuration_info.seconds_before_timeout #=> Integer
|
17880
|
+
# resp.db_cluster.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
|
17881
|
+
# resp.db_cluster.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
|
17604
17882
|
# resp.db_cluster.deletion_protection #=> Boolean
|
17605
17883
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
17606
17884
|
# resp.db_cluster.activity_stream_mode #=> String, one of "sync", "async"
|
@@ -17633,6 +17911,8 @@ module Aws::RDS
|
|
17633
17911
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
17634
17912
|
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
17635
17913
|
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
17914
|
+
# resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
|
17915
|
+
# resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
|
17636
17916
|
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
17637
17917
|
# resp.db_cluster.pending_modified_values.storage_type #=> String
|
17638
17918
|
# resp.db_cluster.db_cluster_instance_class #=> String
|
@@ -20858,6 +21138,8 @@ module Aws::RDS
|
|
20858
21138
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
20859
21139
|
# resp.db_cluster.scaling_configuration_info.timeout_action #=> String
|
20860
21140
|
# resp.db_cluster.scaling_configuration_info.seconds_before_timeout #=> Integer
|
21141
|
+
# resp.db_cluster.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
|
21142
|
+
# resp.db_cluster.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
|
20861
21143
|
# resp.db_cluster.deletion_protection #=> Boolean
|
20862
21144
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
20863
21145
|
# resp.db_cluster.activity_stream_mode #=> String, one of "sync", "async"
|
@@ -20890,6 +21172,8 @@ module Aws::RDS
|
|
20890
21172
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
20891
21173
|
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
20892
21174
|
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
21175
|
+
# resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
|
21176
|
+
# resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
|
20893
21177
|
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
20894
21178
|
# resp.db_cluster.pending_modified_values.storage_type #=> String
|
20895
21179
|
# resp.db_cluster.db_cluster_instance_class #=> String
|
@@ -21135,6 +21419,8 @@ module Aws::RDS
|
|
21135
21419
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
21136
21420
|
# resp.db_cluster.scaling_configuration_info.timeout_action #=> String
|
21137
21421
|
# resp.db_cluster.scaling_configuration_info.seconds_before_timeout #=> Integer
|
21422
|
+
# resp.db_cluster.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
|
21423
|
+
# resp.db_cluster.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
|
21138
21424
|
# resp.db_cluster.deletion_protection #=> Boolean
|
21139
21425
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
21140
21426
|
# resp.db_cluster.activity_stream_mode #=> String, one of "sync", "async"
|
@@ -21167,6 +21453,8 @@ module Aws::RDS
|
|
21167
21453
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
21168
21454
|
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
21169
21455
|
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
21456
|
+
# resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
|
21457
|
+
# resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
|
21170
21458
|
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
21171
21459
|
# resp.db_cluster.pending_modified_values.storage_type #=> String
|
21172
21460
|
# resp.db_cluster.db_cluster_instance_class #=> String
|
@@ -22596,6 +22884,8 @@ module Aws::RDS
|
|
22596
22884
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
22597
22885
|
# resp.db_cluster.scaling_configuration_info.timeout_action #=> String
|
22598
22886
|
# resp.db_cluster.scaling_configuration_info.seconds_before_timeout #=> Integer
|
22887
|
+
# resp.db_cluster.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
|
22888
|
+
# resp.db_cluster.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
|
22599
22889
|
# resp.db_cluster.deletion_protection #=> Boolean
|
22600
22890
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
22601
22891
|
# resp.db_cluster.activity_stream_mode #=> String, one of "sync", "async"
|
@@ -22628,6 +22918,8 @@ module Aws::RDS
|
|
22628
22918
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
22629
22919
|
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
22630
22920
|
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
22921
|
+
# resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
|
22922
|
+
# resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
|
22631
22923
|
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
22632
22924
|
# resp.db_cluster.pending_modified_values.storage_type #=> String
|
22633
22925
|
# resp.db_cluster.db_cluster_instance_class #=> String
|
@@ -23105,6 +23397,9 @@ module Aws::RDS
|
|
23105
23397
|
#
|
23106
23398
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
23107
23399
|
#
|
23400
|
+
# @option params [Types::RdsCustomClusterConfiguration] :rds_custom_cluster_configuration
|
23401
|
+
# Reserved for future use.
|
23402
|
+
#
|
23108
23403
|
# @return [Types::RestoreDBClusterFromSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
23109
23404
|
#
|
23110
23405
|
# * {Types::RestoreDBClusterFromSnapshotResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -23221,6 +23516,10 @@ module Aws::RDS
|
|
23221
23516
|
# max_capacity: 1.0,
|
23222
23517
|
# },
|
23223
23518
|
# network_type: "String",
|
23519
|
+
# rds_custom_cluster_configuration: {
|
23520
|
+
# interconnect_subnet_id: "String",
|
23521
|
+
# transit_gateway_multicast_domain_id: "String",
|
23522
|
+
# },
|
23224
23523
|
# })
|
23225
23524
|
#
|
23226
23525
|
# @example Response structure
|
@@ -23289,6 +23588,8 @@ module Aws::RDS
|
|
23289
23588
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
23290
23589
|
# resp.db_cluster.scaling_configuration_info.timeout_action #=> String
|
23291
23590
|
# resp.db_cluster.scaling_configuration_info.seconds_before_timeout #=> Integer
|
23591
|
+
# resp.db_cluster.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
|
23592
|
+
# resp.db_cluster.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
|
23292
23593
|
# resp.db_cluster.deletion_protection #=> Boolean
|
23293
23594
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
23294
23595
|
# resp.db_cluster.activity_stream_mode #=> String, one of "sync", "async"
|
@@ -23321,6 +23622,8 @@ module Aws::RDS
|
|
23321
23622
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
23322
23623
|
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
23323
23624
|
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
23625
|
+
# resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
|
23626
|
+
# resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
|
23324
23627
|
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
23325
23628
|
# resp.db_cluster.pending_modified_values.storage_type #=> String
|
23326
23629
|
# resp.db_cluster.db_cluster_instance_class #=> String
|
@@ -23774,6 +24077,9 @@ module Aws::RDS
|
|
23774
24077
|
# @option params [String] :source_db_cluster_resource_id
|
23775
24078
|
# The resource ID of the source DB cluster from which to restore.
|
23776
24079
|
#
|
24080
|
+
# @option params [Types::RdsCustomClusterConfiguration] :rds_custom_cluster_configuration
|
24081
|
+
# Reserved for future use.
|
24082
|
+
#
|
23777
24083
|
# @return [Types::RestoreDBClusterToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
23778
24084
|
#
|
23779
24085
|
# * {Types::RestoreDBClusterToPointInTimeResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -23889,6 +24195,10 @@ module Aws::RDS
|
|
23889
24195
|
# },
|
23890
24196
|
# network_type: "String",
|
23891
24197
|
# source_db_cluster_resource_id: "String",
|
24198
|
+
# rds_custom_cluster_configuration: {
|
24199
|
+
# interconnect_subnet_id: "String",
|
24200
|
+
# transit_gateway_multicast_domain_id: "String",
|
24201
|
+
# },
|
23892
24202
|
# })
|
23893
24203
|
#
|
23894
24204
|
# @example Response structure
|
@@ -23957,6 +24267,8 @@ module Aws::RDS
|
|
23957
24267
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
23958
24268
|
# resp.db_cluster.scaling_configuration_info.timeout_action #=> String
|
23959
24269
|
# resp.db_cluster.scaling_configuration_info.seconds_before_timeout #=> Integer
|
24270
|
+
# resp.db_cluster.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
|
24271
|
+
# resp.db_cluster.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
|
23960
24272
|
# resp.db_cluster.deletion_protection #=> Boolean
|
23961
24273
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
23962
24274
|
# resp.db_cluster.activity_stream_mode #=> String, one of "sync", "async"
|
@@ -23989,6 +24301,8 @@ module Aws::RDS
|
|
23989
24301
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
23990
24302
|
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
23991
24303
|
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
24304
|
+
# resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
|
24305
|
+
# resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
|
23992
24306
|
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
23993
24307
|
# resp.db_cluster.pending_modified_values.storage_type #=> String
|
23994
24308
|
# resp.db_cluster.db_cluster_instance_class #=> String
|
@@ -26727,6 +27041,8 @@ module Aws::RDS
|
|
26727
27041
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
26728
27042
|
# resp.db_cluster.scaling_configuration_info.timeout_action #=> String
|
26729
27043
|
# resp.db_cluster.scaling_configuration_info.seconds_before_timeout #=> Integer
|
27044
|
+
# resp.db_cluster.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
|
27045
|
+
# resp.db_cluster.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
|
26730
27046
|
# resp.db_cluster.deletion_protection #=> Boolean
|
26731
27047
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
26732
27048
|
# resp.db_cluster.activity_stream_mode #=> String, one of "sync", "async"
|
@@ -26759,6 +27075,8 @@ module Aws::RDS
|
|
26759
27075
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
26760
27076
|
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
26761
27077
|
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
27078
|
+
# resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
|
27079
|
+
# resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
|
26762
27080
|
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
26763
27081
|
# resp.db_cluster.pending_modified_values.storage_type #=> String
|
26764
27082
|
# resp.db_cluster.db_cluster_instance_class #=> String
|
@@ -27547,6 +27865,8 @@ module Aws::RDS
|
|
27547
27865
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
27548
27866
|
# resp.db_cluster.scaling_configuration_info.timeout_action #=> String
|
27549
27867
|
# resp.db_cluster.scaling_configuration_info.seconds_before_timeout #=> Integer
|
27868
|
+
# resp.db_cluster.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
|
27869
|
+
# resp.db_cluster.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
|
27550
27870
|
# resp.db_cluster.deletion_protection #=> Boolean
|
27551
27871
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
27552
27872
|
# resp.db_cluster.activity_stream_mode #=> String, one of "sync", "async"
|
@@ -27579,6 +27899,8 @@ module Aws::RDS
|
|
27579
27899
|
# resp.db_cluster.pending_modified_values.engine_version #=> String
|
27580
27900
|
# resp.db_cluster.pending_modified_values.backup_retention_period #=> Integer
|
27581
27901
|
# resp.db_cluster.pending_modified_values.allocated_storage #=> Integer
|
27902
|
+
# resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.interconnect_subnet_id #=> String
|
27903
|
+
# resp.db_cluster.pending_modified_values.rds_custom_cluster_configuration.transit_gateway_multicast_domain_id #=> String
|
27582
27904
|
# resp.db_cluster.pending_modified_values.iops #=> Integer
|
27583
27905
|
# resp.db_cluster.pending_modified_values.storage_type #=> String
|
27584
27906
|
# resp.db_cluster.db_cluster_instance_class #=> String
|
@@ -28443,7 +28765,7 @@ module Aws::RDS
|
|
28443
28765
|
params: params,
|
28444
28766
|
config: config)
|
28445
28767
|
context[:gem_name] = 'aws-sdk-rds'
|
28446
|
-
context[:gem_version] = '1.
|
28768
|
+
context[:gem_version] = '1.200.0'
|
28447
28769
|
Seahorse::Client::Request.new(handlers, context)
|
28448
28770
|
end
|
28449
28771
|
|