startDBCluster method
Starts an Amazon Neptune DB cluster that was stopped using the Amazon console, the Amazon CLI stop-db-cluster command, or the StopDBCluster API.
May throw DBClusterNotFoundFault.
May throw InvalidDBClusterStateFault.
May throw InvalidDBInstanceStateFault.
Parameter dBClusterIdentifier :
The DB cluster identifier of the Neptune DB cluster to be started. This
parameter is stored as a lowercase string.
Implementation
Future<StartDBClusterResult> startDBCluster({
required String dBClusterIdentifier,
}) async {
final $request = <String, String>{
'DBClusterIdentifier': dBClusterIdentifier,
};
final $result = await _protocol.send(
$request,
action: 'StartDBCluster',
version: '2014-10-31',
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
resultWrapper: 'StartDBClusterResult',
);
return StartDBClusterResult.fromXml($result);
}