Class: Aws::Outposts::Types::GetSiteAddressInput

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 GetSiteAddressInput data as a hash:

{
  site_id: "SiteId", # required
  address_type: "SHIPPING_ADDRESS", # required, accepts SHIPPING_ADDRESS, OPERATING_ADDRESS
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#address_typeString

The type of the address you request.

Returns:

  • (String)


675
676
677
678
679
680
# File 'lib/aws-sdk-outposts/types.rb', line 675

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

#site_idString

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

Returns:

  • (String)


675
676
677
678
679
680
# File 'lib/aws-sdk-outposts/types.rb', line 675

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