aws-sdk-neptune 1.48.0 → 1.50.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -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,59 @@ 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:
234
+ # This data type is used as a response element in the `ModifyDBCluster`
235
+ # operation and contains changes that will be applied during the next
236
+ # maintenance window.
237
+ #
238
+ # @!attribute [rw] pending_cloudwatch_logs_exports
239
+ # This `PendingCloudwatchLogsExports` structure specifies pending
240
+ # changes to which CloudWatch logs are enabled and which are disabled.
241
+ # @return [Types::PendingCloudwatchLogsExports]
242
+ #
243
+ # @!attribute [rw] db_cluster_identifier
244
+ # The DBClusterIdentifier value for the DB cluster.
245
+ # @return [String]
246
+ #
247
+ # @!attribute [rw] iam_database_authentication_enabled
248
+ # A value that indicates whether mapping of Amazon Web Services
249
+ # Identity and Access Management (IAM) accounts to database accounts
250
+ # is enabled.
251
+ # @return [Boolean]
252
+ #
253
+ # @!attribute [rw] engine_version
254
+ # The database engine version.
255
+ # @return [String]
256
+ #
257
+ # @!attribute [rw] backup_retention_period
258
+ # The number of days for which automatic DB snapshots are retained.
259
+ # @return [Integer]
260
+ #
261
+ # @!attribute [rw] allocated_storage
262
+ # The allocated storage size in gibibytes (GiB) for database engines.
263
+ # For Neptune, `AllocatedStorage` always returns 1, because Neptune DB
264
+ # cluster storage size isn't fixed, but instead automatically adjusts
265
+ # as needed.
266
+ # @return [Integer]
267
+ #
268
+ # @!attribute [rw] iops
269
+ # The Provisioned IOPS (I/O operations per second) value. This setting
270
+ # is only for non-Aurora Multi-AZ DB clusters.
271
+ # @return [Integer]
283
272
  #
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
- # }
273
+ # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/ClusterPendingModifiedValues AWS API Documentation
295
274
  #
275
+ class ClusterPendingModifiedValues < Struct.new(
276
+ :pending_cloudwatch_logs_exports,
277
+ :db_cluster_identifier,
278
+ :iam_database_authentication_enabled,
279
+ :engine_version,
280
+ :backup_retention_period,
281
+ :allocated_storage,
282
+ :iops)
283
+ SENSITIVE = []
284
+ include Aws::Structure
285
+ end
286
+
296
287
  # @!attribute [rw] source_db_cluster_parameter_group_identifier
297
288
  # The identifier or Amazon Resource Name (ARN) for the source DB
298
289
  # cluster parameter group. For information about creating an ARN, see
@@ -367,24 +358,6 @@ module Aws::Neptune
367
358
  include Aws::Structure
368
359
  end
369
360
 
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
361
  # @!attribute [rw] source_db_cluster_snapshot_identifier
389
362
  # The identifier of the DB cluster snapshot to copy. This parameter is
390
363
  # not case-sensitive.
@@ -485,21 +458,6 @@ module Aws::Neptune
485
458
  include Aws::Structure
486
459
  end
487
460
 
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
461
  # @!attribute [rw] source_db_parameter_group_identifier
504
462
  # The identifier or ARN for the source DB parameter group. For
505
463
  # information about creating an ARN, see [ Constructing an Amazon
@@ -567,23 +525,6 @@ module Aws::Neptune
567
525
  include Aws::Structure
568
526
  end
569
527
 
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
528
  # @!attribute [rw] db_cluster_identifier
588
529
  # The DB cluster identifier of the DB cluster associated with the
589
530
  # endpoint. This parameter is stored as a lowercase string.
@@ -711,48 +652,6 @@ module Aws::Neptune
711
652
  include Aws::Structure
712
653
  end
713
654
 
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
- # serverless_v2_scaling_configuration: {
749
- # min_capacity: 1.0,
750
- # max_capacity: 1.0,
751
- # },
752
- # global_cluster_identifier: "GlobalClusterIdentifier",
753
- # source_region: "String",
754
- # }
755
- #
756
655
  # @!attribute [rw] availability_zones
757
656
  # A list of EC2 Availability Zones that instances in the DB cluster
758
657
  # can be created in.
@@ -925,7 +824,7 @@ module Aws::Neptune
925
824
  # new DB cluster, then you can use the KMS key alias instead of the
926
825
  # ARN for the KMS encryption key.
927
826
  #
928
- # If an encryption key is not specified in `KmsKeyId`\:
827
+ # If an encryption key is not specified in `KmsKeyId`:
929
828
  #
930
829
  # * If `ReplicationSourceIdentifier` identifies an encrypted source,
931
830
  # then Amazon Neptune will use the encryption key used to encrypt
@@ -1026,21 +925,6 @@ module Aws::Neptune
1026
925
  include Aws::Structure
1027
926
  end
1028
927
 
1029
- # @note When making an API call, you may pass CreateDBClusterParameterGroupMessage
1030
- # data as a hash:
1031
- #
1032
- # {
1033
- # db_cluster_parameter_group_name: "String", # required
1034
- # db_parameter_group_family: "String", # required
1035
- # description: "String", # required
1036
- # tags: [
1037
- # {
1038
- # key: "String",
1039
- # value: "String",
1040
- # },
1041
- # ],
1042
- # }
1043
- #
1044
928
  # @!attribute [rw] db_cluster_parameter_group_name
1045
929
  # The name of the DB cluster parameter group.
1046
930
  #
@@ -1113,20 +997,6 @@ module Aws::Neptune
1113
997
  include Aws::Structure
1114
998
  end
1115
999
 
1116
- # @note When making an API call, you may pass CreateDBClusterSnapshotMessage
1117
- # data as a hash:
1118
- #
1119
- # {
1120
- # db_cluster_snapshot_identifier: "String", # required
1121
- # db_cluster_identifier: "String", # required
1122
- # tags: [
1123
- # {
1124
- # key: "String",
1125
- # value: "String",
1126
- # },
1127
- # ],
1128
- # }
1129
- #
1130
1000
  # @!attribute [rw] db_cluster_snapshot_identifier
1131
1001
  # The identifier of the DB cluster snapshot. This parameter is stored
1132
1002
  # as a lowercase string.
@@ -1184,60 +1054,6 @@ module Aws::Neptune
1184
1054
  include Aws::Structure
1185
1055
  end
1186
1056
 
