acceptChannelHandshake
inline suspend fun PartnerCentralChannelClient.acceptChannelHandshake(crossinline block: AcceptChannelHandshakeRequest.Builder.() -> Unit): AcceptChannelHandshakeResponse
Accepts a pending channel handshake request from another AWS account.
Samples
fun main() {
//sampleStart
// Example for AcceptChannelHandshake
val resp = partnerCentralChannelClient.acceptChannelHandshake {
catalog = "AWS"
identifier = "ch-4fj3bd2o3vb91"
}
//sampleEnd
}