aws-sdk-neptune 1.19.0 → 1.20.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c39122e58397eaf0720f5d005daf6e40db4d7698
4
- data.tar.gz: a86e596bda2b849fdfee4655bb4e1b5975f03d25
3
+ metadata.gz: fa63a1d5fb48cf14b682361ffa263ce1ea54f896
4
+ data.tar.gz: 5ee9cc9b65496f90875ad158d07d27ffc33eb68e
5
5
  SHA512:
6
- metadata.gz: 9d1a4737960d07a57c58034317dd14d469349b894dec9b8902c594f1eddc6c499f35407a5ae047343f40fd971942d113ef1bcd5e2615f8da3b5fc24d09f8be51
7
- data.tar.gz: d8cec904cef3dd23df9eb8a7448a5c7e99455920b684daf3a8c4b5e1010b8fa5da319e4fd8c19e968beadb73989c6b9626671cfe61d39278ef8d279b99c63370
6
+ metadata.gz: 30acf6bc66e8202c1cf454857f8f3a3ad7fec93d40a312bb625890592de4a40d99391110a941d53217a18f645b58bf31735d766a07f8d4dd0cdf02df69bd2d41
7
+ data.tar.gz: d6376c5b4c1e519d73809864f2dafa66bbfbe87c3611ae1231d74e101931ae7f30f4f031308c13a53eed099659fd85dbff277ab2db595d022c80d3d29fc5c70b
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-neptune/customizations'
43
43
  # @service
44
44
  module Aws::Neptune
45
45
 
46
- GEM_VERSION = '1.19.0'
46
+ GEM_VERSION = '1.20.0'
47
47
 
48
48
  end
@@ -565,10 +565,6 @@ module Aws::Neptune
565
565
  # key ID is the Amazon Resource Name (ARN), KMS key identifier, or the
566
566
  # KMS key alias for the KMS encryption key.
567
567
  #
568
- # If you copy an unencrypted DB cluster snapshot and specify a value for
569
- # the `KmsKeyId` parameter, Amazon Neptune encrypts the target DB
570
- # cluster snapshot using the specified KMS encryption key.
571
- #
572
568
  # If you copy an encrypted DB cluster snapshot from your AWS account,
573
569
  # you can specify a value for `KmsKeyId` to encrypt the copy with a new
574
570
  # KMS encryption key. If you don't specify a value for `KmsKeyId`, then
@@ -582,6 +578,10 @@ module Aws::Neptune
582
578
  # created in, and you can't use encryption keys from one AWS Region in
583
579
  # another AWS Region.
584
580
  #
581
+ # You cannot encrypt an unencrypted DB cluster snapshot when you copy
582
+ # it. If you try to copy an unencrypted DB cluster snapshot and specify
583
+ # a value for the KmsKeyId parameter, an error is returned.
584
+ #
585
585
  # @option params [String] :pre_signed_url
586
586
  # Not currently supported.
587
587
  #
@@ -741,8 +741,7 @@ module Aws::Neptune
741
741
  # ^
742
742
  #
743
743
  # @option params [String] :character_set_name
744
- # A value that indicates that the DB cluster should be associated with
745
- # the specified CharacterSet.
744
+ # *(Not supported by Neptune)*
746
745
  #
747
746
  # @option params [String] :database_name
748
747
  # The name for your database of up to 64 alpha-numeric characters. If
@@ -791,7 +790,8 @@ module Aws::Neptune
791
790
  # Valid Values: `neptune`
792
791
  #
793
792
  # @option params [String] :engine_version
794
- # The version number of the database engine to use.
793
+ # The version number of the database engine to use. Currently, setting
794
+ # this parameter has no effect.
795
795
  #
796
796
  # Example: `1.0.1`
797
797
  #
@@ -819,12 +819,7 @@ module Aws::Neptune
819
819
  # Constraints: Must contain from 8 to 41 characters.
820
820
  #
821
821
  # @option params [String] :option_group_name
822
- # A value that indicates that the DB cluster should be associated with
823
- # the specified option group.
824
- #
825
- # Permanent options can't be removed from an option group. The option
826
- # group can't be removed from a DB cluster once it is associated with a
827
- # DB cluster.
822
+ # *(Not supported by Neptune)*
828
823
  #
829
824
  # @option params [String] :preferred_backup_window
830
825
  # The daily time range during which automated backups are created if
@@ -921,6 +916,11 @@ module Aws::Neptune
921
916
  # The list of log types that need to be enabled for exporting to
922
917
  # CloudWatch Logs.
923
918
  #
919
+ # @option params [Boolean] :deletion_protection
920
+ # A value that indicates whether the DB cluster has deletion protection
921
+ # enabled. The database can't be deleted when deletion protection is
922
+ # enabled. By default, deletion protection is disabled.
923
+ #
924
924
  # @return [Types::CreateDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
925
925
  #
926
926
  # * {Types::CreateDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
@@ -956,6 +956,7 @@ module Aws::Neptune
956
956
  # pre_signed_url: "String",
957
957
  # enable_iam_database_authentication: false,
958
958
  # enable_cloudwatch_logs_exports: ["String"],
959
+ # deletion_protection: false,
959
960
  # })
960
961
  #
961
962
  # @example Response structure
@@ -1009,6 +1010,7 @@ module Aws::Neptune
1009
1010
  # resp.db_cluster.cluster_create_time #=> Time
1010
1011
  # resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
1011
1012
  # resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
1013
+ # resp.db_cluster.deletion_protection #=> Boolean
1012
1014
  #
1013
1015
  # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/CreateDBCluster AWS API Documentation
1014
1016
  #
@@ -1334,7 +1336,8 @@ module Aws::Neptune
1334
1336
  # true.
1335
1337
  #
1336
1338
  # @option params [String] :engine_version
1337
- # The version number of the database engine to use.
1339
+ # The version number of the database engine to use. Currently, setting
1340
+ # this parameter has no effect.
1338
1341
  #
1339
1342
  # @option params [Boolean] :auto_minor_version_upgrade
1340
1343
  # Indicates that minor engine upgrades are applied automatically to the
@@ -1353,20 +1356,10 @@ module Aws::Neptune
1353
1356
  # be initially allocated for the DB instance.
1354
1357
  #
1355
1358
  # @option params [String] :option_group_name
1356
- # Indicates that the DB instance should be associated with the specified
1357
- # option group.
1358
- #
1359
- # Permanent options, such as the TDE option for Oracle Advanced Security
1360
- # TDE, can't be removed from an option group, and that option group
1361
- # can't be removed from a DB instance once it is associated with a DB
1362
- # instance
1359
+ # *(Not supported by Neptune)*
1363
1360
  #
1364
1361
  # @option params [String] :character_set_name
1365
- # Indicates that the DB instance should be associated with the specified
1366
- # CharacterSet.
1367
- #
1368
- # Not applicable. The character set is managed by the DB cluster. For
1369
- # more information, see CreateDBCluster.
1362
+ # *(Not supported by Neptune)*
1370
1363
  #
1371
1364
  # @option params [Boolean] :publicly_accessible
1372
1365
  # This flag should no longer be used.
@@ -1468,18 +1461,25 @@ module Aws::Neptune
1468
1461
  # Default: `false`
