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.

Container for the parameters to the CreateAddress operation. 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.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.Snowball.AmazonSnowballRequest
      Amazon.Snowball.Model.CreateAddressRequest

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

Syntax

C#
public class CreateAddressRequest : AmazonSnowballRequest
         IAmazonWebServiceRequest

The CreateAddressRequest type exposes the following members

Constructors

NameDescription
Public Method CreateAddressRequest()

Properties

NameTypeDescription
Public Property Address Amazon.Snowball.Model.Address

Gets and sets the property Address.

The address that you want the Snow device shipped to.

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 Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

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