aws-sdk-neptune 1.34.0 → 1.35.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-neptune.rb +1 -1
- data/lib/aws-sdk-neptune/client.rb +170 -141
- data/lib/aws-sdk-neptune/client_api.rb +36 -0
- data/lib/aws-sdk-neptune/types.rb +205 -205
- metadata +5 -6
@@ -393,6 +393,7 @@ module Aws::Neptune
|
|
393
393
|
CreateDBClusterMessage.add_member(:availability_zones, Shapes::ShapeRef.new(shape: AvailabilityZones, location_name: "AvailabilityZones"))
|
394
394
|
CreateDBClusterMessage.add_member(:backup_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "BackupRetentionPeriod"))
|
395
395
|
CreateDBClusterMessage.add_member(:character_set_name, Shapes::ShapeRef.new(shape: String, location_name: "CharacterSetName"))
|
396
|
+
CreateDBClusterMessage.add_member(:copy_tags_to_snapshot, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CopyTagsToSnapshot"))
|
396
397
|
CreateDBClusterMessage.add_member(:database_name, Shapes::ShapeRef.new(shape: String, location_name: "DatabaseName"))
|
397
398
|
CreateDBClusterMessage.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterIdentifier"))
|
398
399
|
CreateDBClusterMessage.add_member(:db_cluster_parameter_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterParameterGroupName"))
|
@@ -550,8 +551,11 @@ module Aws::Neptune
|
|
550
551
|
DBCluster.add_member(:iam_database_authentication_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "IAMDatabaseAuthenticationEnabled"))
|
551
552
|
DBCluster.add_member(:clone_group_id, Shapes::ShapeRef.new(shape: String, location_name: "CloneGroupId"))
|
552
553
|
DBCluster.add_member(:cluster_create_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "ClusterCreateTime"))
|
554
|
+
DBCluster.add_member(:copy_tags_to_snapshot, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CopyTagsToSnapshot"))
|
553
555
|
DBCluster.add_member(:enabled_cloudwatch_logs_exports, Shapes::ShapeRef.new(shape: LogTypeList, location_name: "EnabledCloudwatchLogsExports"))
|
554
556
|
DBCluster.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
557
|
+
DBCluster.add_member(:cross_account_clone, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CrossAccountClone"))
|
558
|
+
DBCluster.add_member(:automatic_restart_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "AutomaticRestartTime"))
|
555
559
|
DBCluster.struct_class = Types::DBCluster
|
556
560
|
|
557
561
|
DBClusterAlreadyExistsFault.struct_class = Types::DBClusterAlreadyExistsFault
|
@@ -1198,6 +1202,7 @@ module Aws::Neptune
|
|
1198
1202
|
ModifyDBClusterMessage.add_member(:cloudwatch_logs_export_configuration, Shapes::ShapeRef.new(shape: CloudwatchLogsExportConfiguration, location_name: "CloudwatchLogsExportConfiguration"))
|
1199
1203
|
ModifyDBClusterMessage.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
|
1200
1204
|
ModifyDBClusterMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
1205
|
+
ModifyDBClusterMessage.add_member(:copy_tags_to_snapshot, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CopyTagsToSnapshot"))
|
1201
1206
|
ModifyDBClusterMessage.struct_class = Types::ModifyDBClusterMessage
|
1202
1207
|
|
1203
1208
|
ModifyDBClusterParameterGroupMessage.add_member(:db_cluster_parameter_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterParameterGroupName"))
|
@@ -1442,6 +1447,7 @@ module Aws::Neptune
|
|
1442
1447
|
RestoreDBClusterFromSnapshotMessage.add_member(:enable_cloudwatch_logs_exports, Shapes::ShapeRef.new(shape: LogTypeList, location_name: "EnableCloudwatchLogsExports"))
|
1443
1448
|
RestoreDBClusterFromSnapshotMessage.add_member(:db_cluster_parameter_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterParameterGroupName"))
|
1444
1449
|
RestoreDBClusterFromSnapshotMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
1450
|
+
RestoreDBClusterFromSnapshotMessage.add_member(:copy_tags_to_snapshot, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CopyTagsToSnapshot"))
|
1445
1451
|
RestoreDBClusterFromSnapshotMessage.struct_class = Types::RestoreDBClusterFromSnapshotMessage
|
1446
1452
|
|
1447
1453
|
RestoreDBClusterFromSnapshotResult.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
|
@@ -1891,6 +1897,12 @@ module Aws::Neptune
|
|
1891
1897
|
o.input = Shapes::ShapeRef.new(shape: DescribeDBClusterParameterGroupsMessage)
|
1892
1898
|
o.output = Shapes::ShapeRef.new(shape: DBClusterParameterGroupsMessage)
|
1893
1899
|
o.errors << Shapes::ShapeRef.new(shape: DBParameterGroupNotFoundFault)
|
1900
|
+
o[:pager] = Aws::Pager.new(
|
1901
|
+
limit_key: "max_records",
|
1902
|
+
tokens: {
|
1903
|
+
"marker" => "marker"
|
1904
|
+
}
|
1905
|
+
)
|
1894
1906
|
end)
|
1895
1907
|
|
1896
1908
|
api.add_operation(:describe_db_cluster_parameters, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1900,6 +1912,12 @@ module Aws::Neptune
|
|
1900
1912
|
o.input = Shapes::ShapeRef.new(shape: DescribeDBClusterParametersMessage)
|
1901
1913
|
o.output = Shapes::ShapeRef.new(shape: DBClusterParameterGroupDetails)
|
1902
1914
|
o.errors << Shapes::ShapeRef.new(shape: DBParameterGroupNotFoundFault)
|
1915
|
+
o[:pager] = Aws::Pager.new(
|
1916
|
+
limit_key: "max_records",
|
1917
|
+
tokens: {
|
1918
|
+
"marker" => "marker"
|
1919
|
+
}
|
1920
|
+
)
|
1903
1921
|
end)
|
1904
1922
|
|
1905
1923
|
api.add_operation(:describe_db_cluster_snapshot_attributes, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1918,6 +1936,12 @@ module Aws::Neptune
|
|
1918
1936
|
o.input = Shapes::ShapeRef.new(shape: DescribeDBClusterSnapshotsMessage)
|
1919
1937
|
o.output = Shapes::ShapeRef.new(shape: DBClusterSnapshotMessage)
|
1920
1938
|
o.errors << Shapes::ShapeRef.new(shape: DBClusterSnapshotNotFoundFault)
|
1939
|
+
o[:pager] = Aws::Pager.new(
|
1940
|
+
limit_key: "max_records",
|
1941
|
+
tokens: {
|
1942
|
+
"marker" => "marker"
|
1943
|
+
}
|
1944
|
+
)
|
1921
1945
|
end)
|
1922
1946
|
|
1923
1947
|
api.add_operation(:describe_db_clusters, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1927,6 +1951,12 @@ module Aws::Neptune
|
|
1927
1951
|
o.input = Shapes::ShapeRef.new(shape: DescribeDBClustersMessage)
|
1928
1952
|
o.output = Shapes::ShapeRef.new(shape: DBClusterMessage)
|
1929
1953
|
o.errors << Shapes::ShapeRef.new(shape: DBClusterNotFoundFault)
|
1954
|
+
o[:pager] = Aws::Pager.new(
|
1955
|
+
limit_key: "max_records",
|
1956
|
+
tokens: {
|
1957
|
+
"marker" => "marker"
|
1958
|
+
}
|
1959
|
+
)
|
1930
1960
|
end)
|
1931
1961
|
|
1932
1962
|
api.add_operation(:describe_db_engine_versions, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2083,6 +2113,12 @@ module Aws::Neptune
|
|
2083
2113
|
o.input = Shapes::ShapeRef.new(shape: DescribePendingMaintenanceActionsMessage)
|
2084
2114
|
o.output = Shapes::ShapeRef.new(shape: PendingMaintenanceActionsMessage)
|
2085
2115
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundFault)
|
2116
|
+
o[:pager] = Aws::Pager.new(
|
2117
|
+
limit_key: "max_records",
|
2118
|
+
tokens: {
|
2119
|
+
"marker" => "marker"
|
2120
|
+
}
|
2121
|
+
)
|
2086
2122
|
end)
|
2087
2123
|
|
2088
2124
|
api.add_operation(:describe_valid_db_instance_modifications, Seahorse::Model::Operation.new.tap do |o|
|
@@ -301,12 +301,12 @@ module Aws::Neptune
|
|
301
301
|
#
|
302
302
|
# * Must specify a valid DB cluster parameter group.
|
303
303
|
#
|
304
|
-
# * If the source DB cluster parameter group is in the same
|
305
|
-
# as the copy, specify a valid DB parameter group identifier,
|
306
|
-
# example `my-db-cluster-param-group`, or a valid ARN.
|
304
|
+
# * If the source DB cluster parameter group is in the same Amazon
|
305
|
+
# Region as the copy, specify a valid DB parameter group identifier,
|
306
|
+
# for example `my-db-cluster-param-group`, or a valid ARN.
|
307
307
|
#
|
308
|
-
# * If the source DB parameter group is in a different
|
309
|
-
# the copy, specify a valid DB cluster parameter group ARN, for
|
308
|
+
# * If the source DB parameter group is in a different Amazon Region
|
309
|
+
# than the copy, specify a valid DB cluster parameter group ARN, for
|
310
310
|
# example
|
311
311
|
# `arn:aws:rds:us-east-1:123456789012:cluster-pg:custom-cluster-group1`.
|
312
312
|
#
|
@@ -388,8 +388,6 @@ module Aws::Neptune
|
|
388
388
|
# The identifier of the DB cluster snapshot to copy. This parameter is
|
389
389
|
# not case-sensitive.
|
390
390
|
#
|
391
|
-
# You can't copy from one AWS Region to another.
|
392
|
-
#
|
393
391
|
# Constraints:
|
394
392
|
#
|
395
393
|
# * Must specify a valid system snapshot in the "available" state.
|
@@ -415,22 +413,23 @@ module Aws::Neptune
|
|
415
413
|
# @return [String]
|
416
414
|
#
|
417
415
|
# @!attribute [rw] kms_key_id
|
418
|
-
# The
|
419
|
-
# key ID is the Amazon Resource Name (ARN), KMS key
|
420
|
-
# KMS key alias for the KMS encryption key.
|
416
|
+
# The Amazon Amazon KMS key ID for an encrypted DB cluster snapshot.
|
417
|
+
# The KMS key ID is the Amazon Resource Name (ARN), KMS key
|
418
|
+
# identifier, or the KMS key alias for the KMS encryption key.
|
421
419
|
#
|
422
|
-
# If you copy an encrypted DB cluster snapshot from your
|
423
|
-
# you can specify a value for `KmsKeyId` to encrypt the copy
|
424
|
-
# new KMS encryption key. If you don't specify a value for
|
420
|
+
# If you copy an encrypted DB cluster snapshot from your Amazon
|
421
|
+
# account, you can specify a value for `KmsKeyId` to encrypt the copy
|
422
|
+
# with a new KMS encryption key. If you don't specify a value for
|
425
423
|
# `KmsKeyId`, then the copy of the DB cluster snapshot is encrypted
|
426
424
|
# with the same KMS key as the source DB cluster snapshot.
|
427
425
|
#
|
428
426
|
# If you copy an encrypted DB cluster snapshot that is shared from
|
429
|
-
# another
|
427
|
+
# another Amazon account, then you must specify a value for
|
428
|
+
# `KmsKeyId`.
|
430
429
|
#
|
431
|
-
# KMS encryption keys are specific to the
|
432
|
-
# created in, and you can't use encryption keys from one
|
433
|
-
# in another
|
430
|
+
# KMS encryption keys are specific to the Amazon Region that they are
|
431
|
+
# created in, and you can't use encryption keys from one Amazon
|
432
|
+
# Region in another Amazon Region.
|
434
433
|
#
|
435
434
|
# You cannot encrypt an unencrypted DB cluster snapshot when you copy
|
436
435
|
# it. If you try to copy an unencrypted DB cluster snapshot and
|
@@ -718,6 +717,7 @@ module Aws::Neptune
|
|
718
717
|
# availability_zones: ["String"],
|
719
718
|
# backup_retention_period: 1,
|
720
719
|
# character_set_name: "String",
|
720
|
+
# copy_tags_to_snapshot: false,
|
721
721
|
# database_name: "String",
|
722
722
|
# db_cluster_identifier: "String", # required
|
723
723
|
# db_cluster_parameter_group_name: "String",
|
@@ -769,6 +769,11 @@ module Aws::Neptune
|
|
769
769
|
# *(Not supported by Neptune)*
|
770
770
|
# @return [String]
|
771
771
|
#
|
772
|
+
# @!attribute [rw] copy_tags_to_snapshot
|
773
|
+
# *If set to `true`, tags are copied to any snapshot of the DB cluster
|
774
|
+
# that is created.*
|
775
|
+
# @return [Boolean]
|
776
|
+
#
|
772
777
|
# @!attribute [rw] database_name
|
773
778
|
# The name for your database of up to 64 alpha-numeric characters. If
|
774
779
|
# you do not provide a name, Amazon Neptune will not create a database
|
@@ -836,22 +841,11 @@ module Aws::Neptune
|
|
836
841
|
# @return [Integer]
|
837
842
|
#
|
838
843
|
# @!attribute [rw] master_username
|
839
|
-
#
|
840
|
-
#
|
841
|
-
# Constraints:
|
842
|
-
#
|
843
|
-
# * Must be 1 to 16 letters or numbers.
|
844
|
-
#
|
845
|
-
# * First character must be a letter.
|
846
|
-
#
|
847
|
-
# * Cannot be a reserved word for the chosen database engine.
|
844
|
+
# Not supported by Neptune.
|
848
845
|
# @return [String]
|
849
846
|
#
|
850
847
|
# @!attribute [rw] master_user_password
|
851
|
-
#
|
852
|
-
# any printable ASCII character except "/", """, or "@".
|
853
|
-
#
|
854
|
-
# Constraints: Must contain from 8 to 41 characters.
|
848
|
+
# Not supported by Neptune.
|
855
849
|
# @return [String]
|
856
850
|
#
|
857
851
|
# @!attribute [rw] option_group_name
|
@@ -864,9 +858,9 @@ module Aws::Neptune
|
|
864
858
|
# parameter.
|
865
859
|
#
|
866
860
|
# The default is a 30-minute window selected at random from an 8-hour
|
867
|
-
# block of time for each
|
868
|
-
# see [ Adjusting the Preferred Maintenance Window][1] in
|
869
|
-
# Neptune User Guide.*
|
861
|
+
# block of time for each Amazon Region. To see the time blocks
|
862
|
+
# available, see [ Adjusting the Preferred Maintenance Window][1] in
|
863
|
+
# the *Amazon Neptune User Guide.*
|
870
864
|
#
|
871
865
|
# Constraints:
|
872
866
|
#
|
@@ -890,8 +884,8 @@ module Aws::Neptune
|
|
890
884
|
# Format: `ddd:hh24:mi-ddd:hh24:mi`
|
891
885
|
#
|
892
886
|
# The default is a 30-minute window selected at random from an 8-hour
|
893
|
-
# block of time for each
|
894
|
-
# week. To see the time blocks available, see [ Adjusting the
|
887
|
+
# block of time for each Amazon Region, occurring on a random day of
|
888
|
+
# the week. To see the time blocks available, see [ Adjusting the
|
895
889
|
# Preferred Maintenance Window][1] in the *Amazon Neptune User Guide.*
|
896
890
|
#
|
897
891
|
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
|
@@ -917,13 +911,13 @@ module Aws::Neptune
|
|
917
911
|
# @return [Boolean]
|
918
912
|
#
|
919
913
|
# @!attribute [rw] kms_key_id
|
920
|
-
# The
|
914
|
+
# The Amazon KMS key identifier for an encrypted DB cluster.
|
921
915
|
#
|
922
916
|
# The KMS key identifier is the Amazon Resource Name (ARN) for the KMS
|
923
|
-
# encryption key. If you are creating a DB cluster with the same
|
924
|
-
# account that owns the KMS encryption key used to encrypt the
|
925
|
-
# cluster, then you can use the KMS key alias instead of the
|
926
|
-
# the KMS encryption key.
|
917
|
+
# encryption key. If you are creating a DB cluster with the same
|
918
|
+
# Amazon account that owns the KMS encryption key used to encrypt the
|
919
|
+
# new DB cluster, then you can use the KMS key alias instead of the
|
920
|
+
# ARN for the KMS encryption key.
|
927
921
|
#
|
928
922
|
# If an encryption key is not specified in `KmsKeyId`\:
|
929
923
|
#
|
@@ -936,14 +930,14 @@ module Aws::Neptune
|
|
936
930
|
# `ReplicationSourceIdentifier` is not specified, then Amazon
|
937
931
|
# Neptune will use your default encryption key.
|
938
932
|
#
|
939
|
-
#
|
940
|
-
# Your
|
941
|
-
# Region.
|
933
|
+
# Amazon KMS creates the default encryption key for your Amazon
|
934
|
+
# account. Your Amazon account has a different default encryption key
|
935
|
+
# for each Amazon Region.
|
942
936
|
#
|
943
937
|
# If you create a Read Replica of an encrypted DB cluster in another
|
944
|
-
#
|
945
|
-
# the destination
|
946
|
-
# Replica in that
|
938
|
+
# Amazon Region, you must set `KmsKeyId` to a KMS key ID that is valid
|
939
|
+
# in the destination Amazon Region. This key is used to encrypt the
|
940
|
+
# Read Replica in that Amazon Region.
|
947
941
|
# @return [String]
|
948
942
|
#
|
949
943
|
# @!attribute [rw] pre_signed_url
|
@@ -951,7 +945,11 @@ module Aws::Neptune
|
|
951
945
|
# @return [String]
|
952
946
|
#
|
953
947
|
# @!attribute [rw] enable_iam_database_authentication
|
954
|
-
#
|
948
|
+
# If set to `true`, enables Amazon Identity and Access Management
|
949
|
+
# (IAM) authentication for the entire DB cluster (this cannot be set
|
950
|
+
# at an instance level).
|
951
|
+
#
|
952
|
+
# Default: `false`.
|
955
953
|
# @return [Boolean]
|
956
954
|
#
|
957
955
|
# @!attribute [rw] enable_cloudwatch_logs_exports
|
@@ -976,6 +974,7 @@ module Aws::Neptune
|
|
976
974
|
:availability_zones,
|
977
975
|
:backup_retention_period,
|
978
976
|
:character_set_name,
|
977
|
+
:copy_tags_to_snapshot,
|
979
978
|
:database_name,
|
980
979
|
:db_cluster_identifier,
|
981
980
|
:db_cluster_parameter_group_name,
|
@@ -1234,20 +1233,13 @@ module Aws::Neptune
|
|
1234
1233
|
# @return [String]
|
1235
1234
|
#
|
1236
1235
|
# @!attribute [rw] allocated_storage
|
1237
|
-
#
|
1238
|
-
# instance.
|
1239
|
-
#
|
1240
|
-
# Type: Integer
|
1241
|
-
#
|
1242
|
-
# Not applicable. Neptune cluster volumes automatically grow as the
|
1243
|
-
# amount of data in your database increases, though you are only
|
1244
|
-
# charged for the space that you use in a Neptune cluster volume.
|
1236
|
+
# Not supported by Neptune.
|
1245
1237
|
# @return [Integer]
|
1246
1238
|
#
|
1247
1239
|
# @!attribute [rw] db_instance_class
|
1248
1240
|
# The compute and memory capacity of the DB instance, for example,
|
1249
|
-
# `db.m4.large`. Not all DB instance classes are available in all
|
1250
|
-
# Regions.
|
1241
|
+
# `db.m4.large`. Not all DB instance classes are available in all
|
1242
|
+
# Amazon Regions.
|
1251
1243
|
# @return [String]
|
1252
1244
|
#
|
1253
1245
|
# @!attribute [rw] engine
|
@@ -1257,14 +1249,11 @@ module Aws::Neptune
|
|
1257
1249
|
# @return [String]
|
1258
1250
|
#
|
1259
1251
|
# @!attribute [rw] master_username
|
1260
|
-
#
|
1252
|
+
# Not supported by Neptune.
|
1261
1253
|
# @return [String]
|
1262
1254
|
#
|
1263
1255
|
# @!attribute [rw] master_user_password
|
1264
|
-
#
|
1265
|
-
# printable ASCII character except "/", """, or "@".
|
1266
|
-
#
|
1267
|
-
# Not used.
|
1256
|
+
# Not supported by Neptune.
|
1268
1257
|
# @return [String]
|
1269
1258
|
#
|
1270
1259
|
# @!attribute [rw] db_security_groups
|
@@ -1289,13 +1278,13 @@ module Aws::Neptune
|
|
1289
1278
|
# The EC2 Availability Zone that the DB instance is created in
|
1290
1279
|
#
|
1291
1280
|
# Default: A random, system-chosen Availability Zone in the
|
1292
|
-
# endpoint's
|
1281
|
+
# endpoint's Amazon Region.
|
1293
1282
|
#
|
1294
1283
|
# Example: `us-east-1d`
|
1295
1284
|
#
|
1296
1285
|
# Constraint: The AvailabilityZone parameter can't be specified if
|
1297
1286
|
# the MultiAZ parameter is set to `true`. The specified Availability
|
1298
|
-
# Zone must be in the same
|
1287
|
+
# Zone must be in the same Amazon Region as the current endpoint.
|
1299
1288
|
# @return [String]
|
1300
1289
|
#
|
1301
1290
|
# @!attribute [rw] db_subnet_group_name
|
@@ -1311,8 +1300,8 @@ module Aws::Neptune
|
|
1311
1300
|
# Format: `ddd:hh24:mi-ddd:hh24:mi`
|
1312
1301
|
#
|
1313
1302
|
# The default is a 30-minute window selected at random from an 8-hour
|
1314
|
-
# block of time for each
|
1315
|
-
# week.
|
1303
|
+
# block of time for each Amazon Region, occurring on a random day of
|
1304
|
+
# the week.
|
1316
1305
|
#
|
1317
1306
|
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
|
1318
1307
|
#
|
@@ -1448,22 +1437,22 @@ module Aws::Neptune
|
|
1448
1437
|
# @return [Boolean]
|
1449
1438
|
#
|
1450
1439
|
# @!attribute [rw] kms_key_id
|
1451
|
-
# The
|
1440
|
+
# The Amazon KMS key identifier for an encrypted DB instance.
|
1452
1441
|
#
|
1453
1442
|
# The KMS key identifier is the Amazon Resource Name (ARN) for the KMS
|
1454
|
-
# encryption key. If you are creating a DB instance with the same
|
1455
|
-
# account that owns the KMS encryption key used to encrypt the
|
1456
|
-
# instance, then you can use the KMS key alias instead of the
|
1457
|
-
# the KM encryption key.
|
1443
|
+
# encryption key. If you are creating a DB instance with the same
|
1444
|
+
# Amazon account that owns the KMS encryption key used to encrypt the
|
1445
|
+
# new DB instance, then you can use the KMS key alias instead of the
|
1446
|
+
# ARN for the KM encryption key.
|
1458
1447
|
#
|
1459
1448
|
# Not applicable. The KMS key identifier is managed by the DB cluster.
|
1460
1449
|
# For more information, see CreateDBCluster.
|
1461
1450
|
#
|
1462
1451
|
# If the `StorageEncrypted` parameter is true, and you do not specify
|
1463
1452
|
# a value for the `KmsKeyId` parameter, then Amazon Neptune will use
|
1464
|
-
# your default encryption key.
|
1465
|
-
# key for your
|
1466
|
-
# encryption key for each
|
1453
|
+
# your default encryption key. Amazon KMS creates the default
|
1454
|
+
# encryption key for your Amazon account. Your Amazon account has a
|
1455
|
+
# different default encryption key for each Amazon Region.
|
1467
1456
|
# @return [String]
|
1468
1457
|
#
|
1469
1458
|
# @!attribute [rw] domain
|
@@ -1515,10 +1504,7 @@ module Aws::Neptune
|
|
1515
1504
|
# @return [String]
|
1516
1505
|
#
|
1517
1506
|
# @!attribute [rw] enable_iam_database_authentication
|
1518
|
-
#
|
1519
|
-
# authentication for Neptune.
|
1520
|
-
#
|
1521
|
-
# Default: `false`
|
1507
|
+
# Not supported by Neptune (ignored).
|
1522
1508
|
# @return [Boolean]
|
1523
1509
|
#
|
1524
1510
|
# @!attribute [rw] enable_performance_insights
|
@@ -1876,7 +1862,7 @@ module Aws::Neptune
|
|
1876
1862
|
# @return [Integer]
|
1877
1863
|
#
|
1878
1864
|
# @!attribute [rw] character_set_name
|
1879
|
-
#
|
1865
|
+
# Not supported by Neptune.
|
1880
1866
|
# @return [String]
|
1881
1867
|
#
|
1882
1868
|
# @!attribute [rw] database_name
|
@@ -1959,11 +1945,11 @@ module Aws::Neptune
|
|
1959
1945
|
# @return [Integer]
|
1960
1946
|
#
|
1961
1947
|
# @!attribute [rw] master_username
|
1962
|
-
#
|
1948
|
+
# Not supported by Neptune.
|
1963
1949
|
# @return [String]
|
1964
1950
|
#
|
1965
1951
|
# @!attribute [rw] db_cluster_option_group_memberships
|
1966
|
-
#
|
1952
|
+
# Not supported by Neptune.
|
1967
1953
|
# @return [Array<Types::DBClusterOptionGroupStatus>]
|
1968
1954
|
#
|
1969
1955
|
# @!attribute [rw] preferred_backup_window
|
@@ -2005,14 +1991,14 @@ module Aws::Neptune
|
|
2005
1991
|
# @return [Boolean]
|
2006
1992
|
#
|
2007
1993
|
# @!attribute [rw] kms_key_id
|
2008
|
-
# If `StorageEncrypted` is true, the
|
1994
|
+
# If `StorageEncrypted` is true, the Amazon KMS key identifier for the
|
2009
1995
|
# encrypted DB cluster.
|
2010
1996
|
# @return [String]
|
2011
1997
|
#
|
2012
1998
|
# @!attribute [rw] db_cluster_resource_id
|
2013
|
-
# The
|
2014
|
-
# identifier is found in
|
2015
|
-
# KMS key for the DB cluster is accessed.
|
1999
|
+
# The Amazon Region-unique, immutable identifier for the DB cluster.
|
2000
|
+
# This identifier is found in Amazon CloudTrail log entries whenever
|
2001
|
+
# the Amazon KMS key for the DB cluster is accessed.
|
2016
2002
|
# @return [String]
|
2017
2003
|
#
|
2018
2004
|
# @!attribute [rw] db_cluster_arn
|
@@ -2020,15 +2006,15 @@ module Aws::Neptune
|
|
2020
2006
|
# @return [String]
|
2021
2007
|
#
|
2022
2008
|
# @!attribute [rw] associated_roles
|
2023
|
-
# Provides a list of the
|
2009
|
+
# Provides a list of the Amazon Identity and Access Management (IAM)
|
2024
2010
|
# roles that are associated with the DB cluster. IAM roles that are
|
2025
2011
|
# associated with a DB cluster grant permission for the DB cluster to
|
2026
|
-
# access other
|
2012
|
+
# access other Amazon services on your behalf.
|
2027
2013
|
# @return [Array<Types::DBClusterRole>]
|
2028
2014
|
#
|
2029
2015
|
# @!attribute [rw] iam_database_authentication_enabled
|
2030
|
-
# True if mapping of
|
2031
|
-
# to database accounts is enabled, and otherwise false.
|
2016
|
+
# True if mapping of Amazon Identity and Access Management (IAM)
|
2017
|
+
# accounts to database accounts is enabled, and otherwise false.
|
2032
2018
|
# @return [Boolean]
|
2033
2019
|
#
|
2034
2020
|
# @!attribute [rw] clone_group_id
|
@@ -2040,6 +2026,11 @@ module Aws::Neptune
|
|
2040
2026
|
# Coordinated Time (UTC).
|
2041
2027
|
# @return [Time]
|
2042
2028
|
#
|
2029
|
+
# @!attribute [rw] copy_tags_to_snapshot
|
2030
|
+
# *If set to `true`, tags are copied to any snapshot of the DB cluster
|
2031
|
+
# that is created.*
|
2032
|
+
# @return [Boolean]
|
2033
|
+
#
|
2043
2034
|
# @!attribute [rw] enabled_cloudwatch_logs_exports
|
2044
2035
|
# A list of log types that this DB cluster is configured to export to
|
2045
2036
|
# CloudWatch Logs.
|
@@ -2051,6 +2042,14 @@ module Aws::Neptune
|
|
2051
2042
|
# enabled.
|
2052
2043
|
# @return [Boolean]
|
2053
2044
|
#
|
2045
|
+
# @!attribute [rw] cross_account_clone
|
2046
|
+
# If set to `true`, the DB cluster can be cloned across accounts.
|
2047
|
+
# @return [Boolean]
|
2048
|
+
#
|
2049
|
+
# @!attribute [rw] automatic_restart_time
|
2050
|
+
# Time at which the DB cluster will be automatically restarted.
|
2051
|
+
# @return [Time]
|
2052
|
+
#
|
2054
2053
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBCluster AWS API Documentation
|
2055
2054
|
#
|
2056
2055
|
class DBCluster < Struct.new(
|
@@ -2089,8 +2088,11 @@ module Aws::Neptune
|
|
2089
2088
|
:iam_database_authentication_enabled,
|
2090
2089
|
:clone_group_id,
|
2091
2090
|
:cluster_create_time,
|
2091
|
+
:copy_tags_to_snapshot,
|
2092
2092
|
:enabled_cloudwatch_logs_exports,
|
2093
|
-
:deletion_protection
|
2093
|
+
:deletion_protection,
|
2094
|
+
:cross_account_clone,
|
2095
|
+
:automatic_restart_time)
|
2094
2096
|
SENSITIVE = []
|
2095
2097
|
include Aws::Structure
|
2096
2098
|
end
|
@@ -2282,14 +2284,14 @@ module Aws::Neptune
|
|
2282
2284
|
#
|
2283
2285
|
class DBClusterNotFoundFault < Aws::EmptyStructure; end
|
2284
2286
|
|
2285
|
-
#
|
2287
|
+
# Not supported by Neptune.
|
2286
2288
|
#
|
2287
2289
|
# @!attribute [rw] db_cluster_option_group_name
|
2288
|
-
#
|
2290
|
+
# Not supported by Neptune.
|
2289
2291
|
# @return [String]
|
2290
2292
|
#
|
2291
2293
|
# @!attribute [rw] status
|
2292
|
-
#
|
2294
|
+
# Not supported by Neptune.
|
2293
2295
|
# @return [String]
|
2294
2296
|
#
|
2295
2297
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBClusterOptionGroupStatus AWS API Documentation
|
@@ -2413,7 +2415,7 @@ module Aws::Neptune
|
|
2413
2415
|
#
|
2414
2416
|
class DBClusterQuotaExceededFault < Aws::EmptyStructure; end
|
2415
2417
|
|
2416
|
-
# Describes an
|
2418
|
+
# Describes an Amazon Identity and Access Management (IAM) role that is
|
2417
2419
|
# associated with a DB cluster.
|
2418
2420
|
#
|
2419
2421
|
# @!attribute [rw] role_arn
|
@@ -2426,20 +2428,20 @@ module Aws::Neptune
|
|
2426
2428
|
# cluster. The Status property returns one of the following values:
|
2427
2429
|
#
|
2428
2430
|
# * `ACTIVE` - the IAM role ARN is associated with the DB cluster and
|
2429
|
-
# can be used to access other
|
2431
|
+
# can be used to access other Amazon services on your behalf.
|
2430
2432
|
#
|
2431
2433
|
# * `PENDING` - the IAM role ARN is being associated with the DB
|
2432
2434
|
# cluster.
|
2433
2435
|
#
|
2434
2436
|
# * `INVALID` - the IAM role ARN is associated with the DB cluster,
|
2435
2437
|
# but the DB cluster is unable to assume the IAM role in order to
|
2436
|
-
# access other
|
2438
|
+
# access other Amazon services on your behalf.
|
2437
2439
|
# @return [String]
|
2438
2440
|
#
|
2439
2441
|
# @!attribute [rw] feature_name
|
2440
|
-
# The name of the feature associated with the
|
2441
|
-
# Management (IAM) role. For the list of supported feature
|
2442
|
-
# DBEngineVersion.
|
2442
|
+
# The name of the feature associated with the Amazon Identity and
|
2443
|
+
# Access Management (IAM) role. For the list of supported feature
|
2444
|
+
# names, see DBEngineVersion.
|
2443
2445
|
# @return [String]
|
2444
2446
|
#
|
2445
2447
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBClusterRole AWS API Documentation
|
@@ -2539,7 +2541,7 @@ module Aws::Neptune
|
|
2539
2541
|
# @return [Time]
|
2540
2542
|
#
|
2541
2543
|
# @!attribute [rw] master_username
|
2542
|
-
#
|
2544
|
+
# Not supported by Neptune.
|
2543
2545
|
# @return [String]
|
2544
2546
|
#
|
2545
2547
|
# @!attribute [rw] engine_version
|
@@ -2565,7 +2567,7 @@ module Aws::Neptune
|
|
2565
2567
|
# @return [Boolean]
|
2566
2568
|
#
|
2567
2569
|
# @!attribute [rw] kms_key_id
|
2568
|
-
# If `StorageEncrypted` is true, the
|
2570
|
+
# If `StorageEncrypted` is true, the Amazon KMS key identifier for the
|
2569
2571
|
# encrypted DB cluster snapshot.
|
2570
2572
|
# @return [String]
|
2571
2573
|
#
|
@@ -2580,8 +2582,8 @@ module Aws::Neptune
|
|
2580
2582
|
# @return [String]
|
2581
2583
|
#
|
2582
2584
|
# @!attribute [rw] iam_database_authentication_enabled
|
2583
|
-
# True if mapping of
|
2584
|
-
# to database accounts is enabled, and otherwise false.
|
2585
|
+
# True if mapping of Amazon Identity and Access Management (IAM)
|
2586
|
+
# accounts to database accounts is enabled, and otherwise false.
|
2585
2587
|
# @return [Boolean]
|
2586
2588
|
#
|
2587
2589
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBClusterSnapshot AWS API Documentation
|
@@ -2620,14 +2622,14 @@ module Aws::Neptune
|
|
2620
2622
|
# Contains the name and values of a manual DB cluster snapshot
|
2621
2623
|
# attribute.
|
2622
2624
|
#
|
2623
|
-
# Manual DB cluster snapshot attributes are used to authorize other
|
2624
|
-
# accounts to restore a manual DB cluster snapshot. For more
|
2625
|
+
# Manual DB cluster snapshot attributes are used to authorize other
|
2626
|
+
# Amazon accounts to restore a manual DB cluster snapshot. For more
|
2625
2627
|
# information, see the ModifyDBClusterSnapshotAttribute API action.
|
2626
2628
|
#
|
2627
2629
|
# @!attribute [rw] attribute_name
|
2628
2630
|
# The name of the manual DB cluster snapshot attribute.
|
2629
2631
|
#
|
2630
|
-
# The attribute named `restore` refers to the list of
|
2632
|
+
# The attribute named `restore` refers to the list of Amazon accounts
|
2631
2633
|
# that have permission to copy or restore the manual DB cluster
|
2632
2634
|
# snapshot. For more information, see the
|
2633
2635
|
# ModifyDBClusterSnapshotAttribute API action.
|
@@ -2637,10 +2639,10 @@ module Aws::Neptune
|
|
2637
2639
|
# The value(s) for the manual DB cluster snapshot attribute.
|
2638
2640
|
#
|
2639
2641
|
# If the `AttributeName` field is set to `restore`, then this element
|
2640
|
-
# returns a list of IDs of the
|
2642
|
+
# returns a list of IDs of the Amazon accounts that are authorized to
|
2641
2643
|
# copy or restore the manual DB cluster snapshot. If a value of `all`
|
2642
2644
|
# is in the list, then the manual DB cluster snapshot is public and
|
2643
|
-
# available for any
|
2645
|
+
# available for any Amazon account to copy or restore.
|
2644
2646
|
# @return [Array<String>]
|
2645
2647
|
#
|
2646
2648
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBClusterSnapshotAttribute AWS API Documentation
|
@@ -2655,9 +2657,9 @@ module Aws::Neptune
|
|
2655
2657
|
# Contains the results of a successful call to the
|
2656
2658
|
# DescribeDBClusterSnapshotAttributes API action.
|
2657
2659
|
#
|
2658
|
-
# Manual DB cluster snapshot attributes are used to authorize other
|
2659
|
-
# accounts to copy or restore a manual DB cluster snapshot. For
|
2660
|
-
# information, see the ModifyDBClusterSnapshotAttribute API action.
|
2660
|
+
# Manual DB cluster snapshot attributes are used to authorize other
|
2661
|
+
# Amazon accounts to copy or restore a manual DB cluster snapshot. For
|
2662
|
+
# more information, see the ModifyDBClusterSnapshotAttribute API action.
|
2661
2663
|
#
|
2662
2664
|
# @!attribute [rw] db_cluster_snapshot_identifier
|
2663
2665
|
# The identifier of the manual DB cluster snapshot that the attributes
|
@@ -2824,7 +2826,7 @@ module Aws::Neptune
|
|
2824
2826
|
# @return [String]
|
2825
2827
|
#
|
2826
2828
|
# @!attribute [rw] master_username
|
2827
|
-
#
|
2829
|
+
# Not supported by Neptune.
|
2828
2830
|
# @return [String]
|
2829
2831
|
#
|
2830
2832
|
# @!attribute [rw] db_name
|
@@ -2836,7 +2838,7 @@ module Aws::Neptune
|
|
2836
2838
|
# @return [Types::Endpoint]
|
2837
2839
|
#
|
2838
2840
|
# @!attribute [rw] allocated_storage
|
2839
|
-
#
|
2841
|
+
# Not supported by Neptune.
|
2840
2842
|
# @return [Integer]
|
2841
2843
|
#
|
2842
2844
|
# @!attribute [rw] instance_create_time
|
@@ -2984,9 +2986,9 @@ module Aws::Neptune
|
|
2984
2986
|
# @return [String]
|
2985
2987
|
#
|
2986
2988
|
# @!attribute [rw] dbi_resource_id
|
2987
|
-
# The
|
2988
|
-
# This identifier is found in
|
2989
|
-
#
|
2989
|
+
# The Amazon Region-unique, immutable identifier for the DB instance.
|
2990
|
+
# This identifier is found in Amazon CloudTrail log entries whenever
|
2991
|
+
# the Amazon KMS key for the DB instance is accessed.
|
2990
2992
|
# @return [String]
|
2991
2993
|
#
|
2992
2994
|
# @!attribute [rw] ca_certificate_identifier
|
@@ -3033,8 +3035,8 @@ module Aws::Neptune
|
|
3033
3035
|
# @return [String]
|
3034
3036
|
#
|
3035
3037
|
# @!attribute [rw] iam_database_authentication_enabled
|
3036
|
-
# True if
|
3037
|
-
# enabled, and otherwise false.
|
3038
|
+
# True if Amazon Identity and Access Management (IAM) authentication
|
3039
|
+
# is enabled, and otherwise false.
|
3038
3040
|
# @return [Boolean]
|
3039
3041
|
#
|
3040
3042
|
# @!attribute [rw] performance_insights_enabled
|
@@ -4098,7 +4100,7 @@ module Aws::Neptune
|
|
4098
4100
|
# DescribeDBClusterSnapshotAttributes API action.
|
4099
4101
|
#
|
4100
4102
|
# Manual DB cluster snapshot attributes are used to authorize other
|
4101
|
-
#
|
4103
|
+
# Amazon accounts to copy or restore a manual DB cluster snapshot. For
|
4102
4104
|
# more information, see the ModifyDBClusterSnapshotAttribute API
|
4103
4105
|
# action.
|
4104
4106
|
# @return [Types::DBClusterSnapshotAttributesResult]
|
@@ -4163,13 +4165,13 @@ module Aws::Neptune
|
|
4163
4165
|
# of the following values:
|
4164
4166
|
#
|
4165
4167
|
# * `automated` - Return all DB cluster snapshots that have been
|
4166
|
-
# automatically taken by Amazon Neptune for my
|
4168
|
+
# automatically taken by Amazon Neptune for my Amazon account.
|
4167
4169
|
#
|
4168
4170
|
# * `manual` - Return all DB cluster snapshots that have been taken by
|
4169
4171
|
# my AWS account.
|
4170
4172
|
#
|
4171
4173
|
# * `shared` - Return all manual DB cluster snapshots that have been
|
4172
|
-
# shared to my
|
4174
|
+
# shared to my Amazon account.
|
4173
4175
|
#
|
4174
4176
|
# * `public` - Return all DB cluster snapshots that have been marked
|
4175
4177
|
# as public.
|
@@ -4211,19 +4213,19 @@ module Aws::Neptune
|
|
4211
4213
|
# @return [String]
|
4212
4214
|
#
|
4213
4215
|
# @!attribute [rw] include_shared
|
4214
|
-
# True to include shared manual DB cluster snapshots from other
|
4216
|
+
# True to include shared manual DB cluster snapshots from other Amazon
|
4215
4217
|
# accounts that this AWS account has been given permission to copy or
|
4216
4218
|
# restore, and otherwise false. The default is `false`.
|
4217
4219
|
#
|
4218
|
-
# You can give an
|
4219
|
-
# cluster snapshot from another
|
4220
|
+
# You can give an Amazon account permission to restore a manual DB
|
4221
|
+
# cluster snapshot from another Amazon account by the
|
4220
4222
|
# ModifyDBClusterSnapshotAttribute API action.
|
4221
4223
|
# @return [Boolean]
|
4222
4224
|
#
|
4223
4225
|
# @!attribute [rw] include_public
|
4224
4226
|
# True to include manual DB cluster snapshots that are public and can
|
4225
|
-
# be copied or restored by any
|
4226
|
-
# default is `false`. The default is false.
|
4227
|
+
# be copied or restored by any Amazon account, and otherwise false.
|
4228
|
+
# The default is `false`. The default is false.
|
4227
4229
|
#
|
4228
4230
|
# You can share a manual DB cluster snapshot as public by using the
|
4229
4231
|
# ModifyDBClusterSnapshotAttribute API action.
|
@@ -4283,9 +4285,9 @@ module Aws::Neptune
|
|
4283
4285
|
# * `engine` - Accepts an engine name (such as `neptune`), and
|
4284
4286
|
# restricts the results list to DB clusters created by that engine.
|
4285
4287
|
#
|
4286
|
-
# For example, to invoke this API from the
|
4287
|
-
# only Neptune DB clusters are returned, you could use the
|
4288
|
-
# command:
|
4288
|
+
# For example, to invoke this API from the Amazon CLI and filter so
|
4289
|
+
# that only Neptune DB clusters are returned, you could use the
|
4290
|
+
# following command:
|
4289
4291
|
# @return [Array<Types::Filter>]
|
4290
4292
|
#
|
4291
4293
|
# @!attribute [rw] max_records
|
@@ -4452,9 +4454,9 @@ module Aws::Neptune
|
|
4452
4454
|
# * `engine` - Accepts an engine name (such as `neptune`), and
|
4453
4455
|
# restricts the results list to DB instances created by that engine.
|
4454
4456
|
#
|
4455
|
-
# For example, to invoke this API from the
|
4456
|
-
# only Neptune DB instances are returned, you could use the
|
4457
|
-
# command:
|
4457
|
+
# For example, to invoke this API from the Amazon CLI and filter so
|
4458
|
+
# that only Neptune DB instances are returned, you could use the
|
4459
|
+
# following command:
|
4458
4460
|
# @return [Array<Types::Filter>]
|
4459
4461
|
#
|
4460
4462
|
# @!attribute [rw] max_records
|
@@ -5372,7 +5374,7 @@ module Aws::Neptune
|
|
5372
5374
|
# DescribeEventSubscriptions action.
|
5373
5375
|
#
|
5374
5376
|
# @!attribute [rw] customer_aws_id
|
5375
|
-
# The
|
5377
|
+
# The Amazon customer account associated with the event notification
|
5376
5378
|
# subscription.
|
5377
5379
|
# @return [String]
|
5378
5380
|
#
|
@@ -5864,6 +5866,7 @@ module Aws::Neptune
|
|
5864
5866
|
# },
|
5865
5867
|
# engine_version: "String",
|
5866
5868
|
# deletion_protection: false,
|
5869
|
+
# copy_tags_to_snapshot: false,
|
5867
5870
|
# }
|
5868
5871
|
#
|
5869
5872
|
# @!attribute [rw] db_cluster_identifier
|
@@ -5899,13 +5902,12 @@ module Aws::Neptune
|
|
5899
5902
|
# the DB cluster. If this parameter is set to `false`, changes to the
|
5900
5903
|
# DB cluster are applied during the next maintenance window.
|
5901
5904
|
#
|
5902
|
-
# The `ApplyImmediately` parameter only affects
|
5903
|
-
# `NewDBClusterIdentifier`
|
5904
|
-
#
|
5905
|
-
#
|
5906
|
-
#
|
5907
|
-
#
|
5908
|
-
# parameter.
|
5905
|
+
# The `ApplyImmediately` parameter only affects
|
5906
|
+
# `NewDBClusterIdentifier` values. If you set the `ApplyImmediately`
|
5907
|
+
# parameter value to false, then changes to `NewDBClusterIdentifier`
|
5908
|
+
# values are applied during the next maintenance window. All other
|
5909
|
+
# changes are applied immediately, regardless of the value of the
|
5910
|
+
# `ApplyImmediately` parameter.
|
5909
5911
|
#
|
5910
5912
|
# Default: `false`
|
5911
5913
|
# @return [Boolean]
|
@@ -5941,15 +5943,11 @@ module Aws::Neptune
|
|
5941
5943
|
# @return [Integer]
|
5942
5944
|
#
|
5943
5945
|
# @!attribute [rw] master_user_password
|
5944
|
-
#
|
5945
|
-
# contain any printable ASCII character except "/", """, or
|
5946
|
-
# "@".
|
5947
|
-
#
|
5948
|
-
# Constraints: Must contain from 8 to 41 characters.
|
5946
|
+
# Not supported by Neptune.
|
5949
5947
|
# @return [String]
|
5950
5948
|
#
|
5951
5949
|
# @!attribute [rw] option_group_name
|
5952
|
-
# *
|
5950
|
+
# *Not supported by Neptune.*
|
5953
5951
|
# @return [String]
|
5954
5952
|
#
|
5955
5953
|
# @!attribute [rw] preferred_backup_window
|
@@ -5958,7 +5956,7 @@ module Aws::Neptune
|
|
5958
5956
|
# parameter.
|
5959
5957
|
#
|
5960
5958
|
# The default is a 30-minute window selected at random from an 8-hour
|
5961
|
-
# block of time for each
|
5959
|
+
# block of time for each Amazon Region.
|
5962
5960
|
#
|
5963
5961
|
# Constraints:
|
5964
5962
|
#
|
@@ -5978,8 +5976,8 @@ module Aws::Neptune
|
|
5978
5976
|
# Format: `ddd:hh24:mi-ddd:hh24:mi`
|
5979
5977
|
#
|
5980
5978
|
# The default is a 30-minute window selected at random from an 8-hour
|
5981
|
-
# block of time for each
|
5982
|
-
# week.
|
5979
|
+
# block of time for each Amazon Region, occurring on a random day of
|
5980
|
+
# the week.
|
5983
5981
|
#
|
5984
5982
|
# Valid Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun.
|
5985
5983
|
#
|
@@ -5987,8 +5985,8 @@ module Aws::Neptune
|
|
5987
5985
|
# @return [String]
|
5988
5986
|
#
|
5989
5987
|
# @!attribute [rw] enable_iam_database_authentication
|
5990
|
-
# True to enable mapping of
|
5991
|
-
# accounts to database accounts, and otherwise false.
|
5988
|
+
# True to enable mapping of Amazon Identity and Access Management
|
5989
|
+
# (IAM) accounts to database accounts, and otherwise false.
|
5992
5990
|
#
|
5993
5991
|
# Default: `false`
|
5994
5992
|
# @return [Boolean]
|
@@ -6019,6 +6017,11 @@ module Aws::Neptune
|
|
6019
6017
|
# protection is enabled. By default, deletion protection is disabled.
|
6020
6018
|
# @return [Boolean]
|
6021
6019
|
#
|
6020
|
+
# @!attribute [rw] copy_tags_to_snapshot
|
6021
|
+
# *If set to `true`, tags are copied to any snapshot of the DB cluster
|
6022
|
+
# that is created.*
|
6023
|
+
# @return [Boolean]
|
6024
|
+
#
|
6022
6025
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/ModifyDBClusterMessage AWS API Documentation
|
6023
6026
|
#
|
6024
6027
|
class ModifyDBClusterMessage < Struct.new(
|
@@ -6036,7 +6039,8 @@ module Aws::Neptune
|
|
6036
6039
|
:enable_iam_database_authentication,
|
6037
6040
|
:cloudwatch_logs_export_configuration,
|
6038
6041
|
:engine_version,
|
6039
|
-
:deletion_protection
|
6042
|
+
:deletion_protection,
|
6043
|
+
:copy_tags_to_snapshot)
|
6040
6044
|
SENSITIVE = []
|
6041
6045
|
include Aws::Structure
|
6042
6046
|
end
|
@@ -6112,33 +6116,33 @@ module Aws::Neptune
|
|
6112
6116
|
# @!attribute [rw] attribute_name
|
6113
6117
|
# The name of the DB cluster snapshot attribute to modify.
|
6114
6118
|
#
|
6115
|
-
# To manage authorization for other
|
6116
|
-
# manual DB cluster snapshot, set this value to `restore`.
|
6119
|
+
# To manage authorization for other Amazon accounts to copy or restore
|
6120
|
+
# a manual DB cluster snapshot, set this value to `restore`.
|
6117
6121
|
# @return [String]
|
6118
6122
|
#
|
6119
6123
|
# @!attribute [rw] values_to_add
|
6120
6124
|
# A list of DB cluster snapshot attributes to add to the attribute
|
6121
6125
|
# specified by `AttributeName`.
|
6122
6126
|
#
|
6123
|
-
# To authorize other
|
6124
|
-
# cluster snapshot, set this list to include one or more
|
6125
|
-
# IDs, or `all` to make the manual DB cluster snapshot
|
6126
|
-
# any
|
6127
|
-
# cluster snapshots that contain private information that
|
6128
|
-
# want available to all AWS accounts.
|
6127
|
+
# To authorize other Amazon accounts to copy or restore a manual DB
|
6128
|
+
# cluster snapshot, set this list to include one or more Amazon
|
6129
|
+
# account IDs, or `all` to make the manual DB cluster snapshot
|
6130
|
+
# restorable by any Amazon account. Do not add the `all` value for any
|
6131
|
+
# manual DB cluster snapshots that contain private information that
|
6132
|
+
# you don't want available to all AWS accounts.
|
6129
6133
|
# @return [Array<String>]
|
6130
6134
|
#
|
6131
6135
|
# @!attribute [rw] values_to_remove
|
6132
6136
|
# A list of DB cluster snapshot attributes to remove from the
|
6133
6137
|
# attribute specified by `AttributeName`.
|
6134
6138
|
#
|
6135
|
-
# To remove authorization for other
|
6136
|
-
# manual DB cluster snapshot, set this list to include one or more
|
6137
|
-
# account identifiers, or `all` to remove authorization for any
|
6138
|
-
# account to copy or restore the DB cluster snapshot. If you
|
6139
|
-
# `all`, an
|
6140
|
-
# `restore` attribute can still copy or restore a manual
|
6141
|
-
# snapshot.
|
6139
|
+
# To remove authorization for other Amazon accounts to copy or restore
|
6140
|
+
# a manual DB cluster snapshot, set this list to include one or more
|
6141
|
+
# Amazon account identifiers, or `all` to remove authorization for any
|
6142
|
+
# Amazon account to copy or restore the DB cluster snapshot. If you
|
6143
|
+
# specify `all`, an Amazon account whose account ID is explicitly
|
6144
|
+
# added to the `restore` attribute can still copy or restore a manual
|
6145
|
+
# DB cluster snapshot.
|
6142
6146
|
# @return [Array<String>]
|
6143
6147
|
#
|
6144
6148
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/ModifyDBClusterSnapshotAttributeMessage AWS API Documentation
|
@@ -6157,7 +6161,7 @@ module Aws::Neptune
|
|
6157
6161
|
# DescribeDBClusterSnapshotAttributes API action.
|
6158
6162
|
#
|
6159
6163
|
# Manual DB cluster snapshot attributes are used to authorize other
|
6160
|
-
#
|
6164
|
+
# Amazon accounts to copy or restore a manual DB cluster snapshot. For
|
6161
6165
|
# more information, see the ModifyDBClusterSnapshotAttribute API
|
6162
6166
|
# action.
|
6163
6167
|
# @return [Types::DBClusterSnapshotAttributesResult]
|
@@ -6228,10 +6232,7 @@ module Aws::Neptune
|
|
6228
6232
|
# @return [String]
|
6229
6233
|
#
|
6230
6234
|
# @!attribute [rw] allocated_storage
|
6231
|
-
#
|
6232
|
-
# instance.
|
6233
|
-
#
|
6234
|
-
# Not applicable. Storage is managed by the DB Cluster.
|
6235
|
+
# Not supported by Neptune.
|
6235
6236
|
# @return [Integer]
|
6236
6237
|
#
|
6237
6238
|
# @!attribute [rw] db_instance_class
|
@@ -6302,7 +6303,7 @@ module Aws::Neptune
|
|
6302
6303
|
# @return [Boolean]
|
6303
6304
|
#
|
6304
6305
|
# @!attribute [rw] master_user_password
|
6305
|
-
# Not
|
6306
|
+
# Not supported by Neptune.
|
6306
6307
|
# @return [String]
|
6307
6308
|
#
|
6308
6309
|
# @!attribute [rw] db_parameter_group_name
|
@@ -6398,7 +6399,7 @@ module Aws::Neptune
|
|
6398
6399
|
# @return [Boolean]
|
6399
6400
|
#
|
6400
6401
|
# @!attribute [rw] license_model
|
6401
|
-
# Not supported.
|
6402
|
+
# Not supported by Neptune.
|
6402
6403
|
# @return [String]
|
6403
6404
|
#
|
6404
6405
|
# @!attribute [rw] iops
|
@@ -6514,13 +6515,13 @@ module Aws::Neptune
|
|
6514
6515
|
# @return [Integer]
|
6515
6516
|
#
|
6516
6517
|
# @!attribute [rw] enable_iam_database_authentication
|
6517
|
-
# True to enable mapping of
|
6518
|
-
# accounts to database accounts, and otherwise false.
|
6518
|
+
# True to enable mapping of Amazon Identity and Access Management
|
6519
|
+
# (IAM) accounts to database accounts, and otherwise false.
|
6519
6520
|
#
|
6520
6521
|
# You can enable IAM database authentication for the following
|
6521
6522
|
# database engines
|
6522
6523
|
#
|
6523
|
-
# Not applicable. Mapping
|
6524
|
+
# Not applicable. Mapping Amazon IAM accounts to database accounts is
|
6524
6525
|
# managed by the DB cluster. For more information, see
|
6525
6526
|
# ModifyDBCluster.
|
6526
6527
|
#
|
@@ -6785,18 +6786,14 @@ module Aws::Neptune
|
|
6785
6786
|
include Aws::Structure
|
6786
6787
|
end
|
6787
6788
|
|
6788
|
-
#
|
6789
|
-
# of.
|
6789
|
+
# Not supported by Neptune.
|
6790
6790
|
#
|
6791
6791
|
# @!attribute [rw] option_group_name
|
6792
|
-
#
|
6792
|
+
# Not supported by Neptune.
|
6793
6793
|
# @return [String]
|
6794
6794
|
#
|
6795
6795
|
# @!attribute [rw] status
|
6796
|
-
#
|
6797
|
-
# values are: `in-sync`, `pending-apply`, `pending-removal`,
|
6798
|
-
# `pending-maintenance-apply`, `pending-maintenance-removal`,
|
6799
|
-
# `applying`, `removing`, and `failed`.
|
6796
|
+
# Not supported by Neptune.
|
6800
6797
|
# @return [String]
|
6801
6798
|
#
|
6802
6799
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/OptionGroupMembership AWS API Documentation
|
@@ -7137,8 +7134,7 @@ module Aws::Neptune
|
|
7137
7134
|
# @return [Integer]
|
7138
7135
|
#
|
7139
7136
|
# @!attribute [rw] master_user_password
|
7140
|
-
#
|
7141
|
-
# credentials for the DB instance.
|
7137
|
+
# Not supported by Neptune.
|
7142
7138
|
# @return [String]
|
7143
7139
|
#
|
7144
7140
|
# @!attribute [rw] port
|
@@ -7160,10 +7156,7 @@ module Aws::Neptune
|
|
7160
7156
|
# @return [String]
|
7161
7157
|
#
|
7162
7158
|
# @!attribute [rw] license_model
|
7163
|
-
#
|
7164
|
-
#
|
7165
|
-
# Valid values: `license-included` \| `bring-your-own-license` \|
|
7166
|
-
# `general-public-license`
|
7159
|
+
# Not supported by Neptune.
|
7167
7160
|
# @return [String]
|
7168
7161
|
#
|
7169
7162
|
# @!attribute [rw] iops
|
@@ -7599,6 +7592,7 @@ module Aws::Neptune
|
|
7599
7592
|
# enable_cloudwatch_logs_exports: ["String"],
|
7600
7593
|
# db_cluster_parameter_group_name: "String",
|
7601
7594
|
# deletion_protection: false,
|
7595
|
+
# copy_tags_to_snapshot: false,
|
7602
7596
|
# }
|
7603
7597
|
#
|
7604
7598
|
# @!attribute [rw] availability_zones
|
@@ -7683,14 +7677,14 @@ module Aws::Neptune
|
|
7683
7677
|
# @return [Array<Types::Tag>]
|
7684
7678
|
#
|
7685
7679
|
# @!attribute [rw] kms_key_id
|
7686
|
-
# The
|
7680
|
+
# The Amazon KMS key identifier to use when restoring an encrypted DB
|
7687
7681
|
# cluster from a DB snapshot or DB cluster snapshot.
|
7688
7682
|
#
|
7689
7683
|
# The KMS key identifier is the Amazon Resource Name (ARN) for the KMS
|
7690
|
-
# encryption key. If you are restoring a DB cluster with the same
|
7691
|
-
# account that owns the KMS encryption key used to encrypt the
|
7692
|
-
# cluster, then you can use the KMS key alias instead of the
|
7693
|
-
# the KMS encryption key.
|
7684
|
+
# encryption key. If you are restoring a DB cluster with the same
|
7685
|
+
# Amazon account that owns the KMS encryption key used to encrypt the
|
7686
|
+
# new DB cluster, then you can use the KMS key alias instead of the
|
7687
|
+
# ARN for the KMS encryption key.
|
7694
7688
|
#
|
7695
7689
|
# If you do not specify a value for the `KmsKeyId` parameter, then the
|
7696
7690
|
# following will occur:
|
@@ -7705,8 +7699,8 @@ module Aws::Neptune
|
|
7705
7699
|
# @return [String]
|
7706
7700
|
#
|
7707
7701
|
# @!attribute [rw] enable_iam_database_authentication
|
7708
|
-
# True to enable mapping of
|
7709
|
-
# accounts to database accounts, and otherwise false.
|
7702
|
+
# True to enable mapping of Amazon Identity and Access Management
|
7703
|
+
# (IAM) accounts to database accounts, and otherwise false.
|
7710
7704
|
#
|
7711
7705
|
# Default: `false`
|
7712
7706
|
# @return [Boolean]
|
@@ -7734,6 +7728,11 @@ module Aws::Neptune
|
|
7734
7728
|
# protection is enabled. By default, deletion protection is disabled.
|
7735
7729
|
# @return [Boolean]
|
7736
7730
|
#
|
7731
|
+
# @!attribute [rw] copy_tags_to_snapshot
|
7732
|
+
# *If set to `true`, tags are copied to any snapshot of the restored
|
7733
|
+
# DB cluster that is created.*
|
7734
|
+
# @return [Boolean]
|
7735
|
+
#
|
7737
7736
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/RestoreDBClusterFromSnapshotMessage AWS API Documentation
|
7738
7737
|
#
|
7739
7738
|
class RestoreDBClusterFromSnapshotMessage < Struct.new(
|
@@ -7752,7 +7751,8 @@ module Aws::Neptune
|
|
7752
7751
|
:enable_iam_database_authentication,
|
7753
7752
|
:enable_cloudwatch_logs_exports,
|
7754
7753
|
:db_cluster_parameter_group_name,
|
7755
|
-
:deletion_protection
|
7754
|
+
:deletion_protection,
|
7755
|
+
:copy_tags_to_snapshot)
|
7756
7756
|
SENSITIVE = []
|
7757
7757
|
include Aws::Structure
|
7758
7758
|
end
|
@@ -7894,14 +7894,14 @@ module Aws::Neptune
|
|
7894
7894
|
# @return [Array<Types::Tag>]
|
7895
7895
|
#
|
7896
7896
|
# @!attribute [rw] kms_key_id
|
7897
|
-
# The
|
7897
|
+
# The Amazon KMS key identifier to use when restoring an encrypted DB
|
7898
7898
|
# cluster from an encrypted DB cluster.
|
7899
7899
|
#
|
7900
7900
|
# The KMS key identifier is the Amazon Resource Name (ARN) for the KMS
|
7901
|
-
# encryption key. If you are restoring a DB cluster with the same
|
7902
|
-
# account that owns the KMS encryption key used to encrypt the
|
7903
|
-
# cluster, then you can use the KMS key alias instead of the
|
7904
|
-
# the KMS encryption key.
|
7901
|
+
# encryption key. If you are restoring a DB cluster with the same
|
7902
|
+
# Amazon account that owns the KMS encryption key used to encrypt the
|
7903
|
+
# new DB cluster, then you can use the KMS key alias instead of the
|
7904
|
+
# ARN for the KMS encryption key.
|
7905
7905
|
#
|
7906
7906
|
# You can restore to a new DB cluster and encrypt the new DB cluster
|
7907
7907
|
# with a KMS key that is different than the KMS key used to encrypt
|
@@ -7923,8 +7923,8 @@ module Aws::Neptune
|
|
7923
7923
|
# @return [String]
|
7924
7924
|
#
|
7925
7925
|
# @!attribute [rw] enable_iam_database_authentication
|
7926
|
-
# True to enable mapping of
|
7927
|
-
# accounts to database accounts, and otherwise false.
|
7926
|
+
# True to enable mapping of Amazon Identity and Access Management
|
7927
|
+
# (IAM) accounts to database accounts, and otherwise false.
|
7928
7928
|
#
|
7929
7929
|
# Default: `false`
|
7930
7930
|
# @return [Boolean]
|