describe_address
(**kwargs)¶Takes an AddressId
and returns specific details about that address in the form of an Address
object.
See also: AWS API Documentation
Request Syntax
response = client.describe_address(
AddressId='string'
)
[REQUIRED]
The automatically generated ID for a specific address.
{
'Address': {
'AddressId': 'string',
'Name': 'string',
'Company': 'string',
'Street1': 'string',
'Street2': 'string',
'Street3': 'string',
'City': 'string',
'StateOrProvince': 'string',
'PrefectureOrDistrict': 'string',
'Landmark': 'string',
'Country': 'string',
'PostalCode': 'string',
'PhoneNumber': 'string',
'IsRestricted': True|False
}
}
Response Structure
The address that you want the Snow device(s) associated with a specific job to be shipped to.
The unique ID for an address.
The name of a person to receive a Snow device at an address.
The name of the company to receive a Snow device at an address.
The first line in a street address that a Snow device is to be delivered to.
The second line in a street address that a Snow device is to be delivered to.
The third line in a street address that a Snow device is to be delivered to.
The city in an address that a Snow device is to be delivered to.
The state or province in an address that a Snow device is to be delivered to.
This field is no longer used and the value is ignored.
This field is no longer used and the value is ignored.
The country in an address that a Snow device is to be delivered to.
The postal code in an address that a Snow device is to be delivered to.
The phone number associated with an address that a Snow device is to be delivered to.
If the address you are creating is a primary address, then set this option to true. This field is not supported in most regions.
Exceptions
Snowball.Client.exceptions.InvalidResourceException
Examples
This operation describes an address for a job.
response = client.describe_address(
AddressId='ADID1234ab12-3eec-4eb3-9be6-9374c10eb51b',
)
print(response)
Expected Output:
{
'Address': {
'AddressId': 'ADID5643ec50-3eec-4eb3-9be6-9374c10eb51b',
'City': 'Seattle',
'Company': 'My Company',
'Country': 'US',
'Name': 'My Name',
'PhoneNumber': '425-555-5555',
'PostalCode': '98101',
'StateOrProvince': 'WA',
'Street1': '123 Main Street',
},
'ResponseMetadata': {
'...': '...',
},
}