1469
1462
  #
1470
1463
  # @option params [Boolean] :enable_performance_insights
1471
- # True to enable Performance Insights for the DB instance, and otherwise
1472
- # false.
1464
+ # *(Not supported by Neptune)*
1473
1465
  #
1474
1466
  # @option params [String] :performance_insights_kms_key_id
1475
- # The AWS KMS key identifier for encryption of Performance Insights
1476
- # data. The KMS key ID is the Amazon Resource Name (ARN), KMS key
1477
- # identifier, or the KMS key alias for the KMS encryption key.
1467
+ # *(Not supported by Neptune)*
1478
1468
  #
1479
1469
  # @option params [Array<String>] :enable_cloudwatch_logs_exports
1480
1470
  # The list of log types that need to be enabled for exporting to
1481
1471
  # CloudWatch Logs.
1482
1472
  #
1473
+ # @option params [Boolean] :deletion_protection
1474
+ # A value that indicates whether the DB instance has deletion protection
1475
+ # enabled. The database can't be deleted when deletion protection is
1476
+ # enabled. By default, deletion protection is disabled.
1477
+ #
1478
+ # You can enable or disable deletion protection for the DB cluster. For
1479
+ # more information, see CreateDBCluster. DB instances in a DB cluster
1480
+ # can be deleted even when deletion protection is enabled for the DB
1481
+ # cluster.
1482
+ #
1483
1483
  # @return [Types::CreateDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1484
1484
  #
1485
1485
  # * {Types::CreateDBInstanceResult#db_instance #db_instance} => Types::DBInstance
@@ -1534,6 +1534,7 @@ module Aws::Neptune
1534
1534
  # enable_performance_insights: false,
1535
1535
  # performance_insights_kms_key_id: "String",
1536
1536
  # enable_cloudwatch_logs_exports: ["String"],
1537
+ # deletion_protection: false,
1537
1538
  # })
1538
1539
  #
1539
1540
  # @example Response structure
@@ -1635,6 +1636,7 @@ module Aws::Neptune
1635
1636
  # resp.db_instance.performance_insights_kms_key_id #=> String
1636
1637
  # resp.db_instance.enabled_cloudwatch_logs_exports #=> Array
1637
1638
  # resp.db_instance.enabled_cloudwatch_logs_exports[0] #=> String
1639
+ # resp.db_instance.deletion_protection #=> Boolean
1638
1640
  #
1639
1641
  # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/CreateDBInstance AWS API Documentation
1640
1642
  #
@@ -2019,6 +2021,7 @@ module Aws::Neptune
2019
2021
  # resp.db_cluster.cluster_create_time #=> Time
2020
2022
  # resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
2021
2023
  # resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
2024
+ # resp.db_cluster.deletion_protection #=> Boolean
2022
2025
  #
2023
2026
  # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DeleteDBCluster AWS API Documentation
2024
2027
  #
@@ -2297,6 +2300,7 @@ module Aws::Neptune
2297
2300
  # resp.db_instance.performance_insights_kms_key_id #=> String
2298
2301
  # resp.db_instance.enabled_cloudwatch_logs_exports #=> Array
2299
2302
  # resp.db_instance.enabled_cloudwatch_logs_exports[0] #=> String
2303
+ # resp.db_instance.deletion_protection #=> Boolean
2300
2304
  #
2301
2305
  # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DeleteDBInstance AWS API Documentation
2302
2306
  #
@@ -2875,6 +2879,7 @@ module Aws::Neptune
2875
2879
  # resp.db_clusters[0].cluster_create_time #=> Time
2876
2880
  # resp.db_clusters[0].enabled_cloudwatch_logs_exports #=> Array
2877
2881
  # resp.db_clusters[0].enabled_cloudwatch_logs_exports[0] #=> String
2882
+ # resp.db_clusters[0].deletion_protection #=> Boolean
2878
2883
  #
2879
2884
  # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DescribeDBClusters AWS API Documentation
2880
2885
  #
@@ -3161,6 +3166,7 @@ module Aws::Neptune
3161
3166
  # resp.db_instances[0].performance_insights_kms_key_id #=> String
3162
3167
  # resp.db_instances[0].enabled_cloudwatch_logs_exports #=> Array
3163
3168
  # resp.db_instances[0].enabled_cloudwatch_logs_exports[0] #=> String
3169
+ # resp.db_instances[0].deletion_protection #=> Boolean
3164
3170
  #
3165
3171
  # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DescribeDBInstances AWS API Documentation
3166
3172
  #
@@ -4088,6 +4094,7 @@ module Aws::Neptune
4088
4094
  # resp.db_cluster.cluster_create_time #=> Time
4089
4095
  # resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
4090
4096
  # resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
4097
+ # resp.db_cluster.deletion_protection #=> Boolean
4091
4098
  #
4092
4099
  # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/FailoverDBCluster AWS API Documentation
4093
4100
  #
@@ -4220,18 +4227,7 @@ module Aws::Neptune
4220
4227
  # Constraints: Must contain from 8 to 41 characters.
4221
4228
  #
4222
4229
  # @option params [String] :option_group_name
4223
- # A value that indicates that the DB cluster should be associated with
4224
- # the specified option group. Changing this parameter doesn't result in
4225
- # an outage except in the following case, and the change is applied
4226
- # during the next maintenance window unless the `ApplyImmediately`
4227
- # parameter is set to `true` for this request. If the parameter change
4228
- # results in an option group that enables OEM, this change can cause a
4229
- # brief (sub-second) period during which new connections are rejected
4230
- # but existing connections are not interrupted.
4231
- #
4232
- # Permanent options can't be removed from an option group. The option
4233
- # group can't be removed from a DB cluster once it is associated with a
4234
- # DB cluster.
4230
+ # *(Not supported by Neptune)*
4235
4231
  #
4236
4232
  # @option params [String] :preferred_backup_window
4237
4233
  # The daily time range during which automated backups are created if
@@ -4276,14 +4272,18 @@ module Aws::Neptune
4276
4272
  # to CloudWatch Logs for a specific DB cluster.
4277
4273
  #
4278
4274
  # @option params [String] :engine_version
4279
- # The version number of the database engine to which you want to
4280
- # upgrade. Changing this parameter results in an outage. The change is
4281
- # applied during the next maintenance window unless the ApplyImmediately
4282
- # parameter is set to true.
4275
+ # The version number of the database engine. Currently, setting this
4276
+ # parameter has no effect. To upgrade your database engine to the most
4277
+ # recent release, use the ApplyPendingMaintenanceAction API.
4283
4278
  #
4284
4279
  # For a list of valid engine versions, see CreateDBInstance, or call
4285
4280
  # DescribeDBEngineVersions.
4286
4281
  #
4282
+ # @option params [Boolean] :deletion_protection
4283
+ # A value that indicates whether the DB cluster has deletion protection
4284
+ # enabled. The database can't be deleted when deletion protection is
4285
+ # enabled. By default, deletion protection is disabled.
4286
+ #
4287
4287
  # @return [Types::ModifyDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4288
4288
  #
4289
4289
  # * {Types::ModifyDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
@@ -4308,6 +4308,7 @@ module Aws::Neptune
4308
4308
  # disable_log_types: ["String"],
