aws-sdk-neptune 1.11.0 → 1.12.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4c84835f41b0470987a39b47283ad42c1bb85b83
4
- data.tar.gz: 288d597bb4ff57b61febe266118b184fac493211
3
+ metadata.gz: c059a270c37c394bba7c28d0a38a361b3f14faf8
4
+ data.tar.gz: ca36178548bd5cf1a7adc85ba69fdd3b94cf3f05
5
5
  SHA512:
6
- metadata.gz: 06e7814a4e8b042e0bbb4ebf92b60411f62b13ca5a53d047d76a23bfb25e866558e1782d6f9cceb4a2eff488572cabd604a4bcec4437603715ea47788fda3b2b
7
- data.tar.gz: bbe7877582f42665f23b274e63471f739edb5378ed15a9ae3c2947172efc25c95297301911f8bb62c17b6625144d51e8d6e618cea3ab55ee083d81e4c67f1687
6
+ metadata.gz: 859a4b909d7f5e7ff49eec244d923e6a9f79bd6fab280cab73f5487ba6bd98237b2afb56269e7a51e894bfe90a674994c9d63382f206cc13b59d41eceda6de73
7
+ data.tar.gz: 5aa5737db5aed312dae6d2a40d04fc8aad95bc8f80753abe21ea9e23f883f12e8ee9d707cbf9dc52c41c32d9dd4d8dfad657604a377e22278f50f9a30d2f04e7
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-neptune/customizations'
43
43
  # @service
44
44
  module Aws::Neptune
45
45
 
46
- GEM_VERSION = '1.11.0'
46
+ GEM_VERSION = '1.12.0'
47
47
 
48
48
  end
@@ -199,6 +199,49 @@ module Aws::Neptune
199
199
  # When `true`, request parameters are validated before
200
200
  # sending the request.
201
201
  #
202
+ # @option options [URI::HTTP,String] :http_proxy A proxy to send
203
+ # requests through. Formatted like 'http://proxy.com:123'.
204
+ #
205
+ # @option options [Float] :http_open_timeout (15) The number of
206
+ # seconds to wait when opening a HTTP session before rasing a
207
+ # `Timeout::Error`.
208
+ #
209
+ # @option options [Integer] :http_read_timeout (60) The default
210
+ # number of seconds to wait for response data. This value can
211
+ # safely be set
212
+ # per-request on the session yeidled by {#session_for}.
213
+ #
214
+ # @option options [Float] :http_idle_timeout (5) The number of
215
+ # seconds a connection is allowed to sit idble before it is
216
+ # considered stale. Stale connections are closed and removed
217
+ # from the pool before making a request.
218
+ #
219
+ # @option options [Float] :http_continue_timeout (1) The number of
220
+ # seconds to wait for a 100-continue response before sending the
221
+ # request body. This option has no effect unless the request has
222
+ # "Expect" header set to "100-continue". Defaults to `nil` which
223
+ # disables this behaviour. This value can safely be set per
224
+ # request on the session yeidled by {#session_for}.
225
+ #
226
+ # @option options [Boolean] :http_wire_trace (false) When `true`,
227
+ # HTTP debug output will be sent to the `:logger`.
228
+ #
229
+ # @option options [Boolean] :ssl_verify_peer (true) When `true`,
230
+ # SSL peer certificates are verified when establishing a
231
+ # connection.
232
+ #
233
+ # @option options [String] :ssl_ca_bundle Full path to the SSL
234
+ # certificate authority bundle file that should be used when
235
+ # verifying peer certificates. If you do not pass
236
+ # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
237
+ # will be used if available.
238
+ #
239
+ # @option options [String] :ssl_ca_directory Full path of the
240
+ # directory that contains the unbundled SSL certificate
241
+ # authority files for verifying peer certificates. If you do
242
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
243
+ # system default will be used if available.
244
+ #
202
245
  def initialize(*args)
203
246
  super
204
247
  end
@@ -305,7 +348,7 @@ module Aws::Neptune
305
348
  #
306
349
  #
307
350
  #
308
- # [1]: http://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html#tagging.ARN.Constructing
351
+ # [1]: https://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html#tagging.ARN.Constructing
309
352
  #
310
353
  # @option params [required, Array<Types::Tag>] :tags
311
354
  # The tags to be assigned to the Amazon Neptune resource.
@@ -343,7 +386,7 @@ module Aws::Neptune
343
386
  #
344
387
  #
345
388
  #
