describeAddresses

abstract suspend fun describeAddresses(input: DescribeAddressesRequest = DescribeAddressesRequest { }): DescribeAddressesResponse

Returns a specified number of ADDRESS objects. Calling this API in one of the US regions will return addresses from the list of all addresses associated with this account in all US regions.

Samples


fun main() { 
   //sampleStart 
   // This operation describes all the addresses that you ve created for AWS Snowball. Calling this API in
// one of the US regions will return addresses from the list of all addresses associated with this account
// in all US regions.
val resp = snowballClient.describeAddresses() 
   //sampleEnd
}