1187
- # @note When making an API call, you may pass CreateDBInstanceMessage
1188
- # data as a hash:
1189
- #
1190
- # {
1191
- # db_name: "String",
1192
- # db_instance_identifier: "String", # required
1193
- # allocated_storage: 1,
1194
- # db_instance_class: "String", # required
1195
- # engine: "String", # required
1196
- # master_username: "String",
1197
- # master_user_password: "String",
1198
- # db_security_groups: ["String"],
1199
- # vpc_security_group_ids: ["String"],
1200
- # availability_zone: "String",
1201
- # db_subnet_group_name: "String",
1202
- # preferred_maintenance_window: "String",
1203
- # db_parameter_group_name: "String",
1204
- # backup_retention_period: 1,
1205
- # preferred_backup_window: "String",
1206
- # port: 1,
1207
- # multi_az: false,
1208
- # engine_version: "String",
1209
- # auto_minor_version_upgrade: false,
1210
- # license_model: "String",
1211
- # iops: 1,
1212
- # option_group_name: "String",
1213
- # character_set_name: "String",
1214
- # publicly_accessible: false,
1215
- # tags: [
1216
- # {
1217
- # key: "String",
1218
- # value: "String",
1219
- # },
1220
- # ],
1221
- # db_cluster_identifier: "String",
1222
- # storage_type: "String",
1223
- # tde_credential_arn: "String",
1224
- # tde_credential_password: "String",
1225
- # storage_encrypted: false,
1226
- # kms_key_id: "String",
1227
- # domain: "String",
1228
- # copy_tags_to_snapshot: false,
1229
- # monitoring_interval: 1,
1230
- # monitoring_role_arn: "String",
1231
- # domain_iam_role_name: "String",
1232
- # promotion_tier: 1,
1233
- # timezone: "String",
1234
- # enable_iam_database_authentication: false,
1235
- # enable_performance_insights: false,
1236
- # performance_insights_kms_key_id: "String",
1237
- # enable_cloudwatch_logs_exports: ["String"],
1238
- # deletion_protection: false,
1239
- # }
1240
- #
1241
1057
  # @!attribute [rw] db_name
1242
1058
  # Not supported.
1243
1059
  # @return [String]
@@ -1624,21 +1440,6 @@ module Aws::Neptune
1624
1440
  include Aws::Structure
1625
1441
  end
1626
1442
 
1627
- # @note When making an API call, you may pass CreateDBParameterGroupMessage
1628
- # data as a hash:
1629
- #
1630
- # {
1631
- # db_parameter_group_name: "String", # required
1632
- # db_parameter_group_family: "String", # required
1633
- # description: "String", # required
1634
- # tags: [
1635
- # {
1636
- # key: "String",
1637
- # value: "String",
1638
- # },
1639
- # ],
1640
- # }
1641
- #
1642
1443
  # @!attribute [rw] db_parameter_group_name
1643
1444
  # The name of the DB parameter group.
1644
1445
  #
@@ -1696,21 +1497,6 @@ module Aws::Neptune
1696
1497
  include Aws::Structure
1697
1498
  end
1698
1499
 
1699
- # @note When making an API call, you may pass CreateDBSubnetGroupMessage
1700
- # data as a hash:
1701
- #
1702
- # {
1703
- # db_subnet_group_name: "String", # required
1704
- # db_subnet_group_description: "String", # required
1705
- # subnet_ids: ["String"], # required
1706
- # tags: [
1707
- # {
1708
- # key: "String",
1709
- # value: "String",
1710
- # },
1711
- # ],
1712
- # }
1713
- #
1714
1500
  # @!attribute [rw] db_subnet_group_name
1715
1501
  # The name for the DB subnet group. This value is stored as a
1716
1502
  # lowercase string.
@@ -1759,24 +1545,6 @@ module Aws::Neptune
1759
1545
  include Aws::Structure
1760
1546
  end
1761
1547
 
1762
- # @note When making an API call, you may pass CreateEventSubscriptionMessage
1763
- # data as a hash:
1764
- #
1765
- # {
1766
- # subscription_name: "String", # required
1767
- # sns_topic_arn: "String", # required
1768
- # source_type: "String",
1769
- # event_categories: ["String"],
1770
- # source_ids: ["String"],
1771
- # enabled: false,
1772
- # tags: [
1773
- # {
1774
- # key: "String",
1775
- # value: "String",
1776
- # },
1777
- # ],
1778
- # }
1779
- #
1780
1548
  # @!attribute [rw] subscription_name
1781
1549
  # The name of the subscription.
1782
1550
  #
@@ -1865,18 +1633,6 @@ module Aws::Neptune
1865
1633
  include Aws::Structure
1866
1634
  end
1867
1635
 
1868
- # @note When making an API call, you may pass CreateGlobalClusterMessage
1869
- # data as a hash:
1870
- #
1871
- # {
1872
- # global_cluster_identifier: "GlobalClusterIdentifier", # required
1873
- # source_db_cluster_identifier: "String",
1874
- # engine: "String",
1875
- # engine_version: "String",
1876
- # deletion_protection: false,
1877
- # storage_encrypted: false,
1878
- # }
1879
- #
1880
1636
  # @!attribute [rw] global_cluster_identifier
1881
1637
  # The cluster identifier of the new global database cluster.
1882
1638
  # @return [String]
@@ -2134,6 +1890,12 @@ module Aws::Neptune
2134
1890
  # CloudWatch Logs.
2135
1891
  # @return [Array<String>]
2136
1892
  #
1893
+ # @!attribute [rw] pending_modified_values
1894
+ # This data type is used as a response element in the
1895
+ # `ModifyDBCluster` operation and contains changes that will be
1896
+ # applied during the next maintenance window.
1897
+ # @return [Types::ClusterPendingModifiedValues]
1898
+ #
2137
1899
  # @!attribute [rw] deletion_protection
2138
1900
  # Indicates whether or not the DB cluster has deletion protection
2139
1901
  # enabled. The database can't be deleted when deletion protection is
@@ -2159,6 +1921,11 @@ module Aws::Neptune
2159
1921
  # [1]: https://docs.aws.amazon.com/neptune/latest/userguide/neptune-serverless-using.html
2160
1922
  # @return [Types::ServerlessV2ScalingConfigurationInfo]
2161
1923
  #
1924
+ # @!attribute [rw] global_cluster_identifier
1925
+ # Contains a user-supplied global database cluster identifier. This
1926
+ # identifier is the unique key that identifies a global database.
1927
+ # @return [String]
1928
+ #
2162
1929
  # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DBCluster AWS API Documentation
2163
1930
  #
2164
1931
  class DBCluster < Struct.new(
@@ -2199,10 +1966,12 @@ module Aws::Neptune
2199
1966
  :cluster_create_time,
2200
1967
  :copy_tags_to_snapshot,
2201
1968
  :enabled_cloudwatch_logs_exports,
1969
+ :pending_modified_values,
2202
1970
  :deletion_protection,
2203
1971
  :cross_account_clone,
2204
1972
  :automatic_restart_time,
2205
- :serverless_v2_scaling_configuration)
1973
+ :serverless_v2_scaling_configuration,
1974
+ :global_cluster_identifier)
2206
1975
  SENSITIVE = []
2207
1976
  include Aws::Structure
2208
1977
  end
@@ -3576,13 +3345,6 @@ module Aws::Neptune
3576
3345
  #
3577
3346
  class DBUpgradeDependencyFailureFault < Aws::EmptyStructure; end
3578
3347
 
3579
- # @note When making an API call, you may pass DeleteDBClusterEndpointMessage
3580
- # data as a hash:
3581
- #
3582
- # {
3583
- # db_cluster_endpoint_identifier: "String", # required
3584
- # }
3585
- #
3586
3348
  # @!attribute [rw] db_cluster_endpoint_identifier
3587
3349
  # The identifier associated with the custom endpoint. This parameter
3588
3350
  # is stored as a lowercase string.
@@ -3680,15 +3442,6 @@ module Aws::Neptune
3680
3442
  include Aws::Structure
3681
3443
  end
3682
3444
 