346
- # [1]: http://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html#tagging.ARN.Constructing
389
+ # [1]: https://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html#tagging.ARN.Constructing
347
390
  #
348
391
  # @option params [required, String] :apply_action
349
392
  # The pending maintenance action to apply to this resource.
@@ -418,7 +461,7 @@ module Aws::Neptune
418
461
  #
419
462
  #
420
463
  #
421
- # [1]: http://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html#tagging.ARN.Constructing
464
+ # [1]: https://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html#tagging.ARN.Constructing
422
465
  #
423
466
  # @option params [required, String] :target_db_cluster_parameter_group_identifier
424
467
  # The identifier for the copied DB cluster parameter group.
@@ -439,12 +482,7 @@ module Aws::Neptune
439
482
  # A description for the copied DB cluster parameter group.
440
483
  #
441
484
  # @option params [Array<Types::Tag>] :tags
442
- # A list of tags. For more information, see [Tagging Amazon Neptune
443
- # Resources][1].
444
- #
445
- #
446
- #
447
- # [1]: http://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html
485
+ # The tags to be assigned to the copied DB cluster parameter group.
448
486
  #
449
487
  # @return [Types::CopyDBClusterParameterGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
450
488
  #
@@ -486,84 +524,19 @@ module Aws::Neptune
486
524
  # snapshot, `SourceDBClusterSnapshotIdentifier` must be the Amazon
487
525
  # Resource Name (ARN) of the shared DB cluster snapshot.
488
526
  #
489
- # You can copy an encrypted DB cluster snapshot from another AWS Region.
490
- # In that case, the AWS Region where you call the
491
- # `CopyDBClusterSnapshot` action is the destination AWS Region for the
492
- # encrypted DB cluster snapshot to be copied to. To copy an encrypted DB
493
- # cluster snapshot from another AWS Region, you must provide the
494
- # following values:
495
- #
496
- # * `KmsKeyId` - The AWS Key Management System (AWS KMS) key identifier
497
- # for the key to use to encrypt the copy of the DB cluster snapshot in
498
- # the destination AWS Region.
499
- #
500
- # * `PreSignedUrl` - A URL that contains a Signature Version 4 signed
501
- # request for the `CopyDBClusterSnapshot` action to be called in the
502
- # source AWS Region where the DB cluster snapshot is copied from. The
503
- # pre-signed URL must be a valid request for the
504
- # `CopyDBClusterSnapshot` API action that can be executed in the
505
- # source AWS Region that contains the encrypted DB cluster snapshot to
506
- # be copied.
507
- #
508
- # The pre-signed URL request must contain the following parameter
509
- # values:
510
- #
511
- # * `KmsKeyId` - The KMS key identifier for the key to use to encrypt
512
- # the copy of the DB cluster snapshot in the destination AWS Region.
513
- # This is the same identifier for both the `CopyDBClusterSnapshot`
514
- # action that is called in the destination AWS Region, and the
515
- # action contained in the pre-signed URL.
516
- #
517
- # * `DestinationRegion` - The name of the AWS Region that the DB
518
- # cluster snapshot will be created in.
519
- #
520
- # * `SourceDBClusterSnapshotIdentifier` - The DB cluster snapshot
521
- # identifier for the encrypted DB cluster snapshot to be copied.
522
- # This identifier must be in the Amazon Resource Name (ARN) format
523
- # for the source AWS Region. For example, if you are copying an
524
- # encrypted DB cluster snapshot from the us-west-2 AWS Region, then
525
- # your `SourceDBClusterSnapshotIdentifier` looks like the following
526
- # example:
527
- # `arn:aws:rds:us-west-2:123456789012:cluster-snapshot:neptune-cluster1-snapshot-20161115`.
528
- #
529
- # To learn how to generate a Signature Version 4 signed request, see [
530
- # Authenticating Requests: Using Query Parameters (AWS Signature
531
- # Version 4)][1] and [ Signature Version 4 Signing Process][2].
532
- #
533
- # * `TargetDBClusterSnapshotIdentifier` - The identifier for the new
534
- # copy of the DB cluster snapshot in the destination AWS Region.
535
- #
536
- # * `SourceDBClusterSnapshotIdentifier` - The DB cluster snapshot
537
- # identifier for the encrypted DB cluster snapshot to be copied. This
538
- # identifier must be in the ARN format for the source AWS Region and
539
- # is the same value as the `SourceDBClusterSnapshotIdentifier` in the
540
- # pre-signed URL.
541
- #
542
- # To cancel the copy operation once it is in progress, delete the target
543
- # DB cluster snapshot identified by `TargetDBClusterSnapshotIdentifier`
544
- # while that DB cluster snapshot is in "copying" status.
545
- #
546
- #
547
- #
548
- # [1]: http://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
549
- # [2]: http://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
527
+ # You can't copy from one AWS Region to another.
550
528
  #
