refreshSchemas
inline suspend fun DatabaseMigrationClient.refreshSchemas(crossinline block: RefreshSchemasRequest.Builder.() -> Unit): RefreshSchemasResponse
Populates the schema for the specified endpoint. This is an asynchronous operation and can take several minutes. You can check the status of this operation by calling the DescribeRefreshSchemasStatus operation.
Samples
fun main() {
//sampleStart
// Populates the schema for the specified endpoint. This is an asynchronous operation and can take
// several minutes. You can check the status of this operation by calling the describe refresh schemas status
// operation.
val resp = databaseMigrationClient.refreshSchemas {
endpointArn = ""
replicationInstanceArn = ""
}
//sampleEnd
}