describeHandshake
Returns details for a handshake. A handshake is the secure exchange of information between two Amazon Web Services accounts: a sender and a recipient.
You can view ACCEPTED, DECLINED, or CANCELED handshakes in API Responses for 30 days before they are deleted.
You can call this operation from any account in a organization.
Samples
fun main() {
//sampleStart
// The following example shows you how to request details about a handshake. The handshake ID comes
// either from the original call to "InviteAccountToOrganization", or from a call to
// "ListHandshakesForAccount" or "ListHandshakesForOrganization"
val resp = organizationsClient.describeHandshake {
handshakeId = "h-examplehandshakeid111"
}
//sampleEnd
}