describeAddress
Takes an AddressId
and returns specific details about that address in the form of an Address
object.
Samples
fun main() {
//sampleStart
// This operation describes an address for a job.
val resp = snowballClient.describeAddress {
addressId = "ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b"
}
//sampleEnd
}