aws-sdk-neptune 1.30.0 → 1.31.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a9826c7802e122409f6de5dd013465dbb0f896afcc78c5ef88f0d9c1f142e3db
4
- data.tar.gz: f27fe6bcdd429a0b3522fccca0956803fa61dadc8698e8f2735dd2cb3d8a8481
3
+ metadata.gz: 9efb7810bbe3f99aeb7dd4ec217c6a0ecb93c2c24e4878b65d9b272638910684
4
+ data.tar.gz: 4b174d42488a3432222903abd89c52ae596ad5b935e3c8bdbb1b0b615dda8c40
5
5
  SHA512:
6
- metadata.gz: 3cfe5dfe8ef784001f69b8e45fdb1fc3628351d155e9e630bb86b27e831fb056347531bb6996b90b9b2769c7ddf45d7e61b24b2a6d70dadd172e5095797594f3
7
- data.tar.gz: 0b48a097cc89de45cb09478ae03716944d9032c993649cd8ae5ed7f74535ed03bbba1eaf6b056211c518cb59ec05c810603a5b3a6e91a80bc4449dbf84c17317
6
+ metadata.gz: c405466678c858af0c5032c2999add4360b60f776732eeb963b929f54d98306b9cf8e180c0c051fc19023661069c00a23e3e2d6ea7a23bf94045c56ef81f43e9
7
+ data.tar.gz: 65a96b099cfe4f005d86a465d2a0c3de94ed400398f7139f2538c89154f15f895a3a7b8e0479fd0b03b9767073e01808765b895d1133a099b4ba79adc665ad64
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-neptune/customizations'
49
49
  # @!group service
50
50
  module Aws::Neptune
51
51
 
52
- GEM_VERSION = '1.30.0'
52
+ GEM_VERSION = '1.31.0'
53
53
 
54
54
  end
@@ -338,6 +338,11 @@ module Aws::Neptune
338
338
  # Neptune DB cluster, for example
339
339
  # `arn:aws:iam::123456789012:role/NeptuneAccessRole`.
340
340
  #
341
+ # @option params [String] :feature_name
342
+ # The name of the feature for the Neptune DB cluster that the IAM role
343
+ # is to be associated with. For the list of supported feature names, see
344
+ # DBEngineVersion.
345
+ #
341
346
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
342
347
  #
343
348
  # @example Request syntax with placeholder values
@@ -345,6 +350,7 @@ module Aws::Neptune
345
350
  # resp = client.add_role_to_db_cluster({
346
351
  # db_cluster_identifier: "String", # required
347
352
  # role_arn: "String", # required
353
+ # feature_name: "String",
348
354
  # })
349
355
  #
350
356
  # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/AddRoleToDBCluster AWS API Documentation
@@ -867,10 +873,10 @@ module Aws::Neptune
867
873
  # Valid Values: `neptune`
868
874
  #
869
875
  # @option params [String] :engine_version
870
- # The version number of the database engine to use. Currently, setting
871
- # this parameter has no effect.
876
+ # The version number of the database engine to use for the new DB
877
+ # cluster.
872
878
  #
873
- # Example: `1.0.1`
879
+ # Example: `1.0.2.1`
874
880
  #
875
881
  # @option params [Integer] :port
876
882
  # The port number on which the instances in the DB cluster accept
@@ -984,10 +990,7 @@ module Aws::Neptune
984
990
  # This parameter is not currently supported.
985
991
  #
986
992
  # @option params [Boolean] :enable_iam_database_authentication
987
- # True to enable mapping of AWS Identity and Access Management (IAM)
988
- # accounts to database accounts, and otherwise false.
989
- #
990
- # Default: `false`
993
+ # Not supported by Neptune.
991
994
  #
992
995
  # @option params [Array<String>] :enable_cloudwatch_logs_exports
993
996
  # The list of log types that need to be enabled for exporting to
@@ -1082,6 +1085,7 @@ module Aws::Neptune
1082
1085
  # resp.db_cluster.associated_roles #=> Array
1083
1086
  # resp.db_cluster.associated_roles[0].role_arn #=> String
1084
1087
  # resp.db_cluster.associated_roles[0].status #=> String
1088
+ # resp.db_cluster.associated_roles[0].feature_name #=> String
1085
1089
  # resp.db_cluster.iam_database_authentication_enabled #=> Boolean
1086
1090
  # resp.db_cluster.clone_group_id #=> String
