aws-sdk-neptune 1.11.0 → 1.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-neptune.rb +1 -1
- data/lib/aws-sdk-neptune/client.rb +113 -308
- data/lib/aws-sdk-neptune/client_api.rb +4 -0
- data/lib/aws-sdk-neptune/types.rb +91 -323
- metadata +3 -3
@@ -1224,6 +1224,7 @@ module Aws::Neptune
|
|
1224
1224
|
RestoreDBClusterFromSnapshotMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
1225
1225
|
RestoreDBClusterFromSnapshotMessage.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
|
1226
1226
|
RestoreDBClusterFromSnapshotMessage.add_member(:enable_iam_database_authentication, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableIAMDatabaseAuthentication"))
|
1227
|
+
RestoreDBClusterFromSnapshotMessage.add_member(:db_cluster_parameter_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterParameterGroupName"))
|
1227
1228
|
RestoreDBClusterFromSnapshotMessage.struct_class = Types::RestoreDBClusterFromSnapshotMessage
|
1228
1229
|
|
1229
1230
|
RestoreDBClusterFromSnapshotResult.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
|
@@ -1241,6 +1242,7 @@ module Aws::Neptune
|
|
1241
1242
|
RestoreDBClusterToPointInTimeMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
1242
1243
|
RestoreDBClusterToPointInTimeMessage.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KmsKeyId"))
|
1243
1244
|
RestoreDBClusterToPointInTimeMessage.add_member(:enable_iam_database_authentication, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableIAMDatabaseAuthentication"))
|
1245
|
+
RestoreDBClusterToPointInTimeMessage.add_member(:db_cluster_parameter_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterParameterGroupName"))
|
1244
1246
|
RestoreDBClusterToPointInTimeMessage.struct_class = Types::RestoreDBClusterToPointInTimeMessage
|
1245
1247
|
|
1246
1248
|
RestoreDBClusterToPointInTimeResult.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
|
@@ -2014,6 +2016,7 @@ module Aws::Neptune
|
|
2014
2016
|
o.errors << Shapes::ShapeRef.new(shape: InvalidSubnet)
|
2015
2017
|
o.errors << Shapes::ShapeRef.new(shape: OptionGroupNotFoundFault)
|
2016
2018
|
o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
|
2019
|
+
o.errors << Shapes::ShapeRef.new(shape: DBClusterParameterGroupNotFoundFault)
|
2017
2020
|
end)
|
2018
2021
|
|
2019
2022
|
api.add_operation(:restore_db_cluster_to_point_in_time, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2038,6 +2041,7 @@ module Aws::Neptune
|
|
2038
2041
|
o.errors << Shapes::ShapeRef.new(shape: KMSKeyNotAccessibleFault)
|
2039
2042
|
o.errors << Shapes::ShapeRef.new(shape: OptionGroupNotFoundFault)
|
2040
2043
|
o.errors << Shapes::ShapeRef.new(shape: StorageQuotaExceededFault)
|
2044
|
+
o.errors << Shapes::ShapeRef.new(shape: DBClusterParameterGroupNotFoundFault)
|
2041
2045
|
end)
|
2042
2046
|
end
|
2043
2047
|
|
@@ -105,7 +105,7 @@ module Aws::Neptune
|
|
105
105
|
#
|
106
106
|
#
|
107
107
|
#
|
108
|
-
# [1]:
|
108
|
+
# [1]: https://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html#tagging.ARN.Constructing
|
109
109
|
# @return [String]
|
110
110
|
#
|
111
111
|
# @!attribute [rw] tags
|
@@ -136,7 +136,7 @@ module Aws::Neptune
|
|
136
136
|
#
|
137
137
|
#
|
138
138
|
#
|
139
|
-
# [1]:
|
139
|
+
# [1]: https://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html#tagging.ARN.Constructing
|
140
140
|
# @return [String]
|
141
141
|
#
|
142
142
|
# @!attribute [rw] apply_action
|
@@ -181,13 +181,7 @@ module Aws::Neptune
|
|
181
181
|
include Aws::Structure
|
182
182
|
end
|
183
183
|
|
184
|
-
#
|
185
|
-
#
|
186
|
-
# This data type is used as an element in the following data type:
|
187
|
-
#
|
188
|
-
# * OrderableDBInstanceOption
|
189
|
-
#
|
190
|
-
# ^
|
184
|
+
# Specifies an Availability Zone.
|
191
185
|
#
|
192
186
|
# @!attribute [rw] name
|
193
187
|
# The name of the availability zone.
|
@@ -200,8 +194,7 @@ module Aws::Neptune
|
|
200
194
|
include Aws::Structure
|
201
195
|
end
|
202
196
|
|
203
|
-
#
|
204
|
-
# DescribeDBEngineVersions.
|
197
|
+
# Specifies a character set.
|
205
198
|
#
|
206
199
|
# @!attribute [rw] character_set_name
|
207
200
|
# The name of the character set.
|
@@ -281,7 +274,7 @@ module Aws::Neptune
|
|
281
274
|
#
|
282
275
|
#
|
283
276
|
#
|
284
|
-
# [1]:
|
277
|
+
# [1]: https://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html#tagging.ARN.Constructing
|
285
278
|
# @return [String]
|
286
279
|
#
|
287
280
|
# @!attribute [rw] target_db_cluster_parameter_group_identifier
|
@@ -305,12 +298,7 @@ module Aws::Neptune
|
|
305
298
|
# @return [String]
|
306
299
|
#
|
307
300
|
# @!attribute [rw] tags
|
308
|
-
#
|
309
|
-
# Resources][1].
|
310
|
-
#
|
311
|
-
#
|
312
|
-
#
|
313
|
-
# [1]: http://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html
|
301
|
+
# The tags to be assigned to the copied DB cluster parameter group.
|
314
302
|
# @return [Array<Types::Tag>]
|
315
303
|
#
|
316
304
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/CopyDBClusterParameterGroupMessage AWS API Documentation
|
@@ -359,18 +347,13 @@ module Aws::Neptune
|
|
359
347
|
# The identifier of the DB cluster snapshot to copy. This parameter is
|
360
348
|
# not case-sensitive.
|
361
349
|
#
|
362
|
-
# You can't copy
|
363
|
-
# AWS Region to another.
|
350
|
+
# You can't copy from one AWS Region to another.
|
364
351
|
#
|
365
352
|
# Constraints:
|
366
353
|
#
|
367
354
|
# * Must specify a valid system snapshot in the "available" state.
|
368
355
|
#
|
369
|
-
# *
|
370
|
-
# specify a valid DB snapshot identifier.
|
371
|
-
#
|
372
|
-
# * If the source snapshot is in a different AWS Region than the copy,
|
373
|
-
# specify a valid DB cluster snapshot ARN.
|
356
|
+
# * Specify a valid DB snapshot identifier.
|
374
357
|
#
|
375
358
|
# Example: `my-cluster-snapshot1`
|
376
359
|
# @return [String]
|
@@ -408,53 +391,13 @@ module Aws::Neptune
|
|
408
391
|
# If you copy an encrypted DB cluster snapshot that is shared from
|
409
392
|
# another AWS account, then you must specify a value for `KmsKeyId`.
|
410
393
|
#
|
411
|
-
#
|
412
|
-
#
|
413
|
-
#
|
414
|
-
# encryption keys are specific to the AWS Region that they are created
|
415
|
-
# in, and you can't use encryption keys from one AWS Region in
|
416
|
-
# another AWS Region.
|
394
|
+
# KMS encryption keys are specific to the AWS Region that they are
|
395
|
+
# created in, and you can't use encryption keys from one AWS Region
|
396
|
+
# in another AWS Region.
|
417
397
|
# @return [String]
|
418
398
|
#
|
419
399
|
# @!attribute [rw] pre_signed_url
|
420
|
-
#
|
421
|
-
# `CopyDBClusterSnapshot` API action in the AWS Region that contains
|
422
|
-
# the source DB cluster snapshot to copy. The `PreSignedUrl` parameter
|
423
|
-
# must be used when copying an encrypted DB cluster snapshot from
|
424
|
-
# another AWS Region.
|
425
|
-
#
|
426
|
-
# The pre-signed URL must be a valid request for the
|
427
|
-
# `CopyDBSClusterSnapshot` API action that can be executed in the
|
428
|
-
# source AWS Region that contains the encrypted DB cluster snapshot to
|
429
|
-
# be copied. The pre-signed URL request must contain the following
|
430
|
-
# parameter values:
|
431
|
-
#
|
432
|
-
# * `KmsKeyId` - The AWS KMS key identifier for the key to use to
|
433
|
-
# encrypt the copy of the DB cluster snapshot in the destination AWS
|
434
|
-
# Region. This is the same identifier for both the
|
435
|
-
# `CopyDBClusterSnapshot` action that is called in the destination
|
436
|
-
# AWS Region, and the action contained in the pre-signed URL.
|
437
|
-
#
|
438
|
-
# * `DestinationRegion` - The name of the AWS Region that the DB
|
439
|
-
# cluster snapshot will be created in.
|
440
|
-
#
|
441
|
-
# * `SourceDBClusterSnapshotIdentifier` - The DB cluster snapshot
|
442
|
-
# identifier for the encrypted DB cluster snapshot to be copied.
|
443
|
-
# This identifier must be in the Amazon Resource Name (ARN) format
|
444
|
-
# for the source AWS Region. For example, if you are copying an
|
445
|
-
# encrypted DB cluster snapshot from the us-west-2 AWS Region, then
|
446
|
-
# your `SourceDBClusterSnapshotIdentifier` looks like the following
|
447
|
-
# example:
|
448
|
-
# `arn:aws:rds:us-west-2:123456789012:cluster-snapshot:neptune-cluster1-snapshot-20161115`.
|
449
|
-
#
|
450
|
-
# To learn how to generate a Signature Version 4 signed request, see [
|
451
|
-
# Authenticating Requests: Using Query Parameters (AWS Signature
|
452
|
-
# Version 4)][1] and [ Signature Version 4 Signing Process][2].
|
453
|
-
#
|
454
|
-
#
|
455
|
-
#
|
456
|
-
# [1]: http://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
457
|
-
# [2]: http://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
400
|
+
# Not currently supported.
|
458
401
|
# @return [String]
|
459
402
|
#
|
460
403
|
# @!attribute [rw] copy_tags
|
@@ -464,12 +407,7 @@ module Aws::Neptune
|
|
464
407
|
# @return [Boolean]
|
465
408
|
#
|
466
409
|
# @!attribute [rw] tags
|
467
|
-
#
|
468
|
-
# Resources][1].
|
469
|
-
#
|
470
|
-
#
|
471
|
-
#
|
472
|
-
# [1]: http://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html
|
410
|
+
# The tags to assign to the new DB cluster snapshot copy.
|
473
411
|
# @return [Array<Types::Tag>]
|
474
412
|
#
|
475
413
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/CopyDBClusterSnapshotMessage AWS API Documentation
|
@@ -527,7 +465,7 @@ module Aws::Neptune
|
|
527
465
|
#
|
528
466
|
#
|
529
467
|
#
|
530
|
-
# [1]:
|
468
|
+
# [1]: https://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html#tagging.ARN.Constructing
|
531
469
|
# @return [String]
|
532
470
|
#
|
533
471
|
# @!attribute [rw] target_db_parameter_group_identifier
|
@@ -535,13 +473,13 @@ module Aws::Neptune
|
|
535
473
|
#
|
536
474
|
# Constraints:
|
537
475
|
#
|
538
|
-
# * Cannot be null, empty, or blank
|
476
|
+
# * Cannot be null, empty, or blank.
|
539
477
|
#
|
540
|
-
# * Must contain from 1 to 255 letters, numbers, or hyphens
|
478
|
+
# * Must contain from 1 to 255 letters, numbers, or hyphens.
|
541
479
|
#
|
542
|
-
# * First character must be a letter
|
480
|
+
# * First character must be a letter.
|
543
481
|
#
|
544
|
-
# * Cannot end with a hyphen or contain two consecutive hyphens
|
482
|
+
# * Cannot end with a hyphen or contain two consecutive hyphens.
|
545
483
|
#
|
546
484
|
# Example: `my-db-parameter-group`
|
547
485
|
# @return [String]
|
@@ -551,12 +489,7 @@ module Aws::Neptune
|
|
551
489
|
# @return [String]
|
552
490
|
#
|
553
491
|
# @!attribute [rw] tags
|
554
|
-
#
|
555
|
-
# Resources][1].
|
556
|
-
#
|
557
|
-
#
|
558
|
-
#
|
559
|
-
# [1]: http://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html
|
492
|
+
# The tags to be assigned to the copied DB parameter group.
|
560
493
|
# @return [Array<Types::Tag>]
|
561
494
|
#
|
562
495
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/CopyDBParameterGroupMessage AWS API Documentation
|
@@ -754,7 +687,7 @@ module Aws::Neptune
|
|
754
687
|
#
|
755
688
|
#
|
756
689
|
#
|
757
|
-
# [1]:
|
690
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/AdjustingTheMaintenanceWindow.html
|
758
691
|
# @return [String]
|
759
692
|
#
|
760
693
|
# @!attribute [rw] preferred_maintenance_window
|
@@ -774,7 +707,7 @@ module Aws::Neptune
|
|
774
707
|
#
|
775
708
|
#
|
776
709
|
#
|
777
|
-
# [1]:
|
710
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/AdjustingTheMaintenanceWindow.html
|
778
711
|
# @return [String]
|
779
712
|
#
|
780
713
|
# @!attribute [rw] replication_source_identifier
|
@@ -783,12 +716,7 @@ module Aws::Neptune
|
|
783
716
|
# @return [String]
|
784
717
|
#
|
785
718
|
# @!attribute [rw] tags
|
786
|
-
#
|
787
|
-
# Resources][1].
|
788
|
-
#
|
789
|
-
#
|
790
|
-
#
|
791
|
-
# [1]: http://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html
|
719
|
+
# The tags to assign to the new DB cluster.
|
792
720
|
# @return [Array<Types::Tag>]
|
793
721
|
#
|
794
722
|
# @!attribute [rw] storage_encrypted
|
@@ -826,44 +754,7 @@ module Aws::Neptune
|
|
826
754
|
# @return [String]
|
827
755
|
#
|
828
756
|
# @!attribute [rw] pre_signed_url
|
829
|
-
#
|
830
|
-
# `CreateDBCluster` action to be called in the source AWS Region where
|
831
|
-
# the DB cluster is replicated from. You only need to specify
|
832
|
-
# `PreSignedUrl` when you are performing cross-region replication from
|
833
|
-
# an encrypted DB cluster.
|
834
|
-
#
|
835
|
-
# The pre-signed URL must be a valid request for the `CreateDBCluster`
|
836
|
-
# API action that can be executed in the source AWS Region that
|
837
|
-
# contains the encrypted DB cluster to be copied.
|
838
|
-
#
|
839
|
-
# The pre-signed URL request must contain the following parameter
|
840
|
-
# values:
|
841
|
-
#
|
842
|
-
# * `KmsKeyId` - The AWS KMS key identifier for the key to use to
|
843
|
-
# encrypt the copy of the DB cluster in the destination AWS Region.
|
844
|
-
# This should refer to the same KMS key for both the
|
845
|
-
# `CreateDBCluster` action that is called in the destination AWS
|
846
|
-
# Region, and the action contained in the pre-signed URL.
|
847
|
-
#
|
848
|
-
# * `DestinationRegion` - The name of the AWS Region that Read Replica
|
849
|
-
# will be created in.
|
850
|
-
#
|
851
|
-
# * `ReplicationSourceIdentifier` - The DB cluster identifier for the
|
852
|
-
# encrypted DB cluster to be copied. This identifier must be in the
|
853
|
-
# Amazon Resource Name (ARN) format for the source AWS Region. For
|
854
|
-
# example, if you are copying an encrypted DB cluster from the
|
855
|
-
# us-west-2 AWS Region, then your `ReplicationSourceIdentifier`
|
856
|
-
# would look like Example:
|
857
|
-
# `arn:aws:rds:us-west-2:123456789012:cluster:neptune-cluster1`.
|
858
|
-
#
|
859
|
-
# To learn how to generate a Signature Version 4 signed request, see [
|
860
|
-
# Authenticating Requests: Using Query Parameters (AWS Signature
|
861
|
-
# Version 4)][1] and [ Signature Version 4 Signing Process][2].
|
862
|
-
#
|
863
|
-
#
|
864
|
-
#
|
865
|
-
# [1]: http://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
866
|
-
# [2]: http://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
757
|
+
# This parameter is not currently supported.
|
867
758
|
# @return [String]
|
868
759
|
#
|
869
760
|
# @!attribute [rw] enable_iam_database_authentication
|
@@ -943,12 +834,7 @@ module Aws::Neptune
|
|
943
834
|
# @return [String]
|
944
835
|
#
|
945
836
|
# @!attribute [rw] tags
|
946
|
-
#
|
947
|
-
# Resources][1].
|
948
|
-
#
|
949
|
-
#
|
950
|
-
#
|
951
|
-
# [1]: http://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html
|
837
|
+
# The tags to be assigned to the new DB cluster parameter group.
|
952
838
|
# @return [Array<Types::Tag>]
|
953
839
|
#
|
954
840
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/CreateDBClusterParameterGroupMessage AWS API Documentation
|
@@ -1113,9 +999,7 @@ module Aws::Neptune
|
|
1113
999
|
# }
|
1114
1000
|
#
|
1115
1001
|
# @!attribute [rw] db_name
|
1116
|
-
#
|
1117
|
-
#
|
1118
|
-
# Type: String
|
1002
|
+
# Not supported.
|
1119
1003
|
# @return [String]
|
1120
1004
|
#
|
1121
1005
|
# @!attribute [rw] db_instance_identifier
|
@@ -1186,7 +1070,7 @@ module Aws::Neptune
|
|
1186
1070
|
# @return [Array<String>]
|
1187
1071
|
#
|
1188
1072
|
# @!attribute [rw] availability_zone
|
1189
|
-
# The EC2 Availability Zone that the DB instance is created in
|
1073
|
+
# The EC2 Availability Zone that the DB instance is created in
|
1190
1074
|
#
|
1191
1075
|
# Default: A random, system-chosen Availability Zone in the
|
1192
1076
|
# endpoint's AWS Region.
|
@@ -1316,16 +1200,11 @@ module Aws::Neptune
|
|
1316
1200
|
# @return [String]
|
1317
1201
|
#
|
1318
1202
|
# @!attribute [rw] publicly_accessible
|
1319
|
-
# This
|
1203
|
+
# This flag should no longer be used.
|
1320
1204
|
# @return [Boolean]
|
1321
1205
|
#
|
1322
1206
|
# @!attribute [rw] tags
|
1323
|
-
#
|
1324
|
-
# Resources][1].
|
1325
|
-
#
|
1326
|
-
#
|
1327
|
-
#
|
1328
|
-
# [1]: http://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html
|
1207
|
+
# The tags to assign to the new instance.
|
1329
1208
|
# @return [Array<Types::Tag>]
|
1330
1209
|
#
|
1331
1210
|
# @!attribute [rw] db_cluster_identifier
|
@@ -1556,12 +1435,7 @@ module Aws::Neptune
|
|
1556
1435
|
# @return [String]
|
1557
1436
|
#
|
1558
1437
|
# @!attribute [rw] tags
|
1559
|
-
#
|
1560
|
-
# Resources][1].
|
1561
|
-
#
|
1562
|
-
#
|
1563
|
-
#
|
1564
|
-
# [1]: http://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html
|
1438
|
+
# The tags to be assigned to the new DB parameter group.
|
1565
1439
|
# @return [Array<Types::Tag>]
|
1566
1440
|
#
|
1567
1441
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/CreateDBParameterGroupMessage AWS API Documentation
|
@@ -1622,12 +1496,7 @@ module Aws::Neptune
|
|
1622
1496
|
# @return [Array<String>]
|
1623
1497
|
#
|
1624
1498
|
# @!attribute [rw] tags
|
1625
|
-
#
|
1626
|
-
# Resources][1].
|
1627
|
-
#
|
1628
|
-
#
|
1629
|
-
#
|
1630
|
-
# [1]: http://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html
|
1499
|
+
# The tags to be assigned to the new DB subnet group.
|
1631
1500
|
# @return [Array<Types::Tag>]
|
1632
1501
|
#
|
1633
1502
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/CreateDBSubnetGroupMessage AWS API Documentation
|
@@ -1730,12 +1599,7 @@ module Aws::Neptune
|
|
1730
1599
|
# @return [Boolean]
|
1731
1600
|
#
|
1732
1601
|
# @!attribute [rw] tags
|
1733
|
-
#
|
1734
|
-
# Resources][1].
|
1735
|
-
#
|
1736
|
-
#
|
1737
|
-
#
|
1738
|
-
# [1]: http://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html
|
1602
|
+
# The tags to be applied to the new event subscription.
|
1739
1603
|
# @return [Array<Types::Tag>]
|
1740
1604
|
#
|
1741
1605
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/CreateEventSubscriptionMessage AWS API Documentation
|
@@ -1888,8 +1752,7 @@ module Aws::Neptune
|
|
1888
1752
|
# @return [String]
|
1889
1753
|
#
|
1890
1754
|
# @!attribute [rw] replication_source_identifier
|
1891
|
-
#
|
1892
|
-
# is a Read Replica.
|
1755
|
+
# Not supported by Neptune.
|
1893
1756
|
# @return [String]
|
1894
1757
|
#
|
1895
1758
|
# @!attribute [rw] read_replica_identifiers
|
@@ -2024,9 +1887,6 @@ module Aws::Neptune
|
|
2024
1887
|
include Aws::Structure
|
2025
1888
|
end
|
2026
1889
|
|
2027
|
-
# Contains the result of a successful invocation of the
|
2028
|
-
# DescribeDBClusters action.
|
2029
|
-
#
|
2030
1890
|
# @!attribute [rw] marker
|
2031
1891
|
# A pagination token that can be used in a subsequent
|
2032
1892
|
# DescribeDBClusters request.
|
@@ -2095,9 +1955,6 @@ module Aws::Neptune
|
|
2095
1955
|
include Aws::Structure
|
2096
1956
|
end
|
2097
1957
|
|
2098
|
-
# Provides details about a DB cluster parameter group including the
|
2099
|
-
# parameters in the DB cluster parameter group.
|
2100
|
-
#
|
2101
1958
|
# @!attribute [rw] parameters
|
2102
1959
|
# Provides a list of parameters for the DB cluster parameter group.
|
2103
1960
|
# @return [Array<Types::Parameter>]
|
@@ -2371,9 +2228,6 @@ module Aws::Neptune
|
|
2371
2228
|
include Aws::Structure
|
2372
2229
|
end
|
2373
2230
|
|
2374
|
-
# Provides a list of DB cluster snapshots for the user as the result of
|
2375
|
-
# a call to the DescribeDBClusterSnapshots action.
|
2376
|
-
#
|
2377
2231
|
# @!attribute [rw] marker
|
2378
2232
|
# An optional pagination token provided by a previous
|
2379
2233
|
# DescribeDBClusterSnapshots request. If this parameter is specified,
|
@@ -2470,9 +2324,6 @@ module Aws::Neptune
|
|
2470
2324
|
include Aws::Structure
|
2471
2325
|
end
|
2472
2326
|
|
2473
|
-
# Contains the result of a successful invocation of the
|
2474
|
-
# DescribeDBEngineVersions action.
|
2475
|
-
#
|
2476
2327
|
# @!attribute [rw] marker
|
2477
2328
|
# An optional pagination token provided by a previous request. If this
|
2478
2329
|
# parameter is specified, the response includes only records beyond
|
@@ -2638,7 +2489,7 @@ module Aws::Neptune
|
|
2638
2489
|
# @return [String]
|
2639
2490
|
#
|
2640
2491
|
# @!attribute [rw] publicly_accessible
|
2641
|
-
# This
|
2492
|
+
# This flag should no longer be used.
|
2642
2493
|
# @return [Boolean]
|
2643
2494
|
#
|
2644
2495
|
# @!attribute [rw] status_infos
|
@@ -2667,12 +2518,13 @@ module Aws::Neptune
|
|
2667
2518
|
# @return [String]
|
2668
2519
|
#
|
2669
2520
|
# @!attribute [rw] storage_encrypted
|
2670
|
-
#
|
2521
|
+
# Not supported: The encryption for DB instances is managed by the DB
|
2522
|
+
# cluster.
|
2671
2523
|
# @return [Boolean]
|
2672
2524
|
#
|
2673
2525
|
# @!attribute [rw] kms_key_id
|
2674
|
-
#
|
2675
|
-
#
|
2526
|
+
# Not supported: The encryption for DB instances is managed by the DB
|
2527
|
+
# cluster.
|
2676
2528
|
# @return [String]
|
2677
2529
|
#
|
2678
2530
|
# @!attribute [rw] dbi_resource_id
|
@@ -2803,9 +2655,6 @@ module Aws::Neptune
|
|
2803
2655
|
include Aws::Structure
|
2804
2656
|
end
|
2805
2657
|
|
2806
|
-
# Contains the result of a successful invocation of the
|
2807
|
-
# DescribeDBInstances action.
|
2808
|
-
#
|
2809
2658
|
# @!attribute [rw] marker
|
2810
2659
|
# An optional pagination token provided by a previous request. If this
|
2811
2660
|
# parameter is specified, the response includes only records beyond
|
@@ -2888,9 +2737,6 @@ module Aws::Neptune
|
|
2888
2737
|
include Aws::Structure
|
2889
2738
|
end
|
2890
2739
|
|
2891
|
-
# Contains the result of a successful invocation of the
|
2892
|
-
# DescribeDBParameters action.
|
2893
|
-
#
|
2894
2740
|
# @!attribute [rw] parameters
|
2895
2741
|
# A list of Parameter values.
|
2896
2742
|
# @return [Array<Types::Parameter>]
|
@@ -2909,9 +2755,6 @@ module Aws::Neptune
|
|
2909
2755
|
include Aws::Structure
|
2910
2756
|
end
|
2911
2757
|
|
2912
|
-
# Contains the result of a successful invocation of the
|
2913
|
-
# ModifyDBParameterGroup or ResetDBParameterGroup action.
|
2914
|
-
#
|
2915
2758
|
# @!attribute [rw] db_parameter_group_name
|
2916
2759
|
# Provides the name of the DB parameter group.
|
2917
2760
|
# @return [String]
|
@@ -2951,9 +2794,6 @@ module Aws::Neptune
|
|
2951
2794
|
include Aws::Structure
|
2952
2795
|
end
|
2953
2796
|
|
2954
|
-
# Contains the result of a successful invocation of the
|
2955
|
-
# DescribeDBParameterGroups action.
|
2956
|
-
#
|
2957
2797
|
# @!attribute [rw] marker
|
2958
2798
|
# An optional pagination token provided by a previous request. If this
|
2959
2799
|
# parameter is specified, the response includes only records beyond
|
@@ -2972,11 +2812,7 @@ module Aws::Neptune
|
|
2972
2812
|
include Aws::Structure
|
2973
2813
|
end
|
2974
2814
|
|
2975
|
-
#
|
2976
|
-
#
|
2977
|
-
# * ModifyDBInstance
|
2978
|
-
#
|
2979
|
-
# * RebootDBInstance
|
2815
|
+
# Specifies membership in a designated DB security group.
|
2980
2816
|
#
|
2981
2817
|
# @!attribute [rw] db_security_group_name
|
2982
2818
|
# The name of the DB security group.
|
@@ -3035,9 +2871,6 @@ module Aws::Neptune
|
|
3035
2871
|
include Aws::Structure
|
3036
2872
|
end
|
3037
2873
|
|
3038
|
-
# Contains the result of a successful invocation of the
|
3039
|
-
# DescribeDBSubnetGroups action.
|
3040
|
-
#
|
3041
2874
|
# @!attribute [rw] marker
|
3042
2875
|
# An optional pagination token provided by a previous request. If this
|
3043
2876
|
# parameter is specified, the response includes only records beyond
|
@@ -4567,7 +4400,7 @@ module Aws::Neptune
|
|
4567
4400
|
include Aws::Structure
|
4568
4401
|
end
|
4569
4402
|
|
4570
|
-
# An Active Directory Domain membership record associated with
|
4403
|
+
# An Active Directory Domain membership record associated with a DB
|
4571
4404
|
# instance.
|
4572
4405
|
#
|
4573
4406
|
# @!attribute [rw] domain
|
@@ -4616,13 +4449,7 @@ module Aws::Neptune
|
|
4616
4449
|
include Aws::Structure
|
4617
4450
|
end
|
4618
4451
|
|
4619
|
-
#
|
4620
|
-
#
|
4621
|
-
# * CreateDBInstance
|
4622
|
-
#
|
4623
|
-
# * DescribeDBInstances
|
4624
|
-
#
|
4625
|
-
# * DeleteDBInstance
|
4452
|
+
# Specifies a connection endpoint.
|
4626
4453
|
#
|
4627
4454
|
# @!attribute [rw] address
|
4628
4455
|
# Specifies the DNS address of the DB instance.
|
@@ -4732,8 +4559,6 @@ module Aws::Neptune
|
|
4732
4559
|
include Aws::Structure
|
4733
4560
|
end
|
4734
4561
|
|
4735
|
-
# Data returned from the **DescribeEventCategories** action.
|
4736
|
-
#
|
4737
4562
|
# @!attribute [rw] event_categories_map_list
|
4738
4563
|
# A list of EventCategoriesMap data types.
|
4739
4564
|
# @return [Array<Types::EventCategoriesMap>]
|
@@ -4816,8 +4641,6 @@ module Aws::Neptune
|
|
4816
4641
|
include Aws::Structure
|
4817
4642
|
end
|
4818
4643
|
|
4819
|
-
# Data returned by the **DescribeEventSubscriptions** action.
|
4820
|
-
#
|
4821
4644
|
# @!attribute [rw] marker
|
4822
4645
|
# An optional pagination token provided by a previous
|
4823
4646
|
# DescribeOrderableDBInstanceOptions request. If this parameter is
|
@@ -4837,9 +4660,6 @@ module Aws::Neptune
|
|
4837
4660
|
include Aws::Structure
|
4838
4661
|
end
|
4839
4662
|
|
4840
|
-
# Contains the result of a successful invocation of the DescribeEvents
|
4841
|
-
# action.
|
4842
|
-
#
|
4843
4663
|
# @!attribute [rw] marker
|
4844
4664
|
# An optional pagination token provided by a previous Events request.
|
4845
4665
|
# If this parameter is specified, the response includes only records
|
@@ -4952,7 +4772,7 @@ module Aws::Neptune
|
|
4952
4772
|
#
|
4953
4773
|
#
|
4954
4774
|
#
|
4955
|
-
# [1]:
|
4775
|
+
# [1]: https://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html#tagging.ARN.Constructing
|
4956
4776
|
# @return [String]
|
4957
4777
|
#
|
4958
4778
|
# @!attribute [rw] filters
|
@@ -5409,12 +5229,7 @@ module Aws::Neptune
|
|
5409
5229
|
# @return [Boolean]
|
5410
5230
|
#
|
5411
5231
|
# @!attribute [rw] master_user_password
|
5412
|
-
# The new password for the master user. The password can include any
|
5413
|
-
# printable ASCII character except "/", """, or "@".
|
5414
|
-
#
|
5415
5232
|
# Not applicable.
|
5416
|
-
#
|
5417
|
-
# Default: Uses existing setting
|
5418
5233
|
# @return [String]
|
5419
5234
|
#
|
5420
5235
|
# @!attribute [rw] db_parameter_group_name
|
@@ -5433,10 +5248,6 @@ module Aws::Neptune
|
|
5433
5248
|
# @return [String]
|
5434
5249
|
#
|
5435
5250
|
# @!attribute [rw] backup_retention_period
|
5436
|
-
# The number of days to retain automated backups. Setting this
|
5437
|
-
# parameter to a positive number enables backups. Setting this
|
5438
|
-
# parameter to 0 disables automated backups.
|
5439
|
-
#
|
5440
5251
|
# Not applicable. The retention period for automated backups is
|
5441
5252
|
# managed by the DB cluster. For more information, see
|
5442
5253
|
# ModifyDBCluster.
|
@@ -5524,10 +5335,7 @@ module Aws::Neptune
|
|
5524
5335
|
# @return [Boolean]
|
5525
5336
|
#
|
5526
5337
|
# @!attribute [rw] license_model
|
5527
|
-
#
|
5528
|
-
#
|
5529
|
-
# Valid values: `license-included` \| `bring-your-own-license` \|
|
5530
|
-
# `general-public-license`
|
5338
|
+
# Not supported.
|
5531
5339
|
# @return [String]
|
5532
5340
|
#
|
5533
5341
|
# @!attribute [rw] iops
|
@@ -5576,31 +5384,7 @@ module Aws::Neptune
|
|
5576
5384
|
# @return [String]
|
5577
5385
|
#
|
5578
5386
|
# @!attribute [rw] storage_type
|
5579
|
-
#
|
5580
|
-
#
|
5581
|
-
# If you specify Provisioned IOPS (`io1`), you must also include a
|
5582
|
-
# value for the `Iops` parameter.
|
5583
|
-
#
|
5584
|
-
# If you choose to migrate your DB instance from using standard
|
5585
|
-
# storage to using Provisioned IOPS, or from using Provisioned IOPS to
|
5586
|
-
# using standard storage, the process can take time. The duration of
|
5587
|
-
# the migration depends on several factors such as database load,
|
5588
|
-
# storage size, storage type (standard or Provisioned IOPS), amount of
|
5589
|
-
# IOPS provisioned (if any), and the number of prior scale storage
|
5590
|
-
# operations. Typical migration times are under 24 hours, but the
|
5591
|
-
# process can take up to several days in some cases. During the
|
5592
|
-
# migration, the DB instance is available for use, but might
|
5593
|
-
# experience performance degradation. While the migration takes place,
|
5594
|
-
# nightly backups for the instance are suspended. No other Amazon
|
5595
|
-
# Neptune operations can take place for the instance, including
|
5596
|
-
# modifying the instance, rebooting the instance, deleting the
|
5597
|
-
# instance, creating a Read Replica for the instance, and creating a
|
5598
|
-
# DB snapshot of the instance.
|
5599
|
-
#
|
5600
|
-
# Valid values: `standard | gp2 | io1`
|
5601
|
-
#
|
5602
|
-
# Default: `io1` if the `Iops` parameter is specified, otherwise
|
5603
|
-
# `standard`
|
5387
|
+
# Not supported.
|
5604
5388
|
# @return [String]
|
5605
5389
|
#
|
5606
5390
|
# @!attribute [rw] tde_credential_arn
|
@@ -5652,7 +5436,7 @@ module Aws::Neptune
|
|
5652
5436
|
# @return [Integer]
|
5653
5437
|
#
|
5654
5438
|
# @!attribute [rw] publicly_accessible
|
5655
|
-
# This
|
5439
|
+
# This flag should no longer be used.
|
5656
5440
|
# @return [Boolean]
|
5657
5441
|
#
|
5658
5442
|
# @!attribute [rw] monitoring_role_arn
|
@@ -5693,14 +5477,11 @@ module Aws::Neptune
|
|
5693
5477
|
# @return [Boolean]
|
5694
5478
|
#
|
5695
5479
|
# @!attribute [rw] enable_performance_insights
|
5696
|
-
#
|
5697
|
-
# otherwise false.
|
5480
|
+
# Not supported.
|
5698
5481
|
# @return [Boolean]
|
5699
5482
|
#
|
5700
5483
|
# @!attribute [rw] performance_insights_kms_key_id
|
5701
|
-
#
|
5702
|
-
# data. The KMS key ID is the Amazon Resource Name (ARN), KMS key
|
5703
|
-
# identifier, or the KMS key alias for the KMS encryption key.
|
5484
|
+
# Not supported.
|
5704
5485
|
# @return [String]
|
5705
5486
|
#
|
5706
5487
|
# @!attribute [rw] cloudwatch_logs_export_configuration
|
@@ -6070,9 +5851,6 @@ module Aws::Neptune
|
|
6070
5851
|
include Aws::Structure
|
6071
5852
|
end
|
6072
5853
|
|
6073
|
-
# Contains the result of a successful invocation of the
|
6074
|
-
# DescribeOrderableDBInstanceOptions action.
|
6075
|
-
#
|
6076
5854
|
# @!attribute [rw] orderable_db_instance_options
|
6077
5855
|
# An OrderableDBInstanceOption structure containing information about
|
6078
5856
|
# orderable options for the DB instance.
|
@@ -6093,11 +5871,7 @@ module Aws::Neptune
|
|
6093
5871
|
include Aws::Structure
|
6094
5872
|
end
|
6095
5873
|
|
6096
|
-
#
|
6097
|
-
# ModifyDBParameterGroup and ResetDBParameterGroup actions.
|
6098
|
-
#
|
6099
|
-
# This data type is used as a response element in the
|
6100
|
-
# DescribeEngineDefaultParameters and DescribeDBParameters actions.
|
5874
|
+
# Specifies a parameter.
|
6101
5875
|
#
|
6102
5876
|
# @note When making an API call, you may pass Parameter
|
6103
5877
|
# data as a hash:
|
@@ -6248,8 +6022,6 @@ module Aws::Neptune
|
|
6248
6022
|
include Aws::Structure
|
6249
6023
|
end
|
6250
6024
|
|
6251
|
-
# Data returned from the **DescribePendingMaintenanceActions** action.
|
6252
|
-
#
|
6253
6025
|
# @!attribute [rw] pending_maintenance_actions
|
6254
6026
|
# A list of the pending maintenance actions for the resource.
|
6255
6027
|
# @return [Array<Types::ResourcePendingMaintenanceActions>]
|
@@ -6335,9 +6107,7 @@ module Aws::Neptune
|
|
6335
6107
|
# @return [String]
|
6336
6108
|
#
|
6337
6109
|
# @!attribute [rw] pending_cloudwatch_logs_exports
|
6338
|
-
#
|
6339
|
-
# other words, these log types are in the process of being activated
|
6340
|
-
# or deactivated.
|
6110
|
+
# Specifies the CloudWatch logs to be exported.
|
6341
6111
|
# @return [Types::PendingCloudwatchLogsExports]
|
6342
6112
|
#
|
6343
6113
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/PendingModifiedValues AWS API Documentation
|
@@ -6368,16 +6138,7 @@ module Aws::Neptune
|
|
6368
6138
|
# }
|
6369
6139
|
#
|
6370
6140
|
# @!attribute [rw] db_cluster_identifier
|
6371
|
-
#
|
6372
|
-
# parameter is not case-sensitive.
|
6373
|
-
#
|
6374
|
-
# Constraints:
|
6375
|
-
#
|
6376
|
-
# * Must match the identifier of an existing DBCluster Read Replica.
|
6377
|
-
#
|
6378
|
-
# ^
|
6379
|
-
#
|
6380
|
-
# Example: `my-cluster-replica1`
|
6141
|
+
# Not supported.
|
6381
6142
|
# @return [String]
|
6382
6143
|
#
|
6383
6144
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/PromoteReadReplicaDBClusterMessage AWS API Documentation
|
@@ -6557,7 +6318,7 @@ module Aws::Neptune
|
|
6557
6318
|
#
|
6558
6319
|
#
|
6559
6320
|
#
|
6560
|
-
# [1]:
|
6321
|
+
# [1]: https://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html#tagging.ARN.Constructing
|
6561
6322
|
# @return [String]
|
6562
6323
|
#
|
6563
6324
|
# @!attribute [rw] tag_keys
|
@@ -6719,6 +6480,7 @@ module Aws::Neptune
|
|
6719
6480
|
# ],
|
6720
6481
|
# kms_key_id: "String",
|
6721
6482
|
# enable_iam_database_authentication: false,
|
6483
|
+
# db_cluster_parameter_group_name: "String",
|
6722
6484
|
# }
|
6723
6485
|
#
|
6724
6486
|
# @!attribute [rw] availability_zones
|
@@ -6786,7 +6548,7 @@ module Aws::Neptune
|
|
6786
6548
|
# @return [String]
|
6787
6549
|
#
|
6788
6550
|
# @!attribute [rw] database_name
|
6789
|
-
#
|
6551
|
+
# Not supported.
|
6790
6552
|
# @return [String]
|
6791
6553
|
#
|
6792
6554
|
# @!attribute [rw] option_group_name
|
@@ -6831,6 +6593,18 @@ module Aws::Neptune
|
|
6831
6593
|
# Default: `false`
|
6832
6594
|
# @return [Boolean]
|
6833
6595
|
#
|
6596
|
+
# @!attribute [rw] db_cluster_parameter_group_name
|
6597
|
+
# The name of the DB cluster parameter group to associate with the new
|
6598
|
+
# DB cluster.
|
6599
|
+
#
|
6600
|
+
# Constraints:
|
6601
|
+
#
|
6602
|
+
# * If supplied, must match the name of an existing
|
6603
|
+
# DBClusterParameterGroup.
|
6604
|
+
#
|
6605
|
+
# ^
|
6606
|
+
# @return [String]
|
6607
|
+
#
|
6834
6608
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/RestoreDBClusterFromSnapshotMessage AWS API Documentation
|
6835
6609
|
#
|
6836
6610
|
class RestoreDBClusterFromSnapshotMessage < Struct.new(
|
@@ -6846,7 +6620,8 @@ module Aws::Neptune
|
|
6846
6620
|
:vpc_security_group_ids,
|
6847
6621
|
:tags,
|
6848
6622
|
:kms_key_id,
|
6849
|
-
:enable_iam_database_authentication
|
6623
|
+
:enable_iam_database_authentication,
|
6624
|
+
:db_cluster_parameter_group_name)
|
6850
6625
|
include Aws::Structure
|
6851
6626
|
end
|
6852
6627
|
|
@@ -6885,6 +6660,7 @@ module Aws::Neptune
|
|
6885
6660
|
# ],
|
6886
6661
|
# kms_key_id: "String",
|
6887
6662
|
# enable_iam_database_authentication: false,
|
6663
|
+
# db_cluster_parameter_group_name: "String",
|
6888
6664
|
# }
|
6889
6665
|
#
|
6890
6666
|
# @!attribute [rw] db_cluster_identifier
|
@@ -6900,20 +6676,8 @@ module Aws::Neptune
|
|
6900
6676
|
# @return [String]
|
6901
6677
|
#
|
6902
6678
|
# @!attribute [rw] restore_type
|
6903
|
-
# The type of restore to be performed.
|
6904
|
-
#
|
6905
|
-
#
|
6906
|
-
# * `full-copy` - The new DB cluster is restored as a full copy of the
|
6907
|
-
# source DB cluster.
|
6908
|
-
#
|
6909
|
-
# * `copy-on-write` - The new DB cluster is restored as a clone of the
|
6910
|
-
# source DB cluster.
|
6911
|
-
#
|
6912
|
-
# Constraints: You can't specify `copy-on-write` if the engine
|
6913
|
-
# version of the source DB cluster is earlier than 1.11.
|
6914
|
-
#
|
6915
|
-
# If you don't specify a `RestoreType` value, then the new DB cluster
|
6916
|
-
# is restored as a full copy of the source DB cluster.
|
6679
|
+
# The type of restore to be performed. The only type of restore
|
6680
|
+
# currently supported is `full-copy` (the default).
|
6917
6681
|
# @return [String]
|
6918
6682
|
#
|
6919
6683
|
# @!attribute [rw] source_db_cluster_identifier
|
@@ -6982,12 +6746,7 @@ module Aws::Neptune
|
|
6982
6746
|
# @return [Array<String>]
|
6983
6747
|
#
|
6984
6748
|
# @!attribute [rw] tags
|
6985
|
-
#
|
6986
|
-
# Resources][1].
|
6987
|
-
#
|
6988
|
-
#
|
6989
|
-
#
|
6990
|
-
# [1]: http://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html
|
6749
|
+
# The tags to be applied to the restored DB cluster.
|
6991
6750
|
# @return [Array<Types::Tag>]
|
6992
6751
|
#
|
6993
6752
|
# @!attribute [rw] kms_key_id
|
@@ -7026,6 +6785,18 @@ module Aws::Neptune
|
|
7026
6785
|
# Default: `false`
|
7027
6786
|
# @return [Boolean]
|
7028
6787
|
#
|
6788
|
+
# @!attribute [rw] db_cluster_parameter_group_name
|
6789
|
+
# The name of the DB cluster parameter group to associate with the new
|
6790
|
+
# DB cluster.
|
6791
|
+
#
|
6792
|
+
# Constraints:
|
6793
|
+
#
|
6794
|
+
# * If supplied, must match the name of an existing
|
6795
|
+
# DBClusterParameterGroup.
|
6796
|
+
#
|
6797
|
+
# ^
|
6798
|
+
# @return [String]
|
6799
|
+
#
|
7029
6800
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/RestoreDBClusterToPointInTimeMessage AWS API Documentation
|
7030
6801
|
#
|
7031
6802
|
class RestoreDBClusterToPointInTimeMessage < Struct.new(
|
@@ -7040,7 +6811,8 @@ module Aws::Neptune
|
|
7040
6811
|
:vpc_security_group_ids,
|
7041
6812
|
:tags,
|
7042
6813
|
:kms_key_id,
|
7043
|
-
:enable_iam_database_authentication
|
6814
|
+
:enable_iam_database_authentication,
|
6815
|
+
:db_cluster_parameter_group_name)
|
7044
6816
|
include Aws::Structure
|
7045
6817
|
end
|
7046
6818
|
|
@@ -7058,6 +6830,8 @@ module Aws::Neptune
|
|
7058
6830
|
include Aws::Structure
|
7059
6831
|
end
|
7060
6832
|
|
6833
|
+
# Specifies a subnet.
|
6834
|
+
#
|
7061
6835
|
# This data type is used as a response element in the
|
7062
6836
|
# DescribeDBSubnetGroups action.
|
7063
6837
|
#
|
@@ -7066,13 +6840,7 @@ module Aws::Neptune
|
|
7066
6840
|
# @return [String]
|
7067
6841
|
#
|
7068
6842
|
# @!attribute [rw] subnet_availability_zone
|
7069
|
-
#
|
7070
|
-
#
|
7071
|
-
# This data type is used as an element in the following data type:
|
7072
|
-
#
|
7073
|
-
# * OrderableDBInstanceOption
|
7074
|
-
#
|
7075
|
-
# ^
|
6843
|
+
# Specifies the EC2 Availability Zone that the subnet is in.
|
7076
6844
|
# @return [Types::AvailabilityZone]
|
7077
6845
|
#
|
7078
6846
|
# @!attribute [rw] subnet_status
|
@@ -7136,9 +6904,7 @@ module Aws::Neptune
|
|
7136
6904
|
include Aws::Structure
|
7137
6905
|
end
|
7138
6906
|
|
7139
|
-
# A time zone associated with a DBInstance.
|
7140
|
-
# in the response to the DescribeDBInstances, and the
|
7141
|
-
# DescribeDBEngineVersions actions.
|
6907
|
+
# A time zone associated with a DBInstance.
|
7142
6908
|
#
|
7143
6909
|
# @!attribute [rw] timezone_name
|
7144
6910
|
# The name of the time zone.
|
@@ -7205,7 +6971,9 @@ module Aws::Neptune
|
|
7205
6971
|
end
|
7206
6972
|
|
7207
6973
|
# Information about valid modifications that you can make to your DB
|
7208
|
-
# instance.
|
6974
|
+
# instance.
|
6975
|
+
#
|
6976
|
+
# Contains the result of a successful call to the
|
7209
6977
|
# DescribeValidDBInstanceModifications action.
|
7210
6978
|
#
|
7211
6979
|
# @!attribute [rw] storage_type
|