3683
- # @note When making an API call, you may pass DeleteDBClusterMessage
3684
- # data as a hash:
3685
- #
3686
- # {
3687
- # db_cluster_identifier: "String", # required
3688
- # skip_final_snapshot: false,
3689
- # final_db_snapshot_identifier: "String",
3690
- # }
3691
- #
3692
3445
  # @!attribute [rw] db_cluster_identifier
3693
3446
  # The DB cluster identifier for the DB cluster to be deleted. This
3694
3447
  # parameter isn't case-sensitive.
@@ -3742,13 +3495,6 @@ module Aws::Neptune
3742
3495
  include Aws::Structure
3743
3496
  end
3744
3497
 
3745
- # @note When making an API call, you may pass DeleteDBClusterParameterGroupMessage
3746
- # data as a hash:
3747
- #
3748
- # {
3749
- # db_cluster_parameter_group_name: "String", # required
3750
- # }
3751
- #
3752
3498
  # @!attribute [rw] db_cluster_parameter_group_name
3753
3499
  # The name of the DB cluster parameter group.
3754
3500
  #
@@ -3784,13 +3530,6 @@ module Aws::Neptune
3784
3530
  include Aws::Structure
3785
3531
  end
3786
3532
 
3787
- # @note When making an API call, you may pass DeleteDBClusterSnapshotMessage
3788
- # data as a hash:
3789
- #
3790
- # {
3791
- # db_cluster_snapshot_identifier: "String", # required
3792
- # }
3793
- #
3794
3533
  # @!attribute [rw] db_cluster_snapshot_identifier
3795
3534
  # The identifier of the DB cluster snapshot to delete.
3796
3535
  #
@@ -3821,15 +3560,6 @@ module Aws::Neptune
3821
3560
  include Aws::Structure
3822
3561
  end
3823
3562
 
3824
- # @note When making an API call, you may pass DeleteDBInstanceMessage
3825
- # data as a hash:
3826
- #
3827
- # {
3828
- # db_instance_identifier: "String", # required
3829
- # skip_final_snapshot: false,
3830
- # final_db_snapshot_identifier: "String",
3831
- # }
3832
- #
3833
3563
  # @!attribute [rw] db_instance_identifier
3834
3564
  # The DB instance identifier for the DB instance to be deleted. This
3835
3565
  # parameter isn't case-sensitive.
@@ -3907,13 +3637,6 @@ module Aws::Neptune
3907
3637
  include Aws::Structure
3908
3638
  end
3909
3639
 
3910
- # @note When making an API call, you may pass DeleteDBParameterGroupMessage
3911
- # data as a hash:
3912
- #
3913
- # {
3914
- # db_parameter_group_name: "String", # required
3915
- # }
3916
- #
3917
3640
  # @!attribute [rw] db_parameter_group_name
3918
3641
  # The name of the DB parameter group.
3919
3642
  #
@@ -3934,13 +3657,6 @@ module Aws::Neptune
3934
3657
  include Aws::Structure
3935
3658
  end
3936
3659
 
3937
- # @note When making an API call, you may pass DeleteDBSubnetGroupMessage
3938
- # data as a hash:
3939
- #
3940
- # {
3941
- # db_subnet_group_name: "String", # required
3942
- # }
3943
- #
3944
3660
  # @!attribute [rw] db_subnet_group_name
3945
3661
  # The name of the database subnet group to delete.
3946
3662
  #
@@ -3964,13 +3680,6 @@ module Aws::Neptune
3964
3680
  include Aws::Structure
3965
3681
  end
3966
3682
 
3967
- # @note When making an API call, you may pass DeleteEventSubscriptionMessage
3968
- # data as a hash:
3969
- #
3970
- # {
3971
- # subscription_name: "String", # required
3972
- # }
3973
- #
3974
3683
  # @!attribute [rw] subscription_name
3975
3684
  # The name of the event notification subscription you want to delete.
3976
3685
  # @return [String]
@@ -3996,13 +3705,6 @@ module Aws::Neptune
3996
3705
  include Aws::Structure
3997
3706
  end
3998
3707
 
3999
- # @note When making an API call, you may pass DeleteGlobalClusterMessage
4000
- # data as a hash:
4001
- #
4002
- # {
4003
- # global_cluster_identifier: "GlobalClusterIdentifier", # required
4004
- # }
4005
- #
4006
3708
  # @!attribute [rw] global_cluster_identifier
4007
3709
  # The cluster identifier of the global database cluster being deleted.
4008
3710
  # @return [String]
@@ -4032,22 +3734,6 @@ module Aws::Neptune
4032
3734
  include Aws::Structure
4033
3735
  end
4034
3736
 
4035
- # @note When making an API call, you may pass DescribeDBClusterEndpointsMessage
4036
- # data as a hash:
4037
- #
4038
- # {
4039
- # db_cluster_identifier: "String",
4040
- # db_cluster_endpoint_identifier: "String",
4041
- # filters: [
4042
- # {
4043
- # name: "String", # required
4044
- # values: ["String"], # required
4045
- # },
4046
- # ],
4047
- # max_records: 1,
4048
- # marker: "String",
4049
- # }
4050
- #
4051
3737
  # @!attribute [rw] db_cluster_identifier
4052
3738
  # The DB cluster identifier of the DB cluster associated with the
4053
3739
  # endpoint. This parameter is stored as a lowercase string.
@@ -4104,21 +3790,6 @@ module Aws::Neptune
4104
3790
  include Aws::Structure
4105
3791
  end
4106
3792
 
4107
- # @note When making an API call, you may pass DescribeDBClusterParameterGroupsMessage
4108
- # data as a hash:
4109
- #
4110
- # {
4111
- # db_cluster_parameter_group_name: "String",
4112
- # filters: [
4113
- # {
4114
- # name: "String", # required
4115
- # values: ["String"], # required
4116
- # },
4117
- # ],
4118
- # max_records: 1,
4119
- # marker: "String",
4120
- # }
4121
- #
4122
3793
  # @!attribute [rw] db_cluster_parameter_group_name
4123
3794
  # The name of a specific DB cluster parameter group to return details
4124
3795
  # for.
@@ -4164,22 +3835,6 @@ module Aws::Neptune
4164
3835
  include Aws::Structure
4165
3836
  end
4166
3837
 
4167
- # @note When making an API call, you may pass DescribeDBClusterParametersMessage
4168
- # data as a hash:
4169
- #
4170
- # {
4171
- # db_cluster_parameter_group_name: "String", # required
4172
- # source: "String",
4173
- # filters: [
4174
- # {
4175
- # name: "String", # required
4176
- # values: ["String"], # required
4177
- # },
4178
- # ],
4179
- # max_records: 1,
4180
- # marker: "String",
4181
- # }
4182
- #
4183
3838
  # @!attribute [rw] db_cluster_parameter_group_name
4184
3839
  # The name of a specific DB cluster parameter group to return
4185
3840
  # parameter details for.
@@ -4231,13 +3886,6 @@ module Aws::Neptune
4231
3886
  include Aws::Structure
4232
3887
  end
4233
3888
 
4234
- # @note When making an API call, you may pass DescribeDBClusterSnapshotAttributesMessage
4235
- # data as a hash:
4236
- #
4237
- # {
4238
- # db_cluster_snapshot_identifier: "String", # required
4239
- # }
4240
- #
4241
3889
  # @!attribute [rw] db_cluster_snapshot_identifier
4242
3890
  # The identifier for the DB cluster snapshot to describe the