1087
1091
  # resp.db_cluster.cluster_create_time #=> Time
@@ -1098,6 +1102,85 @@ module Aws::Neptune
1098
1102
  req.send_request(options)
1099
1103
  end
1100
1104
 
1105
+ # Creates a new custom endpoint and associates it with an Amazon Neptune
1106
+ # DB cluster.
1107
+ #
1108
+ # @option params [required, String] :db_cluster_identifier
1109
+ # The DB cluster identifier of the DB cluster associated with the
1110
+ # endpoint. This parameter is stored as a lowercase string.
1111
+ #
1112
+ # @option params [required, String] :db_cluster_endpoint_identifier
1113
+ # The identifier to use for the new endpoint. This parameter is stored
1114
+ # as a lowercase string.
1115
+ #
1116
+ # @option params [required, String] :endpoint_type
1117
+ # The type of the endpoint. One of: `READER`, `WRITER`, `ANY`.
1118
+ #
1119
+ # @option params [Array<String>] :static_members
1120
+ # List of DB instance identifiers that are part of the custom endpoint
1121
+ # group.
1122
+ #
1123
+ # @option params [Array<String>] :excluded_members
1124
+ # List of DB instance identifiers that aren't part of the custom
1125
+ # endpoint group. All other eligible instances are reachable through the
1126
+ # custom endpoint. Only relevant if the list of static members is empty.
1127
+ #
1128
+ # @option params [Array<Types::Tag>] :tags
1129
+ # The tags to be assigned to the Amazon Neptune resource.
1130
+ #
1131
+ # @return [Types::CreateDBClusterEndpointOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1132
+ #
1133
+ # * {Types::CreateDBClusterEndpointOutput#db_cluster_endpoint_identifier #db_cluster_endpoint_identifier} => String
1134
+ # * {Types::CreateDBClusterEndpointOutput#db_cluster_identifier #db_cluster_identifier} => String
1135
+ # * {Types::CreateDBClusterEndpointOutput#db_cluster_endpoint_resource_identifier #db_cluster_endpoint_resource_identifier} => String
1136
+ # * {Types::CreateDBClusterEndpointOutput#endpoint #endpoint} => String
1137
+ # * {Types::CreateDBClusterEndpointOutput#status #status} => String
1138
+ # * {Types::CreateDBClusterEndpointOutput#endpoint_type #endpoint_type} => String
1139
+ # * {Types::CreateDBClusterEndpointOutput#custom_endpoint_type #custom_endpoint_type} => String
1140
+ # * {Types::CreateDBClusterEndpointOutput#static_members #static_members} => Array&lt;String&gt;
1141
+ # * {Types::CreateDBClusterEndpointOutput#excluded_members #excluded_members} => Array&lt;String&gt;
1142
+ # * {Types::CreateDBClusterEndpointOutput#db_cluster_endpoint_arn #db_cluster_endpoint_arn} => String
1143
+ #
1144
+ # @example Request syntax with placeholder values
1145
+ #
1146
+ # resp = client.create_db_cluster_endpoint({
1147
+ # db_cluster_identifier: "String", # required
1148
+ # db_cluster_endpoint_identifier: "String", # required
1149
+ # endpoint_type: "String", # required
1150
+ # static_members: ["String"],
1151
+ # excluded_members: ["String"],
1152
+ # tags: [
1153
+ # {
1154
+ # key: "String",
1155
+ # value: "String",
1156
+ # },
1157
+ # ],
1158
+ # })
1159
+ #
1160
+ # @example Response structure
1161
+ #
1162
+ # resp.db_cluster_endpoint_identifier #=> String
1163
+ # resp.db_cluster_identifier #=> String
1164
+ # resp.db_cluster_endpoint_resource_identifier #=> String
1165
+ # resp.endpoint #=> String
1166
+ # resp.status #=> String
1167
+ # resp.endpoint_type #=> String
1168
+ # resp.custom_endpoint_type #=> String
1169
+ # resp.static_members #=> Array
1170
+ # resp.static_members[0] #=> String
1171
+ # resp.excluded_members #=> Array
1172
+ # resp.excluded_members[0] #=> String
1173
+ # resp.db_cluster_endpoint_arn #=> String
1174
+ #
1175
+ # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/CreateDBClusterEndpoint AWS API Documentation
1176
+ #
1177
+ # @overload create_db_cluster_endpoint(params = {})
1178
+ # @param [Hash] params ({})
1179
+ def create_db_cluster_endpoint(params = {}, options = {})
1180
+ req = build_request(:create_db_cluster_endpoint, params)
1181
+ req.send_request(options)
1182
+ end
1183
+
1101
1184
  # Creates a new DB cluster parameter group.
