Class: Aws::Snowball::Types::CreateAddressRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Snowball::Types::CreateAddressRequest
- Defined in:
- gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb
Overview
Note:
When making an API call, you may pass CreateAddressRequest data as a hash:
{
address: { # required
address_id: "AddressId",
name: "String",
company: "String",
street_1: "String",
street_2: "String",
street_3: "String",
city: "String",
state_or_province: "String",
prefecture_or_district: "String",
landmark: "String",
country: "String",
postal_code: "String",
phone_number: "String",
is_restricted: false,
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#address ⇒ Types::Address
The address that you want the Snow device shipped to.
Instance Attribute Details
#address ⇒ Types::Address
The address that you want the Snow device shipped to.
414 415 416 417 418 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb', line 414 class CreateAddressRequest < Struct.new( :address) SENSITIVE = [] include Aws::Structure end |