aws-sdk-docdb 1.93.0 → 1.94.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-docdb/client.rb +133 -12
- data/lib/aws-sdk-docdb/client_api.rb +17 -0
- data/lib/aws-sdk-docdb/errors.rb +11 -0
- data/lib/aws-sdk-docdb/types.rb +175 -17
- data/lib/aws-sdk-docdb.rb +1 -1
- data/sig/client.rbs +7 -3
- data/sig/errors.rbs +2 -0
- data/sig/types.rbs +10 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '06864cc2bf6637d87aa308cb23c02ca8222aa42e7f84ab7f608eba7e3da651f9'
|
|
4
|
+
data.tar.gz: 9a9d997801641a5b1ae561981ee0fac714d74c7b05303e7ef3d0492e2b0ef754
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 275335e5835e015956c40e0bb2886be9472562ae3d32bb0cf124ea11b9eb2bce6197755f994b117294452393847051cf4b9f80d6593aaf5615393235a7d82e88
|
|
7
|
+
data.tar.gz: 22bd4f0c233c6c4ab6448aa16d02945b2d66ea6974a70c2c874c032aecbdf91503904b06e741974f2d1f1ac0d280e94ad965834d5d315233a6b46dce962b700c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.94.0 (2025-10-15)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Add support for NetworkType field in CreateDbCluster, ModifyDbCluster, RestoreDbClusterFromSnapshot and RestoreDbClusterToPointInTime for DocumentDB.
|
|
8
|
+
|
|
4
9
|
1.93.0 (2025-08-26)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.94.0
|
data/lib/aws-sdk-docdb/client.rb
CHANGED
|
@@ -722,13 +722,14 @@ module Aws::DocDB
|
|
|
722
722
|
#
|
|
723
723
|
# Constraints:
|
|
724
724
|
#
|
|
725
|
-
# * Must specify a valid
|
|
725
|
+
# * Must specify a valid cluster snapshot in the *available* state.
|
|
726
726
|
#
|
|
727
|
-
# * If the source snapshot is in the same Amazon Web Services
|
|
728
|
-
# the copy, specify a valid snapshot identifier.
|
|
727
|
+
# * If the source cluster snapshot is in the same Amazon Web Services
|
|
728
|
+
# Region as the copy, specify a valid snapshot identifier.
|
|
729
729
|
#
|
|
730
|
-
# * If the source snapshot is in a different Amazon Web Services
|
|
731
|
-
#
|
|
730
|
+
# * If the source cluster snapshot is in a different Amazon Web Services
|
|
731
|
+
# Region or owned by another Amazon Web Services account, specify the
|
|
732
|
+
# snapshot ARN.
|
|
732
733
|
#
|
|
733
734
|
# Example: `my-cluster-snapshot1`
|
|
734
735
|
#
|
|
@@ -1043,8 +1044,8 @@ module Aws::DocDB
|
|
|
1043
1044
|
#
|
|
1044
1045
|
# Default value is `standard `
|
|
1045
1046
|
#
|
|
1046
|
-
# <note markdown="1"> When you create
|
|
1047
|
-
# `iopt1`, the storage type is returned in the response. The storage
|
|
1047
|
+
# <note markdown="1"> When you create an Amazon DocumentDB cluster with the storage type set
|
|
1048
|
+
# to `iopt1`, the storage type is returned in the response. The storage
|
|
1048
1049
|
# type isn't returned when you set it to `standard`.
|
|
1049
1050
|
#
|
|
1050
1051
|
# </note>
|
|
@@ -1082,6 +1083,22 @@ module Aws::DocDB
|
|
|
1082
1083
|
# Amazon Web Services account has a different default KMS key for each
|
|
1083
1084
|
# Amazon Web Services Region.
|
|
1084
1085
|
#
|
|
1086
|
+
# @option params [String] :network_type
|
|
1087
|
+
# The network type of the cluster.
|
|
1088
|
+
#
|
|
1089
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
1090
|
+
# the cluster. A `DBSubnetGroup` can support only the IPv4 protocol or
|
|
1091
|
+
# the IPv4 and the IPv6 protocols (`DUAL`).
|
|
1092
|
+
#
|
|
1093
|
+
# For more information, see [DocumentDB clusters in a VPC][1] in the
|
|
1094
|
+
# Amazon DocumentDB Developer Guide.
|
|
1095
|
+
#
|
|
1096
|
+
# Valid Values: `IPV4` \| `DUAL`
|
|
1097
|
+
#
|
|
1098
|
+
#
|
|
1099
|
+
#
|
|
1100
|
+
# [1]: https://docs.aws.amazon.com/documentdb/latest/developerguide/vpc-clusters.html
|
|
1101
|
+
#
|
|
1085
1102
|
# @option params [String] :source_region
|
|
1086
1103
|
# The source region of the snapshot. This is only needed when the
|
|
1087
1104
|
# shapshot is encrypted and in a different region.
|
|
@@ -1125,6 +1142,7 @@ module Aws::DocDB
|
|
|
1125
1142
|
# },
|
|
1126
1143
|
# manage_master_user_password: false,
|
|
1127
1144
|
# master_user_secret_kms_key_id: "String",
|
|
1145
|
+
# network_type: "String",
|
|
1128
1146
|
# source_region: "String",
|
|
1129
1147
|
# })
|
|
1130
1148
|
#
|
|
@@ -1173,12 +1191,14 @@ module Aws::DocDB
|
|
|
1173
1191
|
# resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
|
|
1174
1192
|
# resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
|
|
1175
1193
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
1194
|
+
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
|
1176
1195
|
# resp.db_cluster.storage_type #=> String
|
|
1177
1196
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
1178
1197
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
1179
1198
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
|
1180
1199
|
# resp.db_cluster.master_user_secret.secret_status #=> String
|
|
1181
1200
|
# resp.db_cluster.master_user_secret.kms_key_id #=> String
|
|
1201
|
+
# resp.db_cluster.network_type #=> String
|
|
1182
1202
|
#
|
|
1183
1203
|
# @see http://docs.aws.amazon.com/goto/WebAPI/docdb-2014-10-31/CreateDBCluster AWS API Documentation
|
|
1184
1204
|
#
|
|
@@ -1507,6 +1527,8 @@ module Aws::DocDB
|
|
|
1507
1527
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
|
1508
1528
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
|
1509
1529
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
|
1530
|
+
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
1531
|
+
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
1510
1532
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
1511
1533
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
1512
1534
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
@@ -1609,6 +1631,8 @@ module Aws::DocDB
|
|
|
1609
1631
|
# resp.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
|
1610
1632
|
# resp.db_subnet_group.subnets[0].subnet_status #=> String
|
|
1611
1633
|
# resp.db_subnet_group.db_subnet_group_arn #=> String
|
|
1634
|
+
# resp.db_subnet_group.supported_network_types #=> Array
|
|
1635
|
+
# resp.db_subnet_group.supported_network_types[0] #=> String
|
|
1612
1636
|
#
|
|
1613
1637
|
# @see http://docs.aws.amazon.com/goto/WebAPI/docdb-2014-10-31/CreateDBSubnetGroup AWS API Documentation
|
|
1614
1638
|
#
|
|
@@ -1744,7 +1768,7 @@ module Aws::DocDB
|
|
|
1744
1768
|
|
|
1745
1769
|
# Creates an Amazon DocumentDB global cluster that can span multiple
|
|
1746
1770
|
# multiple Amazon Web Services Regions. The global cluster contains one
|
|
1747
|
-
# primary cluster with read-write capability, and up-to
|
|
1771
|
+
# primary cluster with read-write capability, and up-to 10 read-only
|
|
1748
1772
|
# secondary clusters. Global clusters uses storage-based fast
|
|
1749
1773
|
# replication across regions with latencies less than one second, using
|
|
1750
1774
|
# dedicated infrastructure with no impact to your workload’s
|
|
@@ -1930,12 +1954,14 @@ module Aws::DocDB
|
|
|
1930
1954
|
# resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
|
|
1931
1955
|
# resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
|
|
1932
1956
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
1957
|
+
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
|
1933
1958
|
# resp.db_cluster.storage_type #=> String
|
|
1934
1959
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
1935
1960
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
1936
1961
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
|
1937
1962
|
# resp.db_cluster.master_user_secret.secret_status #=> String
|
|
1938
1963
|
# resp.db_cluster.master_user_secret.kms_key_id #=> String
|
|
1964
|
+
# resp.db_cluster.network_type #=> String
|
|
1939
1965
|
#
|
|
1940
1966
|
# @see http://docs.aws.amazon.com/goto/WebAPI/docdb-2014-10-31/DeleteDBCluster AWS API Documentation
|
|
1941
1967
|
#
|
|
@@ -2078,6 +2104,8 @@ module Aws::DocDB
|
|
|
2078
2104
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
|
2079
2105
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
|
2080
2106
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
|
2107
|
+
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
2108
|
+
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
2081
2109
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
2082
2110
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
2083
2111
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
@@ -2783,12 +2811,14 @@ module Aws::DocDB
|
|
|
2783
2811
|
# resp.db_clusters[0].enabled_cloudwatch_logs_exports #=> Array
|
|
2784
2812
|
# resp.db_clusters[0].enabled_cloudwatch_logs_exports[0] #=> String
|
|
2785
2813
|
# resp.db_clusters[0].deletion_protection #=> Boolean
|
|
2814
|
+
# resp.db_clusters[0].io_optimized_next_allowed_modification_time #=> Time
|
|
2786
2815
|
# resp.db_clusters[0].storage_type #=> String
|
|
2787
2816
|
# resp.db_clusters[0].serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
2788
2817
|
# resp.db_clusters[0].serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
2789
2818
|
# resp.db_clusters[0].master_user_secret.secret_arn #=> String
|
|
2790
2819
|
# resp.db_clusters[0].master_user_secret.secret_status #=> String
|
|
2791
2820
|
# resp.db_clusters[0].master_user_secret.kms_key_id #=> String
|
|
2821
|
+
# resp.db_clusters[0].network_type #=> String
|
|
2792
2822
|
#
|
|
2793
2823
|
# @see http://docs.aws.amazon.com/goto/WebAPI/docdb-2014-10-31/DescribeDBClusters AWS API Documentation
|
|
2794
2824
|
#
|
|
@@ -3000,6 +3030,8 @@ module Aws::DocDB
|
|
|
3000
3030
|
# resp.db_instances[0].db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
|
3001
3031
|
# resp.db_instances[0].db_subnet_group.subnets[0].subnet_status #=> String
|
|
3002
3032
|
# resp.db_instances[0].db_subnet_group.db_subnet_group_arn #=> String
|
|
3033
|
+
# resp.db_instances[0].db_subnet_group.supported_network_types #=> Array
|
|
3034
|
+
# resp.db_instances[0].db_subnet_group.supported_network_types[0] #=> String
|
|
3003
3035
|
# resp.db_instances[0].preferred_maintenance_window #=> String
|
|
3004
3036
|
# resp.db_instances[0].pending_modified_values.db_instance_class #=> String
|
|
3005
3037
|
# resp.db_instances[0].pending_modified_values.allocated_storage #=> Integer
|
|
@@ -3116,6 +3148,8 @@ module Aws::DocDB
|
|
|
3116
3148
|
# resp.db_subnet_groups[0].subnets[0].subnet_availability_zone.name #=> String
|
|
3117
3149
|
# resp.db_subnet_groups[0].subnets[0].subnet_status #=> String
|
|
3118
3150
|
# resp.db_subnet_groups[0].db_subnet_group_arn #=> String
|
|
3151
|
+
# resp.db_subnet_groups[0].supported_network_types #=> Array
|
|
3152
|
+
# resp.db_subnet_groups[0].supported_network_types[0] #=> String
|
|
3119
3153
|
#
|
|
3120
3154
|
# @see http://docs.aws.amazon.com/goto/WebAPI/docdb-2014-10-31/DescribeDBSubnetGroups AWS API Documentation
|
|
3121
3155
|
#
|
|
@@ -3760,12 +3794,14 @@ module Aws::DocDB
|
|
|
3760
3794
|
# resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
|
|
3761
3795
|
# resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
|
|
3762
3796
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
3797
|
+
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
|
3763
3798
|
# resp.db_cluster.storage_type #=> String
|
|
3764
3799
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
3765
3800
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
3766
3801
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
|
3767
3802
|
# resp.db_cluster.master_user_secret.secret_status #=> String
|
|
3768
3803
|
# resp.db_cluster.master_user_secret.kms_key_id #=> String
|
|
3804
|
+
# resp.db_cluster.network_type #=> String
|
|
3769
3805
|
#
|
|
3770
3806
|
# @see http://docs.aws.amazon.com/goto/WebAPI/docdb-2014-10-31/FailoverDBCluster AWS API Documentation
|
|
3771
3807
|
#
|
|
@@ -4048,9 +4084,27 @@ module Aws::DocDB
|
|
|
4048
4084
|
# @option params [Boolean] :allow_major_version_upgrade
|
|
4049
4085
|
# A value that indicates whether major version upgrades are allowed.
|
|
4050
4086
|
#
|
|
4051
|
-
# Constraints:
|
|
4052
|
-
#
|
|
4053
|
-
# version
|
|
4087
|
+
# Constraints:
|
|
4088
|
+
#
|
|
4089
|
+
# * You must allow major version upgrades when specifying a value for
|
|
4090
|
+
# the `EngineVersion` parameter that is a different major version than
|
|
4091
|
+
# the cluster's current version.
|
|
4092
|
+
#
|
|
4093
|
+
# * Since some parameters are version specific, changing them requires
|
|
4094
|
+
# executing a new `ModifyDBCluster` API call after the in-place MVU
|
|
4095
|
+
# completes.
|
|
4096
|
+
#
|
|
4097
|
+
# <note markdown="1"> Performing an MVU directly impacts the following parameters:
|
|
4098
|
+
#
|
|
4099
|
+
# * `MasterUserPassword`
|
|
4100
|
+
#
|
|
4101
|
+
# * `NewDBClusterIdentifier`
|
|
4102
|
+
#
|
|
4103
|
+
# * `VpcSecurityGroupIds`
|
|
4104
|
+
#
|
|
4105
|
+
# * `Port`
|
|
4106
|
+
#
|
|
4107
|
+
# </note>
|
|
4054
4108
|
#
|
|
4055
4109
|
# @option params [Boolean] :deletion_protection
|
|
4056
4110
|
# Specifies whether this cluster can be deleted. If `DeletionProtection`
|
|
@@ -4127,6 +4181,22 @@ module Aws::DocDB
|
|
|
4127
4181
|
# Constraint: You must apply the change immediately when rotating the
|
|
4128
4182
|
# master user password.
|
|
4129
4183
|
#
|
|
4184
|
+
# @option params [String] :network_type
|
|
4185
|
+
# The network type of the cluster.
|
|
4186
|
+
#
|
|
4187
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
4188
|
+
# the cluster. A `DBSubnetGroup` can support only the IPv4 protocol or
|
|
4189
|
+
# the IPv4 and the IPv6 protocols (`DUAL`).
|
|
4190
|
+
#
|
|
4191
|
+
# For more information, see [DocumentDB clusters in a VPC][1] in the
|
|
4192
|
+
# Amazon DocumentDB Developer Guide.
|
|
4193
|
+
#
|
|
4194
|
+
# Valid Values: `IPV4` \| `DUAL`
|
|
4195
|
+
#
|
|
4196
|
+
#
|
|
4197
|
+
#
|
|
4198
|
+
# [1]: https://docs.aws.amazon.com/documentdb/latest/developerguide/vpc-clusters.html
|
|
4199
|
+
#
|
|
4130
4200
|
# @return [Types::ModifyDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4131
4201
|
#
|
|
4132
4202
|
# * {Types::ModifyDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
|
|
@@ -4159,6 +4229,7 @@ module Aws::DocDB
|
|
|
4159
4229
|
# manage_master_user_password: false,
|
|
4160
4230
|
# master_user_secret_kms_key_id: "String",
|
|
4161
4231
|
# rotate_master_user_password: false,
|
|
4232
|
+
# network_type: "String",
|
|
4162
4233
|
# })
|
|
4163
4234
|
#
|
|
4164
4235
|
# @example Response structure
|
|
@@ -4206,12 +4277,14 @@ module Aws::DocDB
|
|
|
4206
4277
|
# resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
|
|
4207
4278
|
# resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
|
|
4208
4279
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
4280
|
+
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
|
4209
4281
|
# resp.db_cluster.storage_type #=> String
|
|
4210
4282
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
4211
4283
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
4212
4284
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
|
4213
4285
|
# resp.db_cluster.master_user_secret.secret_status #=> String
|
|
4214
4286
|
# resp.db_cluster.master_user_secret.kms_key_id #=> String
|
|
4287
|
+
# resp.db_cluster.network_type #=> String
|
|
4215
4288
|
#
|
|
4216
4289
|
# @see http://docs.aws.amazon.com/goto/WebAPI/docdb-2014-10-31/ModifyDBCluster AWS API Documentation
|
|
4217
4290
|
#
|
|
@@ -4545,6 +4618,8 @@ module Aws::DocDB
|
|
|
4545
4618
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
|
4546
4619
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
|
4547
4620
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
|
4621
|
+
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
4622
|
+
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
4548
4623
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
4549
4624
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
4550
4625
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
@@ -4638,6 +4713,8 @@ module Aws::DocDB
|
|
|
4638
4713
|
# resp.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
|
4639
4714
|
# resp.db_subnet_group.subnets[0].subnet_status #=> String
|
|
4640
4715
|
# resp.db_subnet_group.db_subnet_group_arn #=> String
|
|
4716
|
+
# resp.db_subnet_group.supported_network_types #=> Array
|
|
4717
|
+
# resp.db_subnet_group.supported_network_types[0] #=> String
|
|
4641
4718
|
#
|
|
4642
4719
|
# @see http://docs.aws.amazon.com/goto/WebAPI/docdb-2014-10-31/ModifyDBSubnetGroup AWS API Documentation
|
|
4643
4720
|
#
|
|
@@ -4846,6 +4923,8 @@ module Aws::DocDB
|
|
|
4846
4923
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_availability_zone.name #=> String
|
|
4847
4924
|
# resp.db_instance.db_subnet_group.subnets[0].subnet_status #=> String
|
|
4848
4925
|
# resp.db_instance.db_subnet_group.db_subnet_group_arn #=> String
|
|
4926
|
+
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
4927
|
+
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
4849
4928
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
4850
4929
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
4851
4930
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
@@ -5217,6 +5296,22 @@ module Aws::DocDB
|
|
|
5217
5296
|
#
|
|
5218
5297
|
# Default value is `standard `
|
|
5219
5298
|
#
|
|
5299
|
+
# @option params [String] :network_type
|
|
5300
|
+
# The network type of the cluster.
|
|
5301
|
+
#
|
|
5302
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
5303
|
+
# the cluster. A `DBSubnetGroup` can support only the IPv4 protocol or
|
|
5304
|
+
# the IPv4 and the IPv6 protocols (`DUAL`).
|
|
5305
|
+
#
|
|
5306
|
+
# For more information, see [DocumentDB clusters in a VPC][1] in the
|
|
5307
|
+
# Amazon DocumentDB Developer Guide.
|
|
5308
|
+
#
|
|
5309
|
+
# Valid Values: `IPV4` \| `DUAL`
|
|
5310
|
+
#
|
|
5311
|
+
#
|
|
5312
|
+
#
|
|
5313
|
+
# [1]: https://docs.aws.amazon.com/documentdb/latest/developerguide/vpc-clusters.html
|
|
5314
|
+
#
|
|
5220
5315
|
# @return [Types::RestoreDBClusterFromSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5221
5316
|
#
|
|
5222
5317
|
# * {Types::RestoreDBClusterFromSnapshotResult#db_cluster #db_cluster} => Types::DBCluster
|
|
@@ -5247,6 +5342,7 @@ module Aws::DocDB
|
|
|
5247
5342
|
# max_capacity: 1.0,
|
|
5248
5343
|
# },
|
|
5249
5344
|
# storage_type: "String",
|
|
5345
|
+
# network_type: "String",
|
|
5250
5346
|
# })
|
|
5251
5347
|
#
|
|
5252
5348
|
# @example Response structure
|
|
@@ -5294,12 +5390,14 @@ module Aws::DocDB
|
|
|
5294
5390
|
# resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
|
|
5295
5391
|
# resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
|
|
5296
5392
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
5393
|
+
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
|
5297
5394
|
# resp.db_cluster.storage_type #=> String
|
|
5298
5395
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
5299
5396
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
5300
5397
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
|
5301
5398
|
# resp.db_cluster.master_user_secret.secret_status #=> String
|
|
5302
5399
|
# resp.db_cluster.master_user_secret.kms_key_id #=> String
|
|
5400
|
+
# resp.db_cluster.network_type #=> String
|
|
5303
5401
|
#
|
|
5304
5402
|
# @see http://docs.aws.amazon.com/goto/WebAPI/docdb-2014-10-31/RestoreDBClusterFromSnapshot AWS API Documentation
|
|
5305
5403
|
#
|
|
@@ -5455,6 +5553,22 @@ module Aws::DocDB
|
|
|
5455
5553
|
#
|
|
5456
5554
|
# Default value is `standard `
|
|
5457
5555
|
#
|
|
5556
|
+
# @option params [String] :network_type
|
|
5557
|
+
# The network type of the cluster.
|
|
5558
|
+
#
|
|
5559
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
5560
|
+
# the cluster. A `DBSubnetGroup` can support only the IPv4 protocol or
|
|
5561
|
+
# the IPv4 and the IPv6 protocols (`DUAL`).
|
|
5562
|
+
#
|
|
5563
|
+
# For more information, see [DocumentDB clusters in a VPC][1] in the
|
|
5564
|
+
# Amazon DocumentDB Developer Guide.
|
|
5565
|
+
#
|
|
5566
|
+
# Valid Values: `IPV4` \| `DUAL`
|
|
5567
|
+
#
|
|
5568
|
+
#
|
|
5569
|
+
#
|
|
5570
|
+
# [1]: https://docs.aws.amazon.com/documentdb/latest/developerguide/vpc-clusters.html
|
|
5571
|
+
#
|
|
5458
5572
|
# @return [Types::RestoreDBClusterToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5459
5573
|
#
|
|
5460
5574
|
# * {Types::RestoreDBClusterToPointInTimeResult#db_cluster #db_cluster} => Types::DBCluster
|
|
@@ -5484,6 +5598,7 @@ module Aws::DocDB
|
|
|
5484
5598
|
# max_capacity: 1.0,
|
|
5485
5599
|
# },
|
|
5486
5600
|
# storage_type: "String",
|
|
5601
|
+
# network_type: "String",
|
|
5487
5602
|
# })
|
|
5488
5603
|
#
|
|
5489
5604
|
# @example Response structure
|
|
@@ -5531,12 +5646,14 @@ module Aws::DocDB
|
|
|
5531
5646
|
# resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
|
|
5532
5647
|
# resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
|
|
5533
5648
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
5649
|
+
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
|
5534
5650
|
# resp.db_cluster.storage_type #=> String
|
|
5535
5651
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
5536
5652
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
5537
5653
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
|
5538
5654
|
# resp.db_cluster.master_user_secret.secret_status #=> String
|
|
5539
5655
|
# resp.db_cluster.master_user_secret.kms_key_id #=> String
|
|
5656
|
+
# resp.db_cluster.network_type #=> String
|
|
5540
5657
|
#
|
|
5541
5658
|
# @see http://docs.aws.amazon.com/goto/WebAPI/docdb-2014-10-31/RestoreDBClusterToPointInTime AWS API Documentation
|
|
5542
5659
|
#
|
|
@@ -5614,12 +5731,14 @@ module Aws::DocDB
|
|
|
5614
5731
|
# resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
|
|
5615
5732
|
# resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
|
|
5616
5733
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
5734
|
+
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
|
5617
5735
|
# resp.db_cluster.storage_type #=> String
|
|
5618
5736
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
5619
5737
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
5620
5738
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
|
5621
5739
|
# resp.db_cluster.master_user_secret.secret_status #=> String
|
|
5622
5740
|
# resp.db_cluster.master_user_secret.kms_key_id #=> String
|
|
5741
|
+
# resp.db_cluster.network_type #=> String
|
|
5623
5742
|
#
|
|
5624
5743
|
# @see http://docs.aws.amazon.com/goto/WebAPI/docdb-2014-10-31/StartDBCluster AWS API Documentation
|
|
5625
5744
|
#
|
|
@@ -5697,12 +5816,14 @@ module Aws::DocDB
|
|
|
5697
5816
|
# resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
|
|
5698
5817
|
# resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
|
|
5699
5818
|
# resp.db_cluster.deletion_protection #=> Boolean
|
|
5819
|
+
# resp.db_cluster.io_optimized_next_allowed_modification_time #=> Time
|
|
5700
5820
|
# resp.db_cluster.storage_type #=> String
|
|
5701
5821
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
5702
5822
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
5703
5823
|
# resp.db_cluster.master_user_secret.secret_arn #=> String
|
|
5704
5824
|
# resp.db_cluster.master_user_secret.secret_status #=> String
|
|
5705
5825
|
# resp.db_cluster.master_user_secret.kms_key_id #=> String
|
|
5826
|
+
# resp.db_cluster.network_type #=> String
|
|
5706
5827
|
#
|
|
5707
5828
|
# @see http://docs.aws.amazon.com/goto/WebAPI/docdb-2014-10-31/StopDBCluster AWS API Documentation
|
|
5708
5829
|
#
|
|
@@ -5801,7 +5922,7 @@ module Aws::DocDB
|
|
|
5801
5922
|
tracer: tracer
|
|
5802
5923
|
)
|
|
5803
5924
|
context[:gem_name] = 'aws-sdk-docdb'
|
|
5804
|
-
context[:gem_version] = '1.
|
|
5925
|
+
context[:gem_version] = '1.94.0'
|
|
5805
5926
|
Seahorse::Client::Request.new(handlers, context)
|
|
5806
5927
|
end
|
|
5807
5928
|
|
|
@@ -199,6 +199,8 @@ module Aws::DocDB
|
|
|
199
199
|
ModifyEventSubscriptionResult = Shapes::StructureShape.new(name: 'ModifyEventSubscriptionResult')
|
|
200
200
|
ModifyGlobalClusterMessage = Shapes::StructureShape.new(name: 'ModifyGlobalClusterMessage')
|
|
201
201
|
ModifyGlobalClusterResult = Shapes::StructureShape.new(name: 'ModifyGlobalClusterResult')
|
|
202
|
+
NetworkTypeList = Shapes::ListShape.new(name: 'NetworkTypeList')
|
|
203
|
+
NetworkTypeNotSupported = Shapes::StructureShape.new(name: 'NetworkTypeNotSupported', error: {"code" => "NetworkTypeNotSupported", "httpStatusCode" => 400, "senderFault" => true})
|
|
202
204
|
OrderableDBInstanceOption = Shapes::StructureShape.new(name: 'OrderableDBInstanceOption')
|
|
203
205
|
OrderableDBInstanceOptionsList = Shapes::ListShape.new(name: 'OrderableDBInstanceOptionsList')
|
|
204
206
|
OrderableDBInstanceOptionsMessage = Shapes::StructureShape.new(name: 'OrderableDBInstanceOptionsMessage')
|
|
@@ -369,6 +371,7 @@ module Aws::DocDB
|
|
|
369
371
|
CreateDBClusterMessage.add_member(:serverless_v2_scaling_configuration, Shapes::ShapeRef.new(shape: ServerlessV2ScalingConfiguration, location_name: "ServerlessV2ScalingConfiguration"))
|
|
370
372
|
CreateDBClusterMessage.add_member(:manage_master_user_password, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ManageMasterUserPassword"))
|
|
371
373
|
CreateDBClusterMessage.add_member(:master_user_secret_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "MasterUserSecretKmsKeyId"))
|
|
374
|
+
CreateDBClusterMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
|
372
375
|
CreateDBClusterMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
|
|
373
376
|
CreateDBClusterMessage.struct_class = Types::CreateDBClusterMessage
|
|
374
377
|
|
|
@@ -475,9 +478,11 @@ module Aws::DocDB
|
|
|
475
478
|
DBCluster.add_member(:cluster_create_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "ClusterCreateTime"))
|
|
476
479
|
DBCluster.add_member(:enabled_cloudwatch_logs_exports, Shapes::ShapeRef.new(shape: LogTypeList, location_name: "EnabledCloudwatchLogsExports"))
|
|
477
480
|
DBCluster.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: Boolean, location_name: "DeletionProtection"))
|
|
481
|
+
DBCluster.add_member(:io_optimized_next_allowed_modification_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "IOOptimizedNextAllowedModificationTime"))
|
|
478
482
|
DBCluster.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
|
|
479
483
|
DBCluster.add_member(:serverless_v2_scaling_configuration, Shapes::ShapeRef.new(shape: ServerlessV2ScalingConfigurationInfo, location_name: "ServerlessV2ScalingConfiguration"))
|
|
480
484
|
DBCluster.add_member(:master_user_secret, Shapes::ShapeRef.new(shape: ClusterMasterUserSecret, location_name: "MasterUserSecret"))
|
|
485
|
+
DBCluster.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
|
481
486
|
DBCluster.struct_class = Types::DBCluster
|
|
482
487
|
|
|
483
488
|
DBClusterAlreadyExistsFault.struct_class = Types::DBClusterAlreadyExistsFault
|
|
@@ -654,6 +659,7 @@ module Aws::DocDB
|
|
|
654
659
|
DBSubnetGroup.add_member(:subnet_group_status, Shapes::ShapeRef.new(shape: String, location_name: "SubnetGroupStatus"))
|
|
655
660
|
DBSubnetGroup.add_member(:subnets, Shapes::ShapeRef.new(shape: SubnetList, location_name: "Subnets"))
|
|
656
661
|
DBSubnetGroup.add_member(:db_subnet_group_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBSubnetGroupArn"))
|
|
662
|
+
DBSubnetGroup.add_member(:supported_network_types, Shapes::ShapeRef.new(shape: NetworkTypeList, location_name: "SupportedNetworkTypes"))
|
|
657
663
|
DBSubnetGroup.struct_class = Types::DBSubnetGroup
|
|
658
664
|
|
|
659
665
|
DBSubnetGroupAlreadyExistsFault.struct_class = Types::DBSubnetGroupAlreadyExistsFault
|
|
@@ -1001,6 +1007,7 @@ module Aws::DocDB
|
|
|
1001
1007
|
ModifyDBClusterMessage.add_member(:manage_master_user_password, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "ManageMasterUserPassword"))
|
|
1002
1008
|
ModifyDBClusterMessage.add_member(:master_user_secret_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "MasterUserSecretKmsKeyId"))
|
|
1003
1009
|
ModifyDBClusterMessage.add_member(:rotate_master_user_password, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "RotateMasterUserPassword"))
|
|
1010
|
+
ModifyDBClusterMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
|
1004
1011
|
ModifyDBClusterMessage.struct_class = Types::ModifyDBClusterMessage
|
|
1005
1012
|
|
|
1006
1013
|
ModifyDBClusterParameterGroupMessage.add_member(:db_cluster_parameter_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterParameterGroupName"))
|
|
@@ -1062,6 +1069,10 @@ module Aws::DocDB
|
|
|
1062
1069
|
ModifyGlobalClusterResult.add_member(:global_cluster, Shapes::ShapeRef.new(shape: GlobalCluster, location_name: "GlobalCluster"))
|
|
1063
1070
|
ModifyGlobalClusterResult.struct_class = Types::ModifyGlobalClusterResult
|
|
1064
1071
|
|
|
1072
|
+
NetworkTypeList.member = Shapes::ShapeRef.new(shape: String)
|
|
1073
|
+
|
|
1074
|
+
NetworkTypeNotSupported.struct_class = Types::NetworkTypeNotSupported
|
|
1075
|
+
|
|
1065
1076
|
OrderableDBInstanceOption.add_member(:engine, Shapes::ShapeRef.new(shape: String, location_name: "Engine"))
|
|
1066
1077
|
OrderableDBInstanceOption.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
|
|
1067
1078
|
OrderableDBInstanceOption.add_member(:db_instance_class, Shapes::ShapeRef.new(shape: String, location_name: "DBInstanceClass"))
|
|
@@ -1182,6 +1193,7 @@ module Aws::DocDB
|
|
|
1182
1193
|
RestoreDBClusterFromSnapshotMessage.add_member(:db_cluster_parameter_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterParameterGroupName"))
|
|
1183
1194
|
RestoreDBClusterFromSnapshotMessage.add_member(:serverless_v2_scaling_configuration, Shapes::ShapeRef.new(shape: ServerlessV2ScalingConfiguration, location_name: "ServerlessV2ScalingConfiguration"))
|
|
1184
1195
|
RestoreDBClusterFromSnapshotMessage.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
|
|
1196
|
+
RestoreDBClusterFromSnapshotMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
|
1185
1197
|
RestoreDBClusterFromSnapshotMessage.struct_class = Types::RestoreDBClusterFromSnapshotMessage
|
|
1186
1198
|
|
|
1187
1199
|
RestoreDBClusterFromSnapshotResult.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
|
|
@@ -1201,6 +1213,7 @@ module Aws::DocDB
|
|
|
1201
1213
|
RestoreDBClusterToPointInTimeMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
|
1202
1214
|
RestoreDBClusterToPointInTimeMessage.add_member(:serverless_v2_scaling_configuration, Shapes::ShapeRef.new(shape: ServerlessV2ScalingConfiguration, location_name: "ServerlessV2ScalingConfiguration"))
|
|
1203
1215
|
RestoreDBClusterToPointInTimeMessage.add_member(:storage_type, Shapes::ShapeRef.new(shape: String, location_name: "StorageType"))
|
|
1216
|
+
RestoreDBClusterToPointInTimeMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
|
1204
1217
|
RestoreDBClusterToPointInTimeMessage.struct_class = Types::RestoreDBClusterToPointInTimeMessage
|
|
1205
1218
|
|
|
1206
1219
|
RestoreDBClusterToPointInTimeResult.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
|
|
@@ -1399,6 +1412,7 @@ module Aws::DocDB
|
|
|
1399
1412
|
o.errors << Shapes::ShapeRef.new(shape: DBSubnetGroupDoesNotCoverEnoughAZs)
|
|
1400
1413
|
o.errors << Shapes::ShapeRef.new(shape: GlobalClusterNotFoundFault)
|
|
1401
1414
|
o.errors << Shapes::ShapeRef.new(shape: InvalidGlobalClusterStateFault)
|
|
1415
|
+
o.errors << Shapes::ShapeRef.new(shape: NetworkTypeNotSupported)
|
|
1402
1416
|
end)
|
|
1403
1417
|
|
|
1404
1418
|
api.add_operation(:create_db_cluster_parameter_group, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -1832,6 +1846,7 @@ module Aws::DocDB
|
|
|
1832
1846
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDBSecurityGroupStateFault)
|
|
1833
1847
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDBInstanceStateFault)
|
|
1834
1848
|
o.errors << Shapes::ShapeRef.new(shape: DBClusterAlreadyExistsFault)
|
|
1849
|
+
o.errors << Shapes::ShapeRef.new(shape: NetworkTypeNotSupported)
|
|
1835
1850
|
end)
|
|
1836
1851
|
|
|
1837
1852
|
api.add_operation(:modify_db_cluster_parameter_group, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -1987,6 +2002,7 @@ module Aws::DocDB
|
|
|
1987
2002
|
o.errors << Shapes::ShapeRef.new(shape: DBSubnetGroupNotFoundFault)
|
|
1988
2003
|
o.errors << Shapes::ShapeRef.new(shape: InvalidSubnet)
|
|
1989
2004
|
o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
|
|
2005
|
+
o.errors << Shapes::ShapeRef.new(shape: NetworkTypeNotSupported)
|
|
1990
2006
|
end)
|
|
1991
2007
|
|
|
1992
2008
|
api.add_operation(:restore_db_cluster_to_point_in_time, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -2010,6 +2026,7 @@ module Aws::DocDB
|
|
|
2010
2026
|
o.errors << Shapes::ShapeRef.new(shape: InvalidVPCNetworkStateFault)
|
|
2011
2027
|
o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
|
|
2012
2028
|
o.errors << Shapes::ShapeRef.new(shape: StorageQuotaExceededFault)
|
|
2029
|
+
o.errors << Shapes::ShapeRef.new(shape: NetworkTypeNotSupported)
|
|
2013
2030
|
end)
|
|
2014
2031
|
|
|
2015
2032
|
api.add_operation(:start_db_cluster, Seahorse::Model::Operation.new.tap do |o|
|
data/lib/aws-sdk-docdb/errors.rb
CHANGED
|
@@ -94,6 +94,7 @@ module Aws::DocDB
|
|
|
94
94
|
# * {InvalidSubnet}
|
|
95
95
|
# * {InvalidVPCNetworkStateFault}
|
|
96
96
|
# * {KMSKeyNotAccessibleFault}
|
|
97
|
+
# * {NetworkTypeNotSupported}
|
|
97
98
|
# * {ResourceNotFoundFault}
|
|
98
99
|
# * {SNSInvalidTopicFault}
|
|
99
100
|
# * This error class is not used. `SNSInvalidTopic` is used during parsing instead.
|
|
@@ -611,6 +612,16 @@ module Aws::DocDB
|
|
|
611
612
|
end
|
|
612
613
|
end
|
|
613
614
|
|
|
615
|
+
class NetworkTypeNotSupported < ServiceError
|
|
616
|
+
|
|
617
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
618
|
+
# @param [String] message
|
|
619
|
+
# @param [Aws::DocDB::Types::NetworkTypeNotSupported] data
|
|
620
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
621
|
+
super(context, message, data)
|
|
622
|
+
end
|
|
623
|
+
end
|
|
624
|
+
|
|
614
625
|
class ResourceNotFoundFault < ServiceError
|
|
615
626
|
|
|
616
627
|
# @param [Seahorse::Client::RequestContext] context
|
data/lib/aws-sdk-docdb/types.rb
CHANGED
|
@@ -400,13 +400,14 @@ module Aws::DocDB
|
|
|
400
400
|
#
|
|
401
401
|
# Constraints:
|
|
402
402
|
#
|
|
403
|
-
# * Must specify a valid
|
|
403
|
+
# * Must specify a valid cluster snapshot in the *available* state.
|
|
404
404
|
#
|
|
405
|
-
# * If the source snapshot is in the same Amazon Web Services
|
|
406
|
-
# as the copy, specify a valid snapshot identifier.
|
|
405
|
+
# * If the source cluster snapshot is in the same Amazon Web Services
|
|
406
|
+
# Region as the copy, specify a valid snapshot identifier.
|
|
407
407
|
#
|
|
408
|
-
# * If the source snapshot is in a different Amazon Web
|
|
409
|
-
# Region
|
|
408
|
+
# * If the source cluster snapshot is in a different Amazon Web
|
|
409
|
+
# Services Region or owned by another Amazon Web Services account,
|
|
410
|
+
# specify the snapshot ARN.
|
|
410
411
|
#
|
|
411
412
|
# Example: `my-cluster-snapshot1`
|
|
412
413
|
# @return [String]
|
|
@@ -724,9 +725,9 @@ module Aws::DocDB
|
|
|
724
725
|
#
|
|
725
726
|
# Default value is `standard `
|
|
726
727
|
#
|
|
727
|
-
# <note markdown="1"> When you create
|
|
728
|
-
# `iopt1`, the storage type is returned in the response. The
|
|
729
|
-
# type isn't returned when you set it to `standard`.
|
|
728
|
+
# <note markdown="1"> When you create an Amazon DocumentDB cluster with the storage type
|
|
729
|
+
# set to `iopt1`, the storage type is returned in the response. The
|
|
730
|
+
# storage type isn't returned when you set it to `standard`.
|
|
730
731
|
#
|
|
731
732
|
# </note>
|
|
732
733
|
# @return [String]
|
|
@@ -767,6 +768,23 @@ module Aws::DocDB
|
|
|
767
768
|
# each Amazon Web Services Region.
|
|
768
769
|
# @return [String]
|
|
769
770
|
#
|
|
771
|
+
# @!attribute [rw] network_type
|
|
772
|
+
# The network type of the cluster.
|
|
773
|
+
#
|
|
774
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
775
|
+
# the cluster. A `DBSubnetGroup` can support only the IPv4 protocol or
|
|
776
|
+
# the IPv4 and the IPv6 protocols (`DUAL`).
|
|
777
|
+
#
|
|
778
|
+
# For more information, see [DocumentDB clusters in a VPC][1] in the
|
|
779
|
+
# Amazon DocumentDB Developer Guide.
|
|
780
|
+
#
|
|
781
|
+
# Valid Values: `IPV4` \| `DUAL`
|
|
782
|
+
#
|
|
783
|
+
#
|
|
784
|
+
#
|
|
785
|
+
# [1]: https://docs.aws.amazon.com/documentdb/latest/developerguide/vpc-clusters.html
|
|
786
|
+
# @return [String]
|
|
787
|
+
#
|
|
770
788
|
# @!attribute [rw] source_region
|
|
771
789
|
# The source region of the snapshot. This is only needed when the
|
|
772
790
|
# shapshot is encrypted and in a different region.
|
|
@@ -799,6 +817,7 @@ module Aws::DocDB
|
|
|
799
817
|
:serverless_v2_scaling_configuration,
|
|
800
818
|
:manage_master_user_password,
|
|
801
819
|
:master_user_secret_kms_key_id,
|
|
820
|
+
:network_type,
|
|
802
821
|
:source_region)
|
|
803
822
|
SENSITIVE = []
|
|
804
823
|
include Aws::Structure
|
|
@@ -1443,6 +1462,11 @@ module Aws::DocDB
|
|
|
1443
1462
|
# deleted.
|
|
1444
1463
|
# @return [Boolean]
|
|
1445
1464
|
#
|
|
1465
|
+
# @!attribute [rw] io_optimized_next_allowed_modification_time
|
|
1466
|
+
# The next time you can modify the Amazon DocumentDB cluster to use
|
|
1467
|
+
# the iopt1 storage type.
|
|
1468
|
+
# @return [Time]
|
|
1469
|
+
#
|
|
1446
1470
|
# @!attribute [rw] storage_type
|
|
1447
1471
|
# Storage type associated with your cluster
|
|
1448
1472
|
#
|
|
@@ -1465,6 +1489,23 @@ module Aws::DocDB
|
|
|
1465
1489
|
# Secrets Manager for the master user password.
|
|
1466
1490
|
# @return [Types::ClusterMasterUserSecret]
|
|
1467
1491
|
#
|
|
1492
|
+
# @!attribute [rw] network_type
|
|
1493
|
+
# The network type of the cluster.
|
|
1494
|
+
#
|
|
1495
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
1496
|
+
# the cluster. A `DBSubnetGroup` can support only the IPv4 protocol or
|
|
1497
|
+
# the IPv4 and the IPv6 protocols (`DUAL`).
|
|
1498
|
+
#
|
|
1499
|
+
# For more information, see [DocumentDB clusters in a VPC][1] in the
|
|
1500
|
+
# Amazon DocumentDB Developer Guide.
|
|
1501
|
+
#
|
|
1502
|
+
# Valid Values: `IPV4` \| `DUAL`
|
|
1503
|
+
#
|
|
1504
|
+
#
|
|
1505
|
+
#
|
|
1506
|
+
# [1]: https://docs.aws.amazon.com/documentdb/latest/developerguide/vpc-clusters.html
|
|
1507
|
+
# @return [String]
|
|
1508
|
+
#
|
|
1468
1509
|
# @see http://docs.aws.amazon.com/goto/WebAPI/docdb-2014-10-31/DBCluster AWS API Documentation
|
|
1469
1510
|
#
|
|
1470
1511
|
class DBCluster < Struct.new(
|
|
@@ -1500,9 +1541,11 @@ module Aws::DocDB
|
|
|
1500
1541
|
:cluster_create_time,
|
|
1501
1542
|
:enabled_cloudwatch_logs_exports,
|
|
1502
1543
|
:deletion_protection,
|
|
1544
|
+
:io_optimized_next_allowed_modification_time,
|
|
1503
1545
|
:storage_type,
|
|
1504
1546
|
:serverless_v2_scaling_configuration,
|
|
1505
|
-
:master_user_secret
|
|
1547
|
+
:master_user_secret,
|
|
1548
|
+
:network_type)
|
|
1506
1549
|
SENSITIVE = []
|
|
1507
1550
|
include Aws::Structure
|
|
1508
1551
|
end
|
|
@@ -2342,6 +2385,15 @@ module Aws::DocDB
|
|
|
2342
2385
|
# The Amazon Resource Name (ARN) for the DB subnet group.
|
|
2343
2386
|
# @return [String]
|
|
2344
2387
|
#
|
|
2388
|
+
# @!attribute [rw] supported_network_types
|
|
2389
|
+
# The network type of the DB subnet group.
|
|
2390
|
+
#
|
|
2391
|
+
# Valid Values: `IPV4` \| `DUAL`
|
|
2392
|
+
#
|
|
2393
|
+
# A `DBSubnetGroup` can support only the IPv4 protocol or the IPv4 and
|
|
2394
|
+
# the IPv6 protocols (DUAL).
|
|
2395
|
+
# @return [Array<String>]
|
|
2396
|
+
#
|
|
2345
2397
|
# @see http://docs.aws.amazon.com/goto/WebAPI/docdb-2014-10-31/DBSubnetGroup AWS API Documentation
|
|
2346
2398
|
#
|
|
2347
2399
|
class DBSubnetGroup < Struct.new(
|
|
@@ -2350,7 +2402,8 @@ module Aws::DocDB
|
|
|
2350
2402
|
:vpc_id,
|
|
2351
2403
|
:subnet_group_status,
|
|
2352
2404
|
:subnets,
|
|
2353
|
-
:db_subnet_group_arn
|
|
2405
|
+
:db_subnet_group_arn,
|
|
2406
|
+
:supported_network_types)
|
|
2354
2407
|
SENSITIVE = []
|
|
2355
2408
|
include Aws::Structure
|
|
2356
2409
|
end
|
|
@@ -4308,9 +4361,27 @@ module Aws::DocDB
|
|
|
4308
4361
|
# @!attribute [rw] allow_major_version_upgrade
|
|
4309
4362
|
# A value that indicates whether major version upgrades are allowed.
|
|
4310
4363
|
#
|
|
4311
|
-
# Constraints:
|
|
4312
|
-
#
|
|
4313
|
-
# version
|
|
4364
|
+
# Constraints:
|
|
4365
|
+
#
|
|
4366
|
+
# * You must allow major version upgrades when specifying a value for
|
|
4367
|
+
# the `EngineVersion` parameter that is a different major version
|
|
4368
|
+
# than the cluster's current version.
|
|
4369
|
+
#
|
|
4370
|
+
# * Since some parameters are version specific, changing them requires
|
|
4371
|
+
# executing a new `ModifyDBCluster` API call after the in-place MVU
|
|
4372
|
+
# completes.
|
|
4373
|
+
#
|
|
4374
|
+
# <note markdown="1"> Performing an MVU directly impacts the following parameters:
|
|
4375
|
+
#
|
|
4376
|
+
# * `MasterUserPassword`
|
|
4377
|
+
#
|
|
4378
|
+
# * `NewDBClusterIdentifier`
|
|
4379
|
+
#
|
|
4380
|
+
# * `VpcSecurityGroupIds`
|
|
4381
|
+
#
|
|
4382
|
+
# * `Port`
|
|
4383
|
+
#
|
|
4384
|
+
# </note>
|
|
4314
4385
|
# @return [Boolean]
|
|
4315
4386
|
#
|
|
4316
4387
|
# @!attribute [rw] deletion_protection
|
|
@@ -4396,6 +4467,23 @@ module Aws::DocDB
|
|
|
4396
4467
|
# master user password.
|
|
4397
4468
|
# @return [Boolean]
|
|
4398
4469
|
#
|
|
4470
|
+
# @!attribute [rw] network_type
|
|
4471
|
+
# The network type of the cluster.
|
|
4472
|
+
#
|
|
4473
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
4474
|
+
# the cluster. A `DBSubnetGroup` can support only the IPv4 protocol or
|
|
4475
|
+
# the IPv4 and the IPv6 protocols (`DUAL`).
|
|
4476
|
+
#
|
|
4477
|
+
# For more information, see [DocumentDB clusters in a VPC][1] in the
|
|
4478
|
+
# Amazon DocumentDB Developer Guide.
|
|
4479
|
+
#
|
|
4480
|
+
# Valid Values: `IPV4` \| `DUAL`
|
|
4481
|
+
#
|
|
4482
|
+
#
|
|
4483
|
+
#
|
|
4484
|
+
# [1]: https://docs.aws.amazon.com/documentdb/latest/developerguide/vpc-clusters.html
|
|
4485
|
+
# @return [String]
|
|
4486
|
+
#
|
|
4399
4487
|
# @see http://docs.aws.amazon.com/goto/WebAPI/docdb-2014-10-31/ModifyDBClusterMessage AWS API Documentation
|
|
4400
4488
|
#
|
|
4401
4489
|
class ModifyDBClusterMessage < Struct.new(
|
|
@@ -4417,7 +4505,8 @@ module Aws::DocDB
|
|
|
4417
4505
|
:serverless_v2_scaling_configuration,
|
|
4418
4506
|
:manage_master_user_password,
|
|
4419
4507
|
:master_user_secret_kms_key_id,
|
|
4420
|
-
:rotate_master_user_password
|
|
4508
|
+
:rotate_master_user_password,
|
|
4509
|
+
:network_type)
|
|
4421
4510
|
SENSITIVE = []
|
|
4422
4511
|
include Aws::Structure
|
|
4423
4512
|
end
|
|
@@ -4848,6 +4937,13 @@ module Aws::DocDB
|
|
|
4848
4937
|
include Aws::Structure
|
|
4849
4938
|
end
|
|
4850
4939
|
|
|
4940
|
+
# The network type is not supported by either `DBSubnetGroup` or the DB
|
|
4941
|
+
# engine version.
|
|
4942
|
+
#
|
|
4943
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/docdb-2014-10-31/NetworkTypeNotSupported AWS API Documentation
|
|
4944
|
+
#
|
|
4945
|
+
class NetworkTypeNotSupported < Aws::EmptyStructure; end
|
|
4946
|
+
|
|
4851
4947
|
# The options that are available for an instance.
|
|
4852
4948
|
#
|
|
4853
4949
|
# @!attribute [rw] engine
|
|
@@ -4920,7 +5016,33 @@ module Aws::DocDB
|
|
|
4920
5016
|
# @return [String]
|
|
4921
5017
|
#
|
|
4922
5018
|
# @!attribute [rw] parameter_value
|
|
4923
|
-
# Specifies the value of the parameter.
|
|
5019
|
+
# Specifies the value of the parameter. Must be one or more of the
|
|
5020
|
+
# cluster parameter's `AllowedValues` in CSV format:
|
|
5021
|
+
#
|
|
5022
|
+
# Valid values are:
|
|
5023
|
+
#
|
|
5024
|
+
# * `enabled`: The cluster accepts secure connections using TLS
|
|
5025
|
+
# version 1.0 through 1.3.
|
|
5026
|
+
#
|
|
5027
|
+
# * `disabled`: The cluster does not accept secure connections using
|
|
5028
|
+
# TLS.
|
|
5029
|
+
#
|
|
5030
|
+
# * `fips-140-3`: The cluster only accepts secure connections per the
|
|
5031
|
+
# requirements of the Federal Information Processing Standards
|
|
5032
|
+
# (FIPS) publication 140-3. Only supported starting with Amazon
|
|
5033
|
+
# DocumentDB 5.0 (engine version 3.0.3727) clusters in these
|
|
5034
|
+
# regions: ca-central-1, us-west-2, us-east-1, us-east-2,
|
|
5035
|
+
# us-gov-east-1, us-gov-west-1.
|
|
5036
|
+
#
|
|
5037
|
+
# * `tls1.2+`: The cluster accepts secure connections using TLS
|
|
5038
|
+
# version 1.2 and above. Only supported starting with Amazon
|
|
5039
|
+
# DocumentDB 4.0 (engine version 2.0.10980) and Amazon DocumentDB
|
|
5040
|
+
# 5.0 (engine version 3.0.11051).
|
|
5041
|
+
#
|
|
5042
|
+
# * `tls1.3+`: The cluster accepts secure connections using TLS
|
|
5043
|
+
# version 1.3 and above. Only supported starting with Amazon
|
|
5044
|
+
# DocumentDB 4.0 (engine version 2.0.10980) and Amazon DocumentDB
|
|
5045
|
+
# 5.0 (engine version 3.0.11051).
|
|
4924
5046
|
# @return [String]
|
|
4925
5047
|
#
|
|
4926
5048
|
# @!attribute [rw] description
|
|
@@ -5481,6 +5603,23 @@ module Aws::DocDB
|
|
|
5481
5603
|
# Default value is `standard `
|
|
5482
5604
|
# @return [String]
|
|
5483
5605
|
#
|
|
5606
|
+
# @!attribute [rw] network_type
|
|
5607
|
+
# The network type of the cluster.
|
|
5608
|
+
#
|
|
5609
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
5610
|
+
# the cluster. A `DBSubnetGroup` can support only the IPv4 protocol or
|
|
5611
|
+
# the IPv4 and the IPv6 protocols (`DUAL`).
|
|
5612
|
+
#
|
|
5613
|
+
# For more information, see [DocumentDB clusters in a VPC][1] in the
|
|
5614
|
+
# Amazon DocumentDB Developer Guide.
|
|
5615
|
+
#
|
|
5616
|
+
# Valid Values: `IPV4` \| `DUAL`
|
|
5617
|
+
#
|
|
5618
|
+
#
|
|
5619
|
+
#
|
|
5620
|
+
# [1]: https://docs.aws.amazon.com/documentdb/latest/developerguide/vpc-clusters.html
|
|
5621
|
+
# @return [String]
|
|
5622
|
+
#
|
|
5484
5623
|
# @see http://docs.aws.amazon.com/goto/WebAPI/docdb-2014-10-31/RestoreDBClusterFromSnapshotMessage AWS API Documentation
|
|
5485
5624
|
#
|
|
5486
5625
|
class RestoreDBClusterFromSnapshotMessage < Struct.new(
|
|
@@ -5498,7 +5637,8 @@ module Aws::DocDB
|
|
|
5498
5637
|
:deletion_protection,
|
|
5499
5638
|
:db_cluster_parameter_group_name,
|
|
5500
5639
|
:serverless_v2_scaling_configuration,
|
|
5501
|
-
:storage_type
|
|
5640
|
+
:storage_type,
|
|
5641
|
+
:network_type)
|
|
5502
5642
|
SENSITIVE = []
|
|
5503
5643
|
include Aws::Structure
|
|
5504
5644
|
end
|
|
@@ -5671,6 +5811,23 @@ module Aws::DocDB
|
|
|
5671
5811
|
# Default value is `standard `
|
|
5672
5812
|
# @return [String]
|
|
5673
5813
|
#
|
|
5814
|
+
# @!attribute [rw] network_type
|
|
5815
|
+
# The network type of the cluster.
|
|
5816
|
+
#
|
|
5817
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
5818
|
+
# the cluster. A `DBSubnetGroup` can support only the IPv4 protocol or
|
|
5819
|
+
# the IPv4 and the IPv6 protocols (`DUAL`).
|
|
5820
|
+
#
|
|
5821
|
+
# For more information, see [DocumentDB clusters in a VPC][1] in the
|
|
5822
|
+
# Amazon DocumentDB Developer Guide.
|
|
5823
|
+
#
|
|
5824
|
+
# Valid Values: `IPV4` \| `DUAL`
|
|
5825
|
+
#
|
|
5826
|
+
#
|
|
5827
|
+
#
|
|
5828
|
+
# [1]: https://docs.aws.amazon.com/documentdb/latest/developerguide/vpc-clusters.html
|
|
5829
|
+
# @return [String]
|
|
5830
|
+
#
|
|
5674
5831
|
# @see http://docs.aws.amazon.com/goto/WebAPI/docdb-2014-10-31/RestoreDBClusterToPointInTimeMessage AWS API Documentation
|
|
5675
5832
|
#
|
|
5676
5833
|
class RestoreDBClusterToPointInTimeMessage < Struct.new(
|
|
@@ -5687,7 +5844,8 @@ module Aws::DocDB
|
|
|
5687
5844
|
:enable_cloudwatch_logs_exports,
|
|
5688
5845
|
:deletion_protection,
|
|
5689
5846
|
:serverless_v2_scaling_configuration,
|
|
5690
|
-
:storage_type
|
|
5847
|
+
:storage_type,
|
|
5848
|
+
:network_type)
|
|
5691
5849
|
SENSITIVE = []
|
|
5692
5850
|
include Aws::Structure
|
|
5693
5851
|
end
|
data/lib/aws-sdk-docdb.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -190,6 +190,7 @@ module Aws
|
|
|
190
190
|
},
|
|
191
191
|
?manage_master_user_password: bool,
|
|
192
192
|
?master_user_secret_kms_key_id: ::String,
|
|
193
|
+
?network_type: ::String,
|
|
193
194
|
?source_region: ::String
|
|
194
195
|
) -> _CreateDBClusterResponseSuccess
|
|
195
196
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDBClusterResponseSuccess
|
|
@@ -755,7 +756,8 @@ module Aws
|
|
|
755
756
|
},
|
|
756
757
|
?manage_master_user_password: bool,
|
|
757
758
|
?master_user_secret_kms_key_id: ::String,
|
|
758
|
-
?rotate_master_user_password: bool
|
|
759
|
+
?rotate_master_user_password: bool,
|
|
760
|
+
?network_type: ::String
|
|
759
761
|
) -> _ModifyDBClusterResponseSuccess
|
|
760
762
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyDBClusterResponseSuccess
|
|
761
763
|
|
|
@@ -948,7 +950,8 @@ module Aws
|
|
|
948
950
|
min_capacity: ::Float?,
|
|
949
951
|
max_capacity: ::Float?
|
|
950
952
|
},
|
|
951
|
-
?storage_type: ::String
|
|
953
|
+
?storage_type: ::String,
|
|
954
|
+
?network_type: ::String
|
|
952
955
|
) -> _RestoreDBClusterFromSnapshotResponseSuccess
|
|
953
956
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDBClusterFromSnapshotResponseSuccess
|
|
954
957
|
|
|
@@ -979,7 +982,8 @@ module Aws
|
|
|
979
982
|
min_capacity: ::Float?,
|
|
980
983
|
max_capacity: ::Float?
|
|
981
984
|
},
|
|
982
|
-
?storage_type: ::String
|
|
985
|
+
?storage_type: ::String,
|
|
986
|
+
?network_type: ::String
|
|
983
987
|
) -> _RestoreDBClusterToPointInTimeResponseSuccess
|
|
984
988
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDBClusterToPointInTimeResponseSuccess
|
|
985
989
|
|
data/sig/errors.rbs
CHANGED
|
@@ -99,6 +99,8 @@ module Aws
|
|
|
99
99
|
end
|
|
100
100
|
class KMSKeyNotAccessibleFault < ::Aws::Errors::ServiceError
|
|
101
101
|
end
|
|
102
|
+
class NetworkTypeNotSupported < ::Aws::Errors::ServiceError
|
|
103
|
+
end
|
|
102
104
|
class ResourceNotFoundFault < ::Aws::Errors::ServiceError
|
|
103
105
|
end
|
|
104
106
|
class SNSInvalidTopicFault < ::Aws::Errors::ServiceError
|
data/sig/types.rbs
CHANGED
|
@@ -137,6 +137,7 @@ module Aws::DocDB
|
|
|
137
137
|
attr_accessor serverless_v2_scaling_configuration: Types::ServerlessV2ScalingConfiguration
|
|
138
138
|
attr_accessor manage_master_user_password: bool
|
|
139
139
|
attr_accessor master_user_secret_kms_key_id: ::String
|
|
140
|
+
attr_accessor network_type: ::String
|
|
140
141
|
attr_accessor source_region: ::String
|
|
141
142
|
SENSITIVE: []
|
|
142
143
|
end
|
|
@@ -271,9 +272,11 @@ module Aws::DocDB
|
|
|
271
272
|
attr_accessor cluster_create_time: ::Time
|
|
272
273
|
attr_accessor enabled_cloudwatch_logs_exports: ::Array[::String]
|
|
273
274
|
attr_accessor deletion_protection: bool
|
|
275
|
+
attr_accessor io_optimized_next_allowed_modification_time: ::Time
|
|
274
276
|
attr_accessor storage_type: ::String
|
|
275
277
|
attr_accessor serverless_v2_scaling_configuration: Types::ServerlessV2ScalingConfigurationInfo
|
|
276
278
|
attr_accessor master_user_secret: Types::ClusterMasterUserSecret
|
|
279
|
+
attr_accessor network_type: ::String
|
|
277
280
|
SENSITIVE: []
|
|
278
281
|
end
|
|
279
282
|
|
|
@@ -480,6 +483,7 @@ module Aws::DocDB
|
|
|
480
483
|
attr_accessor subnet_group_status: ::String
|
|
481
484
|
attr_accessor subnets: ::Array[Types::Subnet]
|
|
482
485
|
attr_accessor db_subnet_group_arn: ::String
|
|
486
|
+
attr_accessor supported_network_types: ::Array[::String]
|
|
483
487
|
SENSITIVE: []
|
|
484
488
|
end
|
|
485
489
|
|
|
@@ -931,6 +935,7 @@ module Aws::DocDB
|
|
|
931
935
|
attr_accessor manage_master_user_password: bool
|
|
932
936
|
attr_accessor master_user_secret_kms_key_id: ::String
|
|
933
937
|
attr_accessor rotate_master_user_password: bool
|
|
938
|
+
attr_accessor network_type: ::String
|
|
934
939
|
SENSITIVE: []
|
|
935
940
|
end
|
|
936
941
|
|
|
@@ -1017,6 +1022,9 @@ module Aws::DocDB
|
|
|
1017
1022
|
SENSITIVE: []
|
|
1018
1023
|
end
|
|
1019
1024
|
|
|
1025
|
+
class NetworkTypeNotSupported < Aws::EmptyStructure
|
|
1026
|
+
end
|
|
1027
|
+
|
|
1020
1028
|
class OrderableDBInstanceOption
|
|
1021
1029
|
attr_accessor engine: ::String
|
|
1022
1030
|
attr_accessor engine_version: ::String
|
|
@@ -1159,6 +1167,7 @@ module Aws::DocDB
|
|
|
1159
1167
|
attr_accessor db_cluster_parameter_group_name: ::String
|
|
1160
1168
|
attr_accessor serverless_v2_scaling_configuration: Types::ServerlessV2ScalingConfiguration
|
|
1161
1169
|
attr_accessor storage_type: ::String
|
|
1170
|
+
attr_accessor network_type: ::String
|
|
1162
1171
|
SENSITIVE: []
|
|
1163
1172
|
end
|
|
1164
1173
|
|
|
@@ -1182,6 +1191,7 @@ module Aws::DocDB
|
|
|
1182
1191
|
attr_accessor deletion_protection: bool
|
|
1183
1192
|
attr_accessor serverless_v2_scaling_configuration: Types::ServerlessV2ScalingConfiguration
|
|
1184
1193
|
attr_accessor storage_type: ::String
|
|
1194
|
+
attr_accessor network_type: ::String
|
|
1185
1195
|
SENSITIVE: []
|
|
1186
1196
|
end
|
|
1187
1197
|
|