1102
1185
  #
1103
1186
  # Parameters in a DB cluster parameter group apply to all of the
@@ -2100,6 +2183,7 @@ module Aws::Neptune
2100
2183
  # resp.db_cluster.associated_roles #=> Array
2101
2184
  # resp.db_cluster.associated_roles[0].role_arn #=> String
2102
2185
  # resp.db_cluster.associated_roles[0].status #=> String
2186
+ # resp.db_cluster.associated_roles[0].feature_name #=> String
2103
2187
  # resp.db_cluster.iam_database_authentication_enabled #=> Boolean
2104
2188
  # resp.db_cluster.clone_group_id #=> String
2105
2189
  # resp.db_cluster.cluster_create_time #=> Time
@@ -2116,6 +2200,56 @@ module Aws::Neptune
2116
2200
  req.send_request(options)
2117
2201
  end
2118
2202
 
2203
+ # Deletes a custom endpoint and removes it from an Amazon Neptune DB
2204
+ # cluster.
2205
+ #
2206
+ # @option params [required, String] :db_cluster_endpoint_identifier
2207
+ # The identifier associated with the custom endpoint. This parameter is
2208
+ # stored as a lowercase string.
2209
+ #
2210
+ # @return [Types::DeleteDBClusterEndpointOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2211
+ #
2212
+ # * {Types::DeleteDBClusterEndpointOutput#db_cluster_endpoint_identifier #db_cluster_endpoint_identifier} => String
2213
+ # * {Types::DeleteDBClusterEndpointOutput#db_cluster_identifier #db_cluster_identifier} => String
2214
+ # * {Types::DeleteDBClusterEndpointOutput#db_cluster_endpoint_resource_identifier #db_cluster_endpoint_resource_identifier} => String
2215
+ # * {Types::DeleteDBClusterEndpointOutput#endpoint #endpoint} => String
2216
+ # * {Types::DeleteDBClusterEndpointOutput#status #status} => String
2217
+ # * {Types::DeleteDBClusterEndpointOutput#endpoint_type #endpoint_type} => String
2218
+ # * {Types::DeleteDBClusterEndpointOutput#custom_endpoint_type #custom_endpoint_type} => String
2219
+ # * {Types::DeleteDBClusterEndpointOutput#static_members #static_members} => Array&lt;String&gt;
2220
+ # * {Types::DeleteDBClusterEndpointOutput#excluded_members #excluded_members} => Array&lt;String&gt;
2221
+ # * {Types::DeleteDBClusterEndpointOutput#db_cluster_endpoint_arn #db_cluster_endpoint_arn} => String
2222
+ #
2223
+ # @example Request syntax with placeholder values
2224
+ #
2225
+ # resp = client.delete_db_cluster_endpoint({
2226
+ # db_cluster_endpoint_identifier: "String", # required
2227
+ # })
2228
+ #
2229
+ # @example Response structure
2230
+ #
2231
+ # resp.db_cluster_endpoint_identifier #=> String
2232
+ # resp.db_cluster_identifier #=> String
2233
+ # resp.db_cluster_endpoint_resource_identifier #=> String
2234
+ # resp.endpoint #=> String
2235
+ # resp.status #=> String
2236
+ # resp.endpoint_type #=> String
2237
+ # resp.custom_endpoint_type #=> String
2238
+ # resp.static_members #=> Array
2239
+ # resp.static_members[0] #=> String
2240
+ # resp.excluded_members #=> Array
2241
+ # resp.excluded_members[0] #=> String
2242
+ # resp.db_cluster_endpoint_arn #=> String
2243
+ #
2244
+ # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DeleteDBClusterEndpoint AWS API Documentation
2245
+ #
2246
+ # @overload delete_db_cluster_endpoint(params = {})
2247
+ # @param [Hash] params ({})
2248
+ def delete_db_cluster_endpoint(params = {}, options = {})
2249
+ req = build_request(:delete_db_cluster_endpoint, params)
2250
+ req.send_request(options)
2251
+ end
2252
+
2119
2253
  # Deletes a specified DB cluster parameter group. The DB cluster
