Class: Aws::Outposts::Types::UpdateSiteAddressInput

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#addressTypes::Address

The address for the site.

Returns:



1905
1906
1907
1908
1909
1910
1911
# File 'lib/aws-sdk-outposts/types.rb', line 1905

class UpdateSiteAddressInput < Struct.new(
  :site_id,
  :address_type,
  :address)
  SENSITIVE = []
  include Aws::Structure
end

#address_typeString

The type of the address.

Returns:

  • (String)


1905
1906
1907
1908
1909
1910
1911
# File 'lib/aws-sdk-outposts/types.rb', line 1905

class UpdateSiteAddressInput < Struct.new(
  :site_id,
  :address_type,
  :address)
  SENSITIVE = []
  include Aws::Structure
end

#site_idString

The ID or the Amazon Resource Name (ARN) of the site.

Returns:

  • (String)


1905
1906
1907
1908
1909
1910
1911
# File 'lib/aws-sdk-outposts/types.rb', line 1905

class UpdateSiteAddressInput < Struct.new(
  :site_id,
  :address_type,
  :address)
  SENSITIVE = []
  include Aws::Structure
end