startDbCluster

Starts an Amazon Aurora DB cluster that was stopped using the Amazon Web Services console, the stop-db-cluster CLI command, or the StopDBCluster operation.

For more information, see Stopping and Starting an Aurora Cluster in the Amazon Aurora User Guide.

This operation only applies to Aurora DB clusters.

Samples


fun main() { 
   //sampleStart 
   // The following example starts a DB cluster and its DB instances.
val resp = rdsClient.startDbCluster {
    dbClusterIdentifier = "mydbcluster"
} 
   //sampleEnd
}