4243
3891
  # attributes for.
@@ -4269,25 +3917,6 @@ module Aws::Neptune
4269
3917
  include Aws::Structure
4270
3918
  end
4271
3919
 
4272
- # @note When making an API call, you may pass DescribeDBClusterSnapshotsMessage
4273
- # data as a hash:
4274
- #
4275
- # {
4276
- # db_cluster_identifier: "String",
4277
- # db_cluster_snapshot_identifier: "String",
4278
- # snapshot_type: "String",
4279
- # filters: [
4280
- # {
4281
- # name: "String", # required
4282
- # values: ["String"], # required
4283
- # },
4284
- # ],
4285
- # max_records: 1,
4286
- # marker: "String",
4287
- # include_shared: false,
4288
- # include_public: false,
4289
- # }
4290
- #
4291
3920
  # @!attribute [rw] db_cluster_identifier
4292
3921
  # The ID of the DB cluster to retrieve the list of DB cluster
4293
3922
  # snapshots for. This parameter can't be used in conjunction with the
@@ -4402,21 +4031,6 @@ module Aws::Neptune
4402
4031
  include Aws::Structure
4403
4032
  end
4404
4033
 
4405
- # @note When making an API call, you may pass DescribeDBClustersMessage
4406
- # data as a hash:
4407
- #
4408
- # {
4409
- # db_cluster_identifier: "String",
4410
- # filters: [
4411
- # {
4412
- # name: "String", # required
4413
- # values: ["String"], # required
4414
- # },
4415
- # ],
4416
- # max_records: 1,
4417
- # marker: "String",
4418
- # }
4419
- #
4420
4034
  # @!attribute [rw] db_cluster_identifier
4421
4035
  # The user-supplied DB cluster identifier. If this parameter is
4422
4036
  # specified, information from only the specific DB cluster is
@@ -4475,26 +4089,6 @@ module Aws::Neptune
4475
4089
  include Aws::Structure
4476
4090
  end
4477
4091
 
4478
- # @note When making an API call, you may pass DescribeDBEngineVersionsMessage
4479
- # data as a hash:
4480
- #
4481
- # {
4482
- # engine: "String",
4483
- # engine_version: "String",
4484
- # db_parameter_group_family: "String",
4485
- # filters: [
4486
- # {
4487
- # name: "String", # required
4488
- # values: ["String"], # required
4489
- # },
4490
- # ],
4491
- # max_records: 1,
4492
- # marker: "String",
4493
- # default_only: false,
4494
- # list_supported_character_sets: false,
4495
- # list_supported_timezones: false,
4496
- # }
4497
- #
4498
4092
  # @!attribute [rw] engine
4499
4093
  # The database engine to return.
4500
4094
  # @return [String]
@@ -4570,21 +4164,6 @@ module Aws::Neptune
4570
4164
  include Aws::Structure
4571
4165
  end
4572
4166
 
4573
- # @note When making an API call, you may pass DescribeDBInstancesMessage
4574
- # data as a hash:
4575
- #
4576
- # {
4577
- # db_instance_identifier: "String",
4578
- # filters: [
4579
- # {
4580
- # name: "String", # required
4581
- # values: ["String"], # required
4582
- # },
4583
- # ],
4584
- # max_records: 1,
4585
- # marker: "String",
4586
- # }
4587
- #
4588
4167
  # @!attribute [rw] db_instance_identifier
4589
4168
  # The user-supplied instance identifier. If this parameter is
4590
4169
  # specified, information from only the specific DB instance is
@@ -4644,21 +4223,6 @@ module Aws::Neptune
4644
4223
  include Aws::Structure
4645
4224
  end
4646
4225
 
4647
- # @note When making an API call, you may pass DescribeDBParameterGroupsMessage
4648
- # data as a hash:
4649
- #
4650
- # {
4651
- # db_parameter_group_name: "String",
4652
- # filters: [
4653
- # {
4654
- # name: "String", # required
4655
- # values: ["String"], # required
4656
- # },
4657
- # ],
4658
- # max_records: 1,
4659
- # marker: "String",
4660
- # }
4661
- #
4662
4226
  # @!attribute [rw] db_parameter_group_name
4663
4227
  # The name of a specific DB parameter group to return details for.
4664
4228
  #
@@ -4703,22 +4267,6 @@ module Aws::Neptune
4703
4267
  include Aws::Structure
4704
4268
  end
4705
4269
 
4706
- # @note When making an API call, you may pass DescribeDBParametersMessage
4707
- # data as a hash:
4708
- #
4709
- # {
4710
- # db_parameter_group_name: "String", # required
4711
- # source: "String",
4712
- # filters: [
4713
- # {
4714
- # name: "String", # required
4715
- # values: ["String"], # required
4716
- # },
4717
- # ],
4718
- # max_records: 1,
4719
- # marker: "String",
4720
- # }
4721
- #
4722
4270
  # @!attribute [rw] db_parameter_group_name
4723
4271
  # The name of a specific DB parameter group to return details for.
4724
4272
  #
@@ -4771,21 +4319,6 @@ module Aws::Neptune
4771
4319
  include Aws::Structure
4772
4320
  end
4773
4321
 
4774
- # @note When making an API call, you may pass DescribeDBSubnetGroupsMessage
4775
- # data as a hash:
4776
- #
4777
- # {
4778
- # db_subnet_group_name: "String",
4779
- # filters: [
4780
- # {
4781
- # name: "String", # required
4782
- # values: ["String"], # required
4783
- # },
4784
- # ],
4785
- # max_records: 1,
4786
- # marker: "String",
4787
- # }
4788
- #
4789
4322
  # @!attribute [rw] db_subnet_group_name
4790
4323
  # The name of the DB subnet group to return details for.
4791
4324
  # @return [String]
@@ -4823,21 +4356,6 @@ module Aws::Neptune
4823
4356
  include Aws::Structure
4824
4357
  end
4825
4358
 
4826
- # @note When making an API call, you may pass DescribeEngineDefaultClusterParametersMessage
4827
- # data as a hash:
4828
- #
4829
- # {
4830
- # db_parameter_group_family: "String", # required
4831
- # filters: [
4832
- # {
4833
- # name: "String", # required
4834
- # values: ["String"], # required
4835
- # },
4836
- # ],
4837
- # max_records: 1,
4838
- # marker: "String",
4839
- # }
4840
- #
4841
4359
  # @!attribute [rw] db_parameter_group_family
4842
4360
  # The name of the DB cluster parameter group family to return engine
4843
4361
  # parameter information for.
@@ -4889,21 +4407,6 @@ module Aws::Neptune
4889
4407
  include Aws::Structure
4890
4408
  end
4891
4409
 
4892
- # @note When making an API call, you may pass DescribeEngineDefaultParametersMessage
4893
- # data as a hash:
4894
- #
4895
- # {
4896
- # db_parameter_group_family: "String", # required
4897
- # filters: [
4898
- # {
4899
- # name: "String", # required
4900
- # values: ["String"], # required
4901
- # },
4902
- # ],
4903
- # max_records: 1,
4904
- # marker: "String",
4905
- # }
4906
- #
4907
4410
  # @!attribute [rw] db_parameter_group_family
4908
4411
  # The name of the DB parameter group family.
4909
4412
  # @return [String]
