aws-sdk-neptune 1.19.0 → 1.24.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/aws-sdk-neptune.rb +7 -4
- data/lib/aws-sdk-neptune/client.rb +382 -104
- data/lib/aws-sdk-neptune/client_api.rb +164 -0
- data/lib/aws-sdk-neptune/errors.rb +671 -0
- data/lib/aws-sdk-neptune/resource.rb +1 -0
- data/lib/aws-sdk-neptune/types.rb +601 -110
- data/lib/aws-sdk-neptune/waiters.rb +62 -0
- metadata +3 -3
@@ -181,6 +181,16 @@ module Aws::Neptune
|
|
181
181
|
include Aws::Structure
|
182
182
|
end
|
183
183
|
|
184
|
+
# Specified CIDRIP or EC2 security group is not authorized for the
|
185
|
+
# specified DB security group.
|
186
|
+
#
|
187
|
+
# Neptune may not also be authorized via IAM to perform necessary
|
188
|
+
# actions on your behalf.
|
189
|
+
#
|
190
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/AuthorizationNotFoundFault AWS API Documentation
|
191
|
+
#
|
192
|
+
class AuthorizationNotFoundFault < Aws::EmptyStructure; end
|
193
|
+
|
184
194
|
# Specifies an Availability Zone.
|
185
195
|
#
|
186
196
|
# @!attribute [rw] name
|
@@ -194,6 +204,12 @@ module Aws::Neptune
|
|
194
204
|
include Aws::Structure
|
195
205
|
end
|
196
206
|
|
207
|
+
# *CertificateIdentifier* does not refer to an existing certificate.
|
208
|
+
#
|
209
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/CertificateNotFoundFault AWS API Documentation
|
210
|
+
#
|
211
|
+
class CertificateNotFoundFault < Aws::EmptyStructure; end
|
212
|
+
|
197
213
|
# Specifies a character set.
|
198
214
|
#
|
199
215
|
# @!attribute [rw] character_set_name
|
@@ -381,10 +397,6 @@ module Aws::Neptune
|
|
381
397
|
# key ID is the Amazon Resource Name (ARN), KMS key identifier, or the
|
382
398
|
# KMS key alias for the KMS encryption key.
|
383
399
|
#
|
384
|
-
# If you copy an unencrypted DB cluster snapshot and specify a value
|
385
|
-
# for the `KmsKeyId` parameter, Amazon Neptune encrypts the target DB
|
386
|
-
# cluster snapshot using the specified KMS encryption key.
|
387
|
-
#
|
388
400
|
# If you copy an encrypted DB cluster snapshot from your AWS account,
|
389
401
|
# you can specify a value for `KmsKeyId` to encrypt the copy with a
|
390
402
|
# new KMS encryption key. If you don't specify a value for
|
@@ -397,6 +409,10 @@ module Aws::Neptune
|
|
397
409
|
# KMS encryption keys are specific to the AWS Region that they are
|
398
410
|
# created in, and you can't use encryption keys from one AWS Region
|
399
411
|
# in another AWS Region.
|
412
|
+
#
|
413
|
+
# You cannot encrypt an unencrypted DB cluster snapshot when you copy
|
414
|
+
# it. If you try to copy an unencrypted DB cluster snapshot and
|
415
|
+
# specify a value for the KmsKeyId parameter, an error is returned.
|
400
416
|
# @return [String]
|
401
417
|
#
|
402
418
|
# @!attribute [rw] pre_signed_url
|
@@ -551,6 +567,7 @@ module Aws::Neptune
|
|
551
567
|
# pre_signed_url: "String",
|
552
568
|
# enable_iam_database_authentication: false,
|
553
569
|
# enable_cloudwatch_logs_exports: ["String"],
|
570
|
+
# deletion_protection: false,
|
554
571
|
# }
|
555
572
|
#
|
556
573
|
# @!attribute [rw] availability_zones
|
@@ -572,8 +589,7 @@ module Aws::Neptune
|
|
572
589
|
# @return [Integer]
|
573
590
|
#
|
574
591
|
# @!attribute [rw] character_set_name
|
575
|
-
#
|
576
|
-
# the specified CharacterSet.
|
592
|
+
# *(Not supported by Neptune)*
|
577
593
|
# @return [String]
|
578
594
|
#
|
579
595
|
# @!attribute [rw] database_name
|
@@ -629,7 +645,8 @@ module Aws::Neptune
|
|
629
645
|
# @return [String]
|
630
646
|
#
|
631
647
|
# @!attribute [rw] engine_version
|
632
|
-
# The version number of the database engine to use.
|
648
|
+
# The version number of the database engine to use. Currently, setting
|
649
|
+
# this parameter has no effect.
|
633
650
|
#
|
634
651
|
# Example: `1.0.1`
|
635
652
|
# @return [String]
|
@@ -661,12 +678,7 @@ module Aws::Neptune
|
|
661
678
|
# @return [String]
|
662
679
|
#
|
663
680
|
# @!attribute [rw] option_group_name
|
664
|
-
#
|
665
|
-
# the specified option group.
|
666
|
-
#
|
667
|
-
# Permanent options can't be removed from an option group. The option
|
668
|
-
# group can't be removed from a DB cluster once it is associated with
|
669
|
-
# a DB cluster.
|
681
|
+
# *(Not supported by Neptune)*
|
670
682
|
# @return [String]
|
671
683
|
#
|
672
684
|
# @!attribute [rw] preferred_backup_window
|
@@ -773,6 +785,12 @@ module Aws::Neptune
|
|
773
785
|
# CloudWatch Logs.
|
774
786
|
# @return [Array<String>]
|
775
787
|
#
|
788
|
+
# @!attribute [rw] deletion_protection
|
789
|
+
# A value that indicates whether the DB cluster has deletion
|
790
|
+
# protection enabled. The database can't be deleted when deletion
|
791
|
+
# protection is enabled. By default, deletion protection is enabled.
|
792
|
+
# @return [Boolean]
|
793
|
+
#
|
776
794
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/CreateDBClusterMessage AWS API Documentation
|
777
795
|
#
|
778
796
|
class CreateDBClusterMessage < Struct.new(
|
@@ -798,7 +816,8 @@ module Aws::Neptune
|
|
798
816
|
:kms_key_id,
|
799
817
|
:pre_signed_url,
|
800
818
|
:enable_iam_database_authentication,
|
801
|
-
:enable_cloudwatch_logs_exports
|
819
|
+
:enable_cloudwatch_logs_exports,
|
820
|
+
:deletion_protection)
|
802
821
|
include Aws::Structure
|
803
822
|
end
|
804
823
|
|
@@ -1006,6 +1025,7 @@ module Aws::Neptune
|
|
1006
1025
|
# enable_performance_insights: false,
|
1007
1026
|
# performance_insights_kms_key_id: "String",
|
1008
1027
|
# enable_cloudwatch_logs_exports: ["String"],
|
1028
|
+
# deletion_protection: false,
|
1009
1029
|
# }
|
1010
1030
|
#
|
1011
1031
|
# @!attribute [rw] db_name
|
@@ -1169,7 +1189,8 @@ module Aws::Neptune
|
|
1169
1189
|
# @return [Boolean]
|
1170
1190
|
#
|
1171
1191
|
# @!attribute [rw] engine_version
|
1172
|
-
# The version number of the database engine to use.
|
1192
|
+
# The version number of the database engine to use. Currently, setting
|
1193
|
+
# this parameter has no effect.
|
1173
1194
|
# @return [String]
|
1174
1195
|
#
|
1175
1196
|
# @!attribute [rw] auto_minor_version_upgrade
|
@@ -1192,21 +1213,11 @@ module Aws::Neptune
|
|
1192
1213
|
# @return [Integer]
|
1193
1214
|
#
|
1194
1215
|
# @!attribute [rw] option_group_name
|
1195
|
-
#
|
1196
|
-
# specified option group.
|
1197
|
-
#
|
1198
|
-
# Permanent options, such as the TDE option for Oracle Advanced
|
1199
|
-
# Security TDE, can't be removed from an option group, and that
|
1200
|
-
# option group can't be removed from a DB instance once it is
|
1201
|
-
# associated with a DB instance
|
1216
|
+
# *(Not supported by Neptune)*
|
1202
1217
|
# @return [String]
|
1203
1218
|
#
|
1204
1219
|
# @!attribute [rw] character_set_name
|
1205
|
-
#
|
1206
|
-
# specified CharacterSet.
|
1207
|
-
#
|
1208
|
-
# Not applicable. The character set is managed by the DB cluster. For
|
1209
|
-
# more information, see CreateDBCluster.
|
1220
|
+
# *(Not supported by Neptune)*
|
1210
1221
|
# @return [String]
|
1211
1222
|
#
|
1212
1223
|
# @!attribute [rw] publicly_accessible
|
@@ -1325,14 +1336,11 @@ module Aws::Neptune
|
|
1325
1336
|
# @return [Boolean]
|
1326
1337
|
#
|
1327
1338
|
# @!attribute [rw] enable_performance_insights
|
1328
|
-
#
|
1329
|
-
# otherwise false.
|
1339
|
+
# *(Not supported by Neptune)*
|
1330
1340
|
# @return [Boolean]
|
1331
1341
|
#
|
1332
1342
|
# @!attribute [rw] performance_insights_kms_key_id
|
1333
|
-
#
|
1334
|
-
# data. The KMS key ID is the Amazon Resource Name (ARN), KMS key
|
1335
|
-
# identifier, or the KMS key alias for the KMS encryption key.
|
1343
|
+
# *(Not supported by Neptune)*
|
1336
1344
|
# @return [String]
|
1337
1345
|
#
|
1338
1346
|
# @!attribute [rw] enable_cloudwatch_logs_exports
|
@@ -1340,6 +1348,20 @@ module Aws::Neptune
|
|
1340
1348
|
# CloudWatch Logs.
|
1341
1349
|
# @return [Array<String>]
|
1342
1350
|
#
|
1351
|
+
# @!attribute [rw] deletion_protection
|
1352
|
+
# A value that indicates whether the DB instance has deletion
|
1353
|
+
# protection enabled. The database can't be deleted when deletion
|
1354
|
+
# protection is enabled. By default, deletion protection is disabled.
|
1355
|
+
# See [Deleting a DB Instance][1].
|
1356
|
+
#
|
1357
|
+
# DB instances in a DB cluster can be deleted even when deletion
|
1358
|
+
# protection is enabled in their parent DB cluster.
|
1359
|
+
#
|
1360
|
+
#
|
1361
|
+
#
|
1362
|
+
# [1]: https://docs.aws.amazon.com/neptune/latest/userguide/manage-console-instances-delete.html
|
1363
|
+
# @return [Boolean]
|
1364
|
+
#
|
1343
1365
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/CreateDBInstanceMessage AWS API Documentation
|
1344
1366
|
#
|
1345
1367
|
class CreateDBInstanceMessage < Struct.new(
|
@@ -1384,7 +1406,8 @@ module Aws::Neptune
|
|
1384
1406
|
:enable_iam_database_authentication,
|
1385
1407
|
:enable_performance_insights,
|
1386
1408
|
:performance_insights_kms_key_id,
|
1387
|
-
:enable_cloudwatch_logs_exports
|
1409
|
+
:enable_cloudwatch_logs_exports,
|
1410
|
+
:deletion_protection)
|
1388
1411
|
include Aws::Structure
|
1389
1412
|
end
|
1390
1413
|
|
@@ -1659,8 +1682,7 @@ module Aws::Neptune
|
|
1659
1682
|
# @return [Integer]
|
1660
1683
|
#
|
1661
1684
|
# @!attribute [rw] character_set_name
|
1662
|
-
#
|
1663
|
-
# cluster is associated with.
|
1685
|
+
# *(Not supported by Neptune)*
|
1664
1686
|
# @return [String]
|
1665
1687
|
#
|
1666
1688
|
# @!attribute [rw] database_name
|
@@ -1747,7 +1769,7 @@ module Aws::Neptune
|
|
1747
1769
|
# @return [String]
|
1748
1770
|
#
|
1749
1771
|
# @!attribute [rw] db_cluster_option_group_memberships
|
1750
|
-
#
|
1772
|
+
# *(Not supported by Neptune)*
|
1751
1773
|
# @return [Array<Types::DBClusterOptionGroupStatus>]
|
1752
1774
|
#
|
1753
1775
|
# @!attribute [rw] preferred_backup_window
|
@@ -1829,6 +1851,12 @@ module Aws::Neptune
|
|
1829
1851
|
# CloudWatch Logs.
|
1830
1852
|
# @return [Array<String>]
|
1831
1853
|
#
|
1854
|
+
# @!attribute [rw] deletion_protection
|
1855
|
+
# Indicates whether or not the DB cluster has deletion protection
|
1856
|
+
# enabled. The database can't be deleted when deletion protection is
|
1857
|
+
# enabled.
|
1858
|
+
# @return [Boolean]
|
1859
|
+
#
|
1832
1860
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBCluster AWS API Documentation
|
1833
1861
|
#
|
1834
1862
|
class DBCluster < Struct.new(
|
@@ -1867,10 +1895,17 @@ module Aws::Neptune
|
|
1867
1895
|
:iam_database_authentication_enabled,
|
1868
1896
|
:clone_group_id,
|
1869
1897
|
:cluster_create_time,
|
1870
|
-
:enabled_cloudwatch_logs_exports
|
1898
|
+
:enabled_cloudwatch_logs_exports,
|
1899
|
+
:deletion_protection)
|
1871
1900
|
include Aws::Structure
|
1872
1901
|
end
|
1873
1902
|
|
1903
|
+
# User already has a DB cluster with the given identifier.
|
1904
|
+
#
|
1905
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBClusterAlreadyExistsFault AWS API Documentation
|
1906
|
+
#
|
1907
|
+
class DBClusterAlreadyExistsFault < Aws::EmptyStructure; end
|
1908
|
+
|
1874
1909
|
# Contains information about an instance that is part of a DB cluster.
|
1875
1910
|
#
|
1876
1911
|
# @!attribute [rw] db_instance_identifier
|
@@ -1920,6 +1955,12 @@ module Aws::Neptune
|
|
1920
1955
|
include Aws::Structure
|
1921
1956
|
end
|
1922
1957
|
|
1958
|
+
# *DBClusterIdentifier* does not refer to an existing DB cluster.
|
1959
|
+
#
|
1960
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBClusterNotFoundFault AWS API Documentation
|
1961
|
+
#
|
1962
|
+
class DBClusterNotFoundFault < Aws::EmptyStructure; end
|
1963
|
+
|
1923
1964
|
# Contains status information for a DB cluster option group.
|
1924
1965
|
#
|
1925
1966
|
# @!attribute [rw] db_cluster_option_group_name
|
@@ -2013,6 +2054,13 @@ module Aws::Neptune
|
|
2013
2054
|
include Aws::Structure
|
2014
2055
|
end
|
2015
2056
|
|
2057
|
+
# *DBClusterParameterGroupName* does not refer to an existing DB Cluster
|
2058
|
+
# parameter group.
|
2059
|
+
#
|
2060
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBClusterParameterGroupNotFoundFault AWS API Documentation
|
2061
|
+
#
|
2062
|
+
class DBClusterParameterGroupNotFoundFault < Aws::EmptyStructure; end
|
2063
|
+
|
2016
2064
|
# @!attribute [rw] marker
|
2017
2065
|
# An optional pagination token provided by a previous
|
2018
2066
|
# `DescribeDBClusterParameterGroups` request. If this parameter is
|
@@ -2032,6 +2080,13 @@ module Aws::Neptune
|
|
2032
2080
|
include Aws::Structure
|
2033
2081
|
end
|
2034
2082
|
|
2083
|
+
# User attempted to create a new DB cluster and the user has already
|
2084
|
+
# reached the maximum allowed DB cluster quota.
|
2085
|
+
#
|
2086
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBClusterQuotaExceededFault AWS API Documentation
|
2087
|
+
#
|
2088
|
+
class DBClusterQuotaExceededFault < Aws::EmptyStructure; end
|
2089
|
+
|
2035
2090
|
# Describes an AWS Identity and Access Management (IAM) role that is
|
2036
2091
|
# associated with a DB cluster.
|
2037
2092
|
#
|
@@ -2063,6 +2118,27 @@ module Aws::Neptune
|
|
2063
2118
|
include Aws::Structure
|
2064
2119
|
end
|
2065
2120
|
|
2121
|
+
# The specified IAM role Amazon Resource Name (ARN) is already
|
2122
|
+
# associated with the specified DB cluster.
|
2123
|
+
#
|
2124
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBClusterRoleAlreadyExistsFault AWS API Documentation
|
2125
|
+
#
|
2126
|
+
class DBClusterRoleAlreadyExistsFault < Aws::EmptyStructure; end
|
2127
|
+
|
2128
|
+
# The specified IAM role Amazon Resource Name (ARN) is not associated
|
2129
|
+
# with the specified DB cluster.
|
2130
|
+
#
|
2131
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBClusterRoleNotFoundFault AWS API Documentation
|
2132
|
+
#
|
2133
|
+
class DBClusterRoleNotFoundFault < Aws::EmptyStructure; end
|
2134
|
+
|
2135
|
+
# You have exceeded the maximum number of IAM roles that can be
|
2136
|
+
# associated with the specified DB cluster.
|
2137
|
+
#
|
2138
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBClusterRoleQuotaExceededFault AWS API Documentation
|
2139
|
+
#
|
2140
|
+
class DBClusterRoleQuotaExceededFault < Aws::EmptyStructure; end
|
2141
|
+
|
2066
2142
|
# Contains the details for an Amazon Neptune DB cluster snapshot
|
2067
2143
|
#
|
2068
2144
|
# This data type is used as a response element in the
|
@@ -2074,7 +2150,22 @@ module Aws::Neptune
|
|
2074
2150
|
# @return [Array<String>]
|
2075
2151
|
#
|
2076
2152
|
# @!attribute [rw] db_cluster_snapshot_identifier
|
2077
|
-
# Specifies the identifier for
|
2153
|
+
# Specifies the identifier for a DB cluster snapshot. Must match the
|
2154
|
+
# identifier of an existing snapshot.
|
2155
|
+
#
|
2156
|
+
# After you restore a DB cluster using a
|
2157
|
+
# `DBClusterSnapshotIdentifier`, you must specify the same
|
2158
|
+
# `DBClusterSnapshotIdentifier` for any future updates to the DB
|
2159
|
+
# cluster. When you specify this property for an update, the DB
|
2160
|
+
# cluster is not restored from the snapshot again, and the data in the
|
2161
|
+
# database is not changed.
|
2162
|
+
#
|
2163
|
+
# However, if you don't specify the `DBClusterSnapshotIdentifier`, an
|
2164
|
+
# empty DB cluster is created, and the original DB cluster is deleted.
|
2165
|
+
# If you specify a property that is different from the previous
|
2166
|
+
# snapshot restore property, the DB cluster is restored from the
|
2167
|
+
# snapshot specified by the `DBClusterSnapshotIdentifier`, and the
|
2168
|
+
# original DB cluster is deleted.
|
2078
2169
|
# @return [String]
|
2079
2170
|
#
|
2080
2171
|
# @!attribute [rw] db_cluster_identifier
|
@@ -2185,6 +2276,12 @@ module Aws::Neptune
|
|
2185
2276
|
include Aws::Structure
|
2186
2277
|
end
|
2187
2278
|
|
2279
|
+
# User already has a DB cluster snapshot with the given identifier.
|
2280
|
+
#
|
2281
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBClusterSnapshotAlreadyExistsFault AWS API Documentation
|
2282
|
+
#
|
2283
|
+
class DBClusterSnapshotAlreadyExistsFault < Aws::EmptyStructure; end
|
2284
|
+
|
2188
2285
|
# Contains the name and values of a manual DB cluster snapshot
|
2189
2286
|
# attribute.
|
2190
2287
|
#
|
@@ -2263,6 +2360,13 @@ module Aws::Neptune
|
|
2263
2360
|
include Aws::Structure
|
2264
2361
|
end
|
2265
2362
|
|
2363
|
+
# *DBClusterSnapshotIdentifier* does not refer to an existing DB cluster
|
2364
|
+
# snapshot.
|
2365
|
+
#
|
2366
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBClusterSnapshotNotFoundFault AWS API Documentation
|
2367
|
+
#
|
2368
|
+
class DBClusterSnapshotNotFoundFault < Aws::EmptyStructure; end
|
2369
|
+
|
2266
2370
|
# This data type is used as a response element in the action
|
2267
2371
|
# DescribeDBEngineVersions.
|
2268
2372
|
#
|
@@ -2287,14 +2391,11 @@ module Aws::Neptune
|
|
2287
2391
|
# @return [String]
|
2288
2392
|
#
|
2289
2393
|
# @!attribute [rw] default_character_set
|
2290
|
-
#
|
2291
|
-
# if the `CharacterSetName` parameter of the CreateDBInstance API is
|
2292
|
-
# not specified.
|
2394
|
+
# *(Not supported by Neptune)*
|
2293
2395
|
# @return [Types::CharacterSet]
|
2294
2396
|
#
|
2295
2397
|
# @!attribute [rw] supported_character_sets
|
2296
|
-
#
|
2297
|
-
# `CharacterSetName` parameter of the `CreateDBInstance` action.
|
2398
|
+
# *(Not supported by Neptune)*
|
2298
2399
|
# @return [Array<Types::CharacterSet>]
|
2299
2400
|
#
|
2300
2401
|
# @!attribute [rw] valid_upgrade_target
|
@@ -2491,12 +2592,11 @@ module Aws::Neptune
|
|
2491
2592
|
# @return [Integer]
|
2492
2593
|
#
|
2493
2594
|
# @!attribute [rw] option_group_memberships
|
2494
|
-
#
|
2595
|
+
# *(Not supported by Neptune)*
|
2495
2596
|
# @return [Array<Types::OptionGroupMembership>]
|
2496
2597
|
#
|
2497
2598
|
# @!attribute [rw] character_set_name
|
2498
|
-
#
|
2499
|
-
# instance is associated with.
|
2599
|
+
# *(Not supported by Neptune)*
|
2500
2600
|
# @return [String]
|
2501
2601
|
#
|
2502
2602
|
# @!attribute [rw] secondary_availability_zone
|
@@ -2598,14 +2698,11 @@ module Aws::Neptune
|
|
2598
2698
|
# @return [Boolean]
|
2599
2699
|
#
|
2600
2700
|
# @!attribute [rw] performance_insights_enabled
|
2601
|
-
#
|
2602
|
-
# otherwise false.
|
2701
|
+
# *(Not supported by Neptune)*
|
2603
2702
|
# @return [Boolean]
|
2604
2703
|
#
|
2605
2704
|
# @!attribute [rw] performance_insights_kms_key_id
|
2606
|
-
#
|
2607
|
-
# data. The KMS key ID is the Amazon Resource Name (ARN), KMS key
|
2608
|
-
# identifier, or the KMS key alias for the KMS encryption key.
|
2705
|
+
# *(Not supported by Neptune)*
|
2609
2706
|
# @return [String]
|
2610
2707
|
#
|
2611
2708
|
# @!attribute [rw] enabled_cloudwatch_logs_exports
|
@@ -2613,6 +2710,16 @@ module Aws::Neptune
|
|
2613
2710
|
# CloudWatch Logs.
|
2614
2711
|
# @return [Array<String>]
|
2615
2712
|
#
|
2713
|
+
# @!attribute [rw] deletion_protection
|
2714
|
+
# Indicates whether or not the DB instance has deletion protection
|
2715
|
+
# enabled. The instance can't be deleted when deletion protection is
|
2716
|
+
# enabled. See [Deleting a DB Instance][1].
|
2717
|
+
#
|
2718
|
+
#
|
2719
|
+
#
|
2720
|
+
# [1]: https://docs.aws.amazon.com/neptune/latest/userguide/manage-console-instances-delete.html
|
2721
|
+
# @return [Boolean]
|
2722
|
+
#
|
2616
2723
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBInstance AWS API Documentation
|
2617
2724
|
#
|
2618
2725
|
class DBInstance < Struct.new(
|
@@ -2667,10 +2774,17 @@ module Aws::Neptune
|
|
2667
2774
|
:iam_database_authentication_enabled,
|
2668
2775
|
:performance_insights_enabled,
|
2669
2776
|
:performance_insights_kms_key_id,
|
2670
|
-
:enabled_cloudwatch_logs_exports
|
2777
|
+
:enabled_cloudwatch_logs_exports,
|
2778
|
+
:deletion_protection)
|
2671
2779
|
include Aws::Structure
|
2672
2780
|
end
|
2673
2781
|
|
2782
|
+
# User already has a DB instance with the given identifier.
|
2783
|
+
#
|
2784
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBInstanceAlreadyExistsFault AWS API Documentation
|
2785
|
+
#
|
2786
|
+
class DBInstanceAlreadyExistsFault < Aws::EmptyStructure; end
|
2787
|
+
|
2674
2788
|
# @!attribute [rw] marker
|
2675
2789
|
# An optional pagination token provided by a previous request. If this
|
2676
2790
|
# parameter is specified, the response includes only records beyond
|
@@ -2689,6 +2803,12 @@ module Aws::Neptune
|
|
2689
2803
|
include Aws::Structure
|
2690
2804
|
end
|
2691
2805
|
|
2806
|
+
# *DBInstanceIdentifier* does not refer to an existing DB instance.
|
2807
|
+
#
|
2808
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBInstanceNotFoundFault AWS API Documentation
|
2809
|
+
#
|
2810
|
+
class DBInstanceNotFoundFault < Aws::EmptyStructure; end
|
2811
|
+
|
2692
2812
|
# Provides a list of status information for a DB instance.
|
2693
2813
|
#
|
2694
2814
|
# @!attribute [rw] status_type
|
@@ -2753,6 +2873,12 @@ module Aws::Neptune
|
|
2753
2873
|
include Aws::Structure
|
2754
2874
|
end
|
2755
2875
|
|
2876
|
+
# A DB parameter group with the same name exists.
|
2877
|
+
#
|
2878
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBParameterGroupAlreadyExistsFault AWS API Documentation
|
2879
|
+
#
|
2880
|
+
class DBParameterGroupAlreadyExistsFault < Aws::EmptyStructure; end
|
2881
|
+
|
2756
2882
|
# @!attribute [rw] parameters
|
2757
2883
|
# A list of Parameter values.
|
2758
2884
|
# @return [Array<Types::Parameter>]
|
@@ -2782,6 +2908,20 @@ module Aws::Neptune
|
|
2782
2908
|
include Aws::Structure
|
2783
2909
|
end
|
2784
2910
|
|
2911
|
+
# *DBParameterGroupName* does not refer to an existing DB parameter
|
2912
|
+
# group.
|
2913
|
+
#
|
2914
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBParameterGroupNotFoundFault AWS API Documentation
|
2915
|
+
#
|
2916
|
+
class DBParameterGroupNotFoundFault < Aws::EmptyStructure; end
|
2917
|
+
|
2918
|
+
# Request would result in user exceeding the allowed number of DB
|
2919
|
+
# parameter groups.
|
2920
|
+
#
|
2921
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBParameterGroupQuotaExceededFault AWS API Documentation
|
2922
|
+
#
|
2923
|
+
class DBParameterGroupQuotaExceededFault < Aws::EmptyStructure; end
|
2924
|
+
|
2785
2925
|
# The status of the DB parameter group.
|
2786
2926
|
#
|
2787
2927
|
# This data type is used as a response element in the following actions:
|
@@ -2846,6 +2986,24 @@ module Aws::Neptune
|
|
2846
2986
|
include Aws::Structure
|
2847
2987
|
end
|
2848
2988
|
|
2989
|
+
# *DBSecurityGroupName* does not refer to an existing DB security group.
|
2990
|
+
#
|
2991
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBSecurityGroupNotFoundFault AWS API Documentation
|
2992
|
+
#
|
2993
|
+
class DBSecurityGroupNotFoundFault < Aws::EmptyStructure; end
|
2994
|
+
|
2995
|
+
# *DBSnapshotIdentifier* is already used by an existing snapshot.
|
2996
|
+
#
|
2997
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBSnapshotAlreadyExistsFault AWS API Documentation
|
2998
|
+
#
|
2999
|
+
class DBSnapshotAlreadyExistsFault < Aws::EmptyStructure; end
|
3000
|
+
|
3001
|
+
# *DBSnapshotIdentifier* does not refer to an existing DB snapshot.
|
3002
|
+
#
|
3003
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBSnapshotNotFoundFault AWS API Documentation
|
3004
|
+
#
|
3005
|
+
class DBSnapshotNotFoundFault < Aws::EmptyStructure; end
|
3006
|
+
|
2849
3007
|
# Contains the details of an Amazon Neptune DB subnet group.
|
2850
3008
|
#
|
2851
3009
|
# This data type is used as a response element in the
|
@@ -2887,6 +3045,19 @@ module Aws::Neptune
|
|
2887
3045
|
include Aws::Structure
|
2888
3046
|
end
|
2889
3047
|
|
3048
|
+
# *DBSubnetGroupName* is already used by an existing DB subnet group.
|
3049
|
+
#
|
3050
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBSubnetGroupAlreadyExistsFault AWS API Documentation
|
3051
|
+
#
|
3052
|
+
class DBSubnetGroupAlreadyExistsFault < Aws::EmptyStructure; end
|
3053
|
+
|
3054
|
+
# Subnets in the DB subnet group should cover at least two Availability
|
3055
|
+
# Zones unless there is only one Availability Zone.
|
3056
|
+
#
|
3057
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBSubnetGroupDoesNotCoverEnoughAZs AWS API Documentation
|
3058
|
+
#
|
3059
|
+
class DBSubnetGroupDoesNotCoverEnoughAZs < Aws::EmptyStructure; end
|
3060
|
+
|
2890
3061
|
# @!attribute [rw] marker
|
2891
3062
|
# An optional pagination token provided by a previous request. If this
|
2892
3063
|
# parameter is specified, the response includes only records beyond
|
@@ -2905,6 +3076,33 @@ module Aws::Neptune
|
|
2905
3076
|
include Aws::Structure
|
2906
3077
|
end
|
2907
3078
|
|
3079
|
+
# *DBSubnetGroupName* does not refer to an existing DB subnet group.
|
3080
|
+
#
|
3081
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBSubnetGroupNotFoundFault AWS API Documentation
|
3082
|
+
#
|
3083
|
+
class DBSubnetGroupNotFoundFault < Aws::EmptyStructure; end
|
3084
|
+
|
3085
|
+
# Request would result in user exceeding the allowed number of DB subnet
|
3086
|
+
# groups.
|
3087
|
+
#
|
3088
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBSubnetGroupQuotaExceededFault AWS API Documentation
|
3089
|
+
#
|
3090
|
+
class DBSubnetGroupQuotaExceededFault < Aws::EmptyStructure; end
|
3091
|
+
|
3092
|
+
# Request would result in user exceeding the allowed number of subnets
|
3093
|
+
# in a DB subnet groups.
|
3094
|
+
#
|
3095
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBSubnetQuotaExceededFault AWS API Documentation
|
3096
|
+
#
|
3097
|
+
class DBSubnetQuotaExceededFault < Aws::EmptyStructure; end
|
3098
|
+
|
3099
|
+
# The DB upgrade failed because a resource the DB depends on could not
|
3100
|
+
# be modified.
|
3101
|
+
#
|
3102
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBUpgradeDependencyFailureFault AWS API Documentation
|
3103
|
+
#
|
3104
|
+
class DBUpgradeDependencyFailureFault < Aws::EmptyStructure; end
|
3105
|
+
|
2908
3106
|
# @note When making an API call, you may pass DeleteDBClusterMessage
|
2909
3107
|
# data as a hash:
|
2910
3108
|
#
|
@@ -3539,7 +3737,12 @@ module Aws::Neptune
|
|
3539
3737
|
# Amazon Resource Names (ARNs). The results list will only include
|
3540
3738
|
# information about the DB clusters identified by these ARNs.
|
3541
3739
|
#
|
3542
|
-
#
|
3740
|
+
# * `engine` - Accepts an engine name (such as `neptune`), and
|
3741
|
+
# restricts the results list to DB clusters created by that engine.
|
3742
|
+
#
|
3743
|
+
# For example, to invoke this API from the AWS CLI and filter so that
|
3744
|
+
# only Neptune DB clusters are returned, you could use the following
|
3745
|
+
# command:
|
3543
3746
|
# @return [Array<Types::Filter>]
|
3544
3747
|
#
|
3545
3748
|
# @!attribute [rw] max_records
|
@@ -3701,9 +3904,12 @@ module Aws::Neptune
|
|
3701
3904
|
# information about the DB instances associated with the DB clusters
|
3702
3905
|
# identified by these ARNs.
|
3703
3906
|
#
|
3704
|
-
# * `
|
3705
|
-
#
|
3706
|
-
#
|
3907
|
+
# * `engine` - Accepts an engine name (such as `neptune`), and
|
3908
|
+
# restricts the results list to DB instances created by that engine.
|
3909
|
+
#
|
3910
|
+
# For example, to invoke this API from the AWS CLI and filter so that
|
3911
|
+
# only Neptune DB instances are returned, you could use the following
|
3912
|
+
# command:
|
3707
3913
|
# @return [Array<Types::Filter>]
|
3708
3914
|
#
|
3709
3915
|
# @!attribute [rw] max_records
|
@@ -4447,6 +4653,12 @@ module Aws::Neptune
|
|
4447
4653
|
include Aws::Structure
|
4448
4654
|
end
|
4449
4655
|
|
4656
|
+
# *Domain* does not refer to an existing Active Directory Domain.
|
4657
|
+
#
|
4658
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DomainNotFoundFault AWS API Documentation
|
4659
|
+
#
|
4660
|
+
class DomainNotFoundFault < Aws::EmptyStructure; end
|
4661
|
+
|
4450
4662
|
# A range of double values.
|
4451
4663
|
#
|
4452
4664
|
# @!attribute [rw] from
|
@@ -4657,6 +4869,12 @@ module Aws::Neptune
|
|
4657
4869
|
include Aws::Structure
|
4658
4870
|
end
|
4659
4871
|
|
4872
|
+
# You have exceeded the number of events you can subscribe to.
|
4873
|
+
#
|
4874
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/EventSubscriptionQuotaExceededFault AWS API Documentation
|
4875
|
+
#
|
4876
|
+
class EventSubscriptionQuotaExceededFault < Aws::EmptyStructure; end
|
4877
|
+
|
4660
4878
|
# @!attribute [rw] marker
|
4661
4879
|
# An optional pagination token provided by a previous
|
4662
4880
|
# DescribeOrderableDBInstanceOptions request. If this parameter is
|
@@ -4768,6 +4986,117 @@ module Aws::Neptune
|
|
4768
4986
|
include Aws::Structure
|
4769
4987
|
end
|
4770
4988
|
|
4989
|
+
# Request would result in user exceeding the allowed number of DB
|
4990
|
+
# instances.
|
4991
|
+
#
|
4992
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/InstanceQuotaExceededFault AWS API Documentation
|
4993
|
+
#
|
4994
|
+
class InstanceQuotaExceededFault < Aws::EmptyStructure; end
|
4995
|
+
|
4996
|
+
# The DB cluster does not have enough capacity for the current
|
4997
|
+
# operation.
|
4998
|
+
#
|
4999
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/InsufficientDBClusterCapacityFault AWS API Documentation
|
5000
|
+
#
|
5001
|
+
class InsufficientDBClusterCapacityFault < Aws::EmptyStructure; end
|
5002
|
+
|
5003
|
+
# Specified DB instance class is not available in the specified
|
5004
|
+
# Availability Zone.
|
5005
|
+
#
|
5006
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/InsufficientDBInstanceCapacityFault AWS API Documentation
|
5007
|
+
#
|
5008
|
+
class InsufficientDBInstanceCapacityFault < Aws::EmptyStructure; end
|
5009
|
+
|
5010
|
+
# There is insufficient storage available for the current action. You
|
5011
|
+
# may be able to resolve this error by updating your subnet group to use
|
5012
|
+
# different Availability Zones that have more storage available.
|
5013
|
+
#
|
5014
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/InsufficientStorageClusterCapacityFault AWS API Documentation
|
5015
|
+
#
|
5016
|
+
class InsufficientStorageClusterCapacityFault < Aws::EmptyStructure; end
|
5017
|
+
|
5018
|
+
# The supplied value is not a valid DB cluster snapshot state.
|
5019
|
+
#
|
5020
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/InvalidDBClusterSnapshotStateFault AWS API Documentation
|
5021
|
+
#
|
5022
|
+
class InvalidDBClusterSnapshotStateFault < Aws::EmptyStructure; end
|
5023
|
+
|
5024
|
+
# The DB cluster is not in a valid state.
|
5025
|
+
#
|
5026
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/InvalidDBClusterStateFault AWS API Documentation
|
5027
|
+
#
|
5028
|
+
class InvalidDBClusterStateFault < Aws::EmptyStructure; end
|
5029
|
+
|
5030
|
+
# The specified DB instance is not in the *available* state.
|
5031
|
+
#
|
5032
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/InvalidDBInstanceStateFault AWS API Documentation
|
5033
|
+
#
|
5034
|
+
class InvalidDBInstanceStateFault < Aws::EmptyStructure; end
|
5035
|
+
|
5036
|
+
# The DB parameter group is in use or is in an invalid state. If you are
|
5037
|
+
# attempting to delete the parameter group, you cannot delete it when
|
5038
|
+
# the parameter group is in this state.
|
5039
|
+
#
|
5040
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/InvalidDBParameterGroupStateFault AWS API Documentation
|
5041
|
+
#
|
5042
|
+
class InvalidDBParameterGroupStateFault < Aws::EmptyStructure; end
|
5043
|
+
|
5044
|
+
# The state of the DB security group does not allow deletion.
|
5045
|
+
#
|
5046
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/InvalidDBSecurityGroupStateFault AWS API Documentation
|
5047
|
+
#
|
5048
|
+
class InvalidDBSecurityGroupStateFault < Aws::EmptyStructure; end
|
5049
|
+
|
5050
|
+
# The state of the DB snapshot does not allow deletion.
|
5051
|
+
#
|
5052
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/InvalidDBSnapshotStateFault AWS API Documentation
|
5053
|
+
#
|
5054
|
+
class InvalidDBSnapshotStateFault < Aws::EmptyStructure; end
|
5055
|
+
|
5056
|
+
# The DB subnet group cannot be deleted because it is in use.
|
5057
|
+
#
|
5058
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/InvalidDBSubnetGroupStateFault AWS API Documentation
|
5059
|
+
#
|
5060
|
+
class InvalidDBSubnetGroupStateFault < Aws::EmptyStructure; end
|
5061
|
+
|
5062
|
+
# The DB subnet is not in the *available* state.
|
5063
|
+
#
|
5064
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/InvalidDBSubnetStateFault AWS API Documentation
|
5065
|
+
#
|
5066
|
+
class InvalidDBSubnetStateFault < Aws::EmptyStructure; end
|
5067
|
+
|
5068
|
+
# The event subscription is in an invalid state.
|
5069
|
+
#
|
5070
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/InvalidEventSubscriptionStateFault AWS API Documentation
|
5071
|
+
#
|
5072
|
+
class InvalidEventSubscriptionStateFault < Aws::EmptyStructure; end
|
5073
|
+
|
5074
|
+
# Cannot restore from vpc backup to non-vpc DB instance.
|
5075
|
+
#
|
5076
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/InvalidRestoreFault AWS API Documentation
|
5077
|
+
#
|
5078
|
+
class InvalidRestoreFault < Aws::EmptyStructure; end
|
5079
|
+
|
5080
|
+
# The requested subnet is invalid, or multiple subnets were requested
|
5081
|
+
# that are not all in a common VPC.
|
5082
|
+
#
|
5083
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/InvalidSubnet AWS API Documentation
|
5084
|
+
#
|
5085
|
+
class InvalidSubnet < Aws::EmptyStructure; end
|
5086
|
+
|
5087
|
+
# DB subnet group does not cover all Availability Zones after it is
|
5088
|
+
# created because users' change.
|
5089
|
+
#
|
5090
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/InvalidVPCNetworkStateFault AWS API Documentation
|
5091
|
+
#
|
5092
|
+
class InvalidVPCNetworkStateFault < Aws::EmptyStructure; end
|
5093
|
+
|
5094
|
+
# Error accessing KMS key.
|
5095
|
+
#
|
5096
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/KMSKeyNotAccessibleFault AWS API Documentation
|
5097
|
+
#
|
5098
|
+
class KMSKeyNotAccessibleFault < Aws::EmptyStructure; end
|
5099
|
+
|
4771
5100
|
# @note When making an API call, you may pass ListTagsForResourceMessage
|
4772
5101
|
# data as a hash:
|
4773
5102
|
#
|
@@ -4824,6 +5153,7 @@ module Aws::Neptune
|
|
4824
5153
|
# disable_log_types: ["String"],
|
4825
5154
|
# },
|
4826
5155
|
# engine_version: "String",
|
5156
|
+
# deletion_protection: false,
|
4827
5157
|
# }
|
4828
5158
|
#
|
4829
5159
|
# @!attribute [rw] db_cluster_identifier
|
@@ -4909,18 +5239,7 @@ module Aws::Neptune
|
|
4909
5239
|
# @return [String]
|
4910
5240
|
#
|
4911
5241
|
# @!attribute [rw] option_group_name
|
4912
|
-
#
|
4913
|
-
# the specified option group. Changing this parameter doesn't result
|
4914
|
-
# in an outage except in the following case, and the change is applied
|
4915
|
-
# during the next maintenance window unless the `ApplyImmediately`
|
4916
|
-
# parameter is set to `true` for this request. If the parameter change
|
4917
|
-
# results in an option group that enables OEM, this change can cause a
|
4918
|
-
# brief (sub-second) period during which new connections are rejected
|
4919
|
-
# but existing connections are not interrupted.
|
4920
|
-
#
|
4921
|
-
# Permanent options can't be removed from an option group. The option
|
4922
|
-
# group can't be removed from a DB cluster once it is associated with
|
4923
|
-
# a DB cluster.
|
5242
|
+
# *(Not supported by Neptune)*
|
4924
5243
|
# @return [String]
|
4925
5244
|
#
|
4926
5245
|
# @!attribute [rw] preferred_backup_window
|
@@ -4970,15 +5289,20 @@ module Aws::Neptune
|
|
4970
5289
|
# @return [Types::CloudwatchLogsExportConfiguration]
|
4971
5290
|
#
|
4972
5291
|
# @!attribute [rw] engine_version
|
4973
|
-
# The version number of the database engine
|
4974
|
-
#
|
4975
|
-
#
|
4976
|
-
# ApplyImmediately parameter is set to true.
|
5292
|
+
# The version number of the database engine. Currently, setting this
|
5293
|
+
# parameter has no effect. To upgrade your database engine to the most
|
5294
|
+
# recent release, use the ApplyPendingMaintenanceAction API.
|
4977
5295
|
#
|
4978
5296
|
# For a list of valid engine versions, see CreateDBInstance, or call
|
4979
5297
|
# DescribeDBEngineVersions.
|
4980
5298
|
# @return [String]
|
4981
5299
|
#
|
5300
|
+
# @!attribute [rw] deletion_protection
|
5301
|
+
# A value that indicates whether the DB cluster has deletion
|
5302
|
+
# protection enabled. The database can't be deleted when deletion
|
5303
|
+
# protection is enabled. By default, deletion protection is disabled.
|
5304
|
+
# @return [Boolean]
|
5305
|
+
#
|
4982
5306
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/ModifyDBClusterMessage AWS API Documentation
|
4983
5307
|
#
|
4984
5308
|
class ModifyDBClusterMessage < Struct.new(
|
@@ -4995,7 +5319,8 @@ module Aws::Neptune
|
|
4995
5319
|
:preferred_maintenance_window,
|
4996
5320
|
:enable_iam_database_authentication,
|
4997
5321
|
:cloudwatch_logs_export_configuration,
|
4998
|
-
:engine_version
|
5322
|
+
:engine_version,
|
5323
|
+
:deletion_protection)
|
4999
5324
|
include Aws::Structure
|
5000
5325
|
end
|
5001
5326
|
|
@@ -5167,6 +5492,7 @@ module Aws::Neptune
|
|
5167
5492
|
# enable_log_types: ["String"],
|
5168
5493
|
# disable_log_types: ["String"],
|
5169
5494
|
# },
|
5495
|
+
# deletion_protection: false,
|
5170
5496
|
# }
|
5171
5497
|
#
|
5172
5498
|
# @!attribute [rw] db_instance_identifier
|
@@ -5328,26 +5654,16 @@ module Aws::Neptune
|
|
5328
5654
|
# @return [Boolean]
|
5329
5655
|
#
|
5330
5656
|
# @!attribute [rw] engine_version
|
5331
|
-
# The version number of the database engine to upgrade to.
|
5332
|
-
# this parameter
|
5333
|
-
# the
|
5334
|
-
#
|
5335
|
-
#
|
5336
|
-
# For major version upgrades, if a nondefault DB parameter group is
|
5337
|
-
# currently in use, a new DB parameter group in the DB parameter group
|
5338
|
-
# family for the new engine version must be specified. The new DB
|
5339
|
-
# parameter group can be the default for that DB parameter group
|
5340
|
-
# family.
|
5657
|
+
# The version number of the database engine to upgrade to. Currently,
|
5658
|
+
# setting this parameter has no effect. To upgrade your database
|
5659
|
+
# engine to the most recent release, use the
|
5660
|
+
# ApplyPendingMaintenanceAction API.
|
5341
5661
|
# @return [String]
|
5342
5662
|
#
|
5343
5663
|
# @!attribute [rw] allow_major_version_upgrade
|
5344
5664
|
# Indicates that major version upgrades are allowed. Changing this
|
5345
5665
|
# parameter doesn't result in an outage and the change is
|
5346
5666
|
# asynchronously applied as soon as possible.
|
5347
|
-
#
|
5348
|
-
# Constraints: This parameter must be set to true when specifying a
|
5349
|
-
# value for the EngineVersion parameter that is a different major
|
5350
|
-
# version than the DB instance's current version.
|
5351
5667
|
# @return [Boolean]
|
5352
5668
|
#
|
5353
5669
|
# @!attribute [rw] auto_minor_version_upgrade
|
@@ -5376,19 +5692,7 @@ module Aws::Neptune
|
|
5376
5692
|
# @return [Integer]
|
5377
5693
|
#
|
5378
5694
|
# @!attribute [rw] option_group_name
|
5379
|
-
#
|
5380
|
-
# specified option group. Changing this parameter doesn't result in
|
5381
|
-
# an outage except in the following case and the change is applied
|
5382
|
-
# during the next maintenance window unless the `ApplyImmediately`
|
5383
|
-
# parameter is set to `true` for this request. If the parameter change
|
5384
|
-
# results in an option group that enables OEM, this change can cause a
|
5385
|
-
# brief (sub-second) period during which new connections are rejected
|
5386
|
-
# but existing connections are not interrupted.
|
5387
|
-
#
|
5388
|
-
# Permanent options, such as the TDE option for Oracle Advanced
|
5389
|
-
# Security TDE, can't be removed from an option group, and that
|
5390
|
-
# option group can't be removed from a DB instance once it is
|
5391
|
-
# associated with a DB instance
|
5695
|
+
# *(Not supported by Neptune)*
|
5392
5696
|
# @return [String]
|
5393
5697
|
#
|
5394
5698
|
# @!attribute [rw] new_db_instance_identifier
|
@@ -5503,11 +5807,11 @@ module Aws::Neptune
|
|
5503
5807
|
# @return [Boolean]
|
5504
5808
|
#
|
5505
5809
|
# @!attribute [rw] enable_performance_insights
|
5506
|
-
# Not supported
|
5810
|
+
# *(Not supported by Neptune)*
|
5507
5811
|
# @return [Boolean]
|
5508
5812
|
#
|
5509
5813
|
# @!attribute [rw] performance_insights_kms_key_id
|
5510
|
-
# Not supported
|
5814
|
+
# *(Not supported by Neptune)*
|
5511
5815
|
# @return [String]
|
5512
5816
|
#
|
5513
5817
|
# @!attribute [rw] cloudwatch_logs_export_configuration
|
@@ -5515,6 +5819,17 @@ module Aws::Neptune
|
|
5515
5819
|
# to CloudWatch Logs for a specific DB instance or DB cluster.
|
5516
5820
|
# @return [Types::CloudwatchLogsExportConfiguration]
|
5517
5821
|
#
|
5822
|
+
# @!attribute [rw] deletion_protection
|
5823
|
+
# A value that indicates whether the DB instance has deletion
|
5824
|
+
# protection enabled. The database can't be deleted when deletion
|
5825
|
+
# protection is enabled. By default, deletion protection is disabled.
|
5826
|
+
# See [Deleting a DB Instance][1].
|
5827
|
+
#
|
5828
|
+
#
|
5829
|
+
#
|
5830
|
+
# [1]: https://docs.aws.amazon.com/neptune/latest/userguide/manage-console-instances-delete.html
|
5831
|
+
# @return [Boolean]
|
5832
|
+
#
|
5518
5833
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/ModifyDBInstanceMessage AWS API Documentation
|
5519
5834
|
#
|
5520
5835
|
class ModifyDBInstanceMessage < Struct.new(
|
@@ -5553,7 +5868,8 @@ module Aws::Neptune
|
|
5553
5868
|
:enable_iam_database_authentication,
|
5554
5869
|
:enable_performance_insights,
|
5555
5870
|
:performance_insights_kms_key_id,
|
5556
|
-
:cloudwatch_logs_export_configuration
|
5871
|
+
:cloudwatch_logs_export_configuration,
|
5872
|
+
:deletion_protection)
|
5557
5873
|
include Aws::Structure
|
5558
5874
|
end
|
5559
5875
|
|
@@ -5763,6 +6079,12 @@ module Aws::Neptune
|
|
5763
6079
|
include Aws::Structure
|
5764
6080
|
end
|
5765
6081
|
|
6082
|
+
# The designated option group could not be found.
|
6083
|
+
#
|
6084
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/OptionGroupNotFoundFault AWS API Documentation
|
6085
|
+
#
|
6086
|
+
class OptionGroupNotFoundFault < Aws::EmptyStructure; end
|
6087
|
+
|
5766
6088
|
# Contains a list of available options for a DB instance.
|
5767
6089
|
#
|
5768
6090
|
# This data type is used as a response element in the
|
@@ -5823,8 +6145,7 @@ module Aws::Neptune
|
|
5823
6145
|
# @return [Boolean]
|
5824
6146
|
#
|
5825
6147
|
# @!attribute [rw] supports_performance_insights
|
5826
|
-
#
|
5827
|
-
# false.
|
6148
|
+
# *(Not supported by Neptune)*
|
5828
6149
|
# @return [Boolean]
|
5829
6150
|
#
|
5830
6151
|
# @!attribute [rw] min_storage_size
|
@@ -6133,7 +6454,8 @@ module Aws::Neptune
|
|
6133
6454
|
# @return [String]
|
6134
6455
|
#
|
6135
6456
|
# @!attribute [rw] pending_cloudwatch_logs_exports
|
6136
|
-
#
|
6457
|
+
# This `PendingCloudwatchLogsExports` structure specifies pending
|
6458
|
+
# changes to which CloudWatch logs are enabled and which are disabled.
|
6137
6459
|
# @return [Types::PendingCloudwatchLogsExports]
|
6138
6460
|
#
|
6139
6461
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/PendingModifiedValues AWS API Documentation
|
@@ -6188,6 +6510,12 @@ module Aws::Neptune
|
|
6188
6510
|
include Aws::Structure
|
6189
6511
|
end
|
6190
6512
|
|
6513
|
+
# Provisioned IOPS not available in the specified Availability Zone.
|
6514
|
+
#
|
6515
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/ProvisionedIopsNotAvailableInAZFault AWS API Documentation
|
6516
|
+
#
|
6517
|
+
class ProvisionedIopsNotAvailableInAZFault < Aws::EmptyStructure; end
|
6518
|
+
|
6191
6519
|
# A range of integer values.
|
6192
6520
|
#
|
6193
6521
|
# @!attribute [rw] from
|
@@ -6465,6 +6793,12 @@ module Aws::Neptune
|
|
6465
6793
|
include Aws::Structure
|
6466
6794
|
end
|
6467
6795
|
|
6796
|
+
# The specified resource ID was not found.
|
6797
|
+
#
|
6798
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/ResourceNotFoundFault AWS API Documentation
|
6799
|
+
#
|
6800
|
+
class ResourceNotFoundFault < Aws::EmptyStructure; end
|
6801
|
+
|
6468
6802
|
# Describes the pending maintenance actions for a resource.
|
6469
6803
|
#
|
6470
6804
|
# @!attribute [rw] resource_identifier
|
@@ -6508,6 +6842,7 @@ module Aws::Neptune
|
|
6508
6842
|
# enable_iam_database_authentication: false,
|
6509
6843
|
# enable_cloudwatch_logs_exports: ["String"],
|
6510
6844
|
# db_cluster_parameter_group_name: "String",
|
6845
|
+
# deletion_protection: false,
|
6511
6846
|
# }
|
6512
6847
|
#
|
6513
6848
|
# @!attribute [rw] availability_zones
|
@@ -6579,7 +6914,7 @@ module Aws::Neptune
|
|
6579
6914
|
# @return [String]
|
6580
6915
|
#
|
6581
6916
|
# @!attribute [rw] option_group_name
|
6582
|
-
#
|
6917
|
+
# *(Not supported by Neptune)*
|
6583
6918
|
# @return [String]
|
6584
6919
|
#
|
6585
6920
|
# @!attribute [rw] vpc_security_group_ids
|
@@ -6637,6 +6972,12 @@ module Aws::Neptune
|
|
6637
6972
|
# ^
|
6638
6973
|
# @return [String]
|
6639
6974
|
#
|
6975
|
+
# @!attribute [rw] deletion_protection
|
6976
|
+
# A value that indicates whether the DB cluster has deletion
|
6977
|
+
# protection enabled. The database can't be deleted when deletion
|
6978
|
+
# protection is enabled. By default, deletion protection is disabled.
|
6979
|
+
# @return [Boolean]
|
6980
|
+
#
|
6640
6981
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/RestoreDBClusterFromSnapshotMessage AWS API Documentation
|
6641
6982
|
#
|
6642
6983
|
class RestoreDBClusterFromSnapshotMessage < Struct.new(
|
@@ -6654,7 +6995,8 @@ module Aws::Neptune
|
|
6654
6995
|
:kms_key_id,
|
6655
6996
|
:enable_iam_database_authentication,
|
6656
6997
|
:enable_cloudwatch_logs_exports,
|
6657
|
-
:db_cluster_parameter_group_name
|
6998
|
+
:db_cluster_parameter_group_name,
|
6999
|
+
:deletion_protection)
|
6658
7000
|
include Aws::Structure
|
6659
7001
|
end
|
6660
7002
|
|
@@ -6695,6 +7037,7 @@ module Aws::Neptune
|
|
6695
7037
|
# enable_iam_database_authentication: false,
|
6696
7038
|
# enable_cloudwatch_logs_exports: ["String"],
|
6697
7039
|
# db_cluster_parameter_group_name: "String",
|
7040
|
+
# deletion_protection: false,
|
6698
7041
|
# }
|
6699
7042
|
#
|
6700
7043
|
# @!attribute [rw] db_cluster_identifier
|
@@ -6781,7 +7124,7 @@ module Aws::Neptune
|
|
6781
7124
|
# @return [String]
|
6782
7125
|
#
|
6783
7126
|
# @!attribute [rw] option_group_name
|
6784
|
-
#
|
7127
|
+
# *(Not supported by Neptune)*
|
6785
7128
|
# @return [String]
|
6786
7129
|
#
|
6787
7130
|
# @!attribute [rw] vpc_security_group_ids
|
@@ -6845,6 +7188,12 @@ module Aws::Neptune
|
|
6845
7188
|
# ^
|
6846
7189
|
# @return [String]
|
6847
7190
|
#
|
7191
|
+
# @!attribute [rw] deletion_protection
|
7192
|
+
# A value that indicates whether the DB cluster has deletion
|
7193
|
+
# protection enabled. The database can't be deleted when deletion
|
7194
|
+
# protection is enabled. By default, deletion protection is disabled.
|
7195
|
+
# @return [Boolean]
|
7196
|
+
#
|
6848
7197
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/RestoreDBClusterToPointInTimeMessage AWS API Documentation
|
6849
7198
|
#
|
6850
7199
|
class RestoreDBClusterToPointInTimeMessage < Struct.new(
|
@@ -6861,7 +7210,8 @@ module Aws::Neptune
|
|
6861
7210
|
:kms_key_id,
|
6862
7211
|
:enable_iam_database_authentication,
|
6863
7212
|
:enable_cloudwatch_logs_exports,
|
6864
|
-
:db_cluster_parameter_group_name
|
7213
|
+
:db_cluster_parameter_group_name,
|
7214
|
+
:deletion_protection)
|
6865
7215
|
include Aws::Structure
|
6866
7216
|
end
|
6867
7217
|
|
@@ -6879,6 +7229,123 @@ module Aws::Neptune
|
|
6879
7229
|
include Aws::Structure
|
6880
7230
|
end
|
6881
7231
|
|
7232
|
+
# The SNS topic is invalid.
|
7233
|
+
#
|
7234
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/SNSInvalidTopicFault AWS API Documentation
|
7235
|
+
#
|
7236
|
+
class SNSInvalidTopicFault < Aws::EmptyStructure; end
|
7237
|
+
|
7238
|
+
# There is no SNS authorization.
|
7239
|
+
#
|
7240
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/SNSNoAuthorizationFault AWS API Documentation
|
7241
|
+
#
|
7242
|
+
class SNSNoAuthorizationFault < Aws::EmptyStructure; end
|
7243
|
+
|
7244
|
+
# The ARN of the SNS topic could not be found.
|
7245
|
+
#
|
7246
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/SNSTopicArnNotFoundFault AWS API Documentation
|
7247
|
+
#
|
7248
|
+
class SNSTopicArnNotFoundFault < Aws::EmptyStructure; end
|
7249
|
+
|
7250
|
+
# You have exceeded the maximum number of accounts that you can share a
|
7251
|
+
# manual DB snapshot with.
|
7252
|
+
#
|
7253
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/SharedSnapshotQuotaExceededFault AWS API Documentation
|
7254
|
+
#
|
7255
|
+
class SharedSnapshotQuotaExceededFault < Aws::EmptyStructure; end
|
7256
|
+
|
7257
|
+
# Request would result in user exceeding the allowed number of DB
|
7258
|
+
# snapshots.
|
7259
|
+
#
|
7260
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/SnapshotQuotaExceededFault AWS API Documentation
|
7261
|
+
#
|
7262
|
+
class SnapshotQuotaExceededFault < Aws::EmptyStructure; end
|
7263
|
+
|
7264
|
+
# The source could not be found.
|
7265
|
+
#
|
7266
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/SourceNotFoundFault AWS API Documentation
|
7267
|
+
#
|
7268
|
+
class SourceNotFoundFault < Aws::EmptyStructure; end
|
7269
|
+
|
7270
|
+
# @note When making an API call, you may pass StartDBClusterMessage
|
7271
|
+
# data as a hash:
|
7272
|
+
#
|
7273
|
+
# {
|
7274
|
+
# db_cluster_identifier: "String", # required
|
7275
|
+
# }
|
7276
|
+
#
|
7277
|
+
# @!attribute [rw] db_cluster_identifier
|
7278
|
+
# The DB cluster identifier of the Neptune DB cluster to be started.
|
7279
|
+
# This parameter is stored as a lowercase string.
|
7280
|
+
# @return [String]
|
7281
|
+
#
|
7282
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/StartDBClusterMessage AWS API Documentation
|
7283
|
+
#
|
7284
|
+
class StartDBClusterMessage < Struct.new(
|
7285
|
+
:db_cluster_identifier)
|
7286
|
+
include Aws::Structure
|
7287
|
+
end
|
7288
|
+
|
7289
|
+
# @!attribute [rw] db_cluster
|
7290
|
+
# Contains the details of an Amazon Neptune DB cluster.
|
7291
|
+
#
|
7292
|
+
# This data type is used as a response element in the
|
7293
|
+
# DescribeDBClusters action.
|
7294
|
+
# @return [Types::DBCluster]
|
7295
|
+
#
|
7296
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/StartDBClusterResult AWS API Documentation
|
7297
|
+
#
|
7298
|
+
class StartDBClusterResult < Struct.new(
|
7299
|
+
:db_cluster)
|
7300
|
+
include Aws::Structure
|
7301
|
+
end
|
7302
|
+
|
7303
|
+
# @note When making an API call, you may pass StopDBClusterMessage
|
7304
|
+
# data as a hash:
|
7305
|
+
#
|
7306
|
+
# {
|
7307
|
+
# db_cluster_identifier: "String", # required
|
7308
|
+
# }
|
7309
|
+
#
|
7310
|
+
# @!attribute [rw] db_cluster_identifier
|
7311
|
+
# The DB cluster identifier of the Neptune DB cluster to be stopped.
|
7312
|
+
# This parameter is stored as a lowercase string.
|
7313
|
+
# @return [String]
|
7314
|
+
#
|
7315
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/StopDBClusterMessage AWS API Documentation
|
7316
|
+
#
|
7317
|
+
class StopDBClusterMessage < Struct.new(
|
7318
|
+
:db_cluster_identifier)
|
7319
|
+
include Aws::Structure
|
7320
|
+
end
|
7321
|
+
|
7322
|
+
# @!attribute [rw] db_cluster
|
7323
|
+
# Contains the details of an Amazon Neptune DB cluster.
|
7324
|
+
#
|
7325
|
+
# This data type is used as a response element in the
|
7326
|
+
# DescribeDBClusters action.
|
7327
|
+
# @return [Types::DBCluster]
|
7328
|
+
#
|
7329
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/StopDBClusterResult AWS API Documentation
|
7330
|
+
#
|
7331
|
+
class StopDBClusterResult < Struct.new(
|
7332
|
+
:db_cluster)
|
7333
|
+
include Aws::Structure
|
7334
|
+
end
|
7335
|
+
|
7336
|
+
# Request would result in user exceeding the allowed amount of storage
|
7337
|
+
# available across all DB instances.
|
7338
|
+
#
|
7339
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/StorageQuotaExceededFault AWS API Documentation
|
7340
|
+
#
|
7341
|
+
class StorageQuotaExceededFault < Aws::EmptyStructure; end
|
7342
|
+
|
7343
|
+
# *StorageType* specified cannot be associated with the DB Instance.
|
7344
|
+
#
|
7345
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/StorageTypeNotSupportedFault AWS API Documentation
|
7346
|
+
#
|
7347
|
+
class StorageTypeNotSupportedFault < Aws::EmptyStructure; end
|
7348
|
+
|
6882
7349
|
# Specifies a subnet.
|
6883
7350
|
#
|
6884
7351
|
# This data type is used as a response element in the
|
@@ -6905,6 +7372,30 @@ module Aws::Neptune
|
|
6905
7372
|
include Aws::Structure
|
6906
7373
|
end
|
6907
7374
|
|
7375
|
+
# The DB subnet is already in use in the Availability Zone.
|
7376
|
+
#
|
7377
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/SubnetAlreadyInUse AWS API Documentation
|
7378
|
+
#
|
7379
|
+
class SubnetAlreadyInUse < Aws::EmptyStructure; end
|
7380
|
+
|
7381
|
+
# This subscription already exists.
|
7382
|
+
#
|
7383
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/SubscriptionAlreadyExistFault AWS API Documentation
|
7384
|
+
#
|
7385
|
+
class SubscriptionAlreadyExistFault < Aws::EmptyStructure; end
|
7386
|
+
|
7387
|
+
# The designated subscription category could not be found.
|
7388
|
+
#
|
7389
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/SubscriptionCategoryNotFoundFault AWS API Documentation
|
7390
|
+
#
|
7391
|
+
class SubscriptionCategoryNotFoundFault < Aws::EmptyStructure; end
|
7392
|
+
|
7393
|
+
# The designated subscription could not be found.
|
7394
|
+
#
|
7395
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/SubscriptionNotFoundFault AWS API Documentation
|
7396
|
+
#
|
7397
|
+
class SubscriptionNotFoundFault < Aws::EmptyStructure; end
|
7398
|
+
|
6908
7399
|
# Metadata assigned to an Amazon Neptune resource consisting of a
|
6909
7400
|
# key-value pair.
|
6910
7401
|
#
|