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.

This is the response object from the CreateAddress operation.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceResponse
    Amazon.Snowball.Model.CreateAddressResponse

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

Syntax

C#
public class CreateAddressResponse : AmazonWebServiceResponse

The CreateAddressResponse type exposes the following members

Constructors

NameDescription
Public Method CreateAddressResponse()

Properties

NameTypeDescription
Public Property AddressId System.String

Gets and sets the property AddressId.

The automatically generated ID for a specific address. You'll use this ID when you create a job to specify which address you want the Snow device for that job shipped to.

Public Property ContentLength System.Int64 Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property HttpStatusCode System.Net.HttpStatusCode Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property ResponseMetadata Amazon.Runtime.ResponseMetadata Inherited from Amazon.Runtime.AmazonWebServiceResponse.

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