551
529
  # @option params [required, String] :source_db_cluster_snapshot_identifier
552
530
  # The identifier of the DB cluster snapshot to copy. This parameter is
553
531
  # not case-sensitive.
554
532
  #
555
- # You can't copy an encrypted, shared DB cluster snapshot from one AWS
556
- # Region to another.
533
+ # You can't copy from one AWS Region to another.
557
534
  #
558
535
  # Constraints:
559
536
  #
560
537
  # * Must specify a valid system snapshot in the "available" state.
561
538
  #
562
- # * If the source snapshot is in the same AWS Region as the copy,
563
- # specify a valid DB snapshot identifier.
564
- #
565
- # * If the source snapshot is in a different AWS Region than the copy,
566
- # specify a valid DB cluster snapshot ARN.
539
+ # * Specify a valid DB snapshot identifier.
567
540
  #
568
541
  # Example: `my-cluster-snapshot1`
569
542
  #
@@ -599,64 +572,19 @@ module Aws::Neptune
599
572
  # If you copy an encrypted DB cluster snapshot that is shared from
600
573
  # another AWS account, then you must specify a value for `KmsKeyId`.
601
574
  #
602
- # To copy an encrypted DB cluster snapshot to another AWS Region, you
603
- # must set `KmsKeyId` to the KMS key ID you want to use to encrypt the
604
- # copy of the DB cluster snapshot in the destination AWS Region. KMS
605
- # encryption keys are specific to the AWS Region that they are created
606
- # in, and you can't use encryption keys from one AWS Region in another
607
- # AWS Region.
575
+ # KMS encryption keys are specific to the AWS Region that they are
576
+ # created in, and you can't use encryption keys from one AWS Region in
577
+ # another AWS Region.
608
578
  #
609
579
  # @option params [String] :pre_signed_url
610
- # The URL that contains a Signature Version 4 signed request for the
611
- # `CopyDBClusterSnapshot` API action in the AWS Region that contains the
612
- # source DB cluster snapshot to copy. The `PreSignedUrl` parameter must
613
- # be used when copying an encrypted DB cluster snapshot from another AWS
614
- # Region.
615
- #
616
- # The pre-signed URL must be a valid request for the
617
- # `CopyDBSClusterSnapshot` API action that can be executed in the source
618
- # AWS Region that contains the encrypted DB cluster snapshot to be
619
- # copied. The pre-signed URL request must contain the following
620
- # parameter values:
621
- #
622
- # * `KmsKeyId` - The AWS KMS key identifier for the key to use to
623
- # encrypt the copy of the DB cluster snapshot in the destination AWS
624
- # Region. This is the same identifier for both the
625
- # `CopyDBClusterSnapshot` action that is called in the destination AWS
626
- # Region, and the action contained in the pre-signed URL.
627
- #
628
- # * `DestinationRegion` - The name of the AWS Region that the DB cluster
629
- # snapshot will be created in.
630
- #
631
- # * `SourceDBClusterSnapshotIdentifier` - The DB cluster snapshot
632
- # identifier for the encrypted DB cluster snapshot to be copied. This
633
- # identifier must be in the Amazon Resource Name (ARN) format for the
634
- # source AWS Region. For example, if you are copying an encrypted DB
635
- # cluster snapshot from the us-west-2 AWS Region, then your
636
- # `SourceDBClusterSnapshotIdentifier` looks like the following
637
- # example:
638
- # `arn:aws:rds:us-west-2:123456789012:cluster-snapshot:neptune-cluster1-snapshot-20161115`.
639
- #
640
- # To learn how to generate a Signature Version 4 signed request, see [
641
- # Authenticating Requests: Using Query Parameters (AWS Signature Version
642
- # 4)][1] and [ Signature Version 4 Signing Process][2].
643
- #
644
- #
645
- #
646
- # [1]: http://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
647
- # [2]: http://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
580
+ # Not currently supported.
648
581
  #
649
582
  # @option params [Boolean] :copy_tags
650
583
  # True to copy all tags from the source DB cluster snapshot to the
651
584
  # target DB cluster snapshot, and otherwise false. The default is false.
652
585
  #
653
586
  # @option params [Array<Types::Tag>] :tags