2120
2254
  # parameter group to be deleted can't be associated with any DB
2121
2255
  # clusters.
@@ -2503,6 +2637,98 @@ module Aws::Neptune
2503
2637
  req.send_request(options)
2504
2638
  end
2505
2639
 
2640
+ # Returns information about endpoints for an Amazon Neptune DB cluster.
2641
+ #
2642
+ # <note markdown="1"> This operation can also return information for Amazon RDS clusters and
2643
+ # Amazon DocDB clusters.
2644
+ #
2645
+ # </note>
2646
+ #
2647
+ # @option params [String] :db_cluster_identifier
2648
+ # The DB cluster identifier of the DB cluster associated with the
2649
+ # endpoint. This parameter is stored as a lowercase string.
2650
+ #
2651
+ # @option params [String] :db_cluster_endpoint_identifier
2652
+ # The identifier of the endpoint to describe. This parameter is stored
2653
+ # as a lowercase string.
2654
+ #
2655
+ # @option params [Array<Types::Filter>] :filters
2656
+ # A set of name-value pairs that define which endpoints to include in
2657
+ # the output. The filters are specified as name-value pairs, in the
2658
+ # format `Name=endpoint_type,Values=endpoint_type1,endpoint_type2,...`.
2659
+ # `Name` can be one of: `db-cluster-endpoint-type`,
2660
+ # `db-cluster-endpoint-custom-type`, `db-cluster-endpoint-id`,
2661
+ # `db-cluster-endpoint-status`. `Values` for the `
2662
+ # db-cluster-endpoint-type` filter can be one or more of: `reader`,
2663
+ # `writer`, `custom`. `Values` for the `db-cluster-endpoint-custom-type`
2664
+ # filter can be one or more of: `reader`, `any`. `Values` for the
2665
+ # `db-cluster-endpoint-status` filter can be one or more of:
2666
+ # `available`, `creating`, `deleting`, `inactive`, `modifying`.
2667
+ #
2668
+ # @option params [Integer] :max_records
2669
+ # The maximum number of records to include in the response. If more
2670
+ # records exist than the specified `MaxRecords` value, a pagination
2671
+ # token called a marker is included in the response so you can retrieve
2672
+ # the remaining results.
2673
+ #
2674
+ # Default: 100
2675
+ #
2676
+ # Constraints: Minimum 20, maximum 100.
2677
+ #
2678
+ # @option params [String] :marker
2679
+ # An optional pagination token provided by a previous
2680
+ # `DescribeDBClusterEndpoints` request. If this parameter is specified,
2681
+ # the response includes only records beyond the marker, up to the value
2682
+ # specified by `MaxRecords`.
2683
+ #
2684
+ # @return [Types::DBClusterEndpointMessage] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2685
+ #
2686
+ # * {Types::DBClusterEndpointMessage#marker #marker} => String
2687
+ # * {Types::DBClusterEndpointMessage#db_cluster_endpoints #db_cluster_endpoints} => Array&lt;Types::DBClusterEndpoint&gt;
2688
+ #
2689
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2690
+ #
2691
+ # @example Request syntax with placeholder values
2692
+ #
2693
+ # resp = client.describe_db_cluster_endpoints({
2694
+ # db_cluster_identifier: "String",
2695
+ # db_cluster_endpoint_identifier: "String",
2696
+ # filters: [
2697
+ # {
2698
+ # name: "String", # required
2699
+ # values: ["String"], # required
2700
+ # },
2701
+ # ],
2702
+ # max_records: 1,
2703
+ # marker: "String",
2704
+ # })
2705
+ #
2706
+ # @example Response structure
2707
+ #
2708
+ # resp.marker #=> String
2709
+ # resp.db_cluster_endpoints #=> Array
2710
+ # resp.db_cluster_endpoints[0].db_cluster_endpoint_identifier #=> String
2711
+ # resp.db_cluster_endpoints[0].db_cluster_identifier #=> String
2712
+ # resp.db_cluster_endpoints[0].db_cluster_endpoint_resource_identifier #=> String
2713
+ # resp.db_cluster_endpoints[0].endpoint #=> String
2714
+ # resp.db_cluster_endpoints[0].status #=> String
2715
+ # resp.db_cluster_endpoints[0].endpoint_type #=> String
2716
+ # resp.db_cluster_endpoints[0].custom_endpoint_type #=> String
2717
+ # resp.db_cluster_endpoints[0].static_members #=> Array
2718
+ # resp.db_cluster_endpoints[0].static_members[0] #=> String
2719
+ # resp.db_cluster_endpoints[0].excluded_members #=> Array
2720
+ # resp.db_cluster_endpoints[0].excluded_members[0] #=> String
2721
+ # resp.db_cluster_endpoints[0].db_cluster_endpoint_arn #=> String
2722
+ #
2723
+ # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/DescribeDBClusterEndpoints AWS API Documentation
2724
+ #
2725
+ # @overload describe_db_cluster_endpoints(params = {})
2726
+ # @param [Hash] params ({})
2727
+ def describe_db_cluster_endpoints(params = {}, options = {})
2728
+ req = build_request(:describe_db_cluster_endpoints, params)
2729
+ req.send_request(options)
2730
+ end
2731
+
2506
2732
  # Returns a list of `DBClusterParameterGroup` descriptions. If a