4309
4309
  # },
4310
4310
  # engine_version: "String",
4311
+ # deletion_protection: false,
4311
4312
  # })
4312
4313
  #
4313
4314
  # @example Response structure
@@ -4361,6 +4362,7 @@ module Aws::Neptune
4361
4362
  # resp.db_cluster.cluster_create_time #=> Time
4362
4363
  # resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
4363
4364
  # resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
4365
+ # resp.db_cluster.deletion_protection #=> Boolean
4364
4366
  #
4365
4367
  # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/ModifyDBCluster AWS API Documentation
4366
4368
  #
@@ -4668,25 +4670,15 @@ module Aws::Neptune
4668
4670
  # parameter is set to `true` for this request.
4669
4671
  #
4670
4672
  # @option params [String] :engine_version
4671
- # The version number of the database engine to upgrade to. Changing this
4672
- # parameter results in an outage and the change is applied during the
4673
- # next maintenance window unless the `ApplyImmediately` parameter is set
4674
- # to `true` for this request.
4675
- #
4676
- # For major version upgrades, if a nondefault DB parameter group is
4677
- # currently in use, a new DB parameter group in the DB parameter group
4678
- # family for the new engine version must be specified. The new DB
4679
- # parameter group can be the default for that DB parameter group family.
4673
+ # The version number of the database engine to upgrade to. Currently,
4674
+ # setting this parameter has no effect. To upgrade your database engine
4675
+ # to the most recent release, use the ApplyPendingMaintenanceAction API.
4680
4676
  #
4681
4677
  # @option params [Boolean] :allow_major_version_upgrade
4682
4678
  # Indicates that major version upgrades are allowed. Changing this
4683
4679
  # parameter doesn't result in an outage and the change is
4684
4680
  # asynchronously applied as soon as possible.
4685
4681
  #
4686
- # Constraints: This parameter must be set to true when specifying a
4687
- # value for the EngineVersion parameter that is a different major
4688
- # version than the DB instance's current version.
4689
- #
4690
4682
  # @option params [Boolean] :auto_minor_version_upgrade
4691
4683
  # Indicates that minor version upgrades are applied automatically to the
4692
4684
  # DB instance during the maintenance window. Changing this parameter
@@ -4710,19 +4702,7 @@ module Aws::Neptune
4710
4702
  # Default: Uses existing setting
4711
4703
  #
4712
4704
  # @option params [String] :option_group_name
4713
- # Indicates that the DB instance should be associated with the specified
4714
- # option group. Changing this parameter doesn't result in an outage
4715
- # except in the following case and the change is applied during the next
4716
- # maintenance window unless the `ApplyImmediately` parameter is set to
4717
- # `true` for this request. If the parameter change results in an option
4718
- # group that enables OEM, this change can cause a brief (sub-second)
4719
- # period during which new connections are rejected but existing
4720
- # connections are not interrupted.
4721
- #
4722
- # Permanent options, such as the TDE option for Oracle Advanced Security
4723
- # TDE, can't be removed from an option group, and that option group
4724
- # can't be removed from a DB instance once it is associated with a DB
4725
- # instance
4705
+ # *(Not supported by Neptune)*
4726
4706
  #
4727
4707
  # @option params [String] :new_db_instance_identifier
4728
4708
  # The new DB instance identifier for the DB instance when renaming a DB
@@ -4821,15 +4801,20 @@ module Aws::Neptune
4821
4801
  # Default: `false`
4822
4802
  #
4823
4803
  # @option params [Boolean] :enable_performance_insights
4824
- # Not supported.
4804
+ # *(Not supported by Neptune)*
4825
4805
  #
4826
4806
  # @option params [String] :performance_insights_kms_key_id
4827
- # Not supported.
4807
+ # *(Not supported by Neptune)*
4828
4808
  #
4829
4809
  # @option params [Types::CloudwatchLogsExportConfiguration] :cloudwatch_logs_export_configuration
4830
4810
  # The configuration setting for the log types to be enabled for export
4831
4811
  # to CloudWatch Logs for a specific DB instance or DB cluster.
4832
4812
  #
4813
+ # @option params [Boolean] :deletion_protection
4814
+ # A value that indicates whether the DB instance has deletion protection
4815
+ # enabled. The database can't be deleted when deletion protection is
4816
+ # enabled. By default, deletion protection is disabled.
4817
+ #
4833
4818
  # @return [Types::ModifyDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4834
4819
  #
4835
4820
  # * {Types::ModifyDBInstanceResult#db_instance #db_instance} => Types::DBInstance
@@ -4876,6 +4861,7 @@ module Aws::Neptune
4876
4861
  # enable_log_types: ["String"],
4877
4862
  # disable_log_types: ["String"],
4878
4863
  # },
4864
+ # deletion_protection: false,
4879
4865
  # })
4880
4866
  #
4881
4867
  # @example Response structure
@@ -4977,6 +4963,7 @@ module Aws::Neptune
4977
4963
  # resp.db_instance.performance_insights_kms_key_id #=> String
4978
4964
  # resp.db_instance.enabled_cloudwatch_logs_exports #=> Array
4979
4965
  # resp.db_instance.enabled_cloudwatch_logs_exports[0] #=> String
4966
+ # resp.db_instance.deletion_protection #=> Boolean
4980
4967
  #
4981
4968
  # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/ModifyDBInstance AWS API Documentation
4982
4969
  #
@@ -5261,6 +5248,7 @@ module Aws::Neptune
5261
5248
  # resp.db_cluster.cluster_create_time #=> Time
5262
5249
  # resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
5263
5250
  # resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
5251
+ # resp.db_cluster.deletion_protection #=> Boolean
5264
5252
  #
5265
5253
  # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/PromoteReadReplicaDBCluster AWS API Documentation
5266
5254
  #
@@ -5406,6 +5394,7 @@ module Aws::Neptune
5406
5394
  # resp.db_instance.performance_insights_kms_key_id #=> String
5407
5395
  # resp.db_instance.enabled_cloudwatch_logs_exports #=> Array
5408
5396
  # resp.db_instance.enabled_cloudwatch_logs_exports[0] #=> String
5397
+ # resp.db_instance.deletion_protection #=> Boolean
5409
5398
  #
5410
5399
  # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/RebootDBInstance AWS API Documentation
5411
5400
  #
@@ -5731,7 +5720,7 @@ module Aws::Neptune
5731
5720
  # Not supported.
5732
5721
  #
5733
5722
  # @option params [String] :option_group_name
5734
- # The name of the option group to use for the restored DB cluster.
5723
+ # *(Not supported by Neptune)*
5735
5724
  #
5736
5725
  # @option params [Array<String>] :vpc_security_group_ids
5737
5726
  # A list of VPC security groups that the new DB cluster will belong to.
@@ -5780,6 +5769,11 @@ module Aws::Neptune
5780
5769
  #
5781
5770
  # ^
5782
5771
  #
5772
+ # @option params [Boolean] :deletion_protection
5773
+ # A value that indicates whether the DB cluster has deletion protection
5774
+ # enabled. The database can't be deleted when deletion protection is
5775
+ # enabled. By default, deletion protection is disabled.
5776
+ #
5783
5777
  # @return [Types::RestoreDBClusterFromSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5784
