describeRefreshSchemasStatus
inline suspend fun DatabaseMigrationClient.describeRefreshSchemasStatus(crossinline block: DescribeRefreshSchemasStatusRequest.Builder.() -> Unit): DescribeRefreshSchemasStatusResponse
Returns the status of the RefreshSchemas operation.
Samples
fun main() {
//sampleStart
// Returns the status of the refresh schemas operation.
val resp = databaseMigrationClient.describeRefreshSchemasStatus {
endpointArn = ""
}
//sampleEnd
}