listAttachPoints
inline suspend fun InterconnectClient.listAttachPoints(crossinline block: ListAttachPointsRequest.Builder.() -> Unit): ListAttachPointsResponse
Lists all Attach Points the caller has access to that are valid for the specified Environment.
Samples
fun main() {
//sampleStart
// List Attach Points
val resp = interconnectClient.listAttachPoints {
environmentId = "mce-aws-acme-1"
}
//sampleEnd
}