5778
  #
5785
5779
  # * {Types::RestoreDBClusterFromSnapshotResult#db_cluster #db_cluster} => Types::DBCluster
@@ -5807,6 +5801,7 @@ module Aws::Neptune
5807
5801
  # enable_iam_database_authentication: false,
5808
5802
  # enable_cloudwatch_logs_exports: ["String"],
5809
5803
  # db_cluster_parameter_group_name: "String",
5804
+ # deletion_protection: false,
5810
5805
  # })
5811
5806
  #
5812
5807
  # @example Response structure
@@ -5860,6 +5855,7 @@ module Aws::Neptune
5860
5855
  # resp.db_cluster.cluster_create_time #=> Time
5861
5856
  # resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
5862
5857
  # resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
5858
+ # resp.db_cluster.deletion_protection #=> Boolean
5863
5859
  #
5864
5860
  # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/RestoreDBClusterFromSnapshot AWS API Documentation
5865
5861
  #
@@ -5963,7 +5959,7 @@ module Aws::Neptune
5963
5959
  # Example: `mySubnetgroup`
5964
5960
  #
5965
5961
  # @option params [String] :option_group_name
5966
- # The name of the option group for the new DB cluster.
5962
+ # *(Not supported by Neptune)*
5967
5963
  #
5968
5964
  # @option params [Array<String>] :vpc_security_group_ids
5969
5965
  # A list of VPC security groups that the new DB cluster belongs to.
@@ -6020,6 +6016,11 @@ module Aws::Neptune
6020
6016
  #
6021
6017
  # ^
6022
6018
  #
6019
+ # @option params [Boolean] :deletion_protection
6020
+ # A value that indicates whether the DB cluster has deletion protection
6021
+ # enabled. The database can't be deleted when deletion protection is
6022
+ # enabled. By default, deletion protection is disabled.
6023
+ #
6023
6024
  # @return [Types::RestoreDBClusterToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6024
6025
  #
6025
6026
  # * {Types::RestoreDBClusterToPointInTimeResult#db_cluster #db_cluster} => Types::DBCluster
@@ -6046,6 +6047,7 @@ module Aws::Neptune
6046
6047
  # enable_iam_database_authentication: false,
6047
6048
  # enable_cloudwatch_logs_exports: ["String"],
6048
6049
  # db_cluster_parameter_group_name: "String",
6050
+ # deletion_protection: false,
6049
6051
  # })
6050
6052
  #
6051
6053
  # @example Response structure
@@ -6099,6 +6101,7 @@ module Aws::Neptune
6099
6101
  # resp.db_cluster.cluster_create_time #=> Time
6100
6102
  # resp.db_cluster.enabled_cloudwatch_logs_exports #=> Array
6101
6103
  # resp.db_cluster.enabled_cloudwatch_logs_exports[0] #=> String
6104
+ # resp.db_cluster.deletion_protection #=> Boolean
6102
6105
  #
6103
6106
  # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/RestoreDBClusterToPointInTime AWS API Documentation
6104
6107
  #
@@ -6122,7 +6125,7 @@ module Aws::Neptune
6122
6125
  params: params,
6123
6126
  config: config)
6124
6127
  context[:gem_name] = 'aws-sdk-neptune'
6125
- context[:gem_version] = '1.19.0'
6128
+ context[:gem_version] = '1.20.0'
6126
6129
  Seahorse::Client::Request.new(handlers, context)
6127
6130
  end
6128
6131
 
@@ -366,6 +366,7 @@ module Aws::Neptune
366
366
  CreateDBClusterMessage.add_member(:pre_signed_url, Shapes::ShapeRef.new(shape: String, location_name: "PreSignedUrl"))
