aws-sdk-neptune 1.47.0 → 1.49.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-neptune/client.rb +79 -1
- data/lib/aws-sdk-neptune/client_api.rb +21 -0
- data/lib/aws-sdk-neptune/endpoint_provider.rb +53 -121
- data/lib/aws-sdk-neptune/types.rb +128 -1048
- data/lib/aws-sdk-neptune.rb +1 -1
- metadata +2 -2
@@ -10,15 +10,6 @@
|
|
10
10
|
module Aws::Neptune
|
11
11
|
module Types
|
12
12
|
|
13
|
-
# @note When making an API call, you may pass AddRoleToDBClusterMessage
|
14
|
-
# data as a hash:
|
15
|
-
#
|
16
|
-
# {
|
17
|
-
# db_cluster_identifier: "String", # required
|
18
|
-
# role_arn: "String", # required
|
19
|
-
# feature_name: "String",
|
20
|
-
# }
|
21
|
-
#
|
22
13
|
# @!attribute [rw] db_cluster_identifier
|
23
14
|
# The name of the DB cluster to associate the IAM role with.
|
24
15
|
# @return [String]
|
@@ -46,14 +37,6 @@ module Aws::Neptune
|
|
46
37
|
include Aws::Structure
|
47
38
|
end
|
48
39
|
|
49
|
-
# @note When making an API call, you may pass AddSourceIdentifierToSubscriptionMessage
|
50
|
-
# data as a hash:
|
51
|
-
#
|
52
|
-
# {
|
53
|
-
# subscription_name: "String", # required
|
54
|
-
# source_identifier: "String", # required
|
55
|
-
# }
|
56
|
-
#
|
57
40
|
# @!attribute [rw] subscription_name
|
58
41
|
# The name of the event notification subscription you want to add a
|
59
42
|
# source identifier to.
|
@@ -99,19 +82,6 @@ module Aws::Neptune
|
|
99
82
|
include Aws::Structure
|
100
83
|
end
|
101
84
|
|
102
|
-
# @note When making an API call, you may pass AddTagsToResourceMessage
|
103
|
-
# data as a hash:
|
104
|
-
#
|
105
|
-
# {
|
106
|
-
# resource_name: "String", # required
|
107
|
-
# tags: [ # required
|
108
|
-
# {
|
109
|
-
# key: "String",
|
110
|
-
# value: "String",
|
111
|
-
# },
|
112
|
-
# ],
|
113
|
-
# }
|
114
|
-
#
|
115
85
|
# @!attribute [rw] resource_name
|
116
86
|
# The Amazon Neptune resource that the tags are added to. This value
|
117
87
|
# is an Amazon Resource Name (ARN). For information about creating an
|
@@ -135,15 +105,6 @@ module Aws::Neptune
|
|
135
105
|
include Aws::Structure
|
136
106
|
end
|
137
107
|
|
138
|
-
# @note When making an API call, you may pass ApplyPendingMaintenanceActionMessage
|
139
|
-
# data as a hash:
|
140
|
-
#
|
141
|
-
# {
|
142
|
-
# resource_identifier: "String", # required
|
143
|
-
# apply_action: "String", # required
|
144
|
-
# opt_in_type: "String", # required
|
145
|
-
# }
|
146
|
-
#
|
147
108
|
# @!attribute [rw] resource_identifier
|
148
109
|
# The Amazon Resource Name (ARN) of the resource that the pending
|
149
110
|
# maintenance action applies to. For information about creating an
|
@@ -253,14 +214,6 @@ module Aws::Neptune
|
|
253
214
|
# The `EnableLogTypes` and `DisableLogTypes` arrays determine which logs
|
254
215
|
# will be exported (or not exported) to CloudWatch Logs.
|
255
216
|
#
|
256
|
-
# @note When making an API call, you may pass CloudwatchLogsExportConfiguration
|
257
|
-
# data as a hash:
|
258
|
-
#
|
259
|
-
# {
|
260
|
-
# enable_log_types: ["String"],
|
261
|
-
# disable_log_types: ["String"],
|
262
|
-
# }
|
263
|
-
#
|
264
217
|
# @!attribute [rw] enable_log_types
|
265
218
|
# The list of log types to enable.
|
266
219
|
# @return [Array<String>]
|
@@ -278,21 +231,6 @@ module Aws::Neptune
|
|
278
231
|
include Aws::Structure
|
279
232
|
end
|
280
233
|
|
281
|
-
# @note When making an API call, you may pass CopyDBClusterParameterGroupMessage
|
282
|
-
# data as a hash:
|
283
|
-
#
|
284
|
-
# {
|
285
|
-
# source_db_cluster_parameter_group_identifier: "String", # required
|
286
|
-
# target_db_cluster_parameter_group_identifier: "String", # required
|
287
|
-
# target_db_cluster_parameter_group_description: "String", # required
|
288
|
-
# tags: [
|
289
|
-
# {
|
290
|
-
# key: "String",
|
291
|
-
# value: "String",
|
292
|
-
# },
|
293
|
-
# ],
|
294
|
-
# }
|
295
|
-
#
|
296
234
|
# @!attribute [rw] source_db_cluster_parameter_group_identifier
|
297
235
|
# The identifier or Amazon Resource Name (ARN) for the source DB
|
298
236
|
# cluster parameter group. For information about creating an ARN, see
|
@@ -367,24 +305,6 @@ module Aws::Neptune
|
|
367
305
|
include Aws::Structure
|
368
306
|
end
|
369
307
|
|
370
|
-
# @note When making an API call, you may pass CopyDBClusterSnapshotMessage
|
371
|
-
# data as a hash:
|
372
|
-
#
|
373
|
-
# {
|
374
|
-
# source_db_cluster_snapshot_identifier: "String", # required
|
375
|
-
# target_db_cluster_snapshot_identifier: "String", # required
|
376
|
-
# kms_key_id: "String",
|
377
|
-
# pre_signed_url: "String",
|
378
|
-
# copy_tags: false,
|
379
|
-
# tags: [
|
380
|
-
# {
|
381
|
-
# key: "String",
|
382
|
-
# value: "String",
|
383
|
-
# },
|
384
|
-
# ],
|
385
|
-
# source_region: "String",
|
386
|
-
# }
|
387
|
-
#
|
388
308
|
# @!attribute [rw] source_db_cluster_snapshot_identifier
|
389
309
|
# The identifier of the DB cluster snapshot to copy. This parameter is
|
390
310
|
# not case-sensitive.
|
@@ -485,21 +405,6 @@ module Aws::Neptune
|
|
485
405
|
include Aws::Structure
|
486
406
|
end
|
487
407
|
|
488
|
-
# @note When making an API call, you may pass CopyDBParameterGroupMessage
|
489
|
-
# data as a hash:
|
490
|
-
#
|
491
|
-
# {
|
492
|
-
# source_db_parameter_group_identifier: "String", # required
|
493
|
-
# target_db_parameter_group_identifier: "String", # required
|
494
|
-
# target_db_parameter_group_description: "String", # required
|
495
|
-
# tags: [
|
496
|
-
# {
|
497
|
-
# key: "String",
|
498
|
-
# value: "String",
|
499
|
-
# },
|
500
|
-
# ],
|
501
|
-
# }
|
502
|
-
#
|
503
408
|
# @!attribute [rw] source_db_parameter_group_identifier
|
504
409
|
# The identifier or ARN for the source DB parameter group. For
|
505
410
|
# information about creating an ARN, see [ Constructing an Amazon
|
@@ -567,23 +472,6 @@ module Aws::Neptune
|
|
567
472
|
include Aws::Structure
|
568
473
|
end
|
569
474
|
|
570
|
-
# @note When making an API call, you may pass CreateDBClusterEndpointMessage
|
571
|
-
# data as a hash:
|
572
|
-
#
|
573
|
-
# {
|
574
|
-
# db_cluster_identifier: "String", # required
|
575
|
-
# db_cluster_endpoint_identifier: "String", # required
|
576
|
-
# endpoint_type: "String", # required
|
577
|
-
# static_members: ["String"],
|
578
|
-
# excluded_members: ["String"],
|
579
|
-
# tags: [
|
580
|
-
# {
|
581
|
-
# key: "String",
|
582
|
-
# value: "String",
|
583
|
-
# },
|
584
|
-
# ],
|
585
|
-
# }
|
586
|
-
#
|
587
475
|
# @!attribute [rw] db_cluster_identifier
|
588
476
|
# The DB cluster identifier of the DB cluster associated with the
|
589
477
|
# endpoint. This parameter is stored as a lowercase string.
|
@@ -711,44 +599,6 @@ module Aws::Neptune
|
|
711
599
|
include Aws::Structure
|
712
600
|
end
|
713
601
|
|
714
|
-
# @note When making an API call, you may pass CreateDBClusterMessage
|
715
|
-
# data as a hash:
|
716
|
-
#
|
717
|
-
# {
|
718
|
-
# availability_zones: ["String"],
|
719
|
-
# backup_retention_period: 1,
|
720
|
-
# character_set_name: "String",
|
721
|
-
# copy_tags_to_snapshot: false,
|
722
|
-
# database_name: "String",
|
723
|
-
# db_cluster_identifier: "String", # required
|
724
|
-
# db_cluster_parameter_group_name: "String",
|
725
|
-
# vpc_security_group_ids: ["String"],
|
726
|
-
# db_subnet_group_name: "String",
|
727
|
-
# engine: "String", # required
|
728
|
-
# engine_version: "String",
|
729
|
-
# port: 1,
|
730
|
-
# master_username: "String",
|
731
|
-
# master_user_password: "String",
|
732
|
-
# option_group_name: "String",
|
733
|
-
# preferred_backup_window: "String",
|
734
|
-
# preferred_maintenance_window: "String",
|
735
|
-
# replication_source_identifier: "String",
|
736
|
-
# tags: [
|
737
|
-
# {
|
738
|
-
# key: "String",
|
739
|
-
# value: "String",
|
740
|
-
# },
|
741
|
-
# ],
|
742
|
-
# storage_encrypted: false,
|
743
|
-
# kms_key_id: "String",
|
744
|
-
# pre_signed_url: "String",
|
745
|
-
# enable_iam_database_authentication: false,
|
746
|
-
# enable_cloudwatch_logs_exports: ["String"],
|
747
|
-
# deletion_protection: false,
|
748
|
-
# global_cluster_identifier: "GlobalClusterIdentifier",
|
749
|
-
# source_region: "String",
|
750
|
-
# }
|
751
|
-
#
|
752
602
|
# @!attribute [rw] availability_zones
|
753
603
|
# A list of EC2 Availability Zones that instances in the DB cluster
|
754
604
|
# can be created in.
|
@@ -965,6 +815,18 @@ module Aws::Neptune
|
|
965
815
|
# protection is enabled. By default, deletion protection is enabled.
|
966
816
|
# @return [Boolean]
|
967
817
|
#
|
818
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
819
|
+
# Contains the scaling configuration of a Neptune Serverless DB
|
820
|
+
# cluster.
|
821
|
+
#
|
822
|
+
# For more information, see [Using Amazon Neptune Serverless][1] in
|
823
|
+
# the *Amazon Neptune User Guide*.
|
824
|
+
#
|
825
|
+
#
|
826
|
+
#
|
827
|
+
# [1]: https://docs.aws.amazon.com/neptune/latest/userguide/neptune-serverless-using.html
|
828
|
+
# @return [Types::ServerlessV2ScalingConfiguration]
|
829
|
+
#
|
968
830
|
# @!attribute [rw] global_cluster_identifier
|
969
831
|
# The ID of the Neptune global database to which this new DB cluster
|
970
832
|
# should be added.
|
@@ -1003,27 +865,13 @@ module Aws::Neptune
|
|
1003
865
|
:enable_iam_database_authentication,
|
1004
866
|
:enable_cloudwatch_logs_exports,
|
1005
867
|
:deletion_protection,
|
868
|
+
:serverless_v2_scaling_configuration,
|
1006
869
|
:global_cluster_identifier,
|
1007
870
|
:source_region)
|
1008
871
|
SENSITIVE = []
|
1009
872
|
include Aws::Structure
|
1010
873
|
end
|
1011
874
|
|
1012
|
-
# @note When making an API call, you may pass CreateDBClusterParameterGroupMessage
|
1013
|
-
# data as a hash:
|
1014
|
-
#
|
1015
|
-
# {
|
1016
|
-
# db_cluster_parameter_group_name: "String", # required
|
1017
|
-
# db_parameter_group_family: "String", # required
|
1018
|
-
# description: "String", # required
|
1019
|
-
# tags: [
|
1020
|
-
# {
|
1021
|
-
# key: "String",
|
1022
|
-
# value: "String",
|
1023
|
-
# },
|
1024
|
-
# ],
|
1025
|
-
# }
|
1026
|
-
#
|
1027
875
|
# @!attribute [rw] db_cluster_parameter_group_name
|
1028
876
|
# The name of the DB cluster parameter group.
|
1029
877
|
#
|
@@ -1096,20 +944,6 @@ module Aws::Neptune
|
|
1096
944
|
include Aws::Structure
|
1097
945
|
end
|
1098
946
|
|
1099
|
-
# @note When making an API call, you may pass CreateDBClusterSnapshotMessage
|
1100
|
-
# data as a hash:
|
1101
|
-
#
|
1102
|
-
# {
|
1103
|
-
# db_cluster_snapshot_identifier: "String", # required
|
1104
|
-
# db_cluster_identifier: "String", # required
|
1105
|
-
# tags: [
|
1106
|
-
# {
|
1107
|
-
# key: "String",
|
1108
|
-
# value: "String",
|
1109
|
-
# },
|
1110
|
-
# ],
|
1111
|
-
# }
|
1112
|
-
#
|
1113
947
|
# @!attribute [rw] db_cluster_snapshot_identifier
|
1114
948
|
# The identifier of the DB cluster snapshot. This parameter is stored
|
1115
949
|
# as a lowercase string.
|
@@ -1167,60 +1001,6 @@ module Aws::Neptune
|
|
1167
1001
|
include Aws::Structure
|
1168
1002
|
end
|
1169
1003
|
|
1170
|
-
# @note When making an API call, you may pass CreateDBInstanceMessage
|
1171
|
-
# data as a hash:
|
1172
|
-
#
|
1173
|
-
# {
|
1174
|
-
# db_name: "String",
|
1175
|
-
# db_instance_identifier: "String", # required
|
1176
|
-
# allocated_storage: 1,
|
1177
|
-
# db_instance_class: "String", # required
|
1178
|
-
# engine: "String", # required
|
1179
|
-
# master_username: "String",
|
1180
|
-
# master_user_password: "String",
|
1181
|
-
# db_security_groups: ["String"],
|
1182
|
-
# vpc_security_group_ids: ["String"],
|
1183
|
-
# availability_zone: "String",
|
1184
|
-
# db_subnet_group_name: "String",
|
1185
|
-
# preferred_maintenance_window: "String",
|
1186
|
-
# db_parameter_group_name: "String",
|
1187
|
-
# backup_retention_period: 1,
|
1188
|
-
# preferred_backup_window: "String",
|
1189
|
-
# port: 1,
|
1190
|
-
# multi_az: false,
|
1191
|
-
# engine_version: "String",
|
1192
|
-
# auto_minor_version_upgrade: false,
|
1193
|
-
# license_model: "String",
|
1194
|
-
# iops: 1,
|
1195
|
-
# option_group_name: "String",
|
1196
|
-
# character_set_name: "String",
|
1197
|
-
# publicly_accessible: false,
|
1198
|
-
# tags: [
|
1199
|
-
# {
|
1200
|
-
# key: "String",
|
1201
|
-
# value: "String",
|
1202
|
-
# },
|
1203
|
-
# ],
|
1204
|
-
# db_cluster_identifier: "String",
|
1205
|
-
# storage_type: "String",
|
1206
|
-
# tde_credential_arn: "String",
|
1207
|
-
# tde_credential_password: "String",
|
1208
|
-
# storage_encrypted: false,
|
1209
|
-
# kms_key_id: "String",
|
1210
|
-
# domain: "String",
|
1211
|
-
# copy_tags_to_snapshot: false,
|
1212
|
-
# monitoring_interval: 1,
|
1213
|
-
# monitoring_role_arn: "String",
|
1214
|
-
# domain_iam_role_name: "String",
|
1215
|
-
# promotion_tier: 1,
|
1216
|
-
# timezone: "String",
|
1217
|
-
# enable_iam_database_authentication: false,
|
1218
|
-
# enable_performance_insights: false,
|
1219
|
-
# performance_insights_kms_key_id: "String",
|
1220
|
-
# enable_cloudwatch_logs_exports: ["String"],
|
1221
|
-
# deletion_protection: false,
|
1222
|
-
# }
|
1223
|
-
#
|
1224
1004
|
# @!attribute [rw] db_name
|
1225
1005
|
# Not supported.
|
1226
1006
|
# @return [String]
|
@@ -1607,21 +1387,6 @@ module Aws::Neptune
|
|
1607
1387
|
include Aws::Structure
|
1608
1388
|
end
|
1609
1389
|
|
1610
|
-
# @note When making an API call, you may pass CreateDBParameterGroupMessage
|
1611
|
-
# data as a hash:
|
1612
|
-
#
|
1613
|
-
# {
|
1614
|
-
# db_parameter_group_name: "String", # required
|
1615
|
-
# db_parameter_group_family: "String", # required
|
1616
|
-
# description: "String", # required
|
1617
|
-
# tags: [
|
1618
|
-
# {
|
1619
|
-
# key: "String",
|
1620
|
-
# value: "String",
|
1621
|
-
# },
|
1622
|
-
# ],
|
1623
|
-
# }
|
1624
|
-
#
|
1625
1390
|
# @!attribute [rw] db_parameter_group_name
|
1626
1391
|
# The name of the DB parameter group.
|
1627
1392
|
#
|
@@ -1679,21 +1444,6 @@ module Aws::Neptune
|
|
1679
1444
|
include Aws::Structure
|
1680
1445
|
end
|
1681
1446
|
|
1682
|
-
# @note When making an API call, you may pass CreateDBSubnetGroupMessage
|
1683
|
-
# data as a hash:
|
1684
|
-
#
|
1685
|
-
# {
|
1686
|
-
# db_subnet_group_name: "String", # required
|
1687
|
-
# db_subnet_group_description: "String", # required
|
1688
|
-
# subnet_ids: ["String"], # required
|
1689
|
-
# tags: [
|
1690
|
-
# {
|
1691
|
-
# key: "String",
|
1692
|
-
# value: "String",
|
1693
|
-
# },
|
1694
|
-
# ],
|
1695
|
-
# }
|
1696
|
-
#
|
1697
1447
|
# @!attribute [rw] db_subnet_group_name
|
1698
1448
|
# The name for the DB subnet group. This value is stored as a
|
1699
1449
|
# lowercase string.
|
@@ -1742,24 +1492,6 @@ module Aws::Neptune
|
|
1742
1492
|
include Aws::Structure
|
1743
1493
|
end
|
1744
1494
|
|
1745
|
-
# @note When making an API call, you may pass CreateEventSubscriptionMessage
|
1746
|
-
# data as a hash:
|
1747
|
-
#
|
1748
|
-
# {
|
1749
|
-
# subscription_name: "String", # required
|
1750
|
-
# sns_topic_arn: "String", # required
|
1751
|
-
# source_type: "String",
|
1752
|
-
# event_categories: ["String"],
|
1753
|
-
# source_ids: ["String"],
|
1754
|
-
# enabled: false,
|
1755
|
-
# tags: [
|
1756
|
-
# {
|
1757
|
-
# key: "String",
|
1758
|
-
# value: "String",
|
1759
|
-
# },
|
1760
|
-
# ],
|
1761
|
-
# }
|
1762
|
-
#
|
1763
1495
|
# @!attribute [rw] subscription_name
|
1764
1496
|
# The name of the subscription.
|
1765
1497
|
#
|
@@ -1848,18 +1580,6 @@ module Aws::Neptune
|
|
1848
1580
|
include Aws::Structure
|
1849
1581
|
end
|
1850
1582
|
|
1851
|
-
# @note When making an API call, you may pass CreateGlobalClusterMessage
|
1852
|
-
# data as a hash:
|
1853
|
-
#
|
1854
|
-
# {
|
1855
|
-
# global_cluster_identifier: "GlobalClusterIdentifier", # required
|
1856
|
-
# source_db_cluster_identifier: "String",
|
1857
|
-
# engine: "String",
|
1858
|
-
# engine_version: "String",
|
1859
|
-
# deletion_protection: false,
|
1860
|
-
# storage_encrypted: false,
|
1861
|
-
# }
|
1862
|
-
#
|
1863
1583
|
# @!attribute [rw] global_cluster_identifier
|
1864
1584
|
# The cluster identifier of the new global database cluster.
|
1865
1585
|
# @return [String]
|
@@ -2131,6 +1851,17 @@ module Aws::Neptune
|
|
2131
1851
|
# Time at which the DB cluster will be automatically restarted.
|
2132
1852
|
# @return [Time]
|
2133
1853
|
#
|
1854
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
1855
|
+
# Shows the scaling configuration for a Neptune Serverless DB cluster.
|
1856
|
+
#
|
1857
|
+
# For more information, see [Using Amazon Neptune Serverless][1] in
|
1858
|
+
# the *Amazon Neptune User Guide*.
|
1859
|
+
#
|
1860
|
+
#
|
1861
|
+
#
|
1862
|
+
# [1]: https://docs.aws.amazon.com/neptune/latest/userguide/neptune-serverless-using.html
|
1863
|
+
# @return [Types::ServerlessV2ScalingConfigurationInfo]
|
1864
|
+
#
|
2134
1865
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBCluster AWS API Documentation
|
2135
1866
|
#
|
2136
1867
|
class DBCluster < Struct.new(
|
@@ -2173,7 +1904,8 @@ module Aws::Neptune
|
|
2173
1904
|
:enabled_cloudwatch_logs_exports,
|
2174
1905
|
:deletion_protection,
|
2175
1906
|
:cross_account_clone,
|
2176
|
-
:automatic_restart_time
|
1907
|
+
:automatic_restart_time,
|
1908
|
+
:serverless_v2_scaling_configuration)
|
2177
1909
|
SENSITIVE = []
|
2178
1910
|
include Aws::Structure
|
2179
1911
|
end
|
@@ -3547,13 +3279,6 @@ module Aws::Neptune
|
|
3547
3279
|
#
|
3548
3280
|
class DBUpgradeDependencyFailureFault < Aws::EmptyStructure; end
|
3549
3281
|
|
3550
|
-
# @note When making an API call, you may pass DeleteDBClusterEndpointMessage
|
3551
|
-
# data as a hash:
|
3552
|
-
#
|
3553
|
-
# {
|
3554
|
-
# db_cluster_endpoint_identifier: "String", # required
|
3555
|
-
# }
|
3556
|
-
#
|
3557
3282
|
# @!attribute [rw] db_cluster_endpoint_identifier
|
3558
3283
|
# The identifier associated with the custom endpoint. This parameter
|
3559
3284
|
# is stored as a lowercase string.
|
@@ -3651,15 +3376,6 @@ module Aws::Neptune
|
|
3651
3376
|
include Aws::Structure
|
3652
3377
|
end
|
3653
3378
|
|
3654
|
-
# @note When making an API call, you may pass DeleteDBClusterMessage
|
3655
|
-
# data as a hash:
|
3656
|
-
#
|
3657
|
-
# {
|
3658
|
-
# db_cluster_identifier: "String", # required
|
3659
|
-
# skip_final_snapshot: false,
|
3660
|
-
# final_db_snapshot_identifier: "String",
|
3661
|
-
# }
|
3662
|
-
#
|
3663
3379
|
# @!attribute [rw] db_cluster_identifier
|
3664
3380
|
# The DB cluster identifier for the DB cluster to be deleted. This
|
3665
3381
|
# parameter isn't case-sensitive.
|
@@ -3713,13 +3429,6 @@ module Aws::Neptune
|
|
3713
3429
|
include Aws::Structure
|
3714
3430
|
end
|
3715
3431
|
|
3716
|
-
# @note When making an API call, you may pass DeleteDBClusterParameterGroupMessage
|
3717
|
-
# data as a hash:
|
3718
|
-
#
|
3719
|
-
# {
|
3720
|
-
# db_cluster_parameter_group_name: "String", # required
|
3721
|
-
# }
|
3722
|
-
#
|
3723
3432
|
# @!attribute [rw] db_cluster_parameter_group_name
|
3724
3433
|
# The name of the DB cluster parameter group.
|
3725
3434
|
#
|
@@ -3755,13 +3464,6 @@ module Aws::Neptune
|
|
3755
3464
|
include Aws::Structure
|
3756
3465
|
end
|
3757
3466
|
|
3758
|
-
# @note When making an API call, you may pass DeleteDBClusterSnapshotMessage
|
3759
|
-
# data as a hash:
|
3760
|
-
#
|
3761
|
-
# {
|
3762
|
-
# db_cluster_snapshot_identifier: "String", # required
|
3763
|
-
# }
|
3764
|
-
#
|
3765
3467
|
# @!attribute [rw] db_cluster_snapshot_identifier
|
3766
3468
|
# The identifier of the DB cluster snapshot to delete.
|
3767
3469
|
#
|
@@ -3792,15 +3494,6 @@ module Aws::Neptune
|
|
3792
3494
|
include Aws::Structure
|
3793
3495
|
end
|
3794
3496
|
|
3795
|
-
# @note When making an API call, you may pass DeleteDBInstanceMessage
|
3796
|
-
# data as a hash:
|
3797
|
-
#
|
3798
|
-
# {
|
3799
|
-
# db_instance_identifier: "String", # required
|
3800
|
-
# skip_final_snapshot: false,
|
3801
|
-
# final_db_snapshot_identifier: "String",
|
3802
|
-
# }
|
3803
|
-
#
|
3804
3497
|
# @!attribute [rw] db_instance_identifier
|
3805
3498
|
# The DB instance identifier for the DB instance to be deleted. This
|
3806
3499
|
# parameter isn't case-sensitive.
|
@@ -3878,13 +3571,6 @@ module Aws::Neptune
|
|
3878
3571
|
include Aws::Structure
|
3879
3572
|
end
|
3880
3573
|
|
3881
|
-
# @note When making an API call, you may pass DeleteDBParameterGroupMessage
|
3882
|
-
# data as a hash:
|
3883
|
-
#
|
3884
|
-
# {
|
3885
|
-
# db_parameter_group_name: "String", # required
|
3886
|
-
# }
|
3887
|
-
#
|
3888
3574
|
# @!attribute [rw] db_parameter_group_name
|
3889
3575
|
# The name of the DB parameter group.
|
3890
3576
|
#
|
@@ -3905,13 +3591,6 @@ module Aws::Neptune
|
|
3905
3591
|
include Aws::Structure
|
3906
3592
|
end
|
3907
3593
|
|
3908
|
-
# @note When making an API call, you may pass DeleteDBSubnetGroupMessage
|
3909
|
-
# data as a hash:
|
3910
|
-
#
|
3911
|
-
# {
|
3912
|
-
# db_subnet_group_name: "String", # required
|
3913
|
-
# }
|
3914
|
-
#
|
3915
3594
|
# @!attribute [rw] db_subnet_group_name
|
3916
3595
|
# The name of the database subnet group to delete.
|
3917
3596
|
#
|
@@ -3935,13 +3614,6 @@ module Aws::Neptune
|
|
3935
3614
|
include Aws::Structure
|
3936
3615
|
end
|
3937
3616
|
|
3938
|
-
# @note When making an API call, you may pass DeleteEventSubscriptionMessage
|
3939
|
-
# data as a hash:
|
3940
|
-
#
|
3941
|
-
# {
|
3942
|
-
# subscription_name: "String", # required
|
3943
|
-
# }
|
3944
|
-
#
|
3945
3617
|
# @!attribute [rw] subscription_name
|
3946
3618
|
# The name of the event notification subscription you want to delete.
|
3947
3619
|
# @return [String]
|
@@ -3967,13 +3639,6 @@ module Aws::Neptune
|
|
3967
3639
|
include Aws::Structure
|
3968
3640
|
end
|
3969
3641
|
|
3970
|
-
# @note When making an API call, you may pass DeleteGlobalClusterMessage
|
3971
|
-
# data as a hash:
|
3972
|
-
#
|
3973
|
-
# {
|
3974
|
-
# global_cluster_identifier: "GlobalClusterIdentifier", # required
|
3975
|
-
# }
|
3976
|
-
#
|
3977
3642
|
# @!attribute [rw] global_cluster_identifier
|
3978
3643
|
# The cluster identifier of the global database cluster being deleted.
|
3979
3644
|
# @return [String]
|
@@ -4003,22 +3668,6 @@ module Aws::Neptune
|
|
4003
3668
|
include Aws::Structure
|
4004
3669
|
end
|
4005
3670
|
|
4006
|
-
# @note When making an API call, you may pass DescribeDBClusterEndpointsMessage
|
4007
|
-
# data as a hash:
|
4008
|
-
#
|
4009
|
-
# {
|
4010
|
-
# db_cluster_identifier: "String",
|
4011
|
-
# db_cluster_endpoint_identifier: "String",
|
4012
|
-
# filters: [
|
4013
|
-
# {
|
4014
|
-
# name: "String", # required
|
4015
|
-
# values: ["String"], # required
|
4016
|
-
# },
|
4017
|
-
# ],
|
4018
|
-
# max_records: 1,
|
4019
|
-
# marker: "String",
|
4020
|
-
# }
|
4021
|
-
#
|
4022
3671
|
# @!attribute [rw] db_cluster_identifier
|
4023
3672
|
# The DB cluster identifier of the DB cluster associated with the
|
4024
3673
|
# endpoint. This parameter is stored as a lowercase string.
|
@@ -4075,21 +3724,6 @@ module Aws::Neptune
|
|
4075
3724
|
include Aws::Structure
|
4076
3725
|
end
|
4077
3726
|
|
4078
|
-
# @note When making an API call, you may pass DescribeDBClusterParameterGroupsMessage
|
4079
|
-
# data as a hash:
|
4080
|
-
#
|
4081
|
-
# {
|
4082
|
-
# db_cluster_parameter_group_name: "String",
|
4083
|
-
# filters: [
|
4084
|
-
# {
|
4085
|
-
# name: "String", # required
|
4086
|
-
# values: ["String"], # required
|
4087
|
-
# },
|
4088
|
-
# ],
|
4089
|
-
# max_records: 1,
|
4090
|
-
# marker: "String",
|
4091
|
-
# }
|
4092
|
-
#
|
4093
3727
|
# @!attribute [rw] db_cluster_parameter_group_name
|
4094
3728
|
# The name of a specific DB cluster parameter group to return details
|
4095
3729
|
# for.
|
@@ -4135,22 +3769,6 @@ module Aws::Neptune
|
|
4135
3769
|
include Aws::Structure
|
4136
3770
|
end
|
4137
3771
|
|
4138
|
-
# @note When making an API call, you may pass DescribeDBClusterParametersMessage
|
4139
|
-
# data as a hash:
|
4140
|
-
#
|
4141
|
-
# {
|
4142
|
-
# db_cluster_parameter_group_name: "String", # required
|
4143
|
-
# source: "String",
|
4144
|
-
# filters: [
|
4145
|
-
# {
|
4146
|
-
# name: "String", # required
|
4147
|
-
# values: ["String"], # required
|
4148
|
-
# },
|
4149
|
-
# ],
|
4150
|
-
# max_records: 1,
|
4151
|
-
# marker: "String",
|
4152
|
-
# }
|
4153
|
-
#
|
4154
3772
|
# @!attribute [rw] db_cluster_parameter_group_name
|
4155
3773
|
# The name of a specific DB cluster parameter group to return
|
4156
3774
|
# parameter details for.
|
@@ -4202,13 +3820,6 @@ module Aws::Neptune
|
|
4202
3820
|
include Aws::Structure
|
4203
3821
|
end
|
4204
3822
|
|
4205
|
-
# @note When making an API call, you may pass DescribeDBClusterSnapshotAttributesMessage
|
4206
|
-
# data as a hash:
|
4207
|
-
#
|
4208
|
-
# {
|
4209
|
-
# db_cluster_snapshot_identifier: "String", # required
|
4210
|
-
# }
|
4211
|
-
#
|
4212
3823
|
# @!attribute [rw] db_cluster_snapshot_identifier
|
4213
3824
|
# The identifier for the DB cluster snapshot to describe the
|
4214
3825
|
# attributes for.
|
@@ -4240,25 +3851,6 @@ module Aws::Neptune
|
|
4240
3851
|
include Aws::Structure
|
4241
3852
|
end
|
4242
3853
|
|
4243
|
-
# @note When making an API call, you may pass DescribeDBClusterSnapshotsMessage
|
4244
|
-
# data as a hash:
|
4245
|
-
#
|
4246
|
-
# {
|
4247
|
-
# db_cluster_identifier: "String",
|
4248
|
-
# db_cluster_snapshot_identifier: "String",
|
4249
|
-
# snapshot_type: "String",
|
4250
|
-
# filters: [
|
4251
|
-
# {
|
4252
|
-
# name: "String", # required
|
4253
|
-
# values: ["String"], # required
|
4254
|
-
# },
|
4255
|
-
# ],
|
4256
|
-
# max_records: 1,
|
4257
|
-
# marker: "String",
|
4258
|
-
# include_shared: false,
|
4259
|
-
# include_public: false,
|
4260
|
-
# }
|
4261
|
-
#
|
4262
3854
|
# @!attribute [rw] db_cluster_identifier
|
4263
3855
|
# The ID of the DB cluster to retrieve the list of DB cluster
|
4264
3856
|
# snapshots for. This parameter can't be used in conjunction with the
|
@@ -4373,21 +3965,6 @@ module Aws::Neptune
|
|
4373
3965
|
include Aws::Structure
|
4374
3966
|
end
|
4375
3967
|
|
4376
|
-
# @note When making an API call, you may pass DescribeDBClustersMessage
|
4377
|
-
# data as a hash:
|
4378
|
-
#
|
4379
|
-
# {
|
4380
|
-
# db_cluster_identifier: "String",
|
4381
|
-
# filters: [
|
4382
|
-
# {
|
4383
|
-
# name: "String", # required
|
4384
|
-
# values: ["String"], # required
|
4385
|
-
# },
|
4386
|
-
# ],
|
4387
|
-
# max_records: 1,
|
4388
|
-
# marker: "String",
|
4389
|
-
# }
|
4390
|
-
#
|
4391
3968
|
# @!attribute [rw] db_cluster_identifier
|
4392
3969
|
# The user-supplied DB cluster identifier. If this parameter is
|
4393
3970
|
# specified, information from only the specific DB cluster is
|
@@ -4446,26 +4023,6 @@ module Aws::Neptune
|
|
4446
4023
|
include Aws::Structure
|
4447
4024
|
end
|
4448
4025
|
|
4449
|
-
# @note When making an API call, you may pass DescribeDBEngineVersionsMessage
|
4450
|
-
# data as a hash:
|
4451
|
-
#
|
4452
|
-
# {
|
4453
|
-
# engine: "String",
|
4454
|
-
# engine_version: "String",
|
4455
|
-
# db_parameter_group_family: "String",
|
4456
|
-
# filters: [
|
4457
|
-
# {
|
4458
|
-
# name: "String", # required
|
4459
|
-
# values: ["String"], # required
|
4460
|
-
# },
|
4461
|
-
# ],
|
4462
|
-
# max_records: 1,
|
4463
|
-
# marker: "String",
|
4464
|
-
# default_only: false,
|
4465
|
-
# list_supported_character_sets: false,
|
4466
|
-
# list_supported_timezones: false,
|
4467
|
-
# }
|
4468
|
-
#
|
4469
4026
|
# @!attribute [rw] engine
|
4470
4027
|
# The database engine to return.
|
4471
4028
|
# @return [String]
|
@@ -4541,21 +4098,6 @@ module Aws::Neptune
|
|
4541
4098
|
include Aws::Structure
|
4542
4099
|
end
|
4543
4100
|
|
4544
|
-
# @note When making an API call, you may pass DescribeDBInstancesMessage
|
4545
|
-
# data as a hash:
|
4546
|
-
#
|
4547
|
-
# {
|
4548
|
-
# db_instance_identifier: "String",
|
4549
|
-
# filters: [
|
4550
|
-
# {
|
4551
|
-
# name: "String", # required
|
4552
|
-
# values: ["String"], # required
|
4553
|
-
# },
|
4554
|
-
# ],
|
4555
|
-
# max_records: 1,
|
4556
|
-
# marker: "String",
|
4557
|
-
# }
|
4558
|
-
#
|
4559
4101
|
# @!attribute [rw] db_instance_identifier
|
4560
4102
|
# The user-supplied instance identifier. If this parameter is
|
4561
4103
|
# specified, information from only the specific DB instance is
|
@@ -4615,21 +4157,6 @@ module Aws::Neptune
|
|
4615
4157
|
include Aws::Structure
|
4616
4158
|
end
|
4617
4159
|
|
4618
|
-
# @note When making an API call, you may pass DescribeDBParameterGroupsMessage
|
4619
|
-
# data as a hash:
|
4620
|
-
#
|
4621
|
-
# {
|
4622
|
-
# db_parameter_group_name: "String",
|
4623
|
-
# filters: [
|
4624
|
-
# {
|
4625
|
-
# name: "String", # required
|
4626
|
-
# values: ["String"], # required
|
4627
|
-
# },
|
4628
|
-
# ],
|
4629
|
-
# max_records: 1,
|
4630
|
-
# marker: "String",
|
4631
|
-
# }
|
4632
|
-
#
|
4633
4160
|
# @!attribute [rw] db_parameter_group_name
|
4634
4161
|
# The name of a specific DB parameter group to return details for.
|
4635
4162
|
#
|
@@ -4674,22 +4201,6 @@ module Aws::Neptune
|
|
4674
4201
|
include Aws::Structure
|
4675
4202
|
end
|
4676
4203
|
|
4677
|
-
# @note When making an API call, you may pass DescribeDBParametersMessage
|
4678
|
-
# data as a hash:
|
4679
|
-
#
|
4680
|
-
# {
|
4681
|
-
# db_parameter_group_name: "String", # required
|
4682
|
-
# source: "String",
|
4683
|
-
# filters: [
|
4684
|
-
# {
|
4685
|
-
# name: "String", # required
|
4686
|
-
# values: ["String"], # required
|
4687
|
-
# },
|
4688
|
-
# ],
|
4689
|
-
# max_records: 1,
|
4690
|
-
# marker: "String",
|
4691
|
-
# }
|
4692
|
-
#
|
4693
4204
|
# @!attribute [rw] db_parameter_group_name
|
4694
4205
|
# The name of a specific DB parameter group to return details for.
|
4695
4206
|
#
|
@@ -4742,21 +4253,6 @@ module Aws::Neptune
|
|
4742
4253
|
include Aws::Structure
|
4743
4254
|
end
|
4744
4255
|
|
4745
|
-
# @note When making an API call, you may pass DescribeDBSubnetGroupsMessage
|
4746
|
-
# data as a hash:
|
4747
|
-
#
|
4748
|
-
# {
|
4749
|
-
# db_subnet_group_name: "String",
|
4750
|
-
# filters: [
|
4751
|
-
# {
|
4752
|
-
# name: "String", # required
|
4753
|
-
# values: ["String"], # required
|
4754
|
-
# },
|
4755
|
-
# ],
|
4756
|
-
# max_records: 1,
|
4757
|
-
# marker: "String",
|
4758
|
-
# }
|
4759
|
-
#
|
4760
4256
|
# @!attribute [rw] db_subnet_group_name
|
4761
4257
|
# The name of the DB subnet group to return details for.
|
4762
4258
|
# @return [String]
|
@@ -4794,21 +4290,6 @@ module Aws::Neptune
|
|
4794
4290
|
include Aws::Structure
|
4795
4291
|
end
|
4796
4292
|
|
4797
|
-
# @note When making an API call, you may pass DescribeEngineDefaultClusterParametersMessage
|
4798
|
-
# data as a hash:
|
4799
|
-
#
|
4800
|
-
# {
|
4801
|
-
# db_parameter_group_family: "String", # required
|
4802
|
-
# filters: [
|
4803
|
-
# {
|
4804
|
-
# name: "String", # required
|
4805
|
-
# values: ["String"], # required
|
4806
|
-
# },
|
4807
|
-
# ],
|
4808
|
-
# max_records: 1,
|
4809
|
-
# marker: "String",
|
4810
|
-
# }
|
4811
|
-
#
|
4812
4293
|
# @!attribute [rw] db_parameter_group_family
|
4813
4294
|
# The name of the DB cluster parameter group family to return engine
|
4814
4295
|
# parameter information for.
|
@@ -4860,21 +4341,6 @@ module Aws::Neptune
|
|
4860
4341
|
include Aws::Structure
|
4861
4342
|
end
|
4862
4343
|
|
4863
|
-
# @note When making an API call, you may pass DescribeEngineDefaultParametersMessage
|
4864
|
-
# data as a hash:
|
4865
|
-
#
|
4866
|
-
# {
|
4867
|
-
# db_parameter_group_family: "String", # required
|
4868
|
-
# filters: [
|
4869
|
-
# {
|
4870
|
-
# name: "String", # required
|
4871
|
-
# values: ["String"], # required
|
4872
|
-
# },
|
4873
|
-
# ],
|
4874
|
-
# max_records: 1,
|
4875
|
-
# marker: "String",
|
4876
|
-
# }
|
4877
|
-
#
|
4878
4344
|
# @!attribute [rw] db_parameter_group_family
|
4879
4345
|
# The name of the DB parameter group family.
|
4880
4346
|
# @return [String]
|
@@ -4925,19 +4391,6 @@ module Aws::Neptune
|
|
4925
4391
|
include Aws::Structure
|
4926
4392
|
end
|
4927
4393
|
|
4928
|
-
# @note When making an API call, you may pass DescribeEventCategoriesMessage
|
4929
|
-
# data as a hash:
|
4930
|
-
#
|
4931
|
-
# {
|
4932
|
-
# source_type: "String",
|
4933
|
-
# filters: [
|
4934
|
-
# {
|
4935
|
-
# name: "String", # required
|
4936
|
-
# values: ["String"], # required
|
4937
|
-
# },
|
4938
|
-
# ],
|
4939
|
-
# }
|
4940
|
-
#
|
4941
4394
|
# @!attribute [rw] source_type
|
4942
4395
|
# The type of source that is generating the events.
|
4943
4396
|
#
|
@@ -4958,21 +4411,6 @@ module Aws::Neptune
|
|
4958
4411
|
include Aws::Structure
|
4959
4412
|
end
|
4960
4413
|
|
4961
|
-
# @note When making an API call, you may pass DescribeEventSubscriptionsMessage
|
4962
|
-
# data as a hash:
|
4963
|
-
#
|
4964
|
-
# {
|
4965
|
-
# subscription_name: "String",
|
4966
|
-
# filters: [
|
4967
|
-
# {
|
4968
|
-
# name: "String", # required
|
4969
|
-
# values: ["String"], # required
|
4970
|
-
# },
|
4971
|
-
# ],
|
4972
|
-
# max_records: 1,
|
4973
|
-
# marker: "String",
|
4974
|
-
# }
|
4975
|
-
#
|
4976
4414
|
# @!attribute [rw] subscription_name
|
4977
4415
|
# The name of the event notification subscription you want to
|
4978
4416
|
# describe.
|
@@ -5011,26 +4449,6 @@ module Aws::Neptune
|
|
5011
4449
|
include Aws::Structure
|
5012
4450
|
end
|
5013
4451
|
|
5014
|
-
# @note When making an API call, you may pass DescribeEventsMessage
|
5015
|
-
# data as a hash:
|
5016
|
-
#
|
5017
|
-
# {
|
5018
|
-
# source_identifier: "String",
|
5019
|
-
# source_type: "db-instance", # accepts db-instance, db-parameter-group, db-security-group, db-snapshot, db-cluster, db-cluster-snapshot
|
5020
|
-
# start_time: Time.now,
|
5021
|
-
# end_time: Time.now,
|
5022
|
-
# duration: 1,
|
5023
|
-
# event_categories: ["String"],
|
5024
|
-
# filters: [
|
5025
|
-
# {
|
5026
|
-
# name: "String", # required
|
5027
|
-
# values: ["String"], # required
|
5028
|
-
# },
|
5029
|
-
# ],
|
5030
|
-
# max_records: 1,
|
5031
|
-
# marker: "String",
|
5032
|
-
# }
|
5033
|
-
#
|
5034
4452
|
# @!attribute [rw] source_identifier
|
5035
4453
|
# The identifier of the event source for which events are returned. If
|
5036
4454
|
# not specified, then all sources are included in the response.
|
@@ -5132,15 +4550,6 @@ module Aws::Neptune
|
|
5132
4550
|
include Aws::Structure
|
5133
4551
|
end
|
5134
4552
|
|
5135
|
-
# @note When making an API call, you may pass DescribeGlobalClustersMessage
|
5136
|
-
# data as a hash:
|
5137
|
-
#
|
5138
|
-
# {
|
5139
|
-
# global_cluster_identifier: "GlobalClusterIdentifier",
|
5140
|
-
# max_records: 1,
|
5141
|
-
# marker: "String",
|
5142
|
-
# }
|
5143
|
-
#
|
5144
4553
|
# @!attribute [rw] global_cluster_identifier
|
5145
4554
|
# The user-supplied DB cluster identifier. If this parameter is
|
5146
4555
|
# specified, only information about the specified DB cluster is
|
@@ -5178,25 +4587,6 @@ module Aws::Neptune
|
|
5178
4587
|
include Aws::Structure
|
5179
4588
|
end
|
5180
4589
|
|
5181
|
-
# @note When making an API call, you may pass DescribeOrderableDBInstanceOptionsMessage
|
5182
|
-
# data as a hash:
|
5183
|
-
#
|
5184
|
-
# {
|
5185
|
-
# engine: "String", # required
|
5186
|
-
# engine_version: "String",
|
5187
|
-
# db_instance_class: "String",
|
5188
|
-
# license_model: "String",
|
5189
|
-
# vpc: false,
|
5190
|
-
# filters: [
|
5191
|
-
# {
|
5192
|
-
# name: "String", # required
|
5193
|
-
# values: ["String"], # required
|
5194
|
-
# },
|
5195
|
-
# ],
|
5196
|
-
# max_records: 1,
|
5197
|
-
# marker: "String",
|
5198
|
-
# }
|
5199
|
-
#
|
5200
4590
|
# @!attribute [rw] engine
|
5201
4591
|
# The name of the engine to retrieve DB instance options for.
|
5202
4592
|
# @return [String]
|
@@ -5259,21 +4649,6 @@ module Aws::Neptune
|
|
5259
4649
|
include Aws::Structure
|
5260
4650
|
end
|
5261
4651
|
|
5262
|
-
# @note When making an API call, you may pass DescribePendingMaintenanceActionsMessage
|
5263
|
-
# data as a hash:
|
5264
|
-
#
|
5265
|
-
# {
|
5266
|
-
# resource_identifier: "String",
|
5267
|
-
# filters: [
|
5268
|
-
# {
|
5269
|
-
# name: "String", # required
|
5270
|
-
# values: ["String"], # required
|
5271
|
-
# },
|
5272
|
-
# ],
|
5273
|
-
# marker: "String",
|
5274
|
-
# max_records: 1,
|
5275
|
-
# }
|
5276
|
-
#
|
5277
4652
|
# @!attribute [rw] resource_identifier
|
5278
4653
|
# The ARN of a resource to return pending maintenance actions for.
|
5279
4654
|
# @return [String]
|
@@ -5323,13 +4698,6 @@ module Aws::Neptune
|
|
5323
4698
|
include Aws::Structure
|
5324
4699
|
end
|
5325
4700
|
|
5326
|
-
# @note When making an API call, you may pass DescribeValidDBInstanceModificationsMessage
|
5327
|
-
# data as a hash:
|
5328
|
-
#
|
5329
|
-
# {
|
5330
|
-
# db_instance_identifier: "String", # required
|
5331
|
-
# }
|
5332
|
-
#
|
5333
4701
|
# @!attribute [rw] db_instance_identifier
|
5334
4702
|
# The customer identifier or the ARN of your DB instance.
|
5335
4703
|
# @return [String]
|
@@ -5660,14 +5028,6 @@ module Aws::Neptune
|
|
5660
5028
|
include Aws::Structure
|
5661
5029
|
end
|
5662
5030
|
|
5663
|
-
# @note When making an API call, you may pass FailoverDBClusterMessage
|
5664
|
-
# data as a hash:
|
5665
|
-
#
|
5666
|
-
# {
|
5667
|
-
# db_cluster_identifier: "String",
|
5668
|
-
# target_db_instance_identifier: "String",
|
5669
|
-
# }
|
5670
|
-
#
|
5671
5031
|
# @!attribute [rw] db_cluster_identifier
|
5672
5032
|
# A DB cluster identifier to force a failover for. This parameter is
|
5673
5033
|
# not case-sensitive.
|
@@ -5710,14 +5070,6 @@ module Aws::Neptune
|
|
5710
5070
|
include Aws::Structure
|
5711
5071
|
end
|
5712
5072
|
|
5713
|
-
# @note When making an API call, you may pass FailoverGlobalClusterMessage
|
5714
|
-
# data as a hash:
|
5715
|
-
#
|
5716
|
-
# {
|
5717
|
-
# global_cluster_identifier: "GlobalClusterIdentifier", # required
|
5718
|
-
# target_db_cluster_identifier: "String", # required
|
5719
|
-
# }
|
5720
|
-
#
|
5721
5073
|
# @!attribute [rw] global_cluster_identifier
|
5722
5074
|
# Identifier of the Neptune global database that should be failed
|
5723
5075
|
# over. The identifier is the unique key assigned by the user when the
|
@@ -5761,14 +5113,6 @@ module Aws::Neptune
|
|
5761
5113
|
|
5762
5114
|
# This type is not currently supported.
|
5763
5115
|
#
|
5764
|
-
# @note When making an API call, you may pass Filter
|
5765
|
-
# data as a hash:
|
5766
|
-
#
|
5767
|
-
# {
|
5768
|
-
# name: "String", # required
|
5769
|
-
# values: ["String"], # required
|
5770
|
-
# }
|
5771
|
-
#
|
5772
5116
|
# @!attribute [rw] name
|
5773
5117
|
# This parameter is not currently supported.
|
5774
5118
|
# @return [String]
|
@@ -6044,19 +5388,6 @@ module Aws::Neptune
|
|
6044
5388
|
#
|
6045
5389
|
class KMSKeyNotAccessibleFault < Aws::EmptyStructure; end
|
6046
5390
|
|
6047
|
-
# @note When making an API call, you may pass ListTagsForResourceMessage
|
6048
|
-
# data as a hash:
|
6049
|
-
#
|
6050
|
-
# {
|
6051
|
-
# resource_name: "String", # required
|
6052
|
-
# filters: [
|
6053
|
-
# {
|
6054
|
-
# name: "String", # required
|
6055
|
-
# values: ["String"], # required
|
6056
|
-
# },
|
6057
|
-
# ],
|
6058
|
-
# }
|
6059
|
-
#
|
6060
5391
|
# @!attribute [rw] resource_name
|
6061
5392
|
# The Amazon Neptune resource with tags to be listed. This value is an
|
6062
5393
|
# Amazon Resource Name (ARN). For information about creating an ARN,
|
@@ -6080,16 +5411,6 @@ module Aws::Neptune
|
|
6080
5411
|
include Aws::Structure
|
6081
5412
|
end
|
6082
5413
|
|
6083
|
-
# @note When making an API call, you may pass ModifyDBClusterEndpointMessage
|
6084
|
-
# data as a hash:
|
6085
|
-
#
|
6086
|
-
# {
|
6087
|
-
# db_cluster_endpoint_identifier: "String", # required
|
6088
|
-
# endpoint_type: "String",
|
6089
|
-
# static_members: ["String"],
|
6090
|
-
# excluded_members: ["String"],
|
6091
|
-
# }
|
6092
|
-
#
|
6093
5414
|
# @!attribute [rw] db_cluster_endpoint_identifier
|
6094
5415
|
# The identifier of the endpoint to modify. This parameter is stored
|
6095
5416
|
# as a lowercase string.
|
@@ -6206,33 +5527,6 @@ module Aws::Neptune
|
|
6206
5527
|
include Aws::Structure
|
6207
5528
|
end
|
6208
5529
|
|
6209
|
-
# @note When making an API call, you may pass ModifyDBClusterMessage
|
6210
|
-
# data as a hash:
|
6211
|
-
#
|
6212
|
-
# {
|
6213
|
-
# db_cluster_identifier: "String", # required
|
6214
|
-
# new_db_cluster_identifier: "String",
|
6215
|
-
# apply_immediately: false,
|
6216
|
-
# backup_retention_period: 1,
|
6217
|
-
# db_cluster_parameter_group_name: "String",
|
6218
|
-
# vpc_security_group_ids: ["String"],
|
6219
|
-
# port: 1,
|
6220
|
-
# master_user_password: "String",
|
6221
|
-
# option_group_name: "String",
|
6222
|
-
# preferred_backup_window: "String",
|
6223
|
-
# preferred_maintenance_window: "String",
|
6224
|
-
# enable_iam_database_authentication: false,
|
6225
|
-
# cloudwatch_logs_export_configuration: {
|
6226
|
-
# enable_log_types: ["String"],
|
6227
|
-
# disable_log_types: ["String"],
|
6228
|
-
# },
|
6229
|
-
# engine_version: "String",
|
6230
|
-
# allow_major_version_upgrade: false,
|
6231
|
-
# db_instance_parameter_group_name: "String",
|
6232
|
-
# deletion_protection: false,
|
6233
|
-
# copy_tags_to_snapshot: false,
|
6234
|
-
# }
|
6235
|
-
#
|
6236
5530
|
# @!attribute [rw] db_cluster_identifier
|
6237
5531
|
# The DB cluster identifier for the cluster being modified. This
|
6238
5532
|
# parameter is not case-sensitive.
|
@@ -6417,6 +5711,18 @@ module Aws::Neptune
|
|
6417
5711
|
# that is created.*
|
6418
5712
|
# @return [Boolean]
|
6419
5713
|
#
|
5714
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
5715
|
+
# Contains the scaling configuration of a Neptune Serverless DB
|
5716
|
+
# cluster.
|
5717
|
+
#
|
5718
|
+
# For more information, see [Using Amazon Neptune Serverless][1] in
|
5719
|
+
# the *Amazon Neptune User Guide*.
|
5720
|
+
#
|
5721
|
+
#
|
5722
|
+
#
|
5723
|
+
# [1]: https://docs.aws.amazon.com/neptune/latest/userguide/neptune-serverless-using.html
|
5724
|
+
# @return [Types::ServerlessV2ScalingConfiguration]
|
5725
|
+
#
|
6420
5726
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/ModifyDBClusterMessage AWS API Documentation
|
6421
5727
|
#
|
6422
5728
|
class ModifyDBClusterMessage < Struct.new(
|
@@ -6437,32 +5743,12 @@ module Aws::Neptune
|
|
6437
5743
|
:allow_major_version_upgrade,
|
6438
5744
|
:db_instance_parameter_group_name,
|
6439
5745
|
:deletion_protection,
|
6440
|
-
:copy_tags_to_snapshot
|
5746
|
+
:copy_tags_to_snapshot,
|
5747
|
+
:serverless_v2_scaling_configuration)
|
6441
5748
|
SENSITIVE = []
|
6442
5749
|
include Aws::Structure
|
6443
5750
|
end
|
6444
5751
|
|
6445
|
-
# @note When making an API call, you may pass ModifyDBClusterParameterGroupMessage
|
6446
|
-
# data as a hash:
|
6447
|
-
#
|
6448
|
-
# {
|
6449
|
-
# db_cluster_parameter_group_name: "String", # required
|
6450
|
-
# parameters: [ # required
|
6451
|
-
# {
|
6452
|
-
# parameter_name: "String",
|
6453
|
-
# parameter_value: "String",
|
6454
|
-
# description: "String",
|
6455
|
-
# source: "String",
|
6456
|
-
# apply_type: "String",
|
6457
|
-
# data_type: "String",
|
6458
|
-
# allowed_values: "String",
|
6459
|
-
# is_modifiable: false,
|
6460
|
-
# minimum_engine_version: "String",
|
6461
|
-
# apply_method: "immediate", # accepts immediate, pending-reboot
|
6462
|
-
# },
|
6463
|
-
# ],
|
6464
|
-
# }
|
6465
|
-
#
|
6466
5752
|
# @!attribute [rw] db_cluster_parameter_group_name
|
6467
5753
|
# The name of the DB cluster parameter group to modify.
|
6468
5754
|
# @return [String]
|
@@ -6495,16 +5781,6 @@ module Aws::Neptune
|
|
6495
5781
|
include Aws::Structure
|
6496
5782
|
end
|
6497
5783
|
|
6498
|
-
# @note When making an API call, you may pass ModifyDBClusterSnapshotAttributeMessage
|
6499
|
-
# data as a hash:
|
6500
|
-
#
|
6501
|
-
# {
|
6502
|
-
# db_cluster_snapshot_identifier: "String", # required
|
6503
|
-
# attribute_name: "String", # required
|
6504
|
-
# values_to_add: ["String"],
|
6505
|
-
# values_to_remove: ["String"],
|
6506
|
-
# }
|
6507
|
-
#
|
6508
5784
|
# @!attribute [rw] db_cluster_snapshot_identifier
|
6509
5785
|
# The identifier for the DB cluster snapshot to modify the attributes
|
6510
5786
|
# for.
|
@@ -6571,52 +5847,6 @@ module Aws::Neptune
|
|
6571
5847
|
include Aws::Structure
|
6572
5848
|
end
|
6573
5849
|
|
6574
|
-
# @note When making an API call, you may pass ModifyDBInstanceMessage
|
6575
|
-
# data as a hash:
|
6576
|
-
#
|
6577
|
-
# {
|
6578
|
-
# db_instance_identifier: "String", # required
|
6579
|
-
# allocated_storage: 1,
|
6580
|
-
# db_instance_class: "String",
|
6581
|
-
# db_subnet_group_name: "String",
|
6582
|
-
# db_security_groups: ["String"],
|
6583
|
-
# vpc_security_group_ids: ["String"],
|
6584
|
-
# apply_immediately: false,
|
6585
|
-
# master_user_password: "String",
|
6586
|
-
# db_parameter_group_name: "String",
|
6587
|
-
# backup_retention_period: 1,
|
6588
|
-
# preferred_backup_window: "String",
|
6589
|
-
# preferred_maintenance_window: "String",
|
6590
|
-
# multi_az: false,
|
6591
|
-
# engine_version: "String",
|
6592
|
-
# allow_major_version_upgrade: false,
|
6593
|
-
# auto_minor_version_upgrade: false,
|
6594
|
-
# license_model: "String",
|
6595
|
-
# iops: 1,
|
6596
|
-
# option_group_name: "String",
|
6597
|
-
# new_db_instance_identifier: "String",
|
6598
|
-
# storage_type: "String",
|
6599
|
-
# tde_credential_arn: "String",
|
6600
|
-
# tde_credential_password: "String",
|
6601
|
-
# ca_certificate_identifier: "String",
|
6602
|
-
# domain: "String",
|
6603
|
-
# copy_tags_to_snapshot: false,
|
6604
|
-
# monitoring_interval: 1,
|
6605
|
-
# db_port_number: 1,
|
6606
|
-
# publicly_accessible: false,
|
6607
|
-
# monitoring_role_arn: "String",
|
6608
|
-
# domain_iam_role_name: "String",
|
6609
|
-
# promotion_tier: 1,
|
6610
|
-
# enable_iam_database_authentication: false,
|
6611
|
-
# enable_performance_insights: false,
|
6612
|
-
# performance_insights_kms_key_id: "String",
|
6613
|
-
# cloudwatch_logs_export_configuration: {
|
6614
|
-
# enable_log_types: ["String"],
|
6615
|
-
# disable_log_types: ["String"],
|
6616
|
-
# },
|
6617
|
-
# deletion_protection: false,
|
6618
|
-
# }
|
6619
|
-
#
|
6620
5850
|
# @!attribute [rw] db_instance_identifier
|
6621
5851
|
# The DB instance identifier. This value is stored as a lowercase
|
6622
5852
|
# string.
|
@@ -7008,27 +6238,6 @@ module Aws::Neptune
|
|
7008
6238
|
include Aws::Structure
|
7009
6239
|
end
|
7010
6240
|
|
7011
|
-
# @note When making an API call, you may pass ModifyDBParameterGroupMessage
|
7012
|
-
# data as a hash:
|
7013
|
-
#
|
7014
|
-
# {
|
7015
|
-
# db_parameter_group_name: "String", # required
|
7016
|
-
# parameters: [ # required
|
7017
|
-
# {
|
7018
|
-
# parameter_name: "String",
|
7019
|
-
# parameter_value: "String",
|
7020
|
-
# description: "String",
|
7021
|
-
# source: "String",
|
7022
|
-
# apply_type: "String",
|
7023
|
-
# data_type: "String",
|
7024
|
-
# allowed_values: "String",
|
7025
|
-
# is_modifiable: false,
|
7026
|
-
# minimum_engine_version: "String",
|
7027
|
-
# apply_method: "immediate", # accepts immediate, pending-reboot
|
7028
|
-
# },
|
7029
|
-
# ],
|
7030
|
-
# }
|
7031
|
-
#
|
7032
6241
|
# @!attribute [rw] db_parameter_group_name
|
7033
6242
|
# The name of the DB parameter group.
|
7034
6243
|
#
|
@@ -7065,15 +6274,6 @@ module Aws::Neptune
|
|
7065
6274
|
include Aws::Structure
|
7066
6275
|
end
|
7067
6276
|
|
7068
|
-
# @note When making an API call, you may pass ModifyDBSubnetGroupMessage
|
7069
|
-
# data as a hash:
|
7070
|
-
#
|
7071
|
-
# {
|
7072
|
-
# db_subnet_group_name: "String", # required
|
7073
|
-
# db_subnet_group_description: "String",
|
7074
|
-
# subnet_ids: ["String"], # required
|
7075
|
-
# }
|
7076
|
-
#
|
7077
6277
|
# @!attribute [rw] db_subnet_group_name
|
7078
6278
|
# The name for the DB subnet group. This value is stored as a
|
7079
6279
|
# lowercase string. You can't modify the default subnet group.
|
@@ -7117,17 +6317,6 @@ module Aws::Neptune
|
|
7117
6317
|
include Aws::Structure
|
7118
6318
|
end
|
7119
6319
|
|
7120
|
-
# @note When making an API call, you may pass ModifyEventSubscriptionMessage
|
7121
|
-
# data as a hash:
|
7122
|
-
#
|
7123
|
-
# {
|
7124
|
-
# subscription_name: "String", # required
|
7125
|
-
# sns_topic_arn: "String",
|
7126
|
-
# source_type: "String",
|
7127
|
-
# event_categories: ["String"],
|
7128
|
-
# enabled: false,
|
7129
|
-
# }
|
7130
|
-
#
|
7131
6320
|
# @!attribute [rw] subscription_name
|
7132
6321
|
# The name of the event notification subscription.
|
7133
6322
|
# @return [String]
|
@@ -7183,17 +6372,6 @@ module Aws::Neptune
|
|
7183
6372
|
include Aws::Structure
|
7184
6373
|
end
|
7185
6374
|
|
7186
|
-
# @note When making an API call, you may pass ModifyGlobalClusterMessage
|
7187
|
-
# data as a hash:
|
7188
|
-
#
|
7189
|
-
# {
|
7190
|
-
# global_cluster_identifier: "GlobalClusterIdentifier", # required
|
7191
|
-
# new_global_cluster_identifier: "GlobalClusterIdentifier",
|
7192
|
-
# deletion_protection: false,
|
7193
|
-
# engine_version: "String",
|
7194
|
-
# allow_major_version_upgrade: false,
|
7195
|
-
# }
|
7196
|
-
#
|
7197
6375
|
# @!attribute [rw] global_cluster_identifier
|
7198
6376
|
# The DB cluster identifier for the global cluster being modified.
|
7199
6377
|
# This parameter is not case-sensitive.
|
@@ -7443,22 +6621,6 @@ module Aws::Neptune
|
|
7443
6621
|
|
7444
6622
|
# Specifies a parameter.
|
7445
6623
|
#
|
7446
|
-
# @note When making an API call, you may pass Parameter
|
7447
|
-
# data as a hash:
|
7448
|
-
#
|
7449
|
-
# {
|
7450
|
-
# parameter_name: "String",
|
7451
|
-
# parameter_value: "String",
|
7452
|
-
# description: "String",
|
7453
|
-
# source: "String",
|
7454
|
-
# apply_type: "String",
|
7455
|
-
# data_type: "String",
|
7456
|
-
# allowed_values: "String",
|
7457
|
-
# is_modifiable: false,
|
7458
|
-
# minimum_engine_version: "String",
|
7459
|
-
# apply_method: "immediate", # accepts immediate, pending-reboot
|
7460
|
-
# }
|
7461
|
-
#
|
7462
6624
|
# @!attribute [rw] parameter_name
|
7463
6625
|
# Specifies the name of the parameter.
|
7464
6626
|
# @return [String]
|
@@ -7702,13 +6864,6 @@ module Aws::Neptune
|
|
7702
6864
|
include Aws::Structure
|
7703
6865
|
end
|
7704
6866
|
|
7705
|
-
# @note When making an API call, you may pass PromoteReadReplicaDBClusterMessage
|
7706
|
-
# data as a hash:
|
7707
|
-
#
|
7708
|
-
# {
|
7709
|
-
# db_cluster_identifier: "String", # required
|
7710
|
-
# }
|
7711
|
-
#
|
7712
6867
|
# @!attribute [rw] db_cluster_identifier
|
7713
6868
|
# Not supported.
|
7714
6869
|
# @return [String]
|
@@ -7770,14 +6925,6 @@ module Aws::Neptune
|
|
7770
6925
|
include Aws::Structure
|
7771
6926
|
end
|
7772
6927
|
|
7773
|
-
# @note When making an API call, you may pass RebootDBInstanceMessage
|
7774
|
-
# data as a hash:
|
7775
|
-
#
|
7776
|
-
# {
|
7777
|
-
# db_instance_identifier: "String", # required
|
7778
|
-
# force_failover: false,
|
7779
|
-
# }
|
7780
|
-
#
|
7781
6928
|
# @!attribute [rw] db_instance_identifier
|
7782
6929
|
# The DB instance identifier. This parameter is stored as a lowercase
|
7783
6930
|
# string.
|
@@ -7820,14 +6967,6 @@ module Aws::Neptune
|
|
7820
6967
|
include Aws::Structure
|
7821
6968
|
end
|
7822
6969
|
|
7823
|
-
# @note When making an API call, you may pass RemoveFromGlobalClusterMessage
|
7824
|
-
# data as a hash:
|
7825
|
-
#
|
7826
|
-
# {
|
7827
|
-
# global_cluster_identifier: "GlobalClusterIdentifier", # required
|
7828
|
-
# db_cluster_identifier: "String", # required
|
7829
|
-
# }
|
7830
|
-
#
|
7831
6970
|
# @!attribute [rw] global_cluster_identifier
|
7832
6971
|
# The identifier of the Neptune global database from which to detach
|
7833
6972
|
# the specified Neptune DB cluster.
|
@@ -7864,15 +7003,6 @@ module Aws::Neptune
|
|
7864
7003
|
include Aws::Structure
|
7865
7004
|
end
|
7866
7005
|
|
7867
|
-
# @note When making an API call, you may pass RemoveRoleFromDBClusterMessage
|
7868
|
-
# data as a hash:
|
7869
|
-
#
|
7870
|
-
# {
|
7871
|
-
# db_cluster_identifier: "String", # required
|
7872
|
-
# role_arn: "String", # required
|
7873
|
-
# feature_name: "String",
|
7874
|
-
# }
|
7875
|
-
#
|
7876
7006
|
# @!attribute [rw] db_cluster_identifier
|
7877
7007
|
# The name of the DB cluster to disassociate the IAM role from.
|
7878
7008
|
# @return [String]
|
@@ -7903,14 +7033,6 @@ module Aws::Neptune
|
|
7903
7033
|
include Aws::Structure
|
7904
7034
|
end
|
7905
7035
|
|
7906
|
-
# @note When making an API call, you may pass RemoveSourceIdentifierFromSubscriptionMessage
|
7907
|
-
# data as a hash:
|
7908
|
-
#
|
7909
|
-
# {
|
7910
|
-
# subscription_name: "String", # required
|
7911
|
-
# source_identifier: "String", # required
|
7912
|
-
# }
|
7913
|
-
#
|
7914
7036
|
# @!attribute [rw] subscription_name
|
7915
7037
|
# The name of the event notification subscription you want to remove a
|
7916
7038
|
# source identifier from.
|
@@ -7944,14 +7066,6 @@ module Aws::Neptune
|
|
7944
7066
|
include Aws::Structure
|
7945
7067
|
end
|
7946
7068
|
|
7947
|
-
# @note When making an API call, you may pass RemoveTagsFromResourceMessage
|
7948
|
-
# data as a hash:
|
7949
|
-
#
|
7950
|
-
# {
|
7951
|
-
# resource_name: "String", # required
|
7952
|
-
# tag_keys: ["String"], # required
|
7953
|
-
# }
|
7954
|
-
#
|
7955
7069
|
# @!attribute [rw] resource_name
|
7956
7070
|
# The Amazon Neptune resource that the tags are removed from. This
|
7957
7071
|
# value is an Amazon Resource Name (ARN). For information about
|
@@ -7976,28 +7090,6 @@ module Aws::Neptune
|
|
7976
7090
|
include Aws::Structure
|
7977
7091
|
end
|
7978
7092
|
|
7979
|
-
# @note When making an API call, you may pass ResetDBClusterParameterGroupMessage
|
7980
|
-
# data as a hash:
|
7981
|
-
#
|
7982
|
-
# {
|
7983
|
-
# db_cluster_parameter_group_name: "String", # required
|
7984
|
-
# reset_all_parameters: false,
|
7985
|
-
# parameters: [
|
7986
|
-
# {
|
7987
|
-
# parameter_name: "String",
|
7988
|
-
# parameter_value: "String",
|
7989
|
-
# description: "String",
|
7990
|
-
# source: "String",
|
7991
|
-
# apply_type: "String",
|
7992
|
-
# data_type: "String",
|
7993
|
-
# allowed_values: "String",
|
7994
|
-
# is_modifiable: false,
|
7995
|
-
# minimum_engine_version: "String",
|
7996
|
-
# apply_method: "immediate", # accepts immediate, pending-reboot
|
7997
|
-
# },
|
7998
|
-
# ],
|
7999
|
-
# }
|
8000
|
-
#
|
8001
7093
|
# @!attribute [rw] db_cluster_parameter_group_name
|
8002
7094
|
# The name of the DB cluster parameter group to reset.
|
8003
7095
|
# @return [String]
|
@@ -8025,28 +7117,6 @@ module Aws::Neptune
|
|
8025
7117
|
include Aws::Structure
|
8026
7118
|
end
|
8027
7119
|
|
8028
|
-
# @note When making an API call, you may pass ResetDBParameterGroupMessage
|
8029
|
-
# data as a hash:
|
8030
|
-
#
|
8031
|
-
# {
|
8032
|
-
# db_parameter_group_name: "String", # required
|
8033
|
-
# reset_all_parameters: false,
|
8034
|
-
# parameters: [
|
8035
|
-
# {
|
8036
|
-
# parameter_name: "String",
|
8037
|
-
# parameter_value: "String",
|
8038
|
-
# description: "String",
|
8039
|
-
# source: "String",
|
8040
|
-
# apply_type: "String",
|
8041
|
-
# data_type: "String",
|
8042
|
-
# allowed_values: "String",
|
8043
|
-
# is_modifiable: false,
|
8044
|
-
# minimum_engine_version: "String",
|
8045
|
-
# apply_method: "immediate", # accepts immediate, pending-reboot
|
8046
|
-
# },
|
8047
|
-
# ],
|
8048
|
-
# }
|
8049
|
-
#
|
8050
7120
|
# @!attribute [rw] db_parameter_group_name
|
8051
7121
|
# The name of the DB parameter group.
|
8052
7122
|
#
|
@@ -8110,34 +7180,6 @@ module Aws::Neptune
|
|
8110
7180
|
include Aws::Structure
|
8111
7181
|
end
|
8112
7182
|
|
8113
|
-
# @note When making an API call, you may pass RestoreDBClusterFromSnapshotMessage
|
8114
|
-
# data as a hash:
|
8115
|
-
#
|
8116
|
-
# {
|
8117
|
-
# availability_zones: ["String"],
|
8118
|
-
# db_cluster_identifier: "String", # required
|
8119
|
-
# snapshot_identifier: "String", # required
|
8120
|
-
# engine: "String", # required
|
8121
|
-
# engine_version: "String",
|
8122
|
-
# port: 1,
|
8123
|
-
# db_subnet_group_name: "String",
|
8124
|
-
# database_name: "String",
|
8125
|
-
# option_group_name: "String",
|
8126
|
-
# vpc_security_group_ids: ["String"],
|
8127
|
-
# tags: [
|
8128
|
-
# {
|
8129
|
-
# key: "String",
|
8130
|
-
# value: "String",
|
8131
|
-
# },
|
8132
|
-
# ],
|
8133
|
-
# kms_key_id: "String",
|
8134
|
-
# enable_iam_database_authentication: false,
|
8135
|
-
# enable_cloudwatch_logs_exports: ["String"],
|
8136
|
-
# db_cluster_parameter_group_name: "String",
|
8137
|
-
# deletion_protection: false,
|
8138
|
-
# copy_tags_to_snapshot: false,
|
8139
|
-
# }
|
8140
|
-
#
|
8141
7183
|
# @!attribute [rw] availability_zones
|
8142
7184
|
# Provides the list of EC2 Availability Zones that instances in the
|
8143
7185
|
# restored DB cluster can be created in.
|
@@ -8276,6 +7318,18 @@ module Aws::Neptune
|
|
8276
7318
|
# DB cluster that is created.*
|
8277
7319
|
# @return [Boolean]
|
8278
7320
|
#
|
7321
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
7322
|
+
# Contains the scaling configuration of a Neptune Serverless DB
|
7323
|
+
# cluster.
|
7324
|
+
#
|
7325
|
+
# For more information, see [Using Amazon Neptune Serverless][1] in
|
7326
|
+
# the *Amazon Neptune User Guide*.
|
7327
|
+
#
|
7328
|
+
#
|
7329
|
+
#
|
7330
|
+
# [1]: https://docs.aws.amazon.com/neptune/latest/userguide/neptune-serverless-using.html
|
7331
|
+
# @return [Types::ServerlessV2ScalingConfiguration]
|
7332
|
+
#
|
8279
7333
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/RestoreDBClusterFromSnapshotMessage AWS API Documentation
|
8280
7334
|
#
|
8281
7335
|
class RestoreDBClusterFromSnapshotMessage < Struct.new(
|
@@ -8295,7 +7349,8 @@ module Aws::Neptune
|
|
8295
7349
|
:enable_cloudwatch_logs_exports,
|
8296
7350
|
:db_cluster_parameter_group_name,
|
8297
7351
|
:deletion_protection,
|
8298
|
-
:copy_tags_to_snapshot
|
7352
|
+
:copy_tags_to_snapshot,
|
7353
|
+
:serverless_v2_scaling_configuration)
|
8299
7354
|
SENSITIVE = []
|
8300
7355
|
include Aws::Structure
|
8301
7356
|
end
|
@@ -8315,32 +7370,6 @@ module Aws::Neptune
|
|
8315
7370
|
include Aws::Structure
|
8316
7371
|
end
|
8317
7372
|
|
8318
|
-
# @note When making an API call, you may pass RestoreDBClusterToPointInTimeMessage
|
8319
|
-
# data as a hash:
|
8320
|
-
#
|
8321
|
-
# {
|
8322
|
-
# db_cluster_identifier: "String", # required
|
8323
|
-
# restore_type: "String",
|
8324
|
-
# source_db_cluster_identifier: "String", # required
|
8325
|
-
# restore_to_time: Time.now,
|
8326
|
-
# use_latest_restorable_time: false,
|
8327
|
-
# port: 1,
|
8328
|
-
# db_subnet_group_name: "String",
|
8329
|
-
# option_group_name: "String",
|
8330
|
-
# vpc_security_group_ids: ["String"],
|
8331
|
-
# tags: [
|
8332
|
-
# {
|
8333
|
-
# key: "String",
|
8334
|
-
# value: "String",
|
8335
|
-
# },
|
8336
|
-
# ],
|
8337
|
-
# kms_key_id: "String",
|
8338
|
-
# enable_iam_database_authentication: false,
|
8339
|
-
# enable_cloudwatch_logs_exports: ["String"],
|
8340
|
-
# db_cluster_parameter_group_name: "String",
|
8341
|
-
# deletion_protection: false,
|
8342
|
-
# }
|
8343
|
-
#
|
8344
7373
|
# @!attribute [rw] db_cluster_identifier
|
8345
7374
|
# The name of the new DB cluster to be created.
|
8346
7375
|
#
|
@@ -8495,6 +7524,18 @@ module Aws::Neptune
|
|
8495
7524
|
# protection is enabled. By default, deletion protection is disabled.
|
8496
7525
|
# @return [Boolean]
|
8497
7526
|
#
|
7527
|
+
# @!attribute [rw] serverless_v2_scaling_configuration
|
7528
|
+
# Contains the scaling configuration of a Neptune Serverless DB
|
7529
|
+
# cluster.
|
7530
|
+
#
|
7531
|
+
# For more information, see [Using Amazon Neptune Serverless][1] in
|
7532
|
+
# the *Amazon Neptune User Guide*.
|
7533
|
+
#
|
7534
|
+
#
|
7535
|
+
#
|
7536
|
+
# [1]: https://docs.aws.amazon.com/neptune/latest/userguide/neptune-serverless-using.html
|
7537
|
+
# @return [Types::ServerlessV2ScalingConfiguration]
|
7538
|
+
#
|
8498
7539
|
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/RestoreDBClusterToPointInTimeMessage AWS API Documentation
|
8499
7540
|
#
|
8500
7541
|
class RestoreDBClusterToPointInTimeMessage < Struct.new(
|
@@ -8512,7 +7553,8 @@ module Aws::Neptune
|
|
8512
7553
|
:enable_iam_database_authentication,
|
8513
7554
|
:enable_cloudwatch_logs_exports,
|
8514
7555
|
:db_cluster_parameter_group_name,
|
8515
|
-
:deletion_protection
|
7556
|
+
:deletion_protection,
|
7557
|
+
:serverless_v2_scaling_configuration)
|
8516
7558
|
SENSITIVE = []
|
8517
7559
|
include Aws::Structure
|
8518
7560
|
end
|
@@ -8550,6 +7592,66 @@ module Aws::Neptune
|
|
8550
7592
|
#
|
8551
7593
|
class SNSTopicArnNotFoundFault < Aws::EmptyStructure; end
|
8552
7594
|
|
7595
|
+
# Contains the scaling configuration of a Neptune Serverless DB cluster.
|
7596
|
+
#
|
7597
|
+
# For more information, see [Using Amazon Neptune Serverless][1] in the
|
7598
|
+
# *Amazon Neptune User Guide*.
|
7599
|
+
#
|
7600
|
+
#
|
7601
|
+
#
|
7602
|
+
# [1]: https://docs.aws.amazon.com/neptune/latest/userguide/neptune-serverless-using.html
|
7603
|
+
#
|
7604
|
+
# @!attribute [rw] min_capacity
|
7605
|
+
# The minimum number of Neptune capacity units (NCUs) for a DB
|
7606
|
+
# instance in a Neptune Serverless cluster. You can specify NCU values
|
7607
|
+
# in half-step increments, such as 8, 8.5, 9, and so on.
|
7608
|
+
# @return [Float]
|
7609
|
+
#
|
7610
|
+
# @!attribute [rw] max_capacity
|
7611
|
+
# The maximum number of Neptune capacity units (NCUs) for a DB
|
7612
|
+
# instance in a Neptune Serverless cluster. You can specify NCU values
|
7613
|
+
# in half-step increments, such as 40, 40.5, 41, and so on.
|
7614
|
+
# @return [Float]
|
7615
|
+
#
|
7616
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/ServerlessV2ScalingConfiguration AWS API Documentation
|
7617
|
+
#
|
7618
|
+
class ServerlessV2ScalingConfiguration < Struct.new(
|
7619
|
+
:min_capacity,
|
7620
|
+
:max_capacity)
|
7621
|
+
SENSITIVE = []
|
7622
|
+
include Aws::Structure
|
7623
|
+
end
|
7624
|
+
|
7625
|
+
# Shows the scaling configuration for a Neptune Serverless DB cluster.
|
7626
|
+
#
|
7627
|
+
# For more information, see [Using Amazon Neptune Serverless][1] in the
|
7628
|
+
# *Amazon Neptune User Guide*.
|
7629
|
+
#
|
7630
|
+
#
|
7631
|
+
#
|
7632
|
+
# [1]: https://docs.aws.amazon.com/neptune/latest/userguide/neptune-serverless-using.html
|
7633
|
+
#
|
7634
|
+
# @!attribute [rw] min_capacity
|
7635
|
+
# The minimum number of Neptune capacity units (NCUs) for a DB
|
7636
|
+
# instance in a Neptune Serverless cluster. You can specify NCU values
|
7637
|
+
# in half-step increments, such as 8, 8.5, 9, and so on.
|
7638
|
+
# @return [Float]
|
7639
|
+
#
|
7640
|
+
# @!attribute [rw] max_capacity
|
7641
|
+
# The maximum number of Neptune capacity units (NCUs) for a DB
|
7642
|
+
# instance in a Neptune Serverless cluster. You can specify NCU values
|
7643
|
+
# in half-step increments, such as 40, 40.5, 41, and so on.
|
7644
|
+
# @return [Float]
|
7645
|
+
#
|
7646
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/ServerlessV2ScalingConfigurationInfo AWS API Documentation
|
7647
|
+
#
|
7648
|
+
class ServerlessV2ScalingConfigurationInfo < Struct.new(
|
7649
|
+
:min_capacity,
|
7650
|
+
:max_capacity)
|
7651
|
+
SENSITIVE = []
|
7652
|
+
include Aws::Structure
|
7653
|
+
end
|
7654
|
+
|
8553
7655
|
# You have exceeded the maximum number of accounts that you can share a
|
8554
7656
|
# manual DB snapshot with.
|
8555
7657
|
#
|
@@ -8570,13 +7672,6 @@ module Aws::Neptune
|
|
8570
7672
|
#
|
8571
7673
|
class SourceNotFoundFault < Aws::EmptyStructure; end
|
8572
7674
|
|
8573
|
-
# @note When making an API call, you may pass StartDBClusterMessage
|
8574
|
-
# data as a hash:
|
8575
|
-
#
|
8576
|
-
# {
|
8577
|
-
# db_cluster_identifier: "String", # required
|
8578
|
-
# }
|
8579
|
-
#
|
8580
7675
|
# @!attribute [rw] db_cluster_identifier
|
8581
7676
|
# The DB cluster identifier of the Neptune DB cluster to be started.
|
8582
7677
|
# This parameter is stored as a lowercase string.
|
@@ -8605,13 +7700,6 @@ module Aws::Neptune
|
|
8605
7700
|
include Aws::Structure
|
8606
7701
|
end
|
8607
7702
|
|
8608
|
-
# @note When making an API call, you may pass StopDBClusterMessage
|
8609
|
-
# data as a hash:
|
8610
|
-
#
|
8611
|
-
# {
|
8612
|
-
# db_cluster_identifier: "String", # required
|
8613
|
-
# }
|
8614
|
-
#
|
8615
7703
|
# @!attribute [rw] db_cluster_identifier
|
8616
7704
|
# The DB cluster identifier of the Neptune DB cluster to be stopped.
|
8617
7705
|
# This parameter is stored as a lowercase string.
|
@@ -8707,14 +7795,6 @@ module Aws::Neptune
|
|
8707
7795
|
# Metadata assigned to an Amazon Neptune resource consisting of a
|
8708
7796
|
# key-value pair.
|
8709
7797
|
#
|
8710
|
-
# @note When making an API call, you may pass Tag
|
8711
|
-
# data as a hash:
|
8712
|
-
#
|
8713
|
-
# {
|
8714
|
-
# key: "String",
|
8715
|
-
# value: "String",
|
8716
|
-
# }
|
8717
|
-
#
|
8718
7798
|
# @!attribute [rw] key
|
8719
7799
|
# A key is the required name of the tag. The string value can be from
|
8720
7800
|
# 1 to 128 Unicode characters in length and can't be prefixed with
|