@@ -4954,19 +4457,6 @@ module Aws::Neptune
4954
4457
  include Aws::Structure
4955
4458
  end
4956
4459
 
4957
- # @note When making an API call, you may pass DescribeEventCategoriesMessage
4958
- # data as a hash:
4959
- #
4960
- # {
4961
- # source_type: "String",
4962
- # filters: [
4963
- # {
4964
- # name: "String", # required
4965
- # values: ["String"], # required
4966
- # },
4967
- # ],
4968
- # }
4969
- #
4970
4460
  # @!attribute [rw] source_type
4971
4461
  # The type of source that is generating the events.
4972
4462
  #
@@ -4987,21 +4477,6 @@ module Aws::Neptune
4987
4477
  include Aws::Structure
4988
4478
  end
4989
4479
 
4990
- # @note When making an API call, you may pass DescribeEventSubscriptionsMessage
4991
- # data as a hash:
4992
- #
4993
- # {
4994
- # subscription_name: "String",
4995
- # filters: [
4996
- # {
4997
- # name: "String", # required
4998
- # values: ["String"], # required
4999
- # },
5000
- # ],
5001
- # max_records: 1,
5002
- # marker: "String",
5003
- # }
5004
- #
5005
4480
  # @!attribute [rw] subscription_name
5006
4481
  # The name of the event notification subscription you want to
5007
4482
  # describe.
@@ -5040,26 +4515,6 @@ module Aws::Neptune
5040
4515
  include Aws::Structure
5041
4516
  end
5042
4517
 
5043
- # @note When making an API call, you may pass DescribeEventsMessage
5044
- # data as a hash:
5045
- #
5046
- # {
5047
- # source_identifier: "String",
5048
- # source_type: "db-instance", # accepts db-instance, db-parameter-group, db-security-group, db-snapshot, db-cluster, db-cluster-snapshot
5049
- # start_time: Time.now,
5050
- # end_time: Time.now,
5051
- # duration: 1,
5052
- # event_categories: ["String"],
5053
- # filters: [
5054
- # {
5055
- # name: "String", # required
5056
- # values: ["String"], # required
5057
- # },
5058
- # ],
5059
- # max_records: 1,
5060
- # marker: "String",
5061
- # }
5062
- #
5063
4518
  # @!attribute [rw] source_identifier
5064
4519
  # The identifier of the event source for which events are returned. If
5065
4520
  # not specified, then all sources are included in the response.
@@ -5161,15 +4616,6 @@ module Aws::Neptune
5161
4616
  include Aws::Structure
5162
4617
  end
5163
4618
 
5164
- # @note When making an API call, you may pass DescribeGlobalClustersMessage
5165
- # data as a hash:
5166
- #
5167
- # {
5168
- # global_cluster_identifier: "GlobalClusterIdentifier",
5169
- # max_records: 1,
5170
- # marker: "String",
5171
- # }
5172
- #
5173
4619
  # @!attribute [rw] global_cluster_identifier
5174
4620
  # The user-supplied DB cluster identifier. If this parameter is
5175
4621
  # specified, only information about the specified DB cluster is
@@ -5207,25 +4653,6 @@ module Aws::Neptune
5207
4653
  include Aws::Structure
5208
4654
  end
5209
4655
 
5210
- # @note When making an API call, you may pass DescribeOrderableDBInstanceOptionsMessage
5211
- # data as a hash:
5212
- #
5213
- # {
5214
- # engine: "String", # required
5215
- # engine_version: "String",
5216
- # db_instance_class: "String",
5217
- # license_model: "String",
5218
- # vpc: false,
5219
- # filters: [
5220
- # {
5221
- # name: "String", # required
5222
- # values: ["String"], # required
5223
- # },
5224
- # ],
5225
- # max_records: 1,
5226
- # marker: "String",
5227
- # }
5228
- #
5229
4656
  # @!attribute [rw] engine
5230
4657
  # The name of the engine to retrieve DB instance options for.
5231
4658
  # @return [String]
@@ -5288,21 +4715,6 @@ module Aws::Neptune
5288
4715
  include Aws::Structure
5289
4716
  end
5290
4717
 
5291
- # @note When making an API call, you may pass DescribePendingMaintenanceActionsMessage
5292
- # data as a hash:
5293
- #
5294
- # {
5295
- # resource_identifier: "String",
5296
- # filters: [
5297
- # {
5298
- # name: "String", # required
5299
- # values: ["String"], # required
5300
- # },
5301
- # ],
5302
- # marker: "String",
5303
- # max_records: 1,
5304
- # }
5305
- #
5306
4718
  # @!attribute [rw] resource_identifier
5307
4719
  # The ARN of a resource to return pending maintenance actions for.
5308
4720
  # @return [String]
@@ -5352,13 +4764,6 @@ module Aws::Neptune
5352
4764
  include Aws::Structure
5353
4765
  end
5354
4766
 
5355
- # @note When making an API call, you may pass DescribeValidDBInstanceModificationsMessage
5356
- # data as a hash:
5357
- #
5358
- # {
5359
- # db_instance_identifier: "String", # required
5360
- # }
5361
- #
5362
4767
  # @!attribute [rw] db_instance_identifier
5363
4768
  # The customer identifier or the ARN of your DB instance.
5364
4769
  # @return [String]
@@ -5689,14 +5094,6 @@ module Aws::Neptune
5689
5094
  include Aws::Structure
5690
5095
  end
5691
5096
 
5692
- # @note When making an API call, you may pass FailoverDBClusterMessage
5693
- # data as a hash:
5694
- #
5695
- # {
5696
- # db_cluster_identifier: "String",
5697
- # target_db_instance_identifier: "String",
5698
- # }
5699
- #
5700
5097
  # @!attribute [rw] db_cluster_identifier
5701
5098
  # A DB cluster identifier to force a failover for. This parameter is
5702
5099
  # not case-sensitive.
@@ -5739,14 +5136,6 @@ module Aws::Neptune
5739
5136
  include Aws::Structure
5740
5137
  end
5741
5138
 
5742
- # @note When making an API call, you may pass FailoverGlobalClusterMessage
5743
- # data as a hash:
5744
- #
5745
- # {
5746
- # global_cluster_identifier: "GlobalClusterIdentifier", # required
5747
- # target_db_cluster_identifier: "String", # required
5748
- # }
5749
- #
5750
5139
  # @!attribute [rw] global_cluster_identifier
5751
5140
  # Identifier of the Neptune global database that should be failed
5752
5141
  # over. The identifier is the unique key assigned by the user when the
@@ -5790,14 +5179,6 @@ module Aws::Neptune
5790
5179
 
5791
5180
  # This type is not currently supported.
5792
5181
  #
5793
- # @note When making an API call, you may pass Filter
5794
- # data as a hash:
5795
- #
5796
- # {
5797
- # name: "String", # required
5798
- # values: ["String"], # required
5799
- # }
5800
- #
5801
5182
  # @!attribute [rw] name
5802
5183
  # This parameter is not currently supported.
5803
5184
  # @return [String]
@@ -6073,19 +5454,6 @@ module Aws::Neptune
6073
5454
  #
6074
5455
  class KMSKeyNotAccessibleFault < Aws::EmptyStructure; end
6075
5456
 