654
- # A list of tags. For more information, see [Tagging Amazon Neptune
655
- # Resources][1].
656
- #
657
- #
658
- #
659
- # [1]: http://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html
587
+ # The tags to assign to the new DB cluster snapshot copy.
660
588
  #
661
589
  # @return [Types::CopyDBClusterSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
662
590
  #
@@ -727,20 +655,20 @@ module Aws::Neptune
727
655
  #
728
656
  #
729
657
  #
730
- # [1]: http://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html#tagging.ARN.Constructing
658
+ # [1]: https://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html#tagging.ARN.Constructing
731
659
  #
732
660
  # @option params [required, String] :target_db_parameter_group_identifier
733
661
  # The identifier for the copied DB parameter group.
734
662
  #
735
663
  # Constraints:
736
664
  #
737
- # * Cannot be null, empty, or blank
665
+ # * Cannot be null, empty, or blank.
738
666
  #
739
- # * Must contain from 1 to 255 letters, numbers, or hyphens
667
+ # * Must contain from 1 to 255 letters, numbers, or hyphens.
740
668
  #
741
- # * First character must be a letter
669
+ # * First character must be a letter.
742
670
  #
743
- # * Cannot end with a hyphen or contain two consecutive hyphens
671
+ # * Cannot end with a hyphen or contain two consecutive hyphens.
744
672
  #
745
673
  # Example: `my-db-parameter-group`
746
674
  #
@@ -748,12 +676,7 @@ module Aws::Neptune
748
676
  # A description for the copied DB parameter group.
749
677
  #
750
678
  # @option params [Array<Types::Tag>] :tags
751
- # A list of tags. For more information, see [Tagging Amazon Neptune
752
- # Resources][1].
753
- #
754
- #
755
- #
756
- # [1]: http://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html
679
+ # The tags to be assigned to the copied DB parameter group.
757
680
  #
758
681
  # @return [Types::CopyDBParameterGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
759
682
  #
@@ -793,9 +716,7 @@ module Aws::Neptune
793
716
  #
794
717
  # You can use the `ReplicationSourceIdentifier` parameter to create the
795
718
  # DB cluster as a Read Replica of another DB cluster or Amazon Neptune
796
- # DB instance. For cross-region replication where the DB cluster
797
- # identified by `ReplicationSourceIdentifier` is encrypted, you must
798
- # also specify the `PreSignedUrl` parameter.
719
+ # DB instance.
799
720
  #
800
721
  # @option params [Array<String>] :availability_zones
801
722
  # A list of EC2 Availability Zones that instances in the DB cluster can
@@ -921,7 +842,7 @@ module Aws::Neptune
921
842
  #
922
843
  #
923
844
  #
924
- # [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/AdjustingTheMaintenanceWindow.html
845
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/AdjustingTheMaintenanceWindow.html
925
846
  #
926
847
  # @option params [String] :preferred_maintenance_window
927
848
  # The weekly time range during which system maintenance can occur, in
@@ -940,19 +861,14 @@ module Aws::Neptune
940
861
  #
941
862
  #
942
863
  #
943
- # [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/AdjustingTheMaintenanceWindow.html
864
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/AdjustingTheMaintenanceWindow.html
944
865
  #
945
866
  # @option params [String] :replication_source_identifier
946
867
  # The Amazon Resource Name (ARN) of the source DB instance or DB cluster
947
868
  # if this DB cluster is created as a Read Replica.
948
869
  #
949
870
  # @option params [Array<Types::Tag>] :tags
950
- # A list of tags. For more information, see [Tagging Amazon Neptune
951
- # Resources][1].
952
- #
953
- #
954
- #
955
- # [1]: http://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html
871
+ # The tags to assign to the new DB cluster.
956
872
  #
957
873
  # @option params [Boolean] :storage_encrypted
958
874
  # Specifies whether the DB cluster is encrypted.
@@ -987,44 +903,7 @@ module Aws::Neptune
987
903
  # in that AWS Region.
988
904
  #
989
905
  # @option params [String] :pre_signed_url