367
367
  CreateDBClusterMessage.add_member(:enable_iam_database_authentication, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableIAMDatabaseAuthentication"))
368
368
  CreateDBClusterMessage.add_member(:enable_cloudwatch_logs_exports, Shapes::ShapeRef.new(shape: LogTypeList, location_name: "EnableCloudwatchLogsExports"))
369
+ CreateDBClusterMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
369
370
  CreateDBClusterMessage.struct_class = Types::CreateDBClusterMessage
370
371
 
371
372
  CreateDBClusterParameterGroupMessage.add_member(:db_cluster_parameter_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterParameterGroupName"))
@@ -430,6 +431,7 @@ module Aws::Neptune
430
431
  CreateDBInstanceMessage.add_member(:enable_performance_insights, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnablePerformanceInsights"))
431
432
  CreateDBInstanceMessage.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
432
433
  CreateDBInstanceMessage.add_member(:enable_cloudwatch_logs_exports, Shapes::ShapeRef.new(shape: LogTypeList, location_name: "EnableCloudwatchLogsExports"))
434
+ CreateDBInstanceMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
433
435
  CreateDBInstanceMessage.struct_class = Types::CreateDBInstanceMessage
434
436
 
435
437
  CreateDBInstanceResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
@@ -501,6 +503,7 @@ module Aws::Neptune
501
503
  DBCluster.add_member(:clone_group_id, Shapes::ShapeRef.new(shape: String, location_name: "CloneGroupId"))
502
504
  DBCluster.add_member(:cluster_create_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "ClusterCreateTime"))
503
505
  DBCluster.add_member(:enabled_cloudwatch_logs_exports, Shapes::ShapeRef.new(shape: LogTypeList, location_name: "EnabledCloudwatchLogsExports"))
506
+ DBCluster.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
504
507
  DBCluster.struct_class = Types::DBCluster
505
508
 
506
509
  DBClusterList.member = Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster")
@@ -658,6 +661,7 @@ module Aws::Neptune
658
661
  DBInstance.add_member(:performance_insights_enabled, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "PerformanceInsightsEnabled"))
659
662
  DBInstance.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
660
663
  DBInstance.add_member(:enabled_cloudwatch_logs_exports, Shapes::ShapeRef.new(shape: LogTypeList, location_name: "EnabledCloudwatchLogsExports"))
664
+ DBInstance.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
661
665
  DBInstance.struct_class = Types::DBInstance
662
666
 
663
667
  DBInstanceList.member = Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance")
@@ -994,6 +998,7 @@ module Aws::Neptune
994
998
  ModifyDBClusterMessage.add_member(:enable_iam_database_authentication, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableIAMDatabaseAuthentication"))
995
999
  ModifyDBClusterMessage.add_member(:cloudwatch_logs_export_configuration, Shapes::ShapeRef.new(shape: CloudwatchLogsExportConfiguration, location_name: "CloudwatchLogsExportConfiguration"))
996
1000
  ModifyDBClusterMessage.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
1001
+ ModifyDBClusterMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
997
1002
  ModifyDBClusterMessage.struct_class = Types::ModifyDBClusterMessage
998
1003
 
999
1004
  ModifyDBClusterParameterGroupMessage.add_member(:db_cluster_parameter_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterParameterGroupName"))
@@ -1048,6 +1053,7 @@ module Aws::Neptune
1048
1053
  ModifyDBInstanceMessage.add_member(:enable_performance_insights, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnablePerformanceInsights"))
1049
1054
  ModifyDBInstanceMessage.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
1050
1055
  ModifyDBInstanceMessage.add_member(:cloudwatch_logs_export_configuration, Shapes::ShapeRef.new(shape: CloudwatchLogsExportConfiguration, location_name: "CloudwatchLogsExportConfiguration"))
1056
+ ModifyDBInstanceMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
1051
1057
  ModifyDBInstanceMessage.struct_class = Types::ModifyDBInstanceMessage
1052
1058
 
1053
1059
  ModifyDBInstanceResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
@@ -1229,6 +1235,7 @@ module Aws::Neptune
1229
1235
  RestoreDBClusterFromSnapshotMessage.add_member(:enable_iam_database_authentication, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableIAMDatabaseAuthentication"))
1230
1236
  RestoreDBClusterFromSnapshotMessage.add_member(:enable_cloudwatch_logs_exports, Shapes::ShapeRef.new(shape: LogTypeList, location_name: "EnableCloudwatchLogsExports"))
1231
1237
  RestoreDBClusterFromSnapshotMessage.add_member(:db_cluster_parameter_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterParameterGroupName"))
1238
+ RestoreDBClusterFromSnapshotMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
1232
1239
  RestoreDBClusterFromSnapshotMessage.struct_class = Types::RestoreDBClusterFromSnapshotMessage
1233
1240
 
1234
1241
  RestoreDBClusterFromSnapshotResult.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
@@ -1248,6 +1255,7 @@ module Aws::Neptune
1248
1255
  RestoreDBClusterToPointInTimeMessage.add_member(:enable_iam_database_authentication, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableIAMDatabaseAuthentication"))
1249
1256
  RestoreDBClusterToPointInTimeMessage.add_member(:enable_cloudwatch_logs_exports, Shapes::ShapeRef.new(shape: LogTypeList, location_name: "EnableCloudwatchLogsExports"))
1250
1257
  RestoreDBClusterToPointInTimeMessage.add_member(:db_cluster_parameter_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterParameterGroupName"))
1258
+ RestoreDBClusterToPointInTimeMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
1251
1259
  RestoreDBClusterToPointInTimeMessage.struct_class = Types::RestoreDBClusterToPointInTimeMessage
1252
1260
 
1253
1261
  RestoreDBClusterToPointInTimeResult.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
@@ -381,10 +381,6 @@ module Aws::Neptune
381
381
  # key ID is the Amazon Resource Name (ARN), KMS key identifier, or the
382
382
  # KMS key alias for the KMS encryption key.
383
383
  #
384
- # If you copy an unencrypted DB cluster snapshot and specify a value
385
- # for the `KmsKeyId` parameter, Amazon Neptune encrypts the target DB
386
- # cluster snapshot using the specified KMS encryption key.
387
- #
388
384
  # If you copy an encrypted DB cluster snapshot from your AWS account,
389
385
  # you can specify a value for `KmsKeyId` to encrypt the copy with a
390
386
  # new KMS encryption key. If you don't specify a value for
@@ -397,6 +393,10 @@ module Aws::Neptune
397
393
  # KMS encryption keys are specific to the AWS Region that they are
398
394
  # created in, and you can't use encryption keys from one AWS Region
399
395
  # in another AWS Region.
396
+ #
397
+ # You cannot encrypt an unencrypted DB cluster snapshot when you copy
398
+ # it. If you try to copy an unencrypted DB cluster snapshot and
399
+ # specify a value for the KmsKeyId parameter, an error is returned.
400
400
  # @return [String]
401
401
  #
402
402
  # @!attribute [rw] pre_signed_url
@@ -551,6 +551,7 @@ module Aws::Neptune
551
551
  # pre_signed_url: "String",
552
552
  # enable_iam_database_authentication: false,
553
553
  # enable_cloudwatch_logs_exports: ["String"],
554
+ # deletion_protection: false,
554
555
  # }
555
556
  #
556
557
  # @!attribute [rw] availability_zones
@@ -572,8 +573,7 @@ module Aws::Neptune
572
573
  # @return [Integer]
573
574
  #
574
575
  # @!attribute [rw] character_set_name
575
- # A value that indicates that the DB cluster should be associated with
576
- # the specified CharacterSet.
576
+ # *(Not supported by Neptune)*
577
577
  # @return [String]
578
578
  #
579
579
  # @!attribute [rw] database_name
@@ -629,7 +629,8 @@ module Aws::Neptune
629
629
  # @return [String]
630
630
  #
631
631
  # @!attribute [rw] engine_version
632
- # The version number of the database engine to use.
632
+ # The version number of the database engine to use. Currently, setting
633
+ # this parameter has no effect.
633
634
  #
634
635
  # Example: `1.0.1`
635
636
  # @return [String]
@@ -661,12 +662,7 @@ module Aws::Neptune
661
662
  # @return [String]
662
663
  #
663
664
  # @!attribute [rw] option_group_name
664
- # A value that indicates that the DB cluster should be associated with
665
- # the specified option group.
666
- #
667
- # Permanent options can't be removed from an option group. The option
668
- # group can't be removed from a DB cluster once it is associated with
669
- # a DB cluster.
665
+ # *(Not supported by Neptune)*
670
666
  # @return [String]
671
667
  #
672
668
  # @!attribute [rw] preferred_backup_window
@@ -773,6 +769,12 @@ module Aws::Neptune
773
769
  # CloudWatch Logs.
774
770
  # @return [Array<String>]
775
771
  #
772
+ # @!attribute [rw] deletion_protection
773
+ # A value that indicates whether the DB cluster has deletion
774
+ # protection enabled. The database can't be deleted when deletion
775
+ # protection is enabled. By default, deletion protection is disabled.
776
+ # @return [Boolean]
777
+ #
776
778
  # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/CreateDBClusterMessage AWS API Documentation
777
779
  #
778
780
  class CreateDBClusterMessage < Struct.new(
@@ -798,7 +800,8 @@ module Aws::Neptune
798
800
  :kms_key_id,
799
801
  :pre_signed_url,
800
802
  :enable_iam_database_authentication,
801
- :enable_cloudwatch_logs_exports)
803
+ :enable_cloudwatch_logs_exports,
804
+ :deletion_protection)
802
805
  include Aws::Structure
803
806
  end
804
807
 
@@ -1006,6 +1009,7 @@ module Aws::Neptune
1006
1009
  # enable_performance_insights: false,
1007
1010
  # performance_insights_kms_key_id: "String",
1008
1011
  # enable_cloudwatch_logs_exports: ["String"],
1012
+ # deletion_protection: false,
1009
1013
  # }
1010
1014
  #
1011
1015
  # @!attribute [rw] db_name
@@ -1169,7 +1173,8 @@ module Aws::Neptune
1169
1173
  # @return [Boolean]
1170
1174
  #
1171
1175
  # @!attribute [rw] engine_version
1172
- # The version number of the database engine to use.
1176
+ # The version number of the database engine to use. Currently, setting
1177
+ # this parameter has no effect.
1173
1178
  # @return [String]
1174
1179
  #
1175
1180
  # @!attribute [rw] auto_minor_version_upgrade
@@ -1192,21 +1197,11 @@ module Aws::Neptune
1192
1197
  # @return [Integer]
1193
1198
  #
1194
1199
  # @!attribute [rw] option_group_name
1195
- # Indicates that the DB instance should be associated with the
1196
- # specified option group.
1197
- #
1198
- # Permanent options, such as the TDE option for Oracle Advanced
1199
- # Security TDE, can't be removed from an option group, and that
1200
- # option group can't be removed from a DB instance once it is
1201
- # associated with a DB instance
1200
+ # *(Not supported by Neptune)*
1202
1201
  # @return [String]
1203
1202
  #
1204
1203
  # @!attribute [rw] character_set_name
1205
- # Indicates that the DB instance should be associated with the
1206
- # specified CharacterSet.
1207
- #
1208
- # Not applicable. The character set is managed by the DB cluster. For
1209
- # more information, see CreateDBCluster.
1204
+ # *(Not supported by Neptune)*
1210
1205
  # @return [String]
1211
1206
  #
1212
1207
  # @!attribute [rw] publicly_accessible
@@ -1325,14 +1320,11 @@ module Aws::Neptune
1325
1320
  # @return [Boolean]
1326
1321
  #
1327
1322
  # @!attribute [rw] enable_performance_insights
1328
- # True to enable Performance Insights for the DB instance, and
1329
- # otherwise false.
1323
+ # *(Not supported by Neptune)*
1330
1324
  # @return [Boolean]
1331
1325
  #
1332
1326
  # @!attribute [rw] performance_insights_kms_key_id
1333
- # The AWS KMS key identifier for encryption of Performance Insights
1334
- # data. The KMS key ID is the Amazon Resource Name (ARN), KMS key
1335
- # identifier, or the KMS key alias for the KMS encryption key.
1327
+ # *(Not supported by Neptune)*
1336
1328
  # @return [String]
1337
1329
  #
1338
1330
  # @!attribute [rw] enable_cloudwatch_logs_exports
@@ -1340,6 +1332,17 @@ module Aws::Neptune
1340
1332
  # CloudWatch Logs.
1341
1333
  # @return [Array<String>]
1342
1334
  #
1335
+ # @!attribute [rw] deletion_protection
1336
+ # A value that indicates whether the DB instance has deletion
1337
+ # protection enabled. The database can't be deleted when deletion
1338
+ # protection is enabled. By default, deletion protection is disabled.
1339
+ #
1340
+ # You can enable or disable deletion protection for the DB cluster.
1341
+ # For more information, see CreateDBCluster. DB instances in a DB
1342
+ # cluster can be deleted even when deletion protection is enabled for
1343
+ # the DB cluster.
1344
+ # @return [Boolean]
1345
+ #
1343
1346
  # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/CreateDBInstanceMessage AWS API Documentation
1344
1347
  #
1345
1348
  class CreateDBInstanceMessage < Struct.new(
@@ -1384,7 +1387,8 @@ module Aws::Neptune
1384
1387
  :enable_iam_database_authentication,
1385
1388
  :enable_performance_insights,
1386
1389
  :performance_insights_kms_key_id,
1387
- :enable_cloudwatch_logs_exports)
1390
+ :enable_cloudwatch_logs_exports,
1391
+ :deletion_protection)
1388
1392
  include Aws::Structure
1389
1393
  end
1390
1394
 
@@ -1659,8 +1663,7 @@ module Aws::Neptune
1659
1663
  # @return [Integer]
1660
1664
  #
1661
1665
  # @!attribute [rw] character_set_name
1662
- # If present, specifies the name of the character set that this
1663
- # cluster is associated with.
1666
+ # *(Not supported by Neptune)*
1664
1667
  # @return [String]
1665
1668
  #
1666
1669
  # @!attribute [rw] database_name
@@ -1747,7 +1750,7 @@ module Aws::Neptune
1747
1750
  # @return [String]
1748
1751
  #
1749
1752
  # @!attribute [rw] db_cluster_option_group_memberships
1750
- # Provides the list of option group memberships for this DB cluster.
1753
+ # *(Not supported by Neptune)*
1751
1754
  # @return [Array<Types::DBClusterOptionGroupStatus>]
1752
1755
  #
1753
1756
  # @!attribute [rw] preferred_backup_window
@@ -1829,6 +1832,11 @@ module Aws::Neptune
1829
1832
  # CloudWatch Logs.
1830
1833
  # @return [Array<String>]
1831
1834
  #
1835
+ # @!attribute [rw] deletion_protection
1836
+ # Indicates if the DB cluster has deletion protection enabled. The
1837
+ # database can't be deleted when deletion protection is enabled.
1838
+ # @return [Boolean]
1839
+ #
1832
1840
  # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBCluster AWS API Documentation
1833
1841
  #
1834
1842
  class DBCluster < Struct.new(
@@ -1867,7 +1875,8 @@ module Aws::Neptune
1867
1875
  :iam_database_authentication_enabled,
1868
1876
  :clone_group_id,
1869
1877
  :cluster_create_time,
1870
- :enabled_cloudwatch_logs_exports)
1878
+ :enabled_cloudwatch_logs_exports,
1879
+ :deletion_protection)
1871
1880
  include Aws::Structure
1872
1881
  end
1873
1882
 
@@ -2287,14 +2296,11 @@ module Aws::Neptune
2287
2296
  # @return [String]
2288
2297
  #
2289
2298
  # @!attribute [rw] default_character_set
2290
- # The default character set for new instances of this engine version,
2291
- # if the `CharacterSetName` parameter of the CreateDBInstance API is
2292
- # not specified.
2299
+ # *(Not supported by Neptune)*
2293
2300
  # @return [Types::CharacterSet]
2294
2301
  #
2295
2302
  # @!attribute [rw] supported_character_sets
2296
- # A list of the character sets supported by this engine for the
2297
- # `CharacterSetName` parameter of the `CreateDBInstance` action.
2303
+ # *(Not supported by Neptune)*
2298
2304
  # @return [Array<Types::CharacterSet>]
2299
2305
  #
2300
2306
  # @!attribute [rw] valid_upgrade_target
@@ -2491,12 +2497,11 @@ module Aws::Neptune
2491
2497
  # @return [Integer]
2492
2498
  #
2493
2499
  # @!attribute [rw] option_group_memberships
2494
- # Provides the list of option group memberships for this DB instance.
2500
+ # *(Not supported by Neptune)*
2495
2501
  # @return [Array<Types::OptionGroupMembership>]
2496
2502
  #
2497
2503
  # @!attribute [rw] character_set_name
2498
- # If present, specifies the name of the character set that this
2499
- # instance is associated with.
2504
+ # *(Not supported by Neptune)*
2500
2505
  # @return [String]
2501
2506
  #
2502
2507
  # @!attribute [rw] secondary_availability_zone
@@ -2598,14 +2603,11 @@ module Aws::Neptune
2598
2603
  # @return [Boolean]
2599
2604
  #
2600
2605
  # @!attribute [rw] performance_insights_enabled
2601
- # True if Performance Insights is enabled for the DB instance, and
2602
- # otherwise false.
2606
+ # *(Not supported by Neptune)*
2603
2607
  # @return [Boolean]
2604
2608
  #
2605
2609
  # @!attribute [rw] performance_insights_kms_key_id
2606
- # The AWS KMS key identifier for encryption of Performance Insights
2607
- # data. The KMS key ID is the Amazon Resource Name (ARN), KMS key
2608
- # identifier, or the KMS key alias for the KMS encryption key.
2610
+ # *(Not supported by Neptune)*
2609
2611
  # @return [String]
2610
2612
  #
2611
2613
  # @!attribute [rw] enabled_cloudwatch_logs_exports
@@ -2613,6 +2615,11 @@ module Aws::Neptune
2613
2615
  # CloudWatch Logs.
2614
2616
  # @return [Array<String>]
2615
2617
  #
2618
+ # @!attribute [rw] deletion_protection
2619
+ # Indicates if the DB instance has deletion protection enabled. The
2620
+ # database can't be deleted when deletion protection is enabled.
2621
+ # @return [Boolean]
2622
+ #
2616
2623
  # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBInstance AWS API Documentation
2617
2624
  #
2618
2625
  class DBInstance < Struct.new(
@@ -2667,7 +2674,8 @@ module Aws::Neptune
2667
2674
  :iam_database_authentication_enabled,
2668
2675
  :performance_insights_enabled,
2669
2676
  :performance_insights_kms_key_id,
2670
- :enabled_cloudwatch_logs_exports)
2677
+ :enabled_cloudwatch_logs_exports,
2678
+ :deletion_protection)
2671
2679
  include Aws::Structure
2672
2680
  end
2673
2681
 
@@ -4824,6 +4832,7 @@ module Aws::Neptune
4824
4832
  # disable_log_types: ["String"],
4825
4833
  # },
4826
4834
  # engine_version: "String",
4835
+ # deletion_protection: false,
4827
4836
  # }
4828
4837
  #
4829
4838
  # @!attribute [rw] db_cluster_identifier
@@ -4909,18 +4918,7 @@ module Aws::Neptune
4909
4918
  # @return [String]
4910
4919
  #
4911
4920
  # @!attribute [rw] option_group_name
4912
- # A value that indicates that the DB cluster should be associated with
4913
- # the specified option group. Changing this parameter doesn't result
4914
- # in an outage except in the following case, and the change is applied
4915
- # during the next maintenance window unless the `ApplyImmediately`
4916
- # parameter is set to `true` for this request. If the parameter change
4917
- # results in an option group that enables OEM, this change can cause a
4918
- # brief (sub-second) period during which new connections are rejected
4919
- # but existing connections are not interrupted.
4920
- #
4921
- # Permanent options can't be removed from an option group. The option
4922
- # group can't be removed from a DB cluster once it is associated with
4923
- # a DB cluster.
4921
+ # *(Not supported by Neptune)*
4924
4922
  # @return [String]
4925
4923
  #
4926
4924
  # @!attribute [rw] preferred_backup_window
@@ -4970,15 +4968,20 @@ module Aws::Neptune
4970
4968
  # @return [Types::CloudwatchLogsExportConfiguration]
4971
4969
  #
4972
4970
  # @!attribute [rw] engine_version
4973
- # The version number of the database engine to which you want to
4974
- # upgrade. Changing this parameter results in an outage. The change is
4975
- # applied during the next maintenance window unless the
4976
- # ApplyImmediately parameter is set to true.
4971
+ # The version number of the database engine. Currently, setting this
4972
+ # parameter has no effect. To upgrade your database engine to the most
4973
+ # recent release, use the ApplyPendingMaintenanceAction API.
4977
4974
  #
4978
4975
  # For a list of valid engine versions, see CreateDBInstance, or call
4979
4976
  # DescribeDBEngineVersions.
4980
4977
  # @return [String]
4981
4978
  #
4979
+ # @!attribute [rw] deletion_protection
4980
+ # A value that indicates whether the DB cluster has deletion
4981
+ # protection enabled. The database can't be deleted when deletion
4982
+ # protection is enabled. By default, deletion protection is disabled.
4983
+ # @return [Boolean]
4984
+ #
4982
4985
  # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/ModifyDBClusterMessage AWS API Documentation
4983
4986
  #
4984
4987
  class ModifyDBClusterMessage < Struct.new(
@@ -4995,7 +4998,8 @@ module Aws::Neptune
4995
4998
  :preferred_maintenance_window,
4996
4999
  :enable_iam_database_authentication,
4997
5000
  :cloudwatch_logs_export_configuration,
4998
- :engine_version)
5001
+ :engine_version,
5002
+ :deletion_protection)
4999
5003
  include Aws::Structure
5000
5004
  end
5001
5005
 
@@ -5167,6 +5171,7 @@ module Aws::Neptune
5167
5171
  # enable_log_types: ["String"],
5168
5172
  # disable_log_types: ["String"],
5169
5173
  # },
5174
+ # deletion_protection: false,
5170
5175
  # }
5171
5176
  #
5172
5177
  # @!attribute [rw] db_instance_identifier
@@ -5328,26 +5333,16 @@ module Aws::Neptune
5328
5333
  # @return [Boolean]
5329
5334
  #
5330
5335
  # @!attribute [rw] engine_version
5331
- # The version number of the database engine to upgrade to. Changing
5332
- # this parameter results in an outage and the change is applied during
5333
- # the next maintenance window unless the `ApplyImmediately` parameter
5334
- # is set to `true` for this request.
5335
- #
5336
- # For major version upgrades, if a nondefault DB parameter group is
5337
- # currently in use, a new DB parameter group in the DB parameter group
5338
- # family for the new engine version must be specified. The new DB
5339
- # parameter group can be the default for that DB parameter group
5340
- # family.
5336
+ # The version number of the database engine to upgrade to. Currently,
5337
+ # setting this parameter has no effect. To upgrade your database
5338
+ # engine to the most recent release, use the
5339
+ # ApplyPendingMaintenanceAction API.
5341
5340
  # @return [String]
5342
5341
  #
5343
5342
  # @!attribute [rw] allow_major_version_upgrade
5344
5343
  # Indicates that major version upgrades are allowed. Changing this
5345
5344
  # parameter doesn't result in an outage and the change is
5346
5345
  # asynchronously applied as soon as possible.
5347
- #
5348
- # Constraints: This parameter must be set to true when specifying a
5349
- # value for the EngineVersion parameter that is a different major
5350
- # version than the DB instance's current version.
5351
5346
  # @return [Boolean]
5352
5347
  #
5353
5348
  # @!attribute [rw] auto_minor_version_upgrade
@@ -5376,19 +5371,7 @@ module Aws::Neptune
5376
5371
  # @return [Integer]
5377
5372
  #
5378
5373
  # @!attribute [rw] option_group_name
5379
- # Indicates that the DB instance should be associated with the
5380
- # specified option group. Changing this parameter doesn't result in
5381
- # an outage except in the following case and the change is applied
5382
- # during the next maintenance window unless the `ApplyImmediately`
5383
- # parameter is set to `true` for this request. If the parameter change
5384
- # results in an option group that enables OEM, this change can cause a
5385
- # brief (sub-second) period during which new connections are rejected
5386
- # but existing connections are not interrupted.
5387
- #
5388
- # Permanent options, such as the TDE option for Oracle Advanced
5389
- # Security TDE, can't be removed from an option group, and that
5390
- # option group can't be removed from a DB instance once it is
5391
- # associated with a DB instance
5374
+ # *(Not supported by Neptune)*
5392
5375
  # @return [String]
5393
5376
  #
5394
5377
  # @!attribute [rw] new_db_instance_identifier
@@ -5503,11 +5486,11 @@ module Aws::Neptune
5503
5486
  # @return [Boolean]
5504
5487
  #
5505
5488
  # @!attribute [rw] enable_performance_insights
5506
- # Not supported.
5489
+ # *(Not supported by Neptune)*
5507
5490
  # @return [Boolean]
5508
5491
  #
5509
5492
  # @!attribute [rw] performance_insights_kms_key_id
5510
- # Not supported.
5493
+ # *(Not supported by Neptune)*
5511
5494
  # @return [String]
5512
5495
  #
5513
5496
  # @!attribute [rw] cloudwatch_logs_export_configuration
@@ -5515,6 +5498,12 @@ module Aws::Neptune
5515
5498
  # to CloudWatch Logs for a specific DB instance or DB cluster.
5516
5499
  # @return [Types::CloudwatchLogsExportConfiguration]
5517
5500
  #
5501
+ # @!attribute [rw] deletion_protection
5502
+ # A value that indicates whether the DB instance has deletion
5503
+ # protection enabled. The database can't be deleted when deletion
5504
+ # protection is enabled. By default, deletion protection is disabled.
5505
+ # @return [Boolean]
5506
+ #
5518
5507
  # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/ModifyDBInstanceMessage AWS API Documentation
5519
5508
  #
5520
5509
  class ModifyDBInstanceMessage < Struct.new(
@@ -5553,7 +5542,8 @@ module Aws::Neptune
5553
5542
  :enable_iam_database_authentication,
5554
5543
  :enable_performance_insights,
5555
5544
  :performance_insights_kms_key_id,
5556
- :cloudwatch_logs_export_configuration)
5545
+ :cloudwatch_logs_export_configuration,
5546
+ :deletion_protection)
5557
5547
  include Aws::Structure
5558
5548
  end
5559
5549
 
@@ -5823,8 +5813,7 @@ module Aws::Neptune
5823
5813
  # @return [Boolean]
5824
5814
  #
5825
5815
  # @!attribute [rw] supports_performance_insights
5826
- # True if a DB instance supports Performance Insights, otherwise
5827
- # false.
5816
+ # *(Not supported by Neptune)*
5828
5817
  # @return [Boolean]
5829
5818
  #
5830
5819
  # @!attribute [rw] min_storage_size
@@ -6133,7 +6122,8 @@ module Aws::Neptune
6133
6122
  # @return [String]
6134
6123
  #
6135
6124
  # @!attribute [rw] pending_cloudwatch_logs_exports
6136
- # Specifies the CloudWatch logs to be exported.
6125
+ # This `PendingCloudwatchLogsExports` structure specifies pending
6126
+ # changes to which CloudWatch logs are enabled and which are disabled.
6137
6127
  # @return [Types::PendingCloudwatchLogsExports]
6138
6128
  #
6139
6129
  # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/PendingModifiedValues AWS API Documentation
@@ -6508,6 +6498,7 @@ module Aws::Neptune
6508
6498
  # enable_iam_database_authentication: false,
6509
6499
  # enable_cloudwatch_logs_exports: ["String"],
6510
6500
  # db_cluster_parameter_group_name: "String",
6501
+ # deletion_protection: false,
6511
6502
  # }
6512
6503
  #
6513
6504
  # @!attribute [rw] availability_zones
@@ -6579,7 +6570,7 @@ module Aws::Neptune
6579
6570
  # @return [String]
6580
6571
  #
6581
6572
  # @!attribute [rw] option_group_name
6582
- # The name of the option group to use for the restored DB cluster.
6573
+ # *(Not supported by Neptune)*
6583
6574
  # @return [String]
6584
6575
  #
6585
6576
  # @!attribute [rw] vpc_security_group_ids
@@ -6637,6 +6628,12 @@ module Aws::Neptune
6637
6628
  # ^
6638
6629
  # @return [String]
6639
6630
  #
6631
+ # @!attribute [rw] deletion_protection
6632
+ # A value that indicates whether the DB cluster has deletion
6633
+ # protection enabled. The database can't be deleted when deletion
6634
+ # protection is enabled. By default, deletion protection is disabled.
6635
+ # @return [Boolean]
6636
+ #
6640
6637
  # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/RestoreDBClusterFromSnapshotMessage AWS API Documentation
6641
6638
  #
6642
6639
  class RestoreDBClusterFromSnapshotMessage < Struct.new(
@@ -6654,7 +6651,8 @@ module Aws::Neptune
6654
6651
  :kms_key_id,
6655
6652
  :enable_iam_database_authentication,
6656
6653
  :enable_cloudwatch_logs_exports,
6657
- :db_cluster_parameter_group_name)
6654
+ :db_cluster_parameter_group_name,
6655
+ :deletion_protection)
6658
6656
  include Aws::Structure
6659
6657
  end
6660
6658
 
@@ -6695,6 +6693,7 @@ module Aws::Neptune
6695
6693
  # enable_iam_database_authentication: false,
6696
6694
  # enable_cloudwatch_logs_exports: ["String"],
6697
6695
  # db_cluster_parameter_group_name: "String",
6696
+ # deletion_protection: false,
6698
6697
  # }
6699
6698
  #
6700
6699
  # @!attribute [rw] db_cluster_identifier
@@ -6781,7 +6780,7 @@ module Aws::Neptune
6781
6780
  # @return [String]
6782
6781
  #
6783
6782
  # @!attribute [rw] option_group_name
6784
- # The name of the option group for the new DB cluster.
6783
+ # *(Not supported by Neptune)*
6785
6784
  # @return [String]
6786
6785
  #
6787
6786
  # @!attribute [rw] vpc_security_group_ids
@@ -6845,6 +6844,12 @@ module Aws::Neptune
6845
6844
  # ^
6846
6845
  # @return [String]
6847
6846
  #
6847
+ # @!attribute [rw] deletion_protection
6848
+ # A value that indicates whether the DB cluster has deletion
6849
+ # protection enabled. The database can't be deleted when deletion
6850
+ # protection is enabled. By default, deletion protection is disabled.
6851
+ # @return [Boolean]
6852
+ #
6848
6853
  # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/RestoreDBClusterToPointInTimeMessage AWS API Documentation
6849
6854
  #
6850
6855
  class RestoreDBClusterToPointInTimeMessage < Struct.new(
@@ -6861,7 +6866,8 @@ module Aws::Neptune
6861
6866
  :kms_key_id,
6862
6867
  :enable_iam_database_authentication,
6863
6868
  :enable_cloudwatch_logs_exports,
6864
- :db_cluster_parameter_group_name)
6869
+ :db_cluster_parameter_group_name,
6870
+ :deletion_protection)
6865
6871
  include Aws::Structure
6866
6872
  end
6867
6873
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-neptune
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.19.0
4
+ version: 1.20.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-10-23 00:00:00.000000000 Z
11
+ date: 2020-01-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core