2507
2733
  # `DBClusterParameterGroupName` parameter is specified, the list will
2508
2734
  # contain only the description of the specified DB cluster parameter
@@ -2968,6 +3194,7 @@ module Aws::Neptune
2968
3194
  # resp.db_clusters[0].associated_roles #=> Array
2969
3195
  # resp.db_clusters[0].associated_roles[0].role_arn #=> String
2970
3196
  # resp.db_clusters[0].associated_roles[0].status #=> String
3197
+ # resp.db_clusters[0].associated_roles[0].feature_name #=> String
2971
3198
  # resp.db_clusters[0].iam_database_authentication_enabled #=> Boolean
2972
3199
  # resp.db_clusters[0].clone_group_id #=> String
2973
3200
  # resp.db_clusters[0].cluster_create_time #=> Time
@@ -4215,6 +4442,7 @@ module Aws::Neptune
4215
4442
  # resp.db_cluster.associated_roles #=> Array
4216
4443
  # resp.db_cluster.associated_roles[0].role_arn #=> String
4217
4444
  # resp.db_cluster.associated_roles[0].status #=> String
4445
+ # resp.db_cluster.associated_roles[0].feature_name #=> String
4218
4446
  # resp.db_cluster.iam_database_authentication_enabled #=> Boolean
4219
4447
  # resp.db_cluster.clone_group_id #=> String
4220
4448
  # resp.db_cluster.cluster_create_time #=> Time
@@ -4398,12 +4626,18 @@ module Aws::Neptune
4398
4626
  # to CloudWatch Logs for a specific DB cluster.
4399
4627
  #
4400
4628
  # @option params [String] :engine_version
4401
- # The version number of the database engine. Currently, setting this
4402
- # parameter has no effect. To upgrade your database engine to the most
4403
- # recent release, use the ApplyPendingMaintenanceAction API.
4629
+ # The version number of the database engine to which you want to
4630
+ # upgrade. Changing this parameter results in an outage. The change is
4631
+ # applied during the next maintenance window unless the
4632
+ # `ApplyImmediately` parameter is set to true.
4633
+ #
4634
+ # For a list of valid engine versions, see [Engine Releases for Amazon
4635
+ # Neptune][1], or call [DescribeDBEngineVersions][2].
4404
4636
  #
4405
- # For a list of valid engine versions, see CreateDBInstance, or call
4406
- # DescribeDBEngineVersions.
4637
+ #
4638
+ #
4639
+ # [1]: https://docs.aws.amazon.com/neptune/latest/userguide/engine-releases.html
4640
+ # [2]: https://docs.aws.amazon.com/neptune/latest/userguide/api-other-apis.html#DescribeDBEngineVersions
4407
4641
  #
4408
4642
  # @option params [Boolean] :deletion_protection
4409
4643
  # A value that indicates whether the DB cluster has deletion protection
@@ -4483,6 +4717,7 @@ module Aws::Neptune
4483
4717
  # resp.db_cluster.associated_roles #=> Array
4484
4718
  # resp.db_cluster.associated_roles[0].role_arn #=> String
4485
4719
  # resp.db_cluster.associated_roles[0].status #=> String
4720
+ # resp.db_cluster.associated_roles[0].feature_name #=> String
4486
4721
  # resp.db_cluster.iam_database_authentication_enabled #=> Boolean
4487
4722
  # resp.db_cluster.clone_group_id #=> String
4488
4723
  # resp.db_cluster.cluster_create_time #=> Time