6076
- # @note When making an API call, you may pass ListTagsForResourceMessage
6077
- # data as a hash:
6078
- #
6079
- # {
6080
- # resource_name: "String", # required
6081
- # filters: [
6082
- # {
6083
- # name: "String", # required
6084
- # values: ["String"], # required
6085
- # },
6086
- # ],
6087
- # }
6088
- #
6089
5457
  # @!attribute [rw] resource_name
6090
5458
  # The Amazon Neptune resource with tags to be listed. This value is an
6091
5459
  # Amazon Resource Name (ARN). For information about creating an ARN,
@@ -6109,16 +5477,6 @@ module Aws::Neptune
6109
5477
  include Aws::Structure
6110
5478
  end
6111
5479
 
6112
- # @note When making an API call, you may pass ModifyDBClusterEndpointMessage
6113
- # data as a hash:
6114
- #
6115
- # {
6116
- # db_cluster_endpoint_identifier: "String", # required
6117
- # endpoint_type: "String",
6118
- # static_members: ["String"],
6119
- # excluded_members: ["String"],
6120
- # }
6121
- #
6122
5480
  # @!attribute [rw] db_cluster_endpoint_identifier
6123
5481
  # The identifier of the endpoint to modify. This parameter is stored
6124
5482
  # as a lowercase string.
@@ -6235,37 +5593,6 @@ module Aws::Neptune
6235
5593
  include Aws::Structure
6236
5594
  end
6237
5595
 
6238
- # @note When making an API call, you may pass ModifyDBClusterMessage
6239
- # data as a hash:
6240
- #
6241
- # {
6242
- # db_cluster_identifier: "String", # required
6243
- # new_db_cluster_identifier: "String",
6244
- # apply_immediately: false,
6245
- # backup_retention_period: 1,
6246
- # db_cluster_parameter_group_name: "String",
6247
- # vpc_security_group_ids: ["String"],
6248
- # port: 1,
6249
- # master_user_password: "String",
6250
- # option_group_name: "String",
6251
- # preferred_backup_window: "String",
6252
- # preferred_maintenance_window: "String",
6253
- # enable_iam_database_authentication: false,
6254
- # cloudwatch_logs_export_configuration: {
6255
- # enable_log_types: ["String"],
6256
- # disable_log_types: ["String"],
6257
- # },
6258
- # engine_version: "String",
6259
- # allow_major_version_upgrade: false,
6260
- # db_instance_parameter_group_name: "String",
6261
- # deletion_protection: false,
6262
- # copy_tags_to_snapshot: false,
6263
- # serverless_v2_scaling_configuration: {
6264
- # min_capacity: 1.0,
6265
- # max_capacity: 1.0,
6266
- # },
6267
- # }
6268
- #
6269
5596
  # @!attribute [rw] db_cluster_identifier
6270
5597
  # The DB cluster identifier for the cluster being modified. This
6271
5598
  # parameter is not case-sensitive.
@@ -6488,27 +5815,6 @@ module Aws::Neptune
6488
5815
  include Aws::Structure
6489
5816
  end
6490
5817
 
6491
- # @note When making an API call, you may pass ModifyDBClusterParameterGroupMessage
6492
- # data as a hash:
6493
- #
6494
- # {
6495
- # db_cluster_parameter_group_name: "String", # required
6496
- # parameters: [ # required
6497
- # {
6498
- # parameter_name: "String",
6499
- # parameter_value: "String",
6500
- # description: "String",
6501
- # source: "String",
6502
- # apply_type: "String",
6503
- # data_type: "String",
6504
- # allowed_values: "String",
6505
- # is_modifiable: false,
6506
- # minimum_engine_version: "String",
6507
- # apply_method: "immediate", # accepts immediate, pending-reboot
6508
- # },
6509
- # ],
6510
- # }
6511
- #
6512
5818
  # @!attribute [rw] db_cluster_parameter_group_name
6513
5819
  # The name of the DB cluster parameter group to modify.
6514
5820
  # @return [String]
@@ -6541,16 +5847,6 @@ module Aws::Neptune
6541
5847
  include Aws::Structure
6542
5848
  end
6543
5849
 
6544
- # @note When making an API call, you may pass ModifyDBClusterSnapshotAttributeMessage
6545
- # data as a hash:
6546
- #
6547
- # {
6548
- # db_cluster_snapshot_identifier: "String", # required
6549
- # attribute_name: "String", # required
6550
- # values_to_add: ["String"],
6551
- # values_to_remove: ["String"],
6552
- # }
6553
- #
6554
5850
  # @!attribute [rw] db_cluster_snapshot_identifier
6555
5851
  # The identifier for the DB cluster snapshot to modify the attributes
6556
5852
  # for.
@@ -6617,52 +5913,6 @@ module Aws::Neptune
6617
5913
  include Aws::Structure
6618
5914
  end
6619
5915
 
6620
- # @note When making an API call, you may pass ModifyDBInstanceMessage
6621
- # data as a hash:
6622
- #
6623
- # {
6624
- # db_instance_identifier: "String", # required
6625
- # allocated_storage: 1,
6626
- # db_instance_class: "String",
6627
- # db_subnet_group_name: "String",
6628
- # db_security_groups: ["String"],
6629
- # vpc_security_group_ids: ["String"],
6630
- # apply_immediately: false,
6631
- # master_user_password: "String",
6632
- # db_parameter_group_name: "String",
6633
- # backup_retention_period: 1,
6634
- # preferred_backup_window: "String",
6635
- # preferred_maintenance_window: "String",
6636
- # multi_az: false,
6637
- # engine_version: "String",
6638
- # allow_major_version_upgrade: false,
6639
- # auto_minor_version_upgrade: false,
6640
- # license_model: "String",
6641
- # iops: 1,
6642
- # option_group_name: "String",
6643
- # new_db_instance_identifier: "String",
6644
- # storage_type: "String",
6645
- # tde_credential_arn: "String",
6646
- # tde_credential_password: "String",
6647
- # ca_certificate_identifier: "String",
6648
- # domain: "String",
6649
- # copy_tags_to_snapshot: false,
6650
- # monitoring_interval: 1,
6651
- # db_port_number: 1,
6652
- # publicly_accessible: false,
6653
- # monitoring_role_arn: "String",
6654
- # domain_iam_role_name: "String",
6655
- # promotion_tier: 1,
6656
- # enable_iam_database_authentication: false,
6657
- # enable_performance_insights: false,
6658
- # performance_insights_kms_key_id: "String",
6659
- # cloudwatch_logs_export_configuration: {
6660
- # enable_log_types: ["String"],
6661
- # disable_log_types: ["String"],
6662
- # },
6663
- # deletion_protection: false,
6664
- # }
6665
- #
6666
5916
  # @!attribute [rw] db_instance_identifier
6667
5917
  # The DB instance identifier. This value is stored as a lowercase
6668
5918
  # string.
@@ -7054,27 +6304,6 @@ module Aws::Neptune
7054
6304
  include Aws::Structure
7055
6305
  end
7056
6306
 
7057
- # @note When making an API call, you may pass ModifyDBParameterGroupMessage
7058
- # data as a hash:
7059
- #
7060
- # {
7061
- # db_parameter_group_name: "String", # required
7062
- # parameters: [ # required
7063
- # {
7064
- # parameter_name: "String",
7065
- # parameter_value: "String",
7066
- # description: "String",
7067
- # source: "String",
7068
- # apply_type: "String",
7069
- # data_type: "String",
7070
- # allowed_values: "String",
7071
- # is_modifiable: false,
7072
- # minimum_engine_version: "String",
7073
- # apply_method: "immediate", # accepts immediate, pending-reboot
7074
- # },
7075
- # ],
7076
- # }
7077
- #
7078
6307
  # @!attribute [rw] db_parameter_group_name
