aws-sdk-neptune 1.21.0 → 1.26.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 +5 -5
- data/lib/aws-sdk-neptune.rb +9 -4
- data/lib/aws-sdk-neptune/client.rb +100 -18
- data/lib/aws-sdk-neptune/client_api.rb +120 -0
- data/lib/aws-sdk-neptune/errors.rb +673 -0
- data/lib/aws-sdk-neptune/resource.rb +3 -0
- data/lib/aws-sdk-neptune/types.rb +534 -0
- data/lib/aws-sdk-neptune/waiters.rb +64 -0
- metadata +5 -5
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,6 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::Neptune
|
11
|
+
|
9
12
|
class Resource
|
10
13
|
|
11
14
|
# @param options ({})
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -31,6 +33,7 @@ module Aws::Neptune
|
|
31
33
|
class AddRoleToDBClusterMessage < Struct.new(
|
32
34
|
:db_cluster_identifier,
|
33
35
|
:role_arn)
|
36
|
+
SENSITIVE = []
|
34
37
|
include Aws::Structure
|
35
38
|
end
|
36
39
|
|
@@ -70,6 +73,7 @@ module Aws::Neptune
|
|
70
73
|
class AddSourceIdentifierToSubscriptionMessage < Struct.new(
|
71
74
|
:subscription_name,
|
72
75
|
:source_identifier)
|
76
|
+
SENSITIVE = []
|
73
77
|
include Aws::Structure
|
74
78
|
end
|
75
79
|
|
@@ -82,6 +86,7 @@ module Aws::Neptune
|
|
82
86
|
#
|
83
87
|
class AddSourceIdentifierToSubscriptionResult < Struct.new(
|
84
88
|
:event_subscription)
|
89
|
+
SENSITIVE = []
|
85
90
|
include Aws::Structure
|
86
91
|
end
|
87
92
|
|
@@ -117,6 +122,7 @@ module Aws::Neptune
|
|
117
122
|
class AddTagsToResourceMessage < Struct.new(
|
118
123
|
:resource_name,
|
119
124
|
:tags)
|
125
|
+
SENSITIVE = []
|
120
126
|
include Aws::Structure
|
121
127
|
end
|
122
128
|
|
@@ -167,6 +173,7 @@ module Aws::Neptune
|
|
167
173
|
:resource_identifier,
|
168
174
|
:apply_action,
|
169
175
|
:opt_in_type)
|
176
|
+
SENSITIVE = []
|
170
177
|
include Aws::Structure
|
171
178
|
end
|
172
179
|
|
@@ -178,9 +185,20 @@ module Aws::Neptune
|
|
178
185
|
#
|
179
186
|
class ApplyPendingMaintenanceActionResult < Struct.new(
|
180
187
|
:resource_pending_maintenance_actions)
|
188
|
+
SENSITIVE = []
|
181
189
|
include Aws::Structure
|
182
190
|
end
|
183
191
|
|
192
|
+
# Specified CIDRIP or EC2 security group is not authorized for the
|
193
|
+
# specified DB security group.
|
194
|
+
#
|
195
|
+
# Neptune may not also be authorized via IAM to perform necessary
|
196
|
+
# actions on your behalf.
|
197
|
+
#
|
198
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/AuthorizationNotFoundFault AWS API Documentation
|
199
|
+
#
|
200
|
+
class AuthorizationNotFoundFault < Aws::EmptyStructure; end
|
201
|
+
|
184
202
|
# Specifies an Availability Zone.
|
185
203
|
#
|
186
204
|
# @!attribute [rw] name
|
@@ -191,9 +209,16 @@ module Aws::Neptune
|
|
191
209
|
#
|
192
210
|
class AvailabilityZone < Struct.new(
|
193
211
|
:name)
|
212
|
+
SENSITIVE = []
|
194
213
|
include Aws::Structure
|
195
214
|
end
|
196
215
|
|
216
|
+
# *CertificateIdentifier* does not refer to an existing certificate.
|
217
|
+
#
|
218
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/CertificateNotFoundFault AWS API Documentation
|
219
|
+
#
|
220
|
+
class CertificateNotFoundFault < Aws::EmptyStructure; end
|
221
|
+
|
197
222
|
# Specifies a character set.
|
198
223
|
#
|
199
224
|
# @!attribute [rw] character_set_name
|
@@ -209,6 +234,7 @@ module Aws::Neptune
|
|
209
234
|
class CharacterSet < Struct.new(
|
210
235
|
:character_set_name,
|
211
236
|
:character_set_description)
|
237
|
+
SENSITIVE = []
|
212
238
|
include Aws::Structure
|
213
239
|
end
|
214
240
|
|
@@ -239,6 +265,7 @@ module Aws::Neptune
|
|
239
265
|
class CloudwatchLogsExportConfiguration < Struct.new(
|
240
266
|
:enable_log_types,
|
241
267
|
:disable_log_types)
|
268
|
+
SENSITIVE = []
|
242
269
|
include Aws::Structure
|
243
270
|
end
|
244
271
|
|
@@ -311,6 +338,7 @@ module Aws::Neptune
|
|
311
338
|
:target_db_cluster_parameter_group_identifier,
|
312
339
|
:target_db_cluster_parameter_group_description,
|
313
340
|
:tags)
|
341
|
+
SENSITIVE = []
|
314
342
|
include Aws::Structure
|
315
343
|
end
|
316
344
|
|
@@ -326,6 +354,7 @@ module Aws::Neptune
|
|
326
354
|
#
|
327
355
|
class CopyDBClusterParameterGroupResult < Struct.new(
|
328
356
|
:db_cluster_parameter_group)
|
357
|
+
SENSITIVE = []
|
329
358
|
include Aws::Structure
|
330
359
|
end
|
331
360
|
|
@@ -422,6 +451,7 @@ module Aws::Neptune
|
|
422
451
|
:pre_signed_url,
|
423
452
|
:copy_tags,
|
424
453
|
:tags)
|
454
|
+
SENSITIVE = []
|
425
455
|
include Aws::Structure
|
426
456
|
end
|
427
457
|
|
@@ -436,6 +466,7 @@ module Aws::Neptune
|
|
436
466
|
#
|
437
467
|
class CopyDBClusterSnapshotResult < Struct.new(
|
438
468
|
:db_cluster_snapshot)
|
469
|
+
SENSITIVE = []
|
439
470
|
include Aws::Structure
|
440
471
|
end
|
441
472
|
|
@@ -502,6 +533,7 @@ module Aws::Neptune
|
|
502
533
|
:target_db_parameter_group_identifier,
|
503
534
|
:target_db_parameter_group_description,
|
504
535
|
:tags)
|
536
|
+
SENSITIVE = []
|
505
537
|
include Aws::Structure
|
506
538
|
end
|
507
539
|
|
@@ -516,6 +548,7 @@ module Aws::Neptune
|
|
516
548
|
#
|
517
549
|
class CopyDBParameterGroupResult < Struct.new(
|
518
550
|
:db_parameter_group)
|
551
|
+
SENSITIVE = []
|
519
552
|
include Aws::Structure
|
520
553
|
end
|
521
554
|
|
@@ -802,6 +835,7 @@ module Aws::Neptune
|
|
802
835
|
:enable_iam_database_authentication,
|
803
836
|
:enable_cloudwatch_logs_exports,
|
804
837
|
:deletion_protection)
|
838
|
+
SENSITIVE = []
|
805
839
|
include Aws::Structure
|
806
840
|
end
|
807
841
|
|
@@ -857,6 +891,7 @@ module Aws::Neptune
|
|
857
891
|
:db_parameter_group_family,
|
858
892
|
:description,
|
859
893
|
:tags)
|
894
|
+
SENSITIVE = []
|
860
895
|
include Aws::Structure
|
861
896
|
end
|
862
897
|
|
@@ -872,6 +907,7 @@ module Aws::Neptune
|
|
872
907
|
#
|
873
908
|
class CreateDBClusterParameterGroupResult < Struct.new(
|
874
909
|
:db_cluster_parameter_group)
|
910
|
+
SENSITIVE = []
|
875
911
|
include Aws::Structure
|
876
912
|
end
|
877
913
|
|
@@ -886,6 +922,7 @@ module Aws::Neptune
|
|
886
922
|
#
|
887
923
|
class CreateDBClusterResult < Struct.new(
|
888
924
|
:db_cluster)
|
925
|
+
SENSITIVE = []
|
889
926
|
include Aws::Structure
|
890
927
|
end
|
891
928
|
|
@@ -941,6 +978,7 @@ module Aws::Neptune
|
|
941
978
|
:db_cluster_snapshot_identifier,
|
942
979
|
:db_cluster_identifier,
|
943
980
|
:tags)
|
981
|
+
SENSITIVE = []
|
944
982
|
include Aws::Structure
|
945
983
|
end
|
946
984
|
|
@@ -955,6 +993,7 @@ module Aws::Neptune
|
|
955
993
|
#
|
956
994
|
class CreateDBClusterSnapshotResult < Struct.new(
|
957
995
|
:db_cluster_snapshot)
|
996
|
+
SENSITIVE = []
|
958
997
|
include Aws::Structure
|
959
998
|
end
|
960
999
|
|
@@ -1392,6 +1431,7 @@ module Aws::Neptune
|
|
1392
1431
|
:performance_insights_kms_key_id,
|
1393
1432
|
:enable_cloudwatch_logs_exports,
|
1394
1433
|
:deletion_protection)
|
1434
|
+
SENSITIVE = []
|
1395
1435
|
include Aws::Structure
|
1396
1436
|
end
|
1397
1437
|
|
@@ -1406,6 +1446,7 @@ module Aws::Neptune
|
|
1406
1446
|
#
|
1407
1447
|
class CreateDBInstanceResult < Struct.new(
|
1408
1448
|
:db_instance)
|
1449
|
+
SENSITIVE = []
|
1409
1450
|
include Aws::Structure
|
1410
1451
|
end
|
1411
1452
|
|
@@ -1462,6 +1503,7 @@ module Aws::Neptune
|
|
1462
1503
|
:db_parameter_group_family,
|
1463
1504
|
:description,
|
1464
1505
|
:tags)
|
1506
|
+
SENSITIVE = []
|
1465
1507
|
include Aws::Structure
|
1466
1508
|
end
|
1467
1509
|
|
@@ -1476,6 +1518,7 @@ module Aws::Neptune
|
|
1476
1518
|
#
|
1477
1519
|
class CreateDBParameterGroupResult < Struct.new(
|
1478
1520
|
:db_parameter_group)
|
1521
|
+
SENSITIVE = []
|
1479
1522
|
include Aws::Structure
|
1480
1523
|
end
|
1481
1524
|
|
@@ -1523,6 +1566,7 @@ module Aws::Neptune
|
|
1523
1566
|
:db_subnet_group_description,
|
1524
1567
|
:subnet_ids,
|
1525
1568
|
:tags)
|
1569
|
+
SENSITIVE = []
|
1526
1570
|
include Aws::Structure
|
1527
1571
|
end
|
1528
1572
|
|
@@ -1537,6 +1581,7 @@ module Aws::Neptune
|
|
1537
1581
|
#
|
1538
1582
|
class CreateDBSubnetGroupResult < Struct.new(
|
1539
1583
|
:db_subnet_group)
|
1584
|
+
SENSITIVE = []
|
1540
1585
|
include Aws::Structure
|
1541
1586
|
end
|
1542
1587
|
|
@@ -1629,6 +1674,7 @@ module Aws::Neptune
|
|
1629
1674
|
:source_ids,
|
1630
1675
|
:enabled,
|
1631
1676
|
:tags)
|
1677
|
+
SENSITIVE = []
|
1632
1678
|
include Aws::Structure
|
1633
1679
|
end
|
1634
1680
|
|
@@ -1641,6 +1687,7 @@ module Aws::Neptune
|
|
1641
1687
|
#
|
1642
1688
|
class CreateEventSubscriptionResult < Struct.new(
|
1643
1689
|
:event_subscription)
|
1690
|
+
SENSITIVE = []
|
1644
1691
|
include Aws::Structure
|
1645
1692
|
end
|
1646
1693
|
|
@@ -1881,9 +1928,16 @@ module Aws::Neptune
|
|
1881
1928
|
:cluster_create_time,
|
1882
1929
|
:enabled_cloudwatch_logs_exports,
|
1883
1930
|
:deletion_protection)
|
1931
|
+
SENSITIVE = []
|
1884
1932
|
include Aws::Structure
|
1885
1933
|
end
|
1886
1934
|
|
1935
|
+
# User already has a DB cluster with the given identifier.
|
1936
|
+
#
|
1937
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBClusterAlreadyExistsFault AWS API Documentation
|
1938
|
+
#
|
1939
|
+
class DBClusterAlreadyExistsFault < Aws::EmptyStructure; end
|
1940
|
+
|
1887
1941
|
# Contains information about an instance that is part of a DB cluster.
|
1888
1942
|
#
|
1889
1943
|
# @!attribute [rw] db_instance_identifier
|
@@ -1913,6 +1967,7 @@ module Aws::Neptune
|
|
1913
1967
|
:is_cluster_writer,
|
1914
1968
|
:db_cluster_parameter_group_status,
|
1915
1969
|
:promotion_tier)
|
1970
|
+
SENSITIVE = []
|
1916
1971
|
include Aws::Structure
|
1917
1972
|
end
|
1918
1973
|
|
@@ -1930,9 +1985,16 @@ module Aws::Neptune
|
|
1930
1985
|
class DBClusterMessage < Struct.new(
|
1931
1986
|
:marker,
|
1932
1987
|
:db_clusters)
|
1988
|
+
SENSITIVE = []
|
1933
1989
|
include Aws::Structure
|
1934
1990
|
end
|
1935
1991
|
|
1992
|
+
# *DBClusterIdentifier* does not refer to an existing DB cluster.
|
1993
|
+
#
|
1994
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBClusterNotFoundFault AWS API Documentation
|
1995
|
+
#
|
1996
|
+
class DBClusterNotFoundFault < Aws::EmptyStructure; end
|
1997
|
+
|
1936
1998
|
# Contains status information for a DB cluster option group.
|
1937
1999
|
#
|
1938
2000
|
# @!attribute [rw] db_cluster_option_group_name
|
@@ -1948,6 +2010,7 @@ module Aws::Neptune
|
|
1948
2010
|
class DBClusterOptionGroupStatus < Struct.new(
|
1949
2011
|
:db_cluster_option_group_name,
|
1950
2012
|
:status)
|
2013
|
+
SENSITIVE = []
|
1951
2014
|
include Aws::Structure
|
1952
2015
|
end
|
1953
2016
|
|
@@ -1981,6 +2044,7 @@ module Aws::Neptune
|
|
1981
2044
|
:db_parameter_group_family,
|
1982
2045
|
:description,
|
1983
2046
|
:db_cluster_parameter_group_arn)
|
2047
|
+
SENSITIVE = []
|
1984
2048
|
include Aws::Structure
|
1985
2049
|
end
|
1986
2050
|
|
@@ -2000,6 +2064,7 @@ module Aws::Neptune
|
|
2000
2064
|
class DBClusterParameterGroupDetails < Struct.new(
|
2001
2065
|
:parameters,
|
2002
2066
|
:marker)
|
2067
|
+
SENSITIVE = []
|
2003
2068
|
include Aws::Structure
|
2004
2069
|
end
|
2005
2070
|
|
@@ -2023,9 +2088,17 @@ module Aws::Neptune
|
|
2023
2088
|
#
|
2024
2089
|
class DBClusterParameterGroupNameMessage < Struct.new(
|
2025
2090
|
:db_cluster_parameter_group_name)
|
2091
|
+
SENSITIVE = []
|
2026
2092
|
include Aws::Structure
|
2027
2093
|
end
|
2028
2094
|
|
2095
|
+
# *DBClusterParameterGroupName* does not refer to an existing DB Cluster
|
2096
|
+
# parameter group.
|
2097
|
+
#
|
2098
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBClusterParameterGroupNotFoundFault AWS API Documentation
|
2099
|
+
#
|
2100
|
+
class DBClusterParameterGroupNotFoundFault < Aws::EmptyStructure; end
|
2101
|
+
|
2029
2102
|
# @!attribute [rw] marker
|
2030
2103
|
# An optional pagination token provided by a previous
|
2031
2104
|
# `DescribeDBClusterParameterGroups` request. If this parameter is
|
@@ -2042,9 +2115,17 @@ module Aws::Neptune
|
|
2042
2115
|
class DBClusterParameterGroupsMessage < Struct.new(
|
2043
2116
|
:marker,
|
2044
2117
|
:db_cluster_parameter_groups)
|
2118
|
+
SENSITIVE = []
|
2045
2119
|
include Aws::Structure
|
2046
2120
|
end
|
2047
2121
|
|
2122
|
+
# User attempted to create a new DB cluster and the user has already
|
2123
|
+
# reached the maximum allowed DB cluster quota.
|
2124
|
+
#
|
2125
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBClusterQuotaExceededFault AWS API Documentation
|
2126
|
+
#
|
2127
|
+
class DBClusterQuotaExceededFault < Aws::EmptyStructure; end
|
2128
|
+
|
2048
2129
|
# Describes an AWS Identity and Access Management (IAM) role that is
|
2049
2130
|
# associated with a DB cluster.
|
2050
2131
|
#
|
@@ -2073,9 +2154,31 @@ module Aws::Neptune
|
|
2073
2154
|
class DBClusterRole < Struct.new(
|
2074
2155
|
:role_arn,
|
2075
2156
|
:status)
|
2157
|
+
SENSITIVE = []
|
2076
2158
|
include Aws::Structure
|
2077
2159
|
end
|
2078
2160
|
|
2161
|
+
# The specified IAM role Amazon Resource Name (ARN) is already
|
2162
|
+
# associated with the specified DB cluster.
|
2163
|
+
#
|
2164
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBClusterRoleAlreadyExistsFault AWS API Documentation
|
2165
|
+
#
|
2166
|
+
class DBClusterRoleAlreadyExistsFault < Aws::EmptyStructure; end
|
2167
|
+
|
2168
|
+
# The specified IAM role Amazon Resource Name (ARN) is not associated
|
2169
|
+
# with the specified DB cluster.
|
2170
|
+
#
|
2171
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBClusterRoleNotFoundFault AWS API Documentation
|
2172
|
+
#
|
2173
|
+
class DBClusterRoleNotFoundFault < Aws::EmptyStructure; end
|
2174
|
+
|
2175
|
+
# You have exceeded the maximum number of IAM roles that can be
|
2176
|
+
# associated with the specified DB cluster.
|
2177
|
+
#
|
2178
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBClusterRoleQuotaExceededFault AWS API Documentation
|
2179
|
+
#
|
2180
|
+
class DBClusterRoleQuotaExceededFault < Aws::EmptyStructure; end
|
2181
|
+
|
2079
2182
|
# Contains the details for an Amazon Neptune DB cluster snapshot
|
2080
2183
|
#
|
2081
2184
|
# This data type is used as a response element in the
|
@@ -2210,9 +2313,16 @@ module Aws::Neptune
|
|
2210
2313
|
:db_cluster_snapshot_arn,
|
2211
2314
|
:source_db_cluster_snapshot_arn,
|
2212
2315
|
:iam_database_authentication_enabled)
|
2316
|
+
SENSITIVE = []
|
2213
2317
|
include Aws::Structure
|
2214
2318
|
end
|
2215
2319
|
|
2320
|
+
# User already has a DB cluster snapshot with the given identifier.
|
2321
|
+
#
|
2322
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBClusterSnapshotAlreadyExistsFault AWS API Documentation
|
2323
|
+
#
|
2324
|
+
class DBClusterSnapshotAlreadyExistsFault < Aws::EmptyStructure; end
|
2325
|
+
|
2216
2326
|
# Contains the name and values of a manual DB cluster snapshot
|
2217
2327
|
# attribute.
|
2218
2328
|
#
|
@@ -2244,6 +2354,7 @@ module Aws::Neptune
|
|
2244
2354
|
class DBClusterSnapshotAttribute < Struct.new(
|
2245
2355
|
:attribute_name,
|
2246
2356
|
:attribute_values)
|
2357
|
+
SENSITIVE = []
|
2247
2358
|
include Aws::Structure
|
2248
2359
|
end
|
2249
2360
|
|
@@ -2269,6 +2380,7 @@ module Aws::Neptune
|
|
2269
2380
|
class DBClusterSnapshotAttributesResult < Struct.new(
|
2270
2381
|
:db_cluster_snapshot_identifier,
|
2271
2382
|
:db_cluster_snapshot_attributes)
|
2383
|
+
SENSITIVE = []
|
2272
2384
|
include Aws::Structure
|
2273
2385
|
end
|
2274
2386
|
|
@@ -2288,9 +2400,17 @@ module Aws::Neptune
|
|
2288
2400
|
class DBClusterSnapshotMessage < Struct.new(
|
2289
2401
|
:marker,
|
2290
2402
|
:db_cluster_snapshots)
|
2403
|
+
SENSITIVE = []
|
2291
2404
|
include Aws::Structure
|
2292
2405
|
end
|
2293
2406
|
|
2407
|
+
# *DBClusterSnapshotIdentifier* does not refer to an existing DB cluster
|
2408
|
+
# snapshot.
|
2409
|
+
#
|
2410
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBClusterSnapshotNotFoundFault AWS API Documentation
|
2411
|
+
#
|
2412
|
+
class DBClusterSnapshotNotFoundFault < Aws::EmptyStructure; end
|
2413
|
+
|
2294
2414
|
# This data type is used as a response element in the action
|
2295
2415
|
# DescribeDBEngineVersions.
|
2296
2416
|
#
|
@@ -2362,6 +2482,7 @@ module Aws::Neptune
|
|
2362
2482
|
:exportable_log_types,
|
2363
2483
|
:supports_log_exports_to_cloudwatch_logs,
|
2364
2484
|
:supports_read_replica)
|
2485
|
+
SENSITIVE = []
|
2365
2486
|
include Aws::Structure
|
2366
2487
|
end
|
2367
2488
|
|
@@ -2380,6 +2501,7 @@ module Aws::Neptune
|
|
2380
2501
|
class DBEngineVersionMessage < Struct.new(
|
2381
2502
|
:marker,
|
2382
2503
|
:db_engine_versions)
|
2504
|
+
SENSITIVE = []
|
2383
2505
|
include Aws::Structure
|
2384
2506
|
end
|
2385
2507
|
|
@@ -2700,9 +2822,16 @@ module Aws::Neptune
|
|
2700
2822
|
:performance_insights_kms_key_id,
|
2701
2823
|
:enabled_cloudwatch_logs_exports,
|
2702
2824
|
:deletion_protection)
|
2825
|
+
SENSITIVE = []
|
2703
2826
|
include Aws::Structure
|
2704
2827
|
end
|
2705
2828
|
|
2829
|
+
# User already has a DB instance with the given identifier.
|
2830
|
+
#
|
2831
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBInstanceAlreadyExistsFault AWS API Documentation
|
2832
|
+
#
|
2833
|
+
class DBInstanceAlreadyExistsFault < Aws::EmptyStructure; end
|
2834
|
+
|
2706
2835
|
# @!attribute [rw] marker
|
2707
2836
|
# An optional pagination token provided by a previous request. If this
|
2708
2837
|
# parameter is specified, the response includes only records beyond
|
@@ -2718,9 +2847,16 @@ module Aws::Neptune
|
|
2718
2847
|
class DBInstanceMessage < Struct.new(
|
2719
2848
|
:marker,
|
2720
2849
|
:db_instances)
|
2850
|
+
SENSITIVE = []
|
2721
2851
|
include Aws::Structure
|
2722
2852
|
end
|
2723
2853
|
|
2854
|
+
# *DBInstanceIdentifier* does not refer to an existing DB instance.
|
2855
|
+
#
|
2856
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBInstanceNotFoundFault AWS API Documentation
|
2857
|
+
#
|
2858
|
+
class DBInstanceNotFoundFault < Aws::EmptyStructure; end
|
2859
|
+
|
2724
2860
|
# Provides a list of status information for a DB instance.
|
2725
2861
|
#
|
2726
2862
|
# @!attribute [rw] status_type
|
@@ -2749,6 +2885,7 @@ module Aws::Neptune
|
|
2749
2885
|
:normal,
|
2750
2886
|
:status,
|
2751
2887
|
:message)
|
2888
|
+
SENSITIVE = []
|
2752
2889
|
include Aws::Structure
|
2753
2890
|
end
|
2754
2891
|
|
@@ -2782,9 +2919,16 @@ module Aws::Neptune
|
|
2782
2919
|
:db_parameter_group_family,
|
2783
2920
|
:description,
|
2784
2921
|
:db_parameter_group_arn)
|
2922
|
+
SENSITIVE = []
|
2785
2923
|
include Aws::Structure
|
2786
2924
|
end
|
2787
2925
|
|
2926
|
+
# A DB parameter group with the same name exists.
|
2927
|
+
#
|
2928
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBParameterGroupAlreadyExistsFault AWS API Documentation
|
2929
|
+
#
|
2930
|
+
class DBParameterGroupAlreadyExistsFault < Aws::EmptyStructure; end
|
2931
|
+
|
2788
2932
|
# @!attribute [rw] parameters
|
2789
2933
|
# A list of Parameter values.
|
2790
2934
|
# @return [Array<Types::Parameter>]
|
@@ -2800,6 +2944,7 @@ module Aws::Neptune
|
|
2800
2944
|
class DBParameterGroupDetails < Struct.new(
|
2801
2945
|
:parameters,
|
2802
2946
|
:marker)
|
2947
|
+
SENSITIVE = []
|
2803
2948
|
include Aws::Structure
|
2804
2949
|
end
|
2805
2950
|
|
@@ -2811,9 +2956,24 @@ module Aws::Neptune
|
|
2811
2956
|
#
|
2812
2957
|
class DBParameterGroupNameMessage < Struct.new(
|
2813
2958
|
:db_parameter_group_name)
|
2959
|
+
SENSITIVE = []
|
2814
2960
|
include Aws::Structure
|
2815
2961
|
end
|
2816
2962
|
|
2963
|
+
# *DBParameterGroupName* does not refer to an existing DB parameter
|
2964
|
+
# group.
|
2965
|
+
#
|
2966
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBParameterGroupNotFoundFault AWS API Documentation
|
2967
|
+
#
|
2968
|
+
class DBParameterGroupNotFoundFault < Aws::EmptyStructure; end
|
2969
|
+
|
2970
|
+
# Request would result in user exceeding the allowed number of DB
|
2971
|
+
# parameter groups.
|
2972
|
+
#
|
2973
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBParameterGroupQuotaExceededFault AWS API Documentation
|
2974
|
+
#
|
2975
|
+
class DBParameterGroupQuotaExceededFault < Aws::EmptyStructure; end
|
2976
|
+
|
2817
2977
|
# The status of the DB parameter group.
|
2818
2978
|
#
|
2819
2979
|
# This data type is used as a response element in the following actions:
|
@@ -2839,6 +2999,7 @@ module Aws::Neptune
|
|
2839
2999
|
class DBParameterGroupStatus < Struct.new(
|
2840
3000
|
:db_parameter_group_name,
|
2841
3001
|
:parameter_apply_status)
|
3002
|
+
SENSITIVE = []
|
2842
3003
|
include Aws::Structure
|
2843
3004
|
end
|
2844
3005
|
|
@@ -2857,6 +3018,7 @@ module Aws::Neptune
|
|
2857
3018
|
class DBParameterGroupsMessage < Struct.new(
|
2858
3019
|
:marker,
|
2859
3020
|
:db_parameter_groups)
|
3021
|
+
SENSITIVE = []
|
2860
3022
|
include Aws::Structure
|
2861
3023
|
end
|
2862
3024
|
|
@@ -2875,9 +3037,28 @@ module Aws::Neptune
|
|
2875
3037
|
class DBSecurityGroupMembership < Struct.new(
|
2876
3038
|
:db_security_group_name,
|
2877
3039
|
:status)
|
3040
|
+
SENSITIVE = []
|
2878
3041
|
include Aws::Structure
|
2879
3042
|
end
|
2880
3043
|
|
3044
|
+
# *DBSecurityGroupName* does not refer to an existing DB security group.
|
3045
|
+
#
|
3046
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBSecurityGroupNotFoundFault AWS API Documentation
|
3047
|
+
#
|
3048
|
+
class DBSecurityGroupNotFoundFault < Aws::EmptyStructure; end
|
3049
|
+
|
3050
|
+
# *DBSnapshotIdentifier* is already used by an existing snapshot.
|
3051
|
+
#
|
3052
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBSnapshotAlreadyExistsFault AWS API Documentation
|
3053
|
+
#
|
3054
|
+
class DBSnapshotAlreadyExistsFault < Aws::EmptyStructure; end
|
3055
|
+
|
3056
|
+
# *DBSnapshotIdentifier* does not refer to an existing DB snapshot.
|
3057
|
+
#
|
3058
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBSnapshotNotFoundFault AWS API Documentation
|
3059
|
+
#
|
3060
|
+
class DBSnapshotNotFoundFault < Aws::EmptyStructure; end
|
3061
|
+
|
2881
3062
|
# Contains the details of an Amazon Neptune DB subnet group.
|
2882
3063
|
#
|
2883
3064
|
# This data type is used as a response element in the
|
@@ -2916,9 +3097,23 @@ module Aws::Neptune
|
|
2916
3097
|
:subnet_group_status,
|
2917
3098
|
:subnets,
|
2918
3099
|
:db_subnet_group_arn)
|
3100
|
+
SENSITIVE = []
|
2919
3101
|
include Aws::Structure
|
2920
3102
|
end
|
2921
3103
|
|
3104
|
+
# *DBSubnetGroupName* is already used by an existing DB subnet group.
|
3105
|
+
#
|
3106
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBSubnetGroupAlreadyExistsFault AWS API Documentation
|
3107
|
+
#
|
3108
|
+
class DBSubnetGroupAlreadyExistsFault < Aws::EmptyStructure; end
|
3109
|
+
|
3110
|
+
# Subnets in the DB subnet group should cover at least two Availability
|
3111
|
+
# Zones unless there is only one Availability Zone.
|
3112
|
+
#
|
3113
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBSubnetGroupDoesNotCoverEnoughAZs AWS API Documentation
|
3114
|
+
#
|
3115
|
+
class DBSubnetGroupDoesNotCoverEnoughAZs < Aws::EmptyStructure; end
|
3116
|
+
|
2922
3117
|
# @!attribute [rw] marker
|
2923
3118
|
# An optional pagination token provided by a previous request. If this
|
2924
3119
|
# parameter is specified, the response includes only records beyond
|
@@ -2934,9 +3129,37 @@ module Aws::Neptune
|
|
2934
3129
|
class DBSubnetGroupMessage < Struct.new(
|
2935
3130
|
:marker,
|
2936
3131
|
:db_subnet_groups)
|
3132
|
+
SENSITIVE = []
|
2937
3133
|
include Aws::Structure
|
2938
3134
|
end
|
2939
3135
|
|
3136
|
+
# *DBSubnetGroupName* does not refer to an existing DB subnet group.
|
3137
|
+
#
|
3138
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBSubnetGroupNotFoundFault AWS API Documentation
|
3139
|
+
#
|
3140
|
+
class DBSubnetGroupNotFoundFault < Aws::EmptyStructure; end
|
3141
|
+
|
3142
|
+
# Request would result in user exceeding the allowed number of DB subnet
|
3143
|
+
# groups.
|
3144
|
+
#
|
3145
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBSubnetGroupQuotaExceededFault AWS API Documentation
|
3146
|
+
#
|
3147
|
+
class DBSubnetGroupQuotaExceededFault < Aws::EmptyStructure; end
|
3148
|
+
|
3149
|
+
# Request would result in user exceeding the allowed number of subnets
|
3150
|
+
# in a DB subnet groups.
|
3151
|
+
#
|
3152
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBSubnetQuotaExceededFault AWS API Documentation
|
3153
|
+
#
|
3154
|
+
class DBSubnetQuotaExceededFault < Aws::EmptyStructure; end
|
3155
|
+
|
3156
|
+
# The DB upgrade failed because a resource the DB depends on could not
|
3157
|
+
# be modified.
|
3158
|
+
#
|
3159
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBUpgradeDependencyFailureFault AWS API Documentation
|
3160
|
+
#
|
3161
|
+
class DBUpgradeDependencyFailureFault < Aws::EmptyStructure; end
|
3162
|
+
|
2940
3163
|
# @note When making an API call, you may pass DeleteDBClusterMessage
|
2941
3164
|
# data as a hash:
|
2942
3165
|
#
|
@@ -2995,6 +3218,7 @@ module Aws::Neptune
|
|
2995
3218
|
:db_cluster_identifier,
|
2996
3219
|
:skip_final_snapshot,
|
2997
3220
|
:final_db_snapshot_identifier)
|
3221
|
+
SENSITIVE = []
|
2998
3222
|
include Aws::Structure
|
2999
3223
|
end
|
3000
3224
|
|
@@ -3021,6 +3245,7 @@ module Aws::Neptune
|
|
3021
3245
|
#
|
3022
3246
|
class DeleteDBClusterParameterGroupMessage < Struct.new(
|
3023
3247
|
:db_cluster_parameter_group_name)
|
3248
|
+
SENSITIVE = []
|
3024
3249
|
include Aws::Structure
|
3025
3250
|
end
|
3026
3251
|
|
@@ -3035,6 +3260,7 @@ module Aws::Neptune
|
|
3035
3260
|
#
|
3036
3261
|
class DeleteDBClusterResult < Struct.new(
|
3037
3262
|
:db_cluster)
|
3263
|
+
SENSITIVE = []
|
3038
3264
|
include Aws::Structure
|
3039
3265
|
end
|
3040
3266
|
|
@@ -3056,6 +3282,7 @@ module Aws::Neptune
|
|
3056
3282
|
#
|
3057
3283
|
class DeleteDBClusterSnapshotMessage < Struct.new(
|
3058
3284
|
:db_cluster_snapshot_identifier)
|
3285
|
+
SENSITIVE = []
|
3059
3286
|
include Aws::Structure
|
3060
3287
|
end
|
3061
3288
|
|
@@ -3070,6 +3297,7 @@ module Aws::Neptune
|
|
3070
3297
|
#
|
3071
3298
|
class DeleteDBClusterSnapshotResult < Struct.new(
|
3072
3299
|
:db_cluster_snapshot)
|
3300
|
+
SENSITIVE = []
|
3073
3301
|
include Aws::Structure
|
3074
3302
|
end
|
3075
3303
|
|
@@ -3140,6 +3368,7 @@ module Aws::Neptune
|
|
3140
3368
|
:db_instance_identifier,
|
3141
3369
|
:skip_final_snapshot,
|
3142
3370
|
:final_db_snapshot_identifier)
|
3371
|
+
SENSITIVE = []
|
3143
3372
|
include Aws::Structure
|
3144
3373
|
end
|
3145
3374
|
|
@@ -3154,6 +3383,7 @@ module Aws::Neptune
|
|
3154
3383
|
#
|
3155
3384
|
class DeleteDBInstanceResult < Struct.new(
|
3156
3385
|
:db_instance)
|
3386
|
+
SENSITIVE = []
|
3157
3387
|
include Aws::Structure
|
3158
3388
|
end
|
3159
3389
|
|
@@ -3180,6 +3410,7 @@ module Aws::Neptune
|
|
3180
3410
|
#
|
3181
3411
|
class DeleteDBParameterGroupMessage < Struct.new(
|
3182
3412
|
:db_parameter_group_name)
|
3413
|
+
SENSITIVE = []
|
3183
3414
|
include Aws::Structure
|
3184
3415
|
end
|
3185
3416
|
|
@@ -3209,6 +3440,7 @@ module Aws::Neptune
|
|
3209
3440
|
#
|
3210
3441
|
class DeleteDBSubnetGroupMessage < Struct.new(
|
3211
3442
|
:db_subnet_group_name)
|
3443
|
+
SENSITIVE = []
|
3212
3444
|
include Aws::Structure
|
3213
3445
|
end
|
3214
3446
|
|
@@ -3227,6 +3459,7 @@ module Aws::Neptune
|
|
3227
3459
|
#
|
3228
3460
|
class DeleteEventSubscriptionMessage < Struct.new(
|
3229
3461
|
:subscription_name)
|
3462
|
+
SENSITIVE = []
|
3230
3463
|
include Aws::Structure
|
3231
3464
|
end
|
3232
3465
|
|
@@ -3239,6 +3472,7 @@ module Aws::Neptune
|
|
3239
3472
|
#
|
3240
3473
|
class DeleteEventSubscriptionResult < Struct.new(
|
3241
3474
|
:event_subscription)
|
3475
|
+
SENSITIVE = []
|
3242
3476
|
include Aws::Structure
|
3243
3477
|
end
|
3244
3478
|
|
@@ -3298,6 +3532,7 @@ module Aws::Neptune
|
|
3298
3532
|
:filters,
|
3299
3533
|
:max_records,
|
3300
3534
|
:marker)
|
3535
|
+
SENSITIVE = []
|
3301
3536
|
include Aws::Structure
|
3302
3537
|
end
|
3303
3538
|
|
@@ -3364,6 +3599,7 @@ module Aws::Neptune
|
|
3364
3599
|
:filters,
|
3365
3600
|
:max_records,
|
3366
3601
|
:marker)
|
3602
|
+
SENSITIVE = []
|
3367
3603
|
include Aws::Structure
|
3368
3604
|
end
|
3369
3605
|
|
@@ -3383,6 +3619,7 @@ module Aws::Neptune
|
|
3383
3619
|
#
|
3384
3620
|
class DescribeDBClusterSnapshotAttributesMessage < Struct.new(
|
3385
3621
|
:db_cluster_snapshot_identifier)
|
3622
|
+
SENSITIVE = []
|
3386
3623
|
include Aws::Structure
|
3387
3624
|
end
|
3388
3625
|
|
@@ -3400,6 +3637,7 @@ module Aws::Neptune
|
|
3400
3637
|
#
|
3401
3638
|
class DescribeDBClusterSnapshotAttributesResult < Struct.new(
|
3402
3639
|
:db_cluster_snapshot_attributes_result)
|
3640
|
+
SENSITIVE = []
|
3403
3641
|
include Aws::Structure
|
3404
3642
|
end
|
3405
3643
|
|
@@ -3532,6 +3770,7 @@ module Aws::Neptune
|
|
3532
3770
|
:marker,
|
3533
3771
|
:include_shared,
|
3534
3772
|
:include_public)
|
3773
|
+
SENSITIVE = []
|
3535
3774
|
include Aws::Structure
|
3536
3775
|
end
|
3537
3776
|
|
@@ -3604,6 +3843,7 @@ module Aws::Neptune
|
|
3604
3843
|
:filters,
|
3605
3844
|
:max_records,
|
3606
3845
|
:marker)
|
3846
|
+
SENSITIVE = []
|
3607
3847
|
include Aws::Structure
|
3608
3848
|
end
|
3609
3849
|
|
@@ -3698,6 +3938,7 @@ module Aws::Neptune
|
|
3698
3938
|
:default_only,
|
3699
3939
|
:list_supported_character_sets,
|
3700
3940
|
:list_supported_timezones)
|
3941
|
+
SENSITIVE = []
|
3701
3942
|
include Aws::Structure
|
3702
3943
|
end
|
3703
3944
|
|
@@ -3771,6 +4012,7 @@ module Aws::Neptune
|
|
3771
4012
|
:filters,
|
3772
4013
|
:max_records,
|
3773
4014
|
:marker)
|
4015
|
+
SENSITIVE = []
|
3774
4016
|
include Aws::Structure
|
3775
4017
|
end
|
3776
4018
|
|
@@ -3829,6 +4071,7 @@ module Aws::Neptune
|
|
3829
4071
|
:filters,
|
3830
4072
|
:max_records,
|
3831
4073
|
:marker)
|
4074
|
+
SENSITIVE = []
|
3832
4075
|
include Aws::Structure
|
3833
4076
|
end
|
3834
4077
|
|
@@ -3896,6 +4139,7 @@ module Aws::Neptune
|
|
3896
4139
|
:filters,
|
3897
4140
|
:max_records,
|
3898
4141
|
:marker)
|
4142
|
+
SENSITIVE = []
|
3899
4143
|
include Aws::Structure
|
3900
4144
|
end
|
3901
4145
|
|
@@ -3947,6 +4191,7 @@ module Aws::Neptune
|
|
3947
4191
|
:filters,
|
3948
4192
|
:max_records,
|
3949
4193
|
:marker)
|
4194
|
+
SENSITIVE = []
|
3950
4195
|
include Aws::Structure
|
3951
4196
|
end
|
3952
4197
|
|
@@ -3999,6 +4244,7 @@ module Aws::Neptune
|
|
3999
4244
|
:filters,
|
4000
4245
|
:max_records,
|
4001
4246
|
:marker)
|
4247
|
+
SENSITIVE = []
|
4002
4248
|
include Aws::Structure
|
4003
4249
|
end
|
4004
4250
|
|
@@ -4011,6 +4257,7 @@ module Aws::Neptune
|
|
4011
4257
|
#
|
4012
4258
|
class DescribeEngineDefaultClusterParametersResult < Struct.new(
|
4013
4259
|
:engine_defaults)
|
4260
|
+
SENSITIVE = []
|
4014
4261
|
include Aws::Structure
|
4015
4262
|
end
|
4016
4263
|
|
@@ -4062,6 +4309,7 @@ module Aws::Neptune
|
|
4062
4309
|
:filters,
|
4063
4310
|
:max_records,
|
4064
4311
|
:marker)
|
4312
|
+
SENSITIVE = []
|
4065
4313
|
include Aws::Structure
|
4066
4314
|
end
|
4067
4315
|
|
@@ -4074,6 +4322,7 @@ module Aws::Neptune
|
|
4074
4322
|
#
|
4075
4323
|
class DescribeEngineDefaultParametersResult < Struct.new(
|
4076
4324
|
:engine_defaults)
|
4325
|
+
SENSITIVE = []
|
4077
4326
|
include Aws::Structure
|
4078
4327
|
end
|
4079
4328
|
|
@@ -4106,6 +4355,7 @@ module Aws::Neptune
|
|
4106
4355
|
class DescribeEventCategoriesMessage < Struct.new(
|
4107
4356
|
:source_type,
|
4108
4357
|
:filters)
|
4358
|
+
SENSITIVE = []
|
4109
4359
|
include Aws::Structure
|
4110
4360
|
end
|
4111
4361
|
|
@@ -4158,6 +4408,7 @@ module Aws::Neptune
|
|
4158
4408
|
:filters,
|
4159
4409
|
:max_records,
|
4160
4410
|
:marker)
|
4411
|
+
SENSITIVE = []
|
4161
4412
|
include Aws::Structure
|
4162
4413
|
end
|
4163
4414
|
|
@@ -4278,6 +4529,7 @@ module Aws::Neptune
|
|
4278
4529
|
:filters,
|
4279
4530
|
:max_records,
|
4280
4531
|
:marker)
|
4532
|
+
SENSITIVE = []
|
4281
4533
|
include Aws::Structure
|
4282
4534
|
end
|
4283
4535
|
|
@@ -4358,6 +4610,7 @@ module Aws::Neptune
|
|
4358
4610
|
:filters,
|
4359
4611
|
:max_records,
|
4360
4612
|
:marker)
|
4613
|
+
SENSITIVE = []
|
4361
4614
|
include Aws::Structure
|
4362
4615
|
end
|
4363
4616
|
|
@@ -4421,6 +4674,7 @@ module Aws::Neptune
|
|
4421
4674
|
:filters,
|
4422
4675
|
:marker,
|
4423
4676
|
:max_records)
|
4677
|
+
SENSITIVE = []
|
4424
4678
|
include Aws::Structure
|
4425
4679
|
end
|
4426
4680
|
|
@@ -4439,6 +4693,7 @@ module Aws::Neptune
|
|
4439
4693
|
#
|
4440
4694
|
class DescribeValidDBInstanceModificationsMessage < Struct.new(
|
4441
4695
|
:db_instance_identifier)
|
4696
|
+
SENSITIVE = []
|
4442
4697
|
include Aws::Structure
|
4443
4698
|
end
|
4444
4699
|
|
@@ -4453,6 +4708,7 @@ module Aws::Neptune
|
|
4453
4708
|
#
|
4454
4709
|
class DescribeValidDBInstanceModificationsResult < Struct.new(
|
4455
4710
|
:valid_db_instance_modifications_message)
|
4711
|
+
SENSITIVE = []
|
4456
4712
|
include Aws::Structure
|
4457
4713
|
end
|
4458
4714
|
|
@@ -4484,9 +4740,16 @@ module Aws::Neptune
|
|
4484
4740
|
:status,
|
4485
4741
|
:fqdn,
|
4486
4742
|
:iam_role_name)
|
4743
|
+
SENSITIVE = []
|
4487
4744
|
include Aws::Structure
|
4488
4745
|
end
|
4489
4746
|
|
4747
|
+
# *Domain* does not refer to an existing Active Directory Domain.
|
4748
|
+
#
|
4749
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DomainNotFoundFault AWS API Documentation
|
4750
|
+
#
|
4751
|
+
class DomainNotFoundFault < Aws::EmptyStructure; end
|
4752
|
+
|
4490
4753
|
# A range of double values.
|
4491
4754
|
#
|
4492
4755
|
# @!attribute [rw] from
|
@@ -4502,6 +4765,7 @@ module Aws::Neptune
|
|
4502
4765
|
class DoubleRange < Struct.new(
|
4503
4766
|
:from,
|
4504
4767
|
:to)
|
4768
|
+
SENSITIVE = []
|
4505
4769
|
include Aws::Structure
|
4506
4770
|
end
|
4507
4771
|
|
@@ -4526,6 +4790,7 @@ module Aws::Neptune
|
|
4526
4790
|
:address,
|
4527
4791
|
:port,
|
4528
4792
|
:hosted_zone_id)
|
4793
|
+
SENSITIVE = []
|
4529
4794
|
include Aws::Structure
|
4530
4795
|
end
|
4531
4796
|
|
@@ -4554,6 +4819,7 @@ module Aws::Neptune
|
|
4554
4819
|
:db_parameter_group_family,
|
4555
4820
|
:marker,
|
4556
4821
|
:parameters)
|
4822
|
+
SENSITIVE = []
|
4557
4823
|
include Aws::Structure
|
4558
4824
|
end
|
4559
4825
|
|
@@ -4593,6 +4859,7 @@ module Aws::Neptune
|
|
4593
4859
|
:event_categories,
|
4594
4860
|
:date,
|
4595
4861
|
:source_arn)
|
4862
|
+
SENSITIVE = []
|
4596
4863
|
include Aws::Structure
|
4597
4864
|
end
|
4598
4865
|
|
@@ -4612,6 +4879,7 @@ module Aws::Neptune
|
|
4612
4879
|
class EventCategoriesMap < Struct.new(
|
4613
4880
|
:source_type,
|
4614
4881
|
:event_categories)
|
4882
|
+
SENSITIVE = []
|
4615
4883
|
include Aws::Structure
|
4616
4884
|
end
|
4617
4885
|
|
@@ -4623,6 +4891,7 @@ module Aws::Neptune
|
|
4623
4891
|
#
|
4624
4892
|
class EventCategoriesMessage < Struct.new(
|
4625
4893
|
:event_categories_map_list)
|
4894
|
+
SENSITIVE = []
|
4626
4895
|
include Aws::Structure
|
4627
4896
|
end
|
4628
4897
|
|
@@ -4694,9 +4963,16 @@ module Aws::Neptune
|
|
4694
4963
|
:event_categories_list,
|
4695
4964
|
:enabled,
|
4696
4965
|
:event_subscription_arn)
|
4966
|
+
SENSITIVE = []
|
4697
4967
|
include Aws::Structure
|
4698
4968
|
end
|
4699
4969
|
|
4970
|
+
# You have exceeded the number of events you can subscribe to.
|
4971
|
+
#
|
4972
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/EventSubscriptionQuotaExceededFault AWS API Documentation
|
4973
|
+
#
|
4974
|
+
class EventSubscriptionQuotaExceededFault < Aws::EmptyStructure; end
|
4975
|
+
|
4700
4976
|
# @!attribute [rw] marker
|
4701
4977
|
# An optional pagination token provided by a previous
|
4702
4978
|
# DescribeOrderableDBInstanceOptions request. If this parameter is
|
@@ -4713,6 +4989,7 @@ module Aws::Neptune
|
|
4713
4989
|
class EventSubscriptionsMessage < Struct.new(
|
4714
4990
|
:marker,
|
4715
4991
|
:event_subscriptions_list)
|
4992
|
+
SENSITIVE = []
|
4716
4993
|
include Aws::Structure
|
4717
4994
|
end
|
4718
4995
|
|
@@ -4731,6 +5008,7 @@ module Aws::Neptune
|
|
4731
5008
|
class EventsMessage < Struct.new(
|
4732
5009
|
:marker,
|
4733
5010
|
:events)
|
5011
|
+
SENSITIVE = []
|
4734
5012
|
include Aws::Structure
|
4735
5013
|
end
|
4736
5014
|
|
@@ -4765,6 +5043,7 @@ module Aws::Neptune
|
|
4765
5043
|
class FailoverDBClusterMessage < Struct.new(
|
4766
5044
|
:db_cluster_identifier,
|
4767
5045
|
:target_db_instance_identifier)
|
5046
|
+
SENSITIVE = []
|
4768
5047
|
include Aws::Structure
|
4769
5048
|
end
|
4770
5049
|
|
@@ -4779,6 +5058,7 @@ module Aws::Neptune
|
|
4779
5058
|
#
|
4780
5059
|
class FailoverDBClusterResult < Struct.new(
|
4781
5060
|
:db_cluster)
|
5061
|
+
SENSITIVE = []
|
4782
5062
|
include Aws::Structure
|
4783
5063
|
end
|
4784
5064
|
|
@@ -4805,9 +5085,121 @@ module Aws::Neptune
|
|
4805
5085
|
class Filter < Struct.new(
|
4806
5086
|
:name,
|
4807
5087
|
:values)
|
5088
|
+
SENSITIVE = []
|
4808
5089
|
include Aws::Structure
|
4809
5090
|
end
|
4810
5091
|
|
5092
|
+
# Request would result in user exceeding the allowed number of DB
|
5093
|
+
# instances.
|
5094
|
+
#
|
5095
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/InstanceQuotaExceededFault AWS API Documentation
|
5096
|
+
#
|
5097
|
+
class InstanceQuotaExceededFault < Aws::EmptyStructure; end
|
5098
|
+
|
5099
|
+
# The DB cluster does not have enough capacity for the current
|
5100
|
+
# operation.
|
5101
|
+
#
|
5102
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/InsufficientDBClusterCapacityFault AWS API Documentation
|
5103
|
+
#
|
5104
|
+
class InsufficientDBClusterCapacityFault < Aws::EmptyStructure; end
|
5105
|
+
|
5106
|
+
# Specified DB instance class is not available in the specified
|
5107
|
+
# Availability Zone.
|
5108
|
+
#
|
5109
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/InsufficientDBInstanceCapacityFault AWS API Documentation
|
5110
|
+
#
|
5111
|
+
class InsufficientDBInstanceCapacityFault < Aws::EmptyStructure; end
|
5112
|
+
|
5113
|
+
# There is insufficient storage available for the current action. You
|
5114
|
+
# may be able to resolve this error by updating your subnet group to use
|
5115
|
+
# different Availability Zones that have more storage available.
|
5116
|
+
#
|
5117
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/InsufficientStorageClusterCapacityFault AWS API Documentation
|
5118
|
+
#
|
5119
|
+
class InsufficientStorageClusterCapacityFault < Aws::EmptyStructure; end
|
5120
|
+
|
5121
|
+
# The supplied value is not a valid DB cluster snapshot state.
|
5122
|
+
#
|
5123
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/InvalidDBClusterSnapshotStateFault AWS API Documentation
|
5124
|
+
#
|
5125
|
+
class InvalidDBClusterSnapshotStateFault < Aws::EmptyStructure; end
|
5126
|
+
|
5127
|
+
# The DB cluster is not in a valid state.
|
5128
|
+
#
|
5129
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/InvalidDBClusterStateFault AWS API Documentation
|
5130
|
+
#
|
5131
|
+
class InvalidDBClusterStateFault < Aws::EmptyStructure; end
|
5132
|
+
|
5133
|
+
# The specified DB instance is not in the *available* state.
|
5134
|
+
#
|
5135
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/InvalidDBInstanceStateFault AWS API Documentation
|
5136
|
+
#
|
5137
|
+
class InvalidDBInstanceStateFault < Aws::EmptyStructure; end
|
5138
|
+
|
5139
|
+
# The DB parameter group is in use or is in an invalid state. If you are
|
5140
|
+
# attempting to delete the parameter group, you cannot delete it when
|
5141
|
+
# the parameter group is in this state.
|
5142
|
+
#
|
5143
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/InvalidDBParameterGroupStateFault AWS API Documentation
|
5144
|
+
#
|
5145
|
+
class InvalidDBParameterGroupStateFault < Aws::EmptyStructure; end
|
5146
|
+
|
5147
|
+
# The state of the DB security group does not allow deletion.
|
5148
|
+
#
|
5149
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/InvalidDBSecurityGroupStateFault AWS API Documentation
|
5150
|
+
#
|
5151
|
+
class InvalidDBSecurityGroupStateFault < Aws::EmptyStructure; end
|
5152
|
+
|
5153
|
+
# The state of the DB snapshot does not allow deletion.
|
5154
|
+
#
|
5155
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/InvalidDBSnapshotStateFault AWS API Documentation
|
5156
|
+
#
|
5157
|
+
class InvalidDBSnapshotStateFault < Aws::EmptyStructure; end
|
5158
|
+
|
5159
|
+
# The DB subnet group cannot be deleted because it is in use.
|
5160
|
+
#
|
5161
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/InvalidDBSubnetGroupStateFault AWS API Documentation
|
5162
|
+
#
|
5163
|
+
class InvalidDBSubnetGroupStateFault < Aws::EmptyStructure; end
|
5164
|
+
|
5165
|
+
# The DB subnet is not in the *available* state.
|
5166
|
+
#
|
5167
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/InvalidDBSubnetStateFault AWS API Documentation
|
5168
|
+
#
|
5169
|
+
class InvalidDBSubnetStateFault < Aws::EmptyStructure; end
|
5170
|
+
|
5171
|
+
# The event subscription is in an invalid state.
|
5172
|
+
#
|
5173
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/InvalidEventSubscriptionStateFault AWS API Documentation
|
5174
|
+
#
|
5175
|
+
class InvalidEventSubscriptionStateFault < Aws::EmptyStructure; end
|
5176
|
+
|
5177
|
+
# Cannot restore from vpc backup to non-vpc DB instance.
|
5178
|
+
#
|
5179
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/InvalidRestoreFault AWS API Documentation
|
5180
|
+
#
|
5181
|
+
class InvalidRestoreFault < Aws::EmptyStructure; end
|
5182
|
+
|
5183
|
+
# The requested subnet is invalid, or multiple subnets were requested
|
5184
|
+
# that are not all in a common VPC.
|
5185
|
+
#
|
5186
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/InvalidSubnet AWS API Documentation
|
5187
|
+
#
|
5188
|
+
class InvalidSubnet < Aws::EmptyStructure; end
|
5189
|
+
|
5190
|
+
# DB subnet group does not cover all Availability Zones after it is
|
5191
|
+
# created because users' change.
|
5192
|
+
#
|
5193
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/InvalidVPCNetworkStateFault AWS API Documentation
|
5194
|
+
#
|
5195
|
+
class InvalidVPCNetworkStateFault < Aws::EmptyStructure; end
|
5196
|
+
|
5197
|
+
# Error accessing KMS key.
|
5198
|
+
#
|
5199
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/KMSKeyNotAccessibleFault AWS API Documentation
|
5200
|
+
#
|
5201
|
+
class KMSKeyNotAccessibleFault < Aws::EmptyStructure; end
|
5202
|
+
|
4811
5203
|
# @note When making an API call, you may pass ListTagsForResourceMessage
|
4812
5204
|
# data as a hash:
|
4813
5205
|
#
|
@@ -4840,6 +5232,7 @@ module Aws::Neptune
|
|
4840
5232
|
class ListTagsForResourceMessage < Struct.new(
|
4841
5233
|
:resource_name,
|
4842
5234
|
:filters)
|
5235
|
+
SENSITIVE = []
|
4843
5236
|
include Aws::Structure
|
4844
5237
|
end
|
4845
5238
|
|
@@ -5032,6 +5425,7 @@ module Aws::Neptune
|
|
5032
5425
|
:cloudwatch_logs_export_configuration,
|
5033
5426
|
:engine_version,
|
5034
5427
|
:deletion_protection)
|
5428
|
+
SENSITIVE = []
|
5035
5429
|
include Aws::Structure
|
5036
5430
|
end
|
5037
5431
|
|
@@ -5069,6 +5463,7 @@ module Aws::Neptune
|
|
5069
5463
|
class ModifyDBClusterParameterGroupMessage < Struct.new(
|
5070
5464
|
:db_cluster_parameter_group_name,
|
5071
5465
|
:parameters)
|
5466
|
+
SENSITIVE = []
|
5072
5467
|
include Aws::Structure
|
5073
5468
|
end
|
5074
5469
|
|
@@ -5083,6 +5478,7 @@ module Aws::Neptune
|
|
5083
5478
|
#
|
5084
5479
|
class ModifyDBClusterResult < Struct.new(
|
5085
5480
|
:db_cluster)
|
5481
|
+
SENSITIVE = []
|
5086
5482
|
include Aws::Structure
|
5087
5483
|
end
|
5088
5484
|
|
@@ -5140,6 +5536,7 @@ module Aws::Neptune
|
|
5140
5536
|
:attribute_name,
|
5141
5537
|
:values_to_add,
|
5142
5538
|
:values_to_remove)
|
5539
|
+
SENSITIVE = []
|
5143
5540
|
include Aws::Structure
|
5144
5541
|
end
|
5145
5542
|
|
@@ -5157,6 +5554,7 @@ module Aws::Neptune
|
|
5157
5554
|
#
|
5158
5555
|
class ModifyDBClusterSnapshotAttributeResult < Struct.new(
|
5159
5556
|
:db_cluster_snapshot_attributes_result)
|
5557
|
+
SENSITIVE = []
|
5160
5558
|
include Aws::Structure
|
5161
5559
|
end
|
5162
5560
|
|
@@ -5581,6 +5979,7 @@ module Aws::Neptune
|
|
5581
5979
|
:performance_insights_kms_key_id,
|
5582
5980
|
:cloudwatch_logs_export_configuration,
|
5583
5981
|
:deletion_protection)
|
5982
|
+
SENSITIVE = []
|
5584
5983
|
include Aws::Structure
|
5585
5984
|
end
|
5586
5985
|
|
@@ -5595,6 +5994,7 @@ module Aws::Neptune
|
|
5595
5994
|
#
|
5596
5995
|
class ModifyDBInstanceResult < Struct.new(
|
5597
5996
|
:db_instance)
|
5997
|
+
SENSITIVE = []
|
5598
5998
|
include Aws::Structure
|
5599
5999
|
end
|
5600
6000
|
|
@@ -5651,6 +6051,7 @@ module Aws::Neptune
|
|
5651
6051
|
class ModifyDBParameterGroupMessage < Struct.new(
|
5652
6052
|
:db_parameter_group_name,
|
5653
6053
|
:parameters)
|
6054
|
+
SENSITIVE = []
|
5654
6055
|
include Aws::Structure
|
5655
6056
|
end
|
5656
6057
|
|
@@ -5687,6 +6088,7 @@ module Aws::Neptune
|
|
5687
6088
|
:db_subnet_group_name,
|
5688
6089
|
:db_subnet_group_description,
|
5689
6090
|
:subnet_ids)
|
6091
|
+
SENSITIVE = []
|
5690
6092
|
include Aws::Structure
|
5691
6093
|
end
|
5692
6094
|
|
@@ -5701,6 +6103,7 @@ module Aws::Neptune
|
|
5701
6103
|
#
|
5702
6104
|
class ModifyDBSubnetGroupResult < Struct.new(
|
5703
6105
|
:db_subnet_group)
|
6106
|
+
SENSITIVE = []
|
5704
6107
|
include Aws::Structure
|
5705
6108
|
end
|
5706
6109
|
|
@@ -5753,6 +6156,7 @@ module Aws::Neptune
|
|
5753
6156
|
:source_type,
|
5754
6157
|
:event_categories,
|
5755
6158
|
:enabled)
|
6159
|
+
SENSITIVE = []
|
5756
6160
|
include Aws::Structure
|
5757
6161
|
end
|
5758
6162
|
|
@@ -5765,6 +6169,7 @@ module Aws::Neptune
|
|
5765
6169
|
#
|
5766
6170
|
class ModifyEventSubscriptionResult < Struct.new(
|
5767
6171
|
:event_subscription)
|
6172
|
+
SENSITIVE = []
|
5768
6173
|
include Aws::Structure
|
5769
6174
|
end
|
5770
6175
|
|
@@ -5787,9 +6192,16 @@ module Aws::Neptune
|
|
5787
6192
|
class OptionGroupMembership < Struct.new(
|
5788
6193
|
:option_group_name,
|
5789
6194
|
:status)
|
6195
|
+
SENSITIVE = []
|
5790
6196
|
include Aws::Structure
|
5791
6197
|
end
|
5792
6198
|
|
6199
|
+
# The designated option group could not be found.
|
6200
|
+
#
|
6201
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/OptionGroupNotFoundFault AWS API Documentation
|
6202
|
+
#
|
6203
|
+
class OptionGroupNotFoundFault < Aws::EmptyStructure; end
|
6204
|
+
|
5793
6205
|
# Contains a list of available options for a DB instance.
|
5794
6206
|
#
|
5795
6207
|
# This data type is used as a response element in the
|
@@ -5900,6 +6312,7 @@ module Aws::Neptune
|
|
5900
6312
|
:max_iops_per_db_instance,
|
5901
6313
|
:min_iops_per_gib,
|
5902
6314
|
:max_iops_per_gib)
|
6315
|
+
SENSITIVE = []
|
5903
6316
|
include Aws::Structure
|
5904
6317
|
end
|
5905
6318
|
|
@@ -5920,6 +6333,7 @@ module Aws::Neptune
|
|
5920
6333
|
class OrderableDBInstanceOptionsMessage < Struct.new(
|
5921
6334
|
:orderable_db_instance_options,
|
5922
6335
|
:marker)
|
6336
|
+
SENSITIVE = []
|
5923
6337
|
include Aws::Structure
|
5924
6338
|
end
|
5925
6339
|
|
@@ -5996,6 +6410,7 @@ module Aws::Neptune
|
|
5996
6410
|
:is_modifiable,
|
5997
6411
|
:minimum_engine_version,
|
5998
6412
|
:apply_method)
|
6413
|
+
SENSITIVE = []
|
5999
6414
|
include Aws::Structure
|
6000
6415
|
end
|
6001
6416
|
|
@@ -6019,6 +6434,7 @@ module Aws::Neptune
|
|
6019
6434
|
class PendingCloudwatchLogsExports < Struct.new(
|
6020
6435
|
:log_types_to_enable,
|
6021
6436
|
:log_types_to_disable)
|
6437
|
+
SENSITIVE = []
|
6022
6438
|
include Aws::Structure
|
6023
6439
|
end
|
6024
6440
|
|
@@ -6071,6 +6487,7 @@ module Aws::Neptune
|
|
6071
6487
|
:opt_in_status,
|
6072
6488
|
:current_apply_date,
|
6073
6489
|
:description)
|
6490
|
+
SENSITIVE = []
|
6074
6491
|
include Aws::Structure
|
6075
6492
|
end
|
6076
6493
|
|
@@ -6090,6 +6507,7 @@ module Aws::Neptune
|
|
6090
6507
|
class PendingMaintenanceActionsMessage < Struct.new(
|
6091
6508
|
:pending_maintenance_actions,
|
6092
6509
|
:marker)
|
6510
|
+
SENSITIVE = []
|
6093
6511
|
include Aws::Structure
|
6094
6512
|
end
|
6095
6513
|
|
@@ -6180,6 +6598,7 @@ module Aws::Neptune
|
|
6180
6598
|
:ca_certificate_identifier,
|
6181
6599
|
:db_subnet_group_name,
|
6182
6600
|
:pending_cloudwatch_logs_exports)
|
6601
|
+
SENSITIVE = []
|
6183
6602
|
include Aws::Structure
|
6184
6603
|
end
|
6185
6604
|
|
@@ -6198,6 +6617,7 @@ module Aws::Neptune
|
|
6198
6617
|
#
|
6199
6618
|
class PromoteReadReplicaDBClusterMessage < Struct.new(
|
6200
6619
|
:db_cluster_identifier)
|
6620
|
+
SENSITIVE = []
|
6201
6621
|
include Aws::Structure
|
6202
6622
|
end
|
6203
6623
|
|
@@ -6212,9 +6632,16 @@ module Aws::Neptune
|
|
6212
6632
|
#
|
6213
6633
|
class PromoteReadReplicaDBClusterResult < Struct.new(
|
6214
6634
|
:db_cluster)
|
6635
|
+
SENSITIVE = []
|
6215
6636
|
include Aws::Structure
|
6216
6637
|
end
|
6217
6638
|
|
6639
|
+
# Provisioned IOPS not available in the specified Availability Zone.
|
6640
|
+
#
|
6641
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/ProvisionedIopsNotAvailableInAZFault AWS API Documentation
|
6642
|
+
#
|
6643
|
+
class ProvisionedIopsNotAvailableInAZFault < Aws::EmptyStructure; end
|
6644
|
+
|
6218
6645
|
# A range of integer values.
|
6219
6646
|
#
|
6220
6647
|
# @!attribute [rw] from
|
@@ -6239,6 +6666,7 @@ module Aws::Neptune
|
|
6239
6666
|
:from,
|
6240
6667
|
:to,
|
6241
6668
|
:step)
|
6669
|
+
SENSITIVE = []
|
6242
6670
|
include Aws::Structure
|
6243
6671
|
end
|
6244
6672
|
|
@@ -6273,6 +6701,7 @@ module Aws::Neptune
|
|
6273
6701
|
class RebootDBInstanceMessage < Struct.new(
|
6274
6702
|
:db_instance_identifier,
|
6275
6703
|
:force_failover)
|
6704
|
+
SENSITIVE = []
|
6276
6705
|
include Aws::Structure
|
6277
6706
|
end
|
6278
6707
|
|
@@ -6287,6 +6716,7 @@ module Aws::Neptune
|
|
6287
6716
|
#
|
6288
6717
|
class RebootDBInstanceResult < Struct.new(
|
6289
6718
|
:db_instance)
|
6719
|
+
SENSITIVE = []
|
6290
6720
|
include Aws::Structure
|
6291
6721
|
end
|
6292
6722
|
|
@@ -6313,6 +6743,7 @@ module Aws::Neptune
|
|
6313
6743
|
class RemoveRoleFromDBClusterMessage < Struct.new(
|
6314
6744
|
:db_cluster_identifier,
|
6315
6745
|
:role_arn)
|
6746
|
+
SENSITIVE = []
|
6316
6747
|
include Aws::Structure
|
6317
6748
|
end
|
6318
6749
|
|
@@ -6340,6 +6771,7 @@ module Aws::Neptune
|
|
6340
6771
|
class RemoveSourceIdentifierFromSubscriptionMessage < Struct.new(
|
6341
6772
|
:subscription_name,
|
6342
6773
|
:source_identifier)
|
6774
|
+
SENSITIVE = []
|
6343
6775
|
include Aws::Structure
|
6344
6776
|
end
|
6345
6777
|
|
@@ -6352,6 +6784,7 @@ module Aws::Neptune
|
|
6352
6784
|
#
|
6353
6785
|
class RemoveSourceIdentifierFromSubscriptionResult < Struct.new(
|
6354
6786
|
:event_subscription)
|
6787
|
+
SENSITIVE = []
|
6355
6788
|
include Aws::Structure
|
6356
6789
|
end
|
6357
6790
|
|
@@ -6383,6 +6816,7 @@ module Aws::Neptune
|
|
6383
6816
|
class RemoveTagsFromResourceMessage < Struct.new(
|
6384
6817
|
:resource_name,
|
6385
6818
|
:tag_keys)
|
6819
|
+
SENSITIVE = []
|
6386
6820
|
include Aws::Structure
|
6387
6821
|
end
|
6388
6822
|
|
@@ -6431,6 +6865,7 @@ module Aws::Neptune
|
|
6431
6865
|
:db_cluster_parameter_group_name,
|
6432
6866
|
:reset_all_parameters,
|
6433
6867
|
:parameters)
|
6868
|
+
SENSITIVE = []
|
6434
6869
|
include Aws::Structure
|
6435
6870
|
end
|
6436
6871
|
|
@@ -6489,9 +6924,16 @@ module Aws::Neptune
|
|
6489
6924
|
:db_parameter_group_name,
|
6490
6925
|
:reset_all_parameters,
|
6491
6926
|
:parameters)
|
6927
|
+
SENSITIVE = []
|
6492
6928
|
include Aws::Structure
|
6493
6929
|
end
|
6494
6930
|
|
6931
|
+
# The specified resource ID was not found.
|
6932
|
+
#
|
6933
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/ResourceNotFoundFault AWS API Documentation
|
6934
|
+
#
|
6935
|
+
class ResourceNotFoundFault < Aws::EmptyStructure; end
|
6936
|
+
|
6495
6937
|
# Describes the pending maintenance actions for a resource.
|
6496
6938
|
#
|
6497
6939
|
# @!attribute [rw] resource_identifier
|
@@ -6508,6 +6950,7 @@ module Aws::Neptune
|
|
6508
6950
|
class ResourcePendingMaintenanceActions < Struct.new(
|
6509
6951
|
:resource_identifier,
|
6510
6952
|
:pending_maintenance_action_details)
|
6953
|
+
SENSITIVE = []
|
6511
6954
|
include Aws::Structure
|
6512
6955
|
end
|
6513
6956
|
|
@@ -6690,6 +7133,7 @@ module Aws::Neptune
|
|
6690
7133
|
:enable_cloudwatch_logs_exports,
|
6691
7134
|
:db_cluster_parameter_group_name,
|
6692
7135
|
:deletion_protection)
|
7136
|
+
SENSITIVE = []
|
6693
7137
|
include Aws::Structure
|
6694
7138
|
end
|
6695
7139
|
|
@@ -6704,6 +7148,7 @@ module Aws::Neptune
|
|
6704
7148
|
#
|
6705
7149
|
class RestoreDBClusterFromSnapshotResult < Struct.new(
|
6706
7150
|
:db_cluster)
|
7151
|
+
SENSITIVE = []
|
6707
7152
|
include Aws::Structure
|
6708
7153
|
end
|
6709
7154
|
|
@@ -6905,6 +7350,7 @@ module Aws::Neptune
|
|
6905
7350
|
:enable_cloudwatch_logs_exports,
|
6906
7351
|
:db_cluster_parameter_group_name,
|
6907
7352
|
:deletion_protection)
|
7353
|
+
SENSITIVE = []
|
6908
7354
|
include Aws::Structure
|
6909
7355
|
end
|
6910
7356
|
|
@@ -6919,9 +7365,48 @@ module Aws::Neptune
|
|
6919
7365
|
#
|
6920
7366
|
class RestoreDBClusterToPointInTimeResult < Struct.new(
|
6921
7367
|
:db_cluster)
|
7368
|
+
SENSITIVE = []
|
6922
7369
|
include Aws::Structure
|
6923
7370
|
end
|
6924
7371
|
|
7372
|
+
# The SNS topic is invalid.
|
7373
|
+
#
|
7374
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/SNSInvalidTopicFault AWS API Documentation
|
7375
|
+
#
|
7376
|
+
class SNSInvalidTopicFault < Aws::EmptyStructure; end
|
7377
|
+
|
7378
|
+
# There is no SNS authorization.
|
7379
|
+
#
|
7380
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/SNSNoAuthorizationFault AWS API Documentation
|
7381
|
+
#
|
7382
|
+
class SNSNoAuthorizationFault < Aws::EmptyStructure; end
|
7383
|
+
|
7384
|
+
# The ARN of the SNS topic could not be found.
|
7385
|
+
#
|
7386
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/SNSTopicArnNotFoundFault AWS API Documentation
|
7387
|
+
#
|
7388
|
+
class SNSTopicArnNotFoundFault < Aws::EmptyStructure; end
|
7389
|
+
|
7390
|
+
# You have exceeded the maximum number of accounts that you can share a
|
7391
|
+
# manual DB snapshot with.
|
7392
|
+
#
|
7393
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/SharedSnapshotQuotaExceededFault AWS API Documentation
|
7394
|
+
#
|
7395
|
+
class SharedSnapshotQuotaExceededFault < Aws::EmptyStructure; end
|
7396
|
+
|
7397
|
+
# Request would result in user exceeding the allowed number of DB
|
7398
|
+
# snapshots.
|
7399
|
+
#
|
7400
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/SnapshotQuotaExceededFault AWS API Documentation
|
7401
|
+
#
|
7402
|
+
class SnapshotQuotaExceededFault < Aws::EmptyStructure; end
|
7403
|
+
|
7404
|
+
# The source could not be found.
|
7405
|
+
#
|
7406
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/SourceNotFoundFault AWS API Documentation
|
7407
|
+
#
|
7408
|
+
class SourceNotFoundFault < Aws::EmptyStructure; end
|
7409
|
+
|
6925
7410
|
# @note When making an API call, you may pass StartDBClusterMessage
|
6926
7411
|
# data as a hash:
|
6927
7412
|
#
|
@@ -6938,6 +7423,7 @@ module Aws::Neptune
|
|
6938
7423
|
#
|
6939
7424
|
class StartDBClusterMessage < Struct.new(
|
6940
7425
|
:db_cluster_identifier)
|
7426
|
+
SENSITIVE = []
|
6941
7427
|
include Aws::Structure
|
6942
7428
|
end
|
6943
7429
|
|
@@ -6952,6 +7438,7 @@ module Aws::Neptune
|
|
6952
7438
|
#
|
6953
7439
|
class StartDBClusterResult < Struct.new(
|
6954
7440
|
:db_cluster)
|
7441
|
+
SENSITIVE = []
|
6955
7442
|
include Aws::Structure
|
6956
7443
|
end
|
6957
7444
|
|
@@ -6971,6 +7458,7 @@ module Aws::Neptune
|
|
6971
7458
|
#
|
6972
7459
|
class StopDBClusterMessage < Struct.new(
|
6973
7460
|
:db_cluster_identifier)
|
7461
|
+
SENSITIVE = []
|
6974
7462
|
include Aws::Structure
|
6975
7463
|
end
|
6976
7464
|
|
@@ -6985,9 +7473,23 @@ module Aws::Neptune
|
|
6985
7473
|
#
|
6986
7474
|
class StopDBClusterResult < Struct.new(
|
6987
7475
|
:db_cluster)
|
7476
|
+
SENSITIVE = []
|
6988
7477
|
include Aws::Structure
|
6989
7478
|
end
|
6990
7479
|
|
7480
|
+
# Request would result in user exceeding the allowed amount of storage
|
7481
|
+
# available across all DB instances.
|
7482
|
+
#
|
7483
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/StorageQuotaExceededFault AWS API Documentation
|
7484
|
+
#
|
7485
|
+
class StorageQuotaExceededFault < Aws::EmptyStructure; end
|
7486
|
+
|
7487
|
+
# *StorageType* specified cannot be associated with the DB Instance.
|
7488
|
+
#
|
7489
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/StorageTypeNotSupportedFault AWS API Documentation
|
7490
|
+
#
|
7491
|
+
class StorageTypeNotSupportedFault < Aws::EmptyStructure; end
|
7492
|
+
|
6991
7493
|
# Specifies a subnet.
|
6992
7494
|
#
|
6993
7495
|
# This data type is used as a response element in the
|
@@ -7011,9 +7513,34 @@ module Aws::Neptune
|
|
7011
7513
|
:subnet_identifier,
|
7012
7514
|
:subnet_availability_zone,
|
7013
7515
|
:subnet_status)
|
7516
|
+
SENSITIVE = []
|
7014
7517
|
include Aws::Structure
|
7015
7518
|
end
|
7016
7519
|
|
7520
|
+
# The DB subnet is already in use in the Availability Zone.
|
7521
|
+
#
|
7522
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/SubnetAlreadyInUse AWS API Documentation
|
7523
|
+
#
|
7524
|
+
class SubnetAlreadyInUse < Aws::EmptyStructure; end
|
7525
|
+
|
7526
|
+
# This subscription already exists.
|
7527
|
+
#
|
7528
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/SubscriptionAlreadyExistFault AWS API Documentation
|
7529
|
+
#
|
7530
|
+
class SubscriptionAlreadyExistFault < Aws::EmptyStructure; end
|
7531
|
+
|
7532
|
+
# The designated subscription category could not be found.
|
7533
|
+
#
|
7534
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/SubscriptionCategoryNotFoundFault AWS API Documentation
|
7535
|
+
#
|
7536
|
+
class SubscriptionCategoryNotFoundFault < Aws::EmptyStructure; end
|
7537
|
+
|
7538
|
+
# The designated subscription could not be found.
|
7539
|
+
#
|
7540
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/SubscriptionNotFoundFault AWS API Documentation
|
7541
|
+
#
|
7542
|
+
class SubscriptionNotFoundFault < Aws::EmptyStructure; end
|
7543
|
+
|
7017
7544
|
# Metadata assigned to an Amazon Neptune resource consisting of a
|
7018
7545
|
# key-value pair.
|
7019
7546
|
#
|
@@ -7048,6 +7575,7 @@ module Aws::Neptune
|
|
7048
7575
|
class Tag < Struct.new(
|
7049
7576
|
:key,
|
7050
7577
|
:value)
|
7578
|
+
SENSITIVE = []
|
7051
7579
|
include Aws::Structure
|
7052
7580
|
end
|
7053
7581
|
|
@@ -7059,6 +7587,7 @@ module Aws::Neptune
|
|
7059
7587
|
#
|
7060
7588
|
class TagListMessage < Struct.new(
|
7061
7589
|
:tag_list)
|
7590
|
+
SENSITIVE = []
|
7062
7591
|
include Aws::Structure
|
7063
7592
|
end
|
7064
7593
|
|
@@ -7072,6 +7601,7 @@ module Aws::Neptune
|
|
7072
7601
|
#
|
7073
7602
|
class Timezone < Struct.new(
|
7074
7603
|
:timezone_name)
|
7604
|
+
SENSITIVE = []
|
7075
7605
|
include Aws::Structure
|
7076
7606
|
end
|
7077
7607
|
|
@@ -7109,6 +7639,7 @@ module Aws::Neptune
|
|
7109
7639
|
:description,
|
7110
7640
|
:auto_upgrade,
|
7111
7641
|
:is_major_version_upgrade)
|
7642
|
+
SENSITIVE = []
|
7112
7643
|
include Aws::Structure
|
7113
7644
|
end
|
7114
7645
|
|
@@ -7125,6 +7656,7 @@ module Aws::Neptune
|
|
7125
7656
|
#
|
7126
7657
|
class ValidDBInstanceModificationsMessage < Struct.new(
|
7127
7658
|
:storage)
|
7659
|
+
SENSITIVE = []
|
7128
7660
|
include Aws::Structure
|
7129
7661
|
end
|
7130
7662
|
|
@@ -7159,6 +7691,7 @@ module Aws::Neptune
|
|
7159
7691
|
:storage_size,
|
7160
7692
|
:provisioned_iops,
|
7161
7693
|
:iops_to_storage_ratio)
|
7694
|
+
SENSITIVE = []
|
7162
7695
|
include Aws::Structure
|
7163
7696
|
end
|
7164
7697
|
|
@@ -7178,6 +7711,7 @@ module Aws::Neptune
|
|
7178
7711
|
class VpcSecurityGroupMembership < Struct.new(
|
7179
7712
|
:vpc_security_group_id,
|
7180
7713
|
:status)
|
7714
|
+
SENSITIVE = []
|
7181
7715
|
include Aws::Structure
|
7182
7716
|
end
|
7183
7717
|
|