990
- # A URL that contains a Signature Version 4 signed request for the
991
- # `CreateDBCluster` action to be called in the source AWS Region where
992
- # the DB cluster is replicated from. You only need to specify
993
- # `PreSignedUrl` when you are performing cross-region replication from
994
- # an encrypted DB cluster.
995
- #
996
- # The pre-signed URL must be a valid request for the `CreateDBCluster`
997
- # API action that can be executed in the source AWS Region that contains
998
- # the encrypted DB cluster to be copied.
999
- #
1000
- # The pre-signed URL request must contain the following parameter
1001
- # values:
1002
- #
1003
- # * `KmsKeyId` - The AWS KMS key identifier for the key to use to
1004
- # encrypt the copy of the DB cluster in the destination AWS Region.
1005
- # This should refer to the same KMS key for both the `CreateDBCluster`
1006
- # action that is called in the destination AWS Region, and the action
1007
- # contained in the pre-signed URL.
1008
- #
1009
- # * `DestinationRegion` - The name of the AWS Region that Read Replica
1010
- # will be created in.
1011
- #
1012
- # * `ReplicationSourceIdentifier` - The DB cluster identifier for the
1013
- # encrypted DB cluster to be copied. This identifier must be in the
1014
- # Amazon Resource Name (ARN) format for the source AWS Region. For
1015
- # example, if you are copying an encrypted DB cluster from the
1016
- # us-west-2 AWS Region, then your `ReplicationSourceIdentifier` would
1017
- # look like Example:
1018
- # `arn:aws:rds:us-west-2:123456789012:cluster:neptune-cluster1`.
1019
- #
1020
- # To learn how to generate a Signature Version 4 signed request, see [
1021
- # Authenticating Requests: Using Query Parameters (AWS Signature Version
1022
- # 4)][1] and [ Signature Version 4 Signing Process][2].
1023
- #
1024
- #
1025
- #
1026
- # [1]: http://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
1027
- # [2]: http://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
906
+ # This parameter is not currently supported.
1028
907
  #
1029
908
  # @option params [Boolean] :enable_iam_database_authentication
1030
909
  # True to enable mapping of AWS Identity and Access Management (IAM)
@@ -1184,12 +1063,7 @@ module Aws::Neptune
1184
1063
  # The description for the DB cluster parameter group.
1185
1064
  #
1186
1065
  # @option params [Array<Types::Tag>] :tags
1187
- # A list of tags. For more information, see [Tagging Amazon Neptune
1188
- # Resources][1].
1189
- #
1190
- #
1191
- #
1192
- # [1]: http://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html
1066
+ # The tags to be assigned to the new DB cluster parameter group.
1193
1067
  #
1194
1068
  # @return [Types::CreateDBClusterParameterGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1195
1069
  #
@@ -1309,9 +1183,7 @@ module Aws::Neptune
1309
1183
  # Creates a new DB instance.
1310
1184
  #
1311
1185
  # @option params [String] :db_name
1312
- # The database name.
1313
- #
1314
- # Type: String
1186
+ # Not supported.
1315
1187
  #
1316
1188
  # @option params [required, String] :db_instance_identifier
1317
1189
  # The DB instance identifier. This parameter is stored as a lowercase
@@ -1370,7 +1242,7 @@ module Aws::Neptune
1370
1242
  # VPC.
1371
1243
  #
1372
1244
  # @option params [String] :availability_zone
1373
- # The EC2 Availability Zone that the DB instance is created in.
1245
+ # The EC2 Availability Zone that the DB instance is created in
1374
1246
  #
1375
1247
  # Default: A random, system-chosen Availability Zone in the endpoint's
1376
1248
  # AWS Region.
@@ -1484,15 +1356,10 @@ module Aws::Neptune
1484
1356
  # more information, see CreateDBCluster.
1485
1357
  #
1486
1358
  # @option params [Boolean] :publicly_accessible
1487
- # This parameter is not supported.
1359
+ # This flag should no longer be used.
1488
1360
  #
1489
1361
  # @option params [Array<Types::Tag>] :tags
1490
- # A list of tags. For more information, see [Tagging Amazon Neptune
1491
- # Resources][1].
1492
- #
1493
- #
1494
- #
1495
- # [1]: http://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html
1362
+ # The tags to assign to the new instance.
1496
1363
  #
1497
1364
  # @option params [String] :db_cluster_identifier
1498
1365
  # The identifier of the DB cluster that the instance will belong to.
@@ -1814,12 +1681,7 @@ module Aws::Neptune
1814
1681
  # The description for the DB parameter group.
1815
1682
  #
1816
1683
  # @option params [Array<Types::Tag>] :tags
1817
- # A list of tags. For more information, see [Tagging Amazon Neptune
1818
- # Resources][1].
1819
- #
1820
- #
1821
- #
1822
- # [1]: http://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html
1684
+ # The tags to be assigned to the new DB parameter group.
1823
1685
  #