@@ -4499,6 +4734,71 @@ module Aws::Neptune
4499
4734
  req.send_request(options)
4500
4735
  end
4501
4736
 
4737
+ # Modifies the properties of an endpoint in an Amazon Neptune DB
4738
+ # cluster.
4739
+ #
4740
+ # @option params [required, String] :db_cluster_endpoint_identifier
4741
+ # The identifier of the endpoint to modify. This parameter is stored as
4742
+ # a lowercase string.
4743
+ #
4744
+ # @option params [String] :endpoint_type
4745
+ # The type of the endpoint. One of: `READER`, `WRITER`, `ANY`.
4746
+ #
4747
+ # @option params [Array<String>] :static_members
4748
+ # List of DB instance identifiers that are part of the custom endpoint
4749
+ # group.
4750
+ #
4751
+ # @option params [Array<String>] :excluded_members
4752
+ # List of DB instance identifiers that aren't part of the custom
4753
+ # endpoint group. All other eligible instances are reachable through the
4754
+ # custom endpoint. Only relevant if the list of static members is empty.
4755
+ #
4756
+ # @return [Types::ModifyDBClusterEndpointOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4757
+ #
4758
+ # * {Types::ModifyDBClusterEndpointOutput#db_cluster_endpoint_identifier #db_cluster_endpoint_identifier} => String
4759
+ # * {Types::ModifyDBClusterEndpointOutput#db_cluster_identifier #db_cluster_identifier} => String
4760
+ # * {Types::ModifyDBClusterEndpointOutput#db_cluster_endpoint_resource_identifier #db_cluster_endpoint_resource_identifier} => String
4761
+ # * {Types::ModifyDBClusterEndpointOutput#endpoint #endpoint} => String
4762
+ # * {Types::ModifyDBClusterEndpointOutput#status #status} => String
4763
+ # * {Types::ModifyDBClusterEndpointOutput#endpoint_type #endpoint_type} => String
4764
+ # * {Types::ModifyDBClusterEndpointOutput#custom_endpoint_type #custom_endpoint_type} => String
4765
+ # * {Types::ModifyDBClusterEndpointOutput#static_members #static_members} => Array&lt;String&gt;
4766
+ # * {Types::ModifyDBClusterEndpointOutput#excluded_members #excluded_members} => Array&lt;String&gt;
4767
+ # * {Types::ModifyDBClusterEndpointOutput#db_cluster_endpoint_arn #db_cluster_endpoint_arn} => String
4768
+ #
4769
+ # @example Request syntax with placeholder values
4770
+ #
4771
+ # resp = client.modify_db_cluster_endpoint({
4772
+ # db_cluster_endpoint_identifier: "String", # required
4773
+ # endpoint_type: "String",
4774
+ # static_members: ["String"],
4775
+ # excluded_members: ["String"],
4776
+ # })
4777
+ #
4778
+ # @example Response structure
4779
+ #
4780
+ # resp.db_cluster_endpoint_identifier #=> String
4781
+ # resp.db_cluster_identifier #=> String
4782
+ # resp.db_cluster_endpoint_resource_identifier #=> String
4783
+ # resp.endpoint #=> String
4784
+ # resp.status #=> String
4785
+ # resp.endpoint_type #=> String
4786
+ # resp.custom_endpoint_type #=> String
4787
+ # resp.static_members #=> Array
4788
+ # resp.static_members[0] #=> String
4789
+ # resp.excluded_members #=> Array
4790
+ # resp.excluded_members[0] #=> String
4791
+ # resp.db_cluster_endpoint_arn #=> String
4792
+ #
4793
+ # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/ModifyDBClusterEndpoint AWS API Documentation
4794
+ #
4795
+ # @overload modify_db_cluster_endpoint(params = {})
4796
+ # @param [Hash] params ({})
4797
+ def modify_db_cluster_endpoint(params = {}, options = {})
4798
+ req = build_request(:modify_db_cluster_endpoint, params)
4799
+ req.send_request(options)
4800
+ end
4801
+
4502
4802
  # Modifies the parameters of a DB cluster parameter group. To modify
4503
4803
  # more than one parameter, submit a list of the following:
4504
4804
  # `ParameterName`, `ParameterValue`, and `ApplyMethod`. A maximum of 20
@@ -5374,6 +5674,7 @@ module Aws::Neptune
5374
5674
  # resp.db_cluster.associated_roles #=> Array
