Skip to content

StartDBInstance

Source: src/AWS/RDS/StartDBInstance.ts

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

Starts the bound DBInstance after it was stopped — e.g. an ops function that wakes a development database on a schedule. The instance identifier is injected from the binding. Provide the implementation with Effect.provide(AWS.RDS.StartDBInstanceHttp).

// init — bind the operation to the instance
const startDBInstance = yield* AWS.RDS.StartDBInstance(instance);
// runtime
yield* startDBInstance();