1824
1686
  # @return [Types::CreateDBParameterGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1825
1687
  #
@@ -1874,12 +1736,7 @@ module Aws::Neptune
1874
1736
  # The EC2 Subnet IDs for the DB subnet group.
1875
1737
  #
1876
1738
  # @option params [Array<Types::Tag>] :tags
1877
- # A list of tags. For more information, see [Tagging Amazon Neptune
1878
- # Resources][1].
1879
- #
1880
- #
1881
- #
1882
- # [1]: http://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html
1739
+ # The tags to be assigned to the new DB subnet group.
1883
1740
  #
1884
1741
  # @return [Types::CreateDBSubnetGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1885
1742
  #
@@ -1994,12 +1851,7 @@ module Aws::Neptune
1994
1851
  # **false** to create the subscription but not active it.
1995
1852
  #
1996
1853
  # @option params [Array<Types::Tag>] :tags
1997
- # A list of tags. For more information, see [Tagging Amazon Neptune
1998
- # Resources][1].
1999
- #
2000
- #
2001
- #
2002
- # [1]: http://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html
1854
+ # The tags to be applied to the new event subscription.
2003
1855
  #
2004
1856
  # @return [Types::CreateEventSubscriptionResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2005
1857
  #
@@ -2270,15 +2122,9 @@ module Aws::Neptune
2270
2122
  # If the specified DB instance is part of a DB cluster, you can't
2271
2123
  # delete the DB instance if both of the following conditions are true:
2272
2124
  #
2273
- # * The DB cluster is a Read Replica of another DB cluster.
2274
- #
2275
2125
  # * The DB instance is the only instance in the DB cluster.
2276
2126
  #
2277
- # To delete a DB instance in this case, first call the
2278
- # PromoteReadReplicaDBCluster API action to promote the DB cluster so
2279
- # it's no longer a Read Replica. After the promotion completes, then
2280
- # call the `DeleteDBInstance` API action to delete the final instance in
2281
- # the DB cluster.
2127
+ # ^
2282
2128
  #
2283
2129
  # @option params [required, String] :db_instance_identifier
2284
2130
  # The DB instance identifier for the DB instance to be deleted. This
@@ -4246,7 +4092,7 @@ module Aws::Neptune
4246
4092
  #
4247
4093
  #
4248
4094
  #
4249
- # [1]: http://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html#tagging.ARN.Constructing
4095
+ # [1]: https://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html#tagging.ARN.Constructing
4250
4096
  #
4251
4097
  # @option params [Array<Types::Filter>] :filters
4252
4098
  # This parameter is not currently supported.
@@ -4732,13 +4578,8 @@ module Aws::Neptune
4732
4578
  # Default: `false`
4733
4579
  #
4734
4580
  # @option params [String] :master_user_password
4735
- # The new password for the master user. The password can include any
4736
- # printable ASCII character except "/", """, or "@".
4737
- #
4738
4581
  # Not applicable.
4739
4582
  #
4740
- # Default: Uses existing setting
4741
- #
4742
4583
  # @option params [String] :db_parameter_group_name
4743
4584
  # The name of the DB parameter group to apply to the DB instance.
4744
4585
  # Changing this setting doesn't result in an outage. The parameter
@@ -4754,10 +4595,6 @@ module Aws::Neptune
4754
4595
  # group family as this DB instance.
4755
4596
  #
4756
4597
  # @option params [Integer] :backup_retention_period
4757
- # The number of days to retain automated backups. Setting this parameter
4758
- # to a positive number enables backups. Setting this parameter to 0
4759
- # disables automated backups.
4760
- #
4761
4598
  # Not applicable. The retention period for automated backups is managed
4762
4599
  # by the DB cluster. For more information, see ModifyDBCluster.
4763
4600
  #
@@ -4835,10 +4672,7 @@ module Aws::Neptune
4835
4672
  # enabled auto patching for that engine version.
4836
4673
  #
4837
4674
  # @option params [String] :license_model
4838
- # The license model for the DB instance.
4839
- #
4840
- # Valid values: `license-included` \| `bring-your-own-license` \|
4841
- # `general-public-license`
4675
+ # Not supported.
4842
4676
  #
4843
4677
  # @option params [Integer] :iops
4844
4678
  # The new Provisioned IOPS (I/O operations per second) value for the
@@ -4883,31 +4717,7 @@ module Aws::Neptune
4883
4717
  # Example: `mydbinstance`
4884
4718
  #
4885
4719
  # @option params [String] :storage_type