7079
6308
  # The name of the DB parameter group.
7080
6309
  #
@@ -7111,15 +6340,6 @@ module Aws::Neptune
7111
6340
  include Aws::Structure
7112
6341
  end
7113
6342
 
7114
- # @note When making an API call, you may pass ModifyDBSubnetGroupMessage
7115
- # data as a hash:
7116
- #
7117
- # {
7118
- # db_subnet_group_name: "String", # required
7119
- # db_subnet_group_description: "String",
7120
- # subnet_ids: ["String"], # required
7121
- # }
7122
- #
7123
6343
  # @!attribute [rw] db_subnet_group_name
7124
6344
  # The name for the DB subnet group. This value is stored as a
7125
6345
  # lowercase string. You can't modify the default subnet group.
@@ -7163,17 +6383,6 @@ module Aws::Neptune
7163
6383
  include Aws::Structure
7164
6384
  end
7165
6385
 
7166
- # @note When making an API call, you may pass ModifyEventSubscriptionMessage
7167
- # data as a hash:
7168
- #
7169
- # {
7170
- # subscription_name: "String", # required
7171
- # sns_topic_arn: "String",
7172
- # source_type: "String",
7173
- # event_categories: ["String"],
7174
- # enabled: false,
7175
- # }
7176
- #
7177
6386
  # @!attribute [rw] subscription_name
7178
6387
  # The name of the event notification subscription.
7179
6388
  # @return [String]
@@ -7229,17 +6438,6 @@ module Aws::Neptune
7229
6438
  include Aws::Structure
7230
6439
  end
7231
6440
 
7232
- # @note When making an API call, you may pass ModifyGlobalClusterMessage
7233
- # data as a hash:
7234
- #
7235
- # {
7236
- # global_cluster_identifier: "GlobalClusterIdentifier", # required
7237
- # new_global_cluster_identifier: "GlobalClusterIdentifier",
7238
- # deletion_protection: false,
7239
- # engine_version: "String",
7240
- # allow_major_version_upgrade: false,
7241
- # }
7242
- #
7243
6441
  # @!attribute [rw] global_cluster_identifier
7244
6442
  # The DB cluster identifier for the global cluster being modified.
7245
6443
  # This parameter is not case-sensitive.
@@ -7489,22 +6687,6 @@ module Aws::Neptune
7489
6687
 
7490
6688
  # Specifies a parameter.
7491
6689
  #
7492
- # @note When making an API call, you may pass Parameter
7493
- # data as a hash:
7494
- #
7495
- # {
7496
- # parameter_name: "String",
7497
- # parameter_value: "String",
7498
- # description: "String",
7499
- # source: "String",
7500
- # apply_type: "String",
7501
- # data_type: "String",
7502
- # allowed_values: "String",
7503
- # is_modifiable: false,
7504
- # minimum_engine_version: "String",
7505
- # apply_method: "immediate", # accepts immediate, pending-reboot
7506
- # }
7507
- #
7508
6690
  # @!attribute [rw] parameter_name
7509
6691
  # Specifies the name of the parameter.
7510
6692
  # @return [String]
@@ -7748,13 +6930,6 @@ module Aws::Neptune
7748
6930
  include Aws::Structure
7749
6931
  end
7750
6932
 
7751
- # @note When making an API call, you may pass PromoteReadReplicaDBClusterMessage
7752
- # data as a hash:
7753
- #
7754
- # {
7755
- # db_cluster_identifier: "String", # required
7756
- # }
7757
- #
7758
6933
  # @!attribute [rw] db_cluster_identifier
7759
6934
  # Not supported.
7760
6935
  # @return [String]
@@ -7816,14 +6991,6 @@ module Aws::Neptune
7816
6991
  include Aws::Structure
7817
6992
  end
7818
6993
 
7819
- # @note When making an API call, you may pass RebootDBInstanceMessage
7820
- # data as a hash:
7821
- #
7822
- # {
7823
- # db_instance_identifier: "String", # required
7824
- # force_failover: false,
7825
- # }
7826
- #
7827
6994
  # @!attribute [rw] db_instance_identifier
7828
6995
  # The DB instance identifier. This parameter is stored as a lowercase
7829
6996
  # string.
@@ -7866,14 +7033,6 @@ module Aws::Neptune
7866
7033
  include Aws::Structure
7867
7034
  end
7868
7035
 
7869
- # @note When making an API call, you may pass RemoveFromGlobalClusterMessage
7870
- # data as a hash:
7871
- #
7872
- # {
7873
- # global_cluster_identifier: "GlobalClusterIdentifier", # required
7874
- # db_cluster_identifier: "String", # required
7875
- # }
7876
- #
7877
7036
  # @!attribute [rw] global_cluster_identifier
7878
7037
  # The identifier of the Neptune global database from which to detach
7879
7038
  # the specified Neptune DB cluster.
@@ -7910,15 +7069,6 @@ module Aws::Neptune
7910
7069
  include Aws::Structure
7911
7070
  end
7912
7071
 
7913
- # @note When making an API call, you may pass RemoveRoleFromDBClusterMessage
7914
- # data as a hash:
7915
- #
7916
- # {
7917
- # db_cluster_identifier: "String", # required
7918
- # role_arn: "String", # required
7919
- # feature_name: "String",
7920
- # }
7921
- #
7922
7072
  # @!attribute [rw] db_cluster_identifier
7923
7073
  # The name of the DB cluster to disassociate the IAM role from.
7924
7074
  # @return [String]
@@ -7949,14 +7099,6 @@ module Aws::Neptune
7949
7099
  include Aws::Structure
7950
7100
  end
7951
7101
 
7952
- # @note When making an API call, you may pass RemoveSourceIdentifierFromSubscriptionMessage
7953
- # data as a hash:
7954
- #
7955
- # {
7956
- # subscription_name: "String", # required
7957
- # source_identifier: "String", # required
7958
- # }
7959
- #
7960
7102
  # @!attribute [rw] subscription_name
7961
7103
  # The name of the event notification subscription you want to remove a
7962
7104
  # source identifier from.
@@ -7990,14 +7132,6 @@ module Aws::Neptune
7990
7132
  include Aws::Structure
7991
7133
  end
7992
7134
 
7993
- # @note When making an API call, you may pass RemoveTagsFromResourceMessage
7994
- # data as a hash:
7995
- #
7996
- # {
7997
- # resource_name: "String", # required
7998
- # tag_keys: ["String"], # required
7999
- # }
8000
- #
8001
7135
  # @!attribute [rw] resource_name
8002
7136
  # The Amazon Neptune resource that the tags are removed from. This
8003
7137
  # value is an Amazon Resource Name (ARN). For information about
@@ -8022,28 +7156,6 @@ module Aws::Neptune
8022
7156
  include Aws::Structure
8023
7157
  end
8024
7158
 
