AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Creates an address for a Snow device to be shipped to. In most regions, addresses are validated at the time of creation. The address you provide must be located within the serviceable area of your region. If the address is invalid or unsupported, then an exception is thrown. If providing an address as a JSON file through the cli-input-json option, include the full file path. For example, --cli-input-json file://create-address.json.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to CreateAddressAsync.

Namespace: Amazon.Snowball
Assembly: AWSSDK.Snowball.dll
Version: 3.x.y.z

Syntax

C#
public abstract CreateAddressResponse CreateAddress(
         CreateAddressRequest request
)

Parameters

request
Type: Amazon.Snowball.Model.CreateAddressRequest

Container for the necessary parameters to execute the CreateAddress service method.

Return Value


The response from the CreateAddress service method, as returned by Snowball.

Exceptions

ExceptionCondition
InvalidAddressException The address provided was invalid. Check the address with your region's carrier, and try again.
UnsupportedAddressException The address is either outside the serviceable area for your region, or an error occurred. Check the address with your region's carrier and try again. If the issue persists, contact Amazon Web Services Support.

Examples

This operation creates an address for a job. Addresses are validated at the time of creation. The address you provide must be located within the serviceable area of your region. If the address is invalid or unsupported, then an exception is thrown.

To create an address for a job


var client = new AmazonSnowballClient();
var response = client.CreateAddress(new CreateAddressRequest 
{
    Address = new Address {
        City = "Seattle",
        Company = "My Company's Name",
        Country = "USA",
        Name = "My Name",
        PhoneNumber = "425-555-5555",
        PostalCode = "98101",
        StateOrProvince = "WA",
        Street1 = "123 Main Street"
    }
});

string addressId = response.AddressId;

            

Version Information

.NET Framework:
Supported in: 4.5, 4.0, 3.5

See Also