5375
5675
  # resp.db_cluster.associated_roles[0].role_arn #=> String
5376
5676
  # resp.db_cluster.associated_roles[0].status #=> String
5677
+ # resp.db_cluster.associated_roles[0].feature_name #=> String
5377
5678
  # resp.db_cluster.iam_database_authentication_enabled #=> Boolean
5378
5679
  # resp.db_cluster.clone_group_id #=> String
5379
5680
  # resp.db_cluster.cluster_create_time #=> Time
@@ -5547,6 +5848,11 @@ module Aws::Neptune
5547
5848
  # the DB cluster, for example
5548
5849
  # `arn:aws:iam::123456789012:role/NeptuneAccessRole`.
5549
5850
  #
5851
+ # @option params [String] :feature_name
5852
+ # The name of the feature for the DB cluster that the IAM role is to be
5853
+ # disassociated from. For the list of supported feature names, see
5854
+ # DBEngineVersion.
5855
+ #
5550
5856
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
5551
5857
  #
5552
5858
  # @example Request syntax with placeholder values
@@ -5554,6 +5860,7 @@ module Aws::Neptune
5554
5860
  # resp = client.remove_role_from_db_cluster({
5555
5861
  # db_cluster_identifier: "String", # required
5556
5862
  # role_arn: "String", # required
5863
+ # feature_name: "String",
5557
5864
  # })
5558
5865
  #
5559
5866
  # @see http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/RemoveRoleFromDBCluster AWS API Documentation
@@ -5981,6 +6288,7 @@ module Aws::Neptune
5981
6288
  # resp.db_cluster.associated_roles #=> Array
5982
6289
  # resp.db_cluster.associated_roles[0].role_arn #=> String
5983
6290
  # resp.db_cluster.associated_roles[0].status #=> String
6291
+ # resp.db_cluster.associated_roles[0].feature_name #=> String
5984
6292
  # resp.db_cluster.iam_database_authentication_enabled #=> Boolean
5985
6293
  # resp.db_cluster.clone_group_id #=> String
5986
6294
  # resp.db_cluster.cluster_create_time #=> Time
@@ -6227,6 +6535,7 @@ module Aws::Neptune
6227
6535
  # resp.db_cluster.associated_roles #=> Array
6228
6536
  # resp.db_cluster.associated_roles[0].role_arn #=> String
6229
6537
  # resp.db_cluster.associated_roles[0].status #=> String
6538
+ # resp.db_cluster.associated_roles[0].feature_name #=> String
6230
6539
  # resp.db_cluster.iam_database_authentication_enabled #=> Boolean
6231
6540
  # resp.db_cluster.clone_group_id #=> String
6232
6541
  # resp.db_cluster.cluster_create_time #=> Time
@@ -6307,6 +6616,7 @@ module Aws::Neptune
6307
6616
  # resp.db_cluster.associated_roles #=> Array
6308
6617
  # resp.db_cluster.associated_roles[0].role_arn #=> String
6309
6618
  # resp.db_cluster.associated_roles[0].status #=> String
6619
+ # resp.db_cluster.associated_roles[0].feature_name #=> String
6310
6620
  # resp.db_cluster.iam_database_authentication_enabled #=> Boolean
6311
6621
  # resp.db_cluster.clone_group_id #=> String
6312
6622
  # resp.db_cluster.cluster_create_time #=> Time
@@ -6390,6 +6700,7 @@ module Aws::Neptune
6390
6700
  # resp.db_cluster.associated_roles #=> Array
6391
6701
  # resp.db_cluster.associated_roles[0].role_arn #=> String
6392
6702
  # resp.db_cluster.associated_roles[0].status #=> String
6703
+ # resp.db_cluster.associated_roles[0].feature_name #=> String
6393
6704
  # resp.db_cluster.iam_database_authentication_enabled #=> Boolean
6394
6705
  # resp.db_cluster.clone_group_id #=> String
6395
6706
  # resp.db_cluster.cluster_create_time #=> Time
@@ -6419,7 +6730,7 @@ module Aws::Neptune
6419
6730
  params: params,
6420
6731
  config: config)
6421
6732
  context[:gem_name] = 'aws-sdk-neptune'
6422
- context[:gem_version] = '1.30.0'
6733
+ context[:gem_version] = '1.31.0'
6423
6734
  Seahorse::Client::Request.new(handlers, context)
6424
6735
  end
6425
6736