8025
- # @note When making an API call, you may pass ResetDBClusterParameterGroupMessage
8026
- # data as a hash:
8027
- #
8028
- # {
8029
- # db_cluster_parameter_group_name: "String", # required
8030
- # reset_all_parameters: false,
8031
- # parameters: [
8032
- # {
8033
- # parameter_name: "String",
8034
- # parameter_value: "String",
8035
- # description: "String",
8036
- # source: "String",
8037
- # apply_type: "String",
8038
- # data_type: "String",
8039
- # allowed_values: "String",
8040
- # is_modifiable: false,
8041
- # minimum_engine_version: "String",
8042
- # apply_method: "immediate", # accepts immediate, pending-reboot
8043
- # },
8044
- # ],
8045
- # }
8046
- #
8047
7159
  # @!attribute [rw] db_cluster_parameter_group_name
8048
7160
  # The name of the DB cluster parameter group to reset.
8049
7161
  # @return [String]
@@ -8071,28 +7183,6 @@ module Aws::Neptune
8071
7183
  include Aws::Structure
8072
7184
  end
8073
7185
 
8074
- # @note When making an API call, you may pass ResetDBParameterGroupMessage
8075
- # data as a hash:
8076
- #
8077
- # {
8078
- # db_parameter_group_name: "String", # required
8079
- # reset_all_parameters: false,
8080
- # parameters: [
8081
- # {
8082
- # parameter_name: "String",
8083
- # parameter_value: "String",
8084
- # description: "String",
8085
- # source: "String",
8086
- # apply_type: "String",
8087
- # data_type: "String",
8088
- # allowed_values: "String",
8089
- # is_modifiable: false,
8090
- # minimum_engine_version: "String",
8091
- # apply_method: "immediate", # accepts immediate, pending-reboot
8092
- # },
8093
- # ],
8094
- # }
8095
- #
8096
7186
  # @!attribute [rw] db_parameter_group_name
8097
7187
  # The name of the DB parameter group.
8098
7188
  #
@@ -8156,38 +7246,6 @@ module Aws::Neptune
8156
7246
  include Aws::Structure
8157
7247
  end
8158
7248
 
8159
- # @note When making an API call, you may pass RestoreDBClusterFromSnapshotMessage
8160
- # data as a hash:
8161
- #
8162
- # {
8163
- # availability_zones: ["String"],
8164
- # db_cluster_identifier: "String", # required
8165
- # snapshot_identifier: "String", # required
8166
- # engine: "String", # required
8167
- # engine_version: "String",
8168
- # port: 1,
8169
- # db_subnet_group_name: "String",
8170
- # database_name: "String",
8171
- # option_group_name: "String",
8172
- # vpc_security_group_ids: ["String"],
8173
- # tags: [
8174
- # {
8175
- # key: "String",
8176
- # value: "String",
8177
- # },
8178
- # ],
8179
- # kms_key_id: "String",
8180
- # enable_iam_database_authentication: false,
8181
- # enable_cloudwatch_logs_exports: ["String"],
8182
- # db_cluster_parameter_group_name: "String",
8183
- # deletion_protection: false,
8184
- # copy_tags_to_snapshot: false,
8185
- # serverless_v2_scaling_configuration: {
8186
- # min_capacity: 1.0,
8187
- # max_capacity: 1.0,
8188
- # },
8189
- # }
8190
- #
8191
7249
  # @!attribute [rw] availability_zones
8192
7250
  # Provides the list of EC2 Availability Zones that instances in the
8193
7251
  # restored DB cluster can be created in.
@@ -8378,36 +7436,6 @@ module Aws::Neptune
8378
7436
  include Aws::Structure
8379
7437
  end
8380
7438
 
8381
- # @note When making an API call, you may pass RestoreDBClusterToPointInTimeMessage
8382
- # data as a hash:
8383
- #
8384
- # {
8385
- # db_cluster_identifier: "String", # required
8386
- # restore_type: "String",
8387
- # source_db_cluster_identifier: "String", # required
8388
- # restore_to_time: Time.now,
8389
- # use_latest_restorable_time: false,
8390
- # port: 1,
8391
- # db_subnet_group_name: "String",
8392
- # option_group_name: "String",
8393
- # vpc_security_group_ids: ["String"],
8394
- # tags: [
8395
- # {
8396
- # key: "String",
8397
- # value: "String",
8398
- # },
8399
- # ],
8400
- # kms_key_id: "String",
8401
- # enable_iam_database_authentication: false,
8402
- # enable_cloudwatch_logs_exports: ["String"],
8403
- # db_cluster_parameter_group_name: "String",
8404
- # deletion_protection: false,
8405
- # serverless_v2_scaling_configuration: {
8406
- # min_capacity: 1.0,
8407
- # max_capacity: 1.0,
8408
- # },
8409
- # }
8410
- #
8411
7439
  # @!attribute [rw] db_cluster_identifier
8412
7440
  # The name of the new DB cluster to be created.
8413
7441
  #
@@ -8639,14 +7667,6 @@ module Aws::Neptune
8639
7667
  #
8640
7668
  # [1]: https://docs.aws.amazon.com/neptune/latest/userguide/neptune-serverless-using.html
8641
7669
  #
8642
- # @note When making an API call, you may pass ServerlessV2ScalingConfiguration
8643
- # data as a hash:
8644
- #
8645
- # {
8646
- # min_capacity: 1.0,
8647
- # max_capacity: 1.0,
8648
- # }
8649
- #
8650
7670
  # @!attribute [rw] min_capacity
8651
7671
  # The minimum number of Neptune capacity units (NCUs) for a DB
8652
7672
  # instance in a Neptune Serverless cluster. You can specify NCU values
@@ -8718,13 +7738,6 @@ module Aws::Neptune
8718
7738
  #
8719
7739
  class SourceNotFoundFault < Aws::EmptyStructure; end
8720
7740
 
8721
- # @note When making an API call, you may pass StartDBClusterMessage
8722
- # data as a hash:
8723
- #
8724
- # {
8725
- # db_cluster_identifier: "String", # required
8726
- # }
8727
- #
8728
7741
  # @!attribute [rw] db_cluster_identifier
8729
7742
  # The DB cluster identifier of the Neptune DB cluster to be started.
8730
7743
  # This parameter is stored as a lowercase string.
@@ -8753,13 +7766,6 @@ module Aws::Neptune
8753
7766
  include Aws::Structure
8754
7767
  end
8755
7768
 
8756
- # @note When making an API call, you may pass StopDBClusterMessage
8757
- # data as a hash:
8758
- #
8759
- # {
8760
- # db_cluster_identifier: "String", # required
8761
- # }
8762
- #
8763
7769
  # @!attribute [rw] db_cluster_identifier
8764
7770
  # The DB cluster identifier of the Neptune DB cluster to be stopped.
8765
7771
  # This parameter is stored as a lowercase string.
@@ -8855,14 +7861,6 @@ module Aws::Neptune
8855
7861
  # Metadata assigned to an Amazon Neptune resource consisting of a
8856
7862
  # key-value pair.
8857
7863
  #
8858
- # @note When making an API call, you may pass Tag
8859
- # data as a hash:
8860
- #
8861
- # {
8862
- # key: "String",
8863
- # value: "String",
8864
- # }
8865
- #
8866
7864
  # @!attribute [rw] key
8867
7865
  # A key is the required name of the tag. The string value can be from
8868
7866
  # 1 to 128 Unicode characters in length and can't be prefixed with