describeConnections
inline suspend fun DatabaseMigrationClient.describeConnections(crossinline block: DescribeConnectionsRequest.Builder.() -> Unit): DescribeConnectionsResponse
Describes the status of the connections that have been made between the replication instance and an endpoint. Connections are created when you test an endpoint.
Samples
import aws.sdk.kotlin.services.databasemigrationservice.model.Filter
fun main() {
//sampleStart
// Describes the status of the connections that have been made between the replication instance and an
// endpoint. Connections are created when you test an endpoint.
val resp = databaseMigrationClient.describeConnections {
filters = listOf<Filter>(
Filter {
name = "string"
values = listOf<String>(
"string",
"string"
)
}
)
maxRecords = 123
marker = ""
}
//sampleEnd
}