4886
- # Specifies the storage type to be associated with the DB instance.
4887
- #
4888
- # If you specify Provisioned IOPS (`io1`), you must also include a value
4889
- # for the `Iops` parameter.
4890
- #
4891
- # If you choose to migrate your DB instance from using standard storage
4892
- # to using Provisioned IOPS, or from using Provisioned IOPS to using
4893
- # standard storage, the process can take time. The duration of the
4894
- # migration depends on several factors such as database load, storage
4895
- # size, storage type (standard or Provisioned IOPS), amount of IOPS
4896
- # provisioned (if any), and the number of prior scale storage
4897
- # operations. Typical migration times are under 24 hours, but the
4898
- # process can take up to several days in some cases. During the
4899
- # migration, the DB instance is available for use, but might experience
4900
- # performance degradation. While the migration takes place, nightly
4901
- # backups for the instance are suspended. No other Amazon Neptune
4902
- # operations can take place for the instance, including modifying the
4903
- # instance, rebooting the instance, deleting the instance, creating a
4904
- # Read Replica for the instance, and creating a DB snapshot of the
4905
- # instance.
4906
- #
4907
- # Valid values: `standard | gp2 | io1`
4908
- #
4909
- # Default: `io1` if the `Iops` parameter is specified, otherwise
4910
- # `standard`
4720
+ # Not supported.
4911
4721
  #
4912
4722
  # @option params [String] :tde_credential_arn
4913
4723
  # The ARN from the key store with which to associate the instance for
@@ -4951,7 +4761,7 @@ module Aws::Neptune
4951
4761
  # Default: `8182`
4952
4762
  #
4953
4763
  # @option params [Boolean] :publicly_accessible
4954
- # This parameter is not supported.
4764
+ # This flag should no longer be used.
4955
4765
  #
4956
4766
  # @option params [String] :monitoring_role_arn
4957
4767
  # The ARN for the IAM role that permits Neptune to send enhanced
@@ -4986,13 +4796,10 @@ module Aws::Neptune
4986
4796
  # Default: `false`
4987
4797
  #
4988
4798
  # @option params [Boolean] :enable_performance_insights
4989
- # True to enable Performance Insights for the DB instance, and otherwise
4990
- # false.
4799
+ # Not supported.
4991
4800
  #
4992
4801
  # @option params [String] :performance_insights_kms_key_id
4993
- # The AWS KMS key identifier for encryption of Performance Insights
4994
- # data. The KMS key ID is the Amazon Resource Name (ARN), KMS key
4995
- # identifier, or the KMS key alias for the KMS encryption key.
4802
+ # Not supported.
4996
4803
  #
4997
4804
  # @option params [Types::CloudwatchLogsExportConfiguration] :cloudwatch_logs_export_configuration
4998
4805
  # The configuration setting for the log types to be enabled for export
@@ -5363,19 +5170,10 @@ module Aws::Neptune
5363
5170
  req.send_request(options)
5364
5171
  end
5365
5172
 
5366
- # Promotes a Read Replica DB cluster to a standalone DB cluster.
5173
+ # Not supported.
5367
5174
  #
5368
5175
  # @option params [required, String] :db_cluster_identifier
5369
- # The identifier of the DB cluster Read Replica to promote. This
5370
- # parameter is not case-sensitive.
5371
- #
5372
- # Constraints:
5373
- #
5374
- # * Must match the identifier of an existing DBCluster Read Replica.
5375
- #
5376
- # ^
5377
- #
5378
- # Example: `my-cluster-replica1`
5176
+ # Not supported.
5379
5177
  #
5380
5178
  # @return [Types::PromoteReadReplicaDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5381
5179
  #
@@ -5676,7 +5474,7 @@ module Aws::Neptune
5676
5474
  #
5677
5475
  #
5678
5476
  #
5679
- # [1]: http://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html#tagging.ARN.Constructing
5477
+ # [1]: https://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html#tagging.ARN.Constructing
5680
5478
  #
5681
5479
  # @option params [required, Array<String>] :tag_keys
5682
5480
  # The tag key (name) of the tag to be removed.
@@ -5903,7 +5701,7 @@ module Aws::Neptune
5903
5701
  # Example: `mySubnetgroup`
5904
5702
  #
5905
5703
  # @option params [String] :database_name
5906
- # The database name for the restored DB cluster.
5704
+ # Not supported.
5907
5705
  #
5908
5706
  # @option params [String] :option_group_name
5909
5707
  # The name of the option group to use for the restored DB cluster.
