Skip to content

StartDBCluster

Source: src/AWS/Neptune/StartDBCluster.ts

Runtime binding for the StartDBCluster operation (IAM action rds:StartDBCluster).

Starts the bound DBCluster after it was stopped — e.g. an ops function that wakes a development cluster on a schedule. The cluster identifier is injected from the binding. Provide the implementation with Effect.provide(AWS.Neptune.StartDBClusterHttp).

// init — bind the operation to the cluster
const startDBCluster = yield* AWS.Neptune.StartDBCluster(cluster);
// runtime
yield* startDBCluster();