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
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -926,6 +926,10 @@ module Aws::RDS
|
|
926
926
|
# instead automatically adjusts as needed.
|
927
927
|
# @return [Integer]
|
928
928
|
#
|
929
|
+
# @!attribute [rw] rds_custom_cluster_configuration
|
930
|
+
# Reserved for future use.
|
931
|
+
# @return [Types::RdsCustomClusterConfiguration]
|
932
|
+
#
|
929
933
|
# @!attribute [rw] iops
|
930
934
|
# The Provisioned IOPS (I/O operations per second) value. This setting
|
931
935
|
# is only for non-Aurora Multi-AZ DB clusters.
|
@@ -945,6 +949,7 @@ module Aws::RDS
|
|
945
949
|
:engine_version,
|
946
950
|
:backup_retention_period,
|
947
951
|
:allocated_storage,
|
952
|
+
:rds_custom_cluster_configuration,
|
948
953
|
:iops,
|
949
954
|
:storage_type)
|
950
955
|
SENSITIVE = []
|
@@ -2457,6 +2462,10 @@ module Aws::RDS
|
|
2457
2462
|
# Valid for Cluster Type: Aurora DB clusters only
|
2458
2463
|
# @return [Types::ScalingConfiguration]
|
2459
2464
|
#
|
2465
|
+
# @!attribute [rw] rds_custom_cluster_configuration
|
2466
|
+
# Reserved for future use.
|
2467
|
+
# @return [Types::RdsCustomClusterConfiguration]
|
2468
|
+
#
|
2460
2469
|
# @!attribute [rw] deletion_protection
|
2461
2470
|
# Specifies whether the DB cluster has deletion protection enabled.
|
2462
2471
|
# The database can't be deleted when deletion protection is enabled.
|
@@ -2884,6 +2893,7 @@ module Aws::RDS
|
|
2884
2893
|
:enable_cloudwatch_logs_exports,
|
2885
2894
|
:engine_mode,
|
2886
2895
|
:scaling_configuration,
|
2896
|
+
:rds_custom_cluster_configuration,
|
2887
2897
|
:deletion_protection,
|
2888
2898
|
:global_cluster_identifier,
|
2889
2899
|
:enable_http_endpoint,
|
@@ -5855,6 +5865,63 @@ module Aws::RDS
|
|
5855
5865
|
include Aws::Structure
|
5856
5866
|
end
|
5857
5867
|
|
5868
|
+
# @!attribute [rw] source_arn
|
5869
|
+
# The Amazon Resource Name (ARN) of the Aurora DB cluster to use as
|
5870
|
+
# the source for replication.
|
5871
|
+
# @return [String]
|
5872
|
+
#
|
5873
|
+
# @!attribute [rw] target_arn
|
5874
|
+
# The ARN of the Redshift data warehouse to use as the target for
|
5875
|
+
# replication.
|
5876
|
+
# @return [String]
|
5877
|
+
#
|
5878
|
+
# @!attribute [rw] integration_name
|
5879
|
+
# The name of the integration.
|
5880
|
+
# @return [String]
|
5881
|
+
#
|
5882
|
+
# @!attribute [rw] kms_key_id
|
5883
|
+
# The Amazon Web Services Key Management System (Amazon Web Services
|
5884
|
+
# KMS) key identifier for the key to use to encrypt the integration.
|
5885
|
+
# If you don't specify an encryption key, Aurora uses a default
|
5886
|
+
# Amazon Web Services owned key.
|
5887
|
+
# @return [String]
|
5888
|
+
#
|
5889
|
+
# @!attribute [rw] additional_encryption_context
|
5890
|
+
# An optional set of non-secret key–value pairs that contains
|
5891
|
+
# additional contextual information about the data. For more
|
5892
|
+
# information, see [Encryption context][1] in the *Amazon Web Services
|
5893
|
+
# Key Management Service Developer Guide*.
|
5894
|
+
#
|
5895
|
+
# You can only include this parameter if you specify the `KMSKeyId`
|
5896
|
+
# parameter.
|
5897
|
+
#
|
5898
|
+
#
|
5899
|
+
#
|
5900
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context
|
5901
|
+
# @return [Hash<String,String>]
|
5902
|
+
#
|
5903
|
+
# @!attribute [rw] tags
|
5904
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
5905
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
5906
|
+
#
|
5907
|
+
#
|
5908
|
+
#
|
5909
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
5910
|
+
# @return [Array<Types::Tag>]
|
5911
|
+
#
|
5912
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateIntegrationMessage AWS API Documentation
|
5913
|
+
#
|
5914
|
+
class CreateIntegrationMessage < Struct.new(
|
5915
|
+
:source_arn,
|
5916
|
+
:target_arn,
|
5917
|
+
:integration_name,
|
5918
|
+
:kms_key_id,
|
5919
|
+
:additional_encryption_context,
|
5920
|
+
:tags)
|
5921
|
+
SENSITIVE = []
|
5922
|
+
include Aws::Structure
|
5923
|
+
end
|
5924
|
+
|
5858
5925
|
# @!attribute [rw] option_group_name
|
5859
5926
|
# Specifies the name of the option group to be created.
|
5860
5927
|
#
|
@@ -6258,6 +6325,10 @@ module Aws::RDS
|
|
6258
6325
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html
|
6259
6326
|
# @return [Types::ScalingConfigurationInfo]
|
6260
6327
|
#
|
6328
|
+
# @!attribute [rw] rds_custom_cluster_configuration
|
6329
|
+
# Reserved for future use.
|
6330
|
+
# @return [Types::RdsCustomClusterConfiguration]
|
6331
|
+
#
|
6261
6332
|
# @!attribute [rw] deletion_protection
|
6262
6333
|
# Indicates whether the DB cluster has deletion protection enabled.
|
6263
6334
|
# The database can't be deleted when deletion protection is enabled.
|
@@ -6552,6 +6623,7 @@ module Aws::RDS
|
|
6552
6623
|
:capacity,
|
6553
6624
|
:engine_mode,
|
6554
6625
|
:scaling_configuration_info,
|
6626
|
+
:rds_custom_cluster_configuration,
|
6555
6627
|
:deletion_protection,
|
6556
6628
|
:http_endpoint_enabled,
|
6557
6629
|
:activity_stream_mode,
|
@@ -7749,6 +7821,11 @@ module Aws::RDS
|
|
7749
7821
|
# Valid for: Aurora DB clusters only
|
7750
7822
|
# @return [Boolean]
|
7751
7823
|
#
|
7824
|
+
# @!attribute [rw] supports_integrations
|
7825
|
+
# Indicates whether the DB engine version supports Aurora zero-ETL
|
7826
|
+
# integrations with Amazon Redshift.
|
7827
|
+
# @return [Boolean]
|
7828
|
+
#
|
7752
7829
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBEngineVersion AWS API Documentation
|
7753
7830
|
#
|
7754
7831
|
class DBEngineVersion < Struct.new(
|
@@ -7783,7 +7860,8 @@ module Aws::RDS
|
|
7783
7860
|
:custom_db_engine_version_manifest,
|
7784
7861
|
:supports_certificate_rotation_without_restart,
|
7785
7862
|
:supported_ca_certificate_identifiers,
|
7786
|
-
:supports_local_write_forwarding
|
7863
|
+
:supports_local_write_forwarding,
|
7864
|
+
:supports_integrations)
|
7787
7865
|
SENSITIVE = []
|
7788
7866
|
include Aws::Structure
|
7789
7867
|
end
|
@@ -10585,6 +10663,18 @@ module Aws::RDS
|
|
10585
10663
|
include Aws::Structure
|
10586
10664
|
end
|
10587
10665
|
|
10666
|
+
# @!attribute [rw] integration_identifier
|
10667
|
+
# The unique identifier of the integration.
|
10668
|
+
# @return [String]
|
10669
|
+
#
|
10670
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteIntegrationMessage AWS API Documentation
|
10671
|
+
#
|
10672
|
+
class DeleteIntegrationMessage < Struct.new(
|
10673
|
+
:integration_identifier)
|
10674
|
+
SENSITIVE = []
|
10675
|
+
include Aws::Structure
|
10676
|
+
end
|
10677
|
+
|
10588
10678
|
# @!attribute [rw] option_group_name
|
10589
10679
|
# The name of the option group to be deleted.
|
10590
10680
|
#
|
@@ -12796,6 +12886,61 @@ module Aws::RDS
|
|
12796
12886
|
include Aws::Structure
|
12797
12887
|
end
|
12798
12888
|
|
12889
|
+
# @!attribute [rw] integration_identifier
|
12890
|
+
# The unique identifier of the integration.
|
12891
|
+
# @return [String]
|
12892
|
+
#
|
12893
|
+
# @!attribute [rw] filters
|
12894
|
+
# A filter that specifies one or more resources to return.
|
12895
|
+
# @return [Array<Types::Filter>]
|
12896
|
+
#
|
12897
|
+
# @!attribute [rw] max_records
|
12898
|
+
# The maximum number of records to include in the response. If more
|
12899
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
12900
|
+
# token called a marker is included in the response so that you can
|
12901
|
+
# retrieve the remaining results.
|
12902
|
+
#
|
12903
|
+
# Default: 100
|
12904
|
+
#
|
12905
|
+
# Constraints: Minimum 20, maximum 100.
|
12906
|
+
# @return [Integer]
|
12907
|
+
#
|
12908
|
+
# @!attribute [rw] marker
|
12909
|
+
# An optional pagination token provided by a previous
|
12910
|
+
# `DescribeIntegrations` request. If this parameter is specified, the
|
12911
|
+
# response includes only records beyond the marker, up to the value
|
12912
|
+
# specified by `MaxRecords`.
|
12913
|
+
# @return [String]
|
12914
|
+
#
|
12915
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeIntegrationsMessage AWS API Documentation
|
12916
|
+
#
|
12917
|
+
class DescribeIntegrationsMessage < Struct.new(
|
12918
|
+
:integration_identifier,
|
12919
|
+
:filters,
|
12920
|
+
:max_records,
|
12921
|
+
:marker)
|
12922
|
+
SENSITIVE = []
|
12923
|
+
include Aws::Structure
|
12924
|
+
end
|
12925
|
+
|
12926
|
+
# @!attribute [rw] marker
|
12927
|
+
# A pagination token that can be used in a later
|
12928
|
+
# `DescribeIntegrations` request.
|
12929
|
+
# @return [String]
|
12930
|
+
#
|
12931
|
+
# @!attribute [rw] integrations
|
12932
|
+
# A list of integrations.
|
12933
|
+
# @return [Array<Types::Integration>]
|
12934
|
+
#
|
12935
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeIntegrationsResponse AWS API Documentation
|
12936
|
+
#
|
12937
|
+
class DescribeIntegrationsResponse < Struct.new(
|
12938
|
+
:marker,
|
12939
|
+
:integrations)
|
12940
|
+
SENSITIVE = []
|
12941
|
+
include Aws::Structure
|
12942
|
+
end
|
12943
|
+
|
12799
12944
|
# @!attribute [rw] engine_name
|
12800
12945
|
# A required parameter. Options available for the given engine name
|
12801
12946
|
# are described.
|
@@ -14433,6 +14578,133 @@ module Aws::RDS
|
|
14433
14578
|
#
|
14434
14579
|
class InsufficientStorageClusterCapacityFault < Aws::EmptyStructure; end
|
14435
14580
|
|
14581
|
+
# An Aurora zero-ETL integration with Amazon Redshift. For more
|
14582
|
+
# information, see [Working with Amazon Aurora zero-ETL integrations
|
14583
|
+
# with Amazon Redshift][1] in the *Amazon Aurora User Guide*.
|
14584
|
+
#
|
14585
|
+
#
|
14586
|
+
#
|
14587
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/zero-etl.html
|
14588
|
+
#
|
14589
|
+
# @!attribute [rw] source_arn
|
14590
|
+
# The Amazon Resource Name (ARN) of the Aurora DB cluster used as the
|
14591
|
+
# source for replication.
|
14592
|
+
# @return [String]
|
14593
|
+
#
|
14594
|
+
# @!attribute [rw] target_arn
|
14595
|
+
# The ARN of the Redshift data warehouse used as the target for
|
14596
|
+
# replication.
|
14597
|
+
# @return [String]
|
14598
|
+
#
|
14599
|
+
# @!attribute [rw] integration_name
|
14600
|
+
# The name of the integration.
|
14601
|
+
# @return [String]
|
14602
|
+
#
|
14603
|
+
# @!attribute [rw] integration_arn
|
14604
|
+
# The ARN of the integration.
|
14605
|
+
# @return [String]
|
14606
|
+
#
|
14607
|
+
# @!attribute [rw] kms_key_id
|
14608
|
+
# The Amazon Web Services Key Management System (Amazon Web Services
|
14609
|
+
# KMS) key identifier for the key used to to encrypt the integration.
|
14610
|
+
# @return [String]
|
14611
|
+
#
|
14612
|
+
# @!attribute [rw] additional_encryption_context
|
14613
|
+
# The encryption context for the integration. For more information,
|
14614
|
+
# see [Encryption context][1] in the *Amazon Web Services Key
|
14615
|
+
# Management Service Developer Guide*.
|
14616
|
+
#
|
14617
|
+
#
|
14618
|
+
#
|
14619
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#encrypt_context
|
14620
|
+
# @return [Hash<String,String>]
|
14621
|
+
#
|
14622
|
+
# @!attribute [rw] status
|
14623
|
+
# The current status of the integration.
|
14624
|
+
# @return [String]
|
14625
|
+
#
|
14626
|
+
# @!attribute [rw] tags
|
14627
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
14628
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
14629
|
+
#
|
14630
|
+
#
|
14631
|
+
#
|
14632
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
14633
|
+
# @return [Array<Types::Tag>]
|
14634
|
+
#
|
14635
|
+
# @!attribute [rw] create_time
|
14636
|
+
# The time when the integration was created, in Universal Coordinated
|
14637
|
+
# Time (UTC).
|
14638
|
+
# @return [Time]
|
14639
|
+
#
|
14640
|
+
# @!attribute [rw] errors
|
14641
|
+
# Any errors associated with the integration.
|
14642
|
+
# @return [Array<Types::IntegrationError>]
|
14643
|
+
#
|
14644
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/Integration AWS API Documentation
|
14645
|
+
#
|
14646
|
+
class Integration < Struct.new(
|
14647
|
+
:source_arn,
|
14648
|
+
:target_arn,
|
14649
|
+
:integration_name,
|
14650
|
+
:integration_arn,
|
14651
|
+
:kms_key_id,
|
14652
|
+
:additional_encryption_context,
|
14653
|
+
:status,
|
14654
|
+
:tags,
|
14655
|
+
:create_time,
|
14656
|
+
:errors)
|
14657
|
+
SENSITIVE = []
|
14658
|
+
include Aws::Structure
|
14659
|
+
end
|
14660
|
+
|
14661
|
+
# The integration you are trying to create already exists.
|
14662
|
+
#
|
14663
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/IntegrationAlreadyExistsFault AWS API Documentation
|
14664
|
+
#
|
14665
|
+
class IntegrationAlreadyExistsFault < Aws::EmptyStructure; end
|
14666
|
+
|
14667
|
+
# A conflicting conditional operation is currently in progress against
|
14668
|
+
# this resource. Typically occurs when there are multiple requests being
|
14669
|
+
# made to the same resource at the same time, and these requests
|
14670
|
+
# conflict with each other.
|
14671
|
+
#
|
14672
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/IntegrationConflictOperationFault AWS API Documentation
|
14673
|
+
#
|
14674
|
+
class IntegrationConflictOperationFault < Aws::EmptyStructure; end
|
14675
|
+
|
14676
|
+
# An error associated with a zero-ETL integration with Amazon Redshift.
|
14677
|
+
#
|
14678
|
+
# @!attribute [rw] error_code
|
14679
|
+
# The error code associated with the integration.
|
14680
|
+
# @return [String]
|
14681
|
+
#
|
14682
|
+
# @!attribute [rw] error_message
|
14683
|
+
# A message explaining the error.
|
14684
|
+
# @return [String]
|
14685
|
+
#
|
14686
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/IntegrationError AWS API Documentation
|
14687
|
+
#
|
14688
|
+
class IntegrationError < Struct.new(
|
14689
|
+
:error_code,
|
14690
|
+
:error_message)
|
14691
|
+
SENSITIVE = []
|
14692
|
+
include Aws::Structure
|
14693
|
+
end
|
14694
|
+
|
14695
|
+
# The specified integration could not be found.
|
14696
|
+
#
|
14697
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/IntegrationNotFoundFault AWS API Documentation
|
14698
|
+
#
|
14699
|
+
class IntegrationNotFoundFault < Aws::EmptyStructure; end
|
14700
|
+
|
14701
|
+
# You can't crate any more zero-ETL integrations because the quota has
|
14702
|
+
# been reached.
|
14703
|
+
#
|
14704
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/IntegrationQuotaExceededFault AWS API Documentation
|
14705
|
+
#
|
14706
|
+
class IntegrationQuotaExceededFault < Aws::EmptyStructure; end
|
14707
|
+
|
14436
14708
|
# The blue/green deployment can't be switched over or deleted because
|
14437
14709
|
# there is an invalid configuration in the green environment.
|
14438
14710
|
#
|
@@ -14579,6 +14851,13 @@ module Aws::RDS
|
|
14579
14851
|
#
|
14580
14852
|
class InvalidGlobalClusterStateFault < Aws::EmptyStructure; end
|
14581
14853
|
|
14854
|
+
# The integration is in an invalid state and can't perform the
|
14855
|
+
# requested operation.
|
14856
|
+
#
|
14857
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/InvalidIntegrationStateFault AWS API Documentation
|
14858
|
+
#
|
14859
|
+
class InvalidIntegrationStateFault < Aws::EmptyStructure; end
|
14860
|
+
|
14582
14861
|
# The option group isn't in the *available* state.
|
14583
14862
|
#
|
14584
14863
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/InvalidOptionGroupStateFault AWS API Documentation
|
@@ -19064,6 +19343,25 @@ module Aws::RDS
|
|
19064
19343
|
include Aws::Structure
|
19065
19344
|
end
|
19066
19345
|
|
19346
|
+
# Reserved for future use.
|
19347
|
+
#
|
19348
|
+
# @!attribute [rw] interconnect_subnet_id
|
19349
|
+
# Reserved for future use.
|
19350
|
+
# @return [String]
|
19351
|
+
#
|
19352
|
+
# @!attribute [rw] transit_gateway_multicast_domain_id
|
19353
|
+
# Reserved for future use.
|
19354
|
+
# @return [String]
|
19355
|
+
#
|
19356
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RdsCustomClusterConfiguration AWS API Documentation
|
19357
|
+
#
|
19358
|
+
class RdsCustomClusterConfiguration < Struct.new(
|
19359
|
+
:interconnect_subnet_id,
|
19360
|
+
:transit_gateway_multicast_domain_id)
|
19361
|
+
SENSITIVE = []
|
19362
|
+
include Aws::Structure
|
19363
|
+
end
|
19364
|
+
|
19067
19365
|
# @!attribute [rw] db_cluster_identifier
|
19068
19366
|
# The DB cluster identifier. This parameter is stored as a lowercase
|
19069
19367
|
# string.
|
@@ -20641,6 +20939,10 @@ module Aws::RDS
|
|
20641
20939
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
20642
20940
|
# @return [String]
|
20643
20941
|
#
|
20942
|
+
# @!attribute [rw] rds_custom_cluster_configuration
|
20943
|
+
# Reserved for future use.
|
20944
|
+
# @return [Types::RdsCustomClusterConfiguration]
|
20945
|
+
#
|
20644
20946
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshotMessage AWS API Documentation
|
20645
20947
|
#
|
20646
20948
|
class RestoreDBClusterFromSnapshotMessage < Struct.new(
|
@@ -20671,7 +20973,8 @@ module Aws::RDS
|
|
20671
20973
|
:iops,
|
20672
20974
|
:publicly_accessible,
|
20673
20975
|
:serverless_v2_scaling_configuration,
|
20674
|
-
:network_type
|
20976
|
+
:network_type,
|
20977
|
+
:rds_custom_cluster_configuration)
|
20675
20978
|
SENSITIVE = []
|
20676
20979
|
include Aws::Structure
|
20677
20980
|
end
|
@@ -21137,6 +21440,10 @@ module Aws::RDS
|
|
21137
21440
|
# The resource ID of the source DB cluster from which to restore.
|
21138
21441
|
# @return [String]
|
21139
21442
|
#
|
21443
|
+
# @!attribute [rw] rds_custom_cluster_configuration
|
21444
|
+
# Reserved for future use.
|
21445
|
+
# @return [Types::RdsCustomClusterConfiguration]
|
21446
|
+
#
|
21140
21447
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTimeMessage AWS API Documentation
|
21141
21448
|
#
|
21142
21449
|
class RestoreDBClusterToPointInTimeMessage < Struct.new(
|
@@ -21167,7 +21474,8 @@ module Aws::RDS
|
|
21167
21474
|
:iops,
|
21168
21475
|
:serverless_v2_scaling_configuration,
|
21169
21476
|
:network_type,
|
21170
|
-
:source_db_cluster_resource_id
|
21477
|
+
:source_db_cluster_resource_id,
|
21478
|
+
:rds_custom_cluster_configuration)
|
21171
21479
|
SENSITIVE = []
|
21172
21480
|
include Aws::Structure
|
21173
21481
|
end
|
@@ -24434,6 +24742,11 @@ module Aws::RDS
|
|
24434
24742
|
# Valid for: Aurora DB clusters only
|
24435
24743
|
# @return [Boolean]
|
24436
24744
|
#
|
24745
|
+
# @!attribute [rw] supports_integrations
|
24746
|
+
# Indicates whether the DB engine version supports Aurora zero-ETL
|
24747
|
+
# integrations with Amazon Redshift.
|
24748
|
+
# @return [Boolean]
|
24749
|
+
#
|
24437
24750
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/UpgradeTarget AWS API Documentation
|
24438
24751
|
#
|
24439
24752
|
class UpgradeTarget < Struct.new(
|
@@ -24446,7 +24759,8 @@ module Aws::RDS
|
|
24446
24759
|
:supports_parallel_query,
|
24447
24760
|
:supports_global_databases,
|
24448
24761
|
:supports_babelfish,
|
24449
|
-
:supports_local_write_forwarding
|
24762
|
+
:supports_local_write_forwarding,
|
24763
|
+
:supports_integrations)
|
24450
24764
|
SENSITIVE = []
|
24451
24765
|
include Aws::Structure
|
24452
24766
|
end
|
data/lib/aws-sdk-rds.rb
CHANGED
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.
|
4
|
+
version: 1.200.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-
|
11
|
+
date: 2023-11-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|