@@ -5940,6 +5738,17 @@ module Aws::Neptune
5940
5738
  #
5941
5739
  # Default: `false`
5942
5740
  #
5741
+ # @option params [String] :db_cluster_parameter_group_name
5742
+ # The name of the DB cluster parameter group to associate with the new
5743
+ # DB cluster.
5744
+ #
5745
+ # Constraints:
5746
+ #
5747
+ # * If supplied, must match the name of an existing
5748
+ # DBClusterParameterGroup.
5749
+ #
5750
+ # ^
5751
+ #
5943
5752
  # @return [Types::RestoreDBClusterFromSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5944
5753
  #
5945
5754
  # * {Types::RestoreDBClusterFromSnapshotResult#db_cluster #db_cluster} => Types::DBCluster
@@ -5965,6 +5774,7 @@ module Aws::Neptune
5965
5774
  # ],
5966
5775
  # kms_key_id: "String",
5967
5776
  # enable_iam_database_authentication: false,
5777
+ # db_cluster_parameter_group_name: "String",
5968
5778
  # })
5969
5779
  #
5970
5780
  # @example Response structure
@@ -6054,20 +5864,8 @@ module Aws::Neptune
6054
5864
  # * Cannot end with a hyphen or contain two consecutive hyphens
6055
5865
  #
6056
5866
  # @option params [String] :restore_type
6057
- # The type of restore to be performed. You can specify one of the
6058
- # following values:
6059
- #
6060
- # * `full-copy` - The new DB cluster is restored as a full copy of the
6061
- # source DB cluster.
6062
- #
6063
- # * `copy-on-write` - The new DB cluster is restored as a clone of the
6064
- # source DB cluster.
6065
- #
6066
- # Constraints: You can't specify `copy-on-write` if the engine version
6067
- # of the source DB cluster is earlier than 1.11.
6068
- #
6069
- # If you don't specify a `RestoreType` value, then the new DB cluster
6070
- # is restored as a full copy of the source DB cluster.
5867
+ # The type of restore to be performed. The only type of restore
5868
+ # currently supported is `full-copy` (the default).
6071
5869
  #
6072
5870
  # @option params [required, String] :source_db_cluster_identifier
6073
5871
  # The identifier of the source DB cluster from which to restore.
@@ -6128,12 +5926,7 @@ module Aws::Neptune
6128
5926
  # A list of VPC security groups that the new DB cluster belongs to.
6129
5927
  #
6130
5928
  # @option params [Array<Types::Tag>] :tags
6131
- # A list of tags. For more information, see [Tagging Amazon Neptune
6132
- # Resources][1].
6133
- #
6134
- #
6135
- #
6136
- # [1]: http://docs.aws.amazon.com/neptune/latest/UserGuide/tagging.ARN.html
5929
+ # The tags to be applied to the restored DB cluster.
6137
5930
  #
6138
5931
  # @option params [String] :kms_key_id
6139
5932
  # The AWS KMS key identifier to use when restoring an encrypted DB
@@ -6169,6 +5962,17 @@ module Aws::Neptune
6169
5962
  #
6170
5963
  # Default: `false`
6171
5964
  #
5965
+ # @option params [String] :db_cluster_parameter_group_name
5966
+ # The name of the DB cluster parameter group to associate with the new
5967
+ # DB cluster.
5968
+ #
5969
+ # Constraints:
5970
+ #
5971
+ # * If supplied, must match the name of an existing
5972
+ # DBClusterParameterGroup.
5973
+ #
5974
+ # ^
5975
+ #
6172
5976
  # @return [Types::RestoreDBClusterToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6173
5977
  #
6174
5978
  # * {Types::RestoreDBClusterToPointInTimeResult#db_cluster #db_cluster} => Types::DBCluster
@@ -6193,6 +5997,7 @@ module Aws::Neptune
6193
5997
  # ],
6194
5998
  # kms_key_id: "String",
6195
5999
  # enable_iam_database_authentication: false,
6000
+ # db_cluster_parameter_group_name: "String",
6196
6001
  # })
6197
6002
  #
6198
6003
  # @example Response structure
@@ -6267,7 +6072,7 @@ module Aws::Neptune
6267
6072
  params: params,
6268
6073
  config: config)
6269
6074
  context[:gem_name] = 'aws-sdk-neptune'
6270
- context[:gem_version] = '1.11.0'
6075
+ context[:gem_version] = '1.12.0'
6271
6076
  Seahorse::Client::Request.new(handlers, context)
6272
6077
  end
6273
6078