Class: Aws::Outposts::Types::UpdateSiteAddressInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Outposts::Types::UpdateSiteAddressInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-outposts/types.rb
Overview
Note:
When making an API call, you may pass UpdateSiteAddressInput data as a hash:
{
site_id: "SiteId", # required
address_type: "SHIPPING_ADDRESS", # required, accepts SHIPPING_ADDRESS, OPERATING_ADDRESS
address: { # required
contact_name: "ContactName",
contact_phone_number: "ContactPhoneNumber",
address_line_1: "AddressLine1", # required
address_line_2: "AddressLine2",
address_line_3: "AddressLine3",
city: "City", # required
state_or_region: "StateOrRegion", # required
district_or_county: "DistrictOrCounty",
postal_code: "PostalCode", # required
country_code: "CountryCode", # required
municipality: "Municipality",
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#address ⇒ Types::Address
The address for the site.
-
#address_type ⇒ String
The type of the address.
-
#site_id ⇒ String
The ID or the Amazon Resource Name (ARN) of the site.
Instance Attribute Details
#address ⇒ Types::Address
The address for the site.
1725 1726 1727 1728 1729 1730 1731 |
# File 'lib/aws-sdk-outposts/types.rb', line 1725 class UpdateSiteAddressInput < Struct.new( :site_id, :address_type, :address) SENSITIVE = [] include Aws::Structure end |
#address_type ⇒ String
The type of the address.
1725 1726 1727 1728 1729 1730 1731 |
# File 'lib/aws-sdk-outposts/types.rb', line 1725 class UpdateSiteAddressInput < Struct.new( :site_id, :address_type, :address) SENSITIVE = [] include Aws::Structure end |
#site_id ⇒ String
The ID or the Amazon Resource Name (ARN) of the site.
1725 1726 1727 1728 1729 1730 1731 |
# File 'lib/aws-sdk-outposts/types.rb', line 1725 class UpdateSiteAddressInput < Struct.new( :site_id, :address_type, :address) SENSITIVE = [] include Aws::Structure end |