StopDBCluster
Source:
src/AWS/DocDB/StopDBCluster.ts
Runtime binding for the StopDBCluster operation (IAM action
rds:StopDBCluster).
Stops the bound DBCluster — compute billing pauses while storage
is retained (up to 7 days, after which DocumentDB starts it back up) —
e.g. an ops function that parks a development cluster overnight. The
cluster identifier is injected from the binding. Provide the
implementation with Effect.provide(AWS.DocDB.StopDBClusterHttp).
Operating a Cluster
Section titled “Operating a Cluster”// init — bind the operation to the clusterconst stopDBCluster = yield* AWS.DocDB.StopDBCluster(cluster);
// runtimeyield* stopDBCluster();