Class: Aws::TaxSettings::Types::Address
- Inherits:
-
Struct
- Object
- Struct
- Aws::TaxSettings::Types::Address
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-taxsettings/types.rb
Overview
The details of the address associated with the TRN information.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#address_line_1 ⇒ String
The first line of the address.
-
#address_line_2 ⇒ String
The second line of the address, if applicable.
-
#address_line_3 ⇒ String
The third line of the address, if applicable.
-
#city ⇒ String
The city that the address is in.
-
#country_code ⇒ String
The country code for the country that the address is in.
-
#district_or_county ⇒ String
The district or county the address is located.
-
#postal_code ⇒ String
The postal code associated with the address.
-
#state_or_region ⇒ String
The state, region, or province that the address is located.
Instance Attribute Details
#address_line_1 ⇒ String
The first line of the address.
376 377 378 379 380 381 382 383 384 385 386 387 |
# File 'lib/aws-sdk-taxsettings/types.rb', line 376 class Address < Struct.new( :address_line_1, :address_line_2, :address_line_3, :city, :country_code, :district_or_county, :postal_code, :state_or_region) SENSITIVE = [] include Aws::Structure end |
#address_line_2 ⇒ String
The second line of the address, if applicable.
376 377 378 379 380 381 382 383 384 385 386 387 |
# File 'lib/aws-sdk-taxsettings/types.rb', line 376 class Address < Struct.new( :address_line_1, :address_line_2, :address_line_3, :city, :country_code, :district_or_county, :postal_code, :state_or_region) SENSITIVE = [] include Aws::Structure end |
#address_line_3 ⇒ String
The third line of the address, if applicable. Currently, the Tax Settings API accepts the ‘addressLine3` parameter only for Saudi Arabia. When you specify a TRN in Saudi Arabia, you must enter the `addressLine3` and specify the building number for the address. For example, you might enter `1234`.
376 377 378 379 380 381 382 383 384 385 386 387 |
# File 'lib/aws-sdk-taxsettings/types.rb', line 376 class Address < Struct.new( :address_line_1, :address_line_2, :address_line_3, :city, :country_code, :district_or_county, :postal_code, :state_or_region) SENSITIVE = [] include Aws::Structure end |
#city ⇒ String
The city that the address is in.
376 377 378 379 380 381 382 383 384 385 386 387 |
# File 'lib/aws-sdk-taxsettings/types.rb', line 376 class Address < Struct.new( :address_line_1, :address_line_2, :address_line_3, :city, :country_code, :district_or_county, :postal_code, :state_or_region) SENSITIVE = [] include Aws::Structure end |
#country_code ⇒ String
The country code for the country that the address is in.
376 377 378 379 380 381 382 383 384 385 386 387 |
# File 'lib/aws-sdk-taxsettings/types.rb', line 376 class Address < Struct.new( :address_line_1, :address_line_2, :address_line_3, :city, :country_code, :district_or_county, :postal_code, :state_or_region) SENSITIVE = [] include Aws::Structure end |
#district_or_county ⇒ String
The district or county the address is located.
<note markdown=“1”> For addresses in Brazil, this parameter uses the name of the neighborhood. When you set a TRN in Brazil, use ‘districtOrCounty` for the neighborhood name.
</note>
376 377 378 379 380 381 382 383 384 385 386 387 |
# File 'lib/aws-sdk-taxsettings/types.rb', line 376 class Address < Struct.new( :address_line_1, :address_line_2, :address_line_3, :city, :country_code, :district_or_county, :postal_code, :state_or_region) SENSITIVE = [] include Aws::Structure end |
#postal_code ⇒ String
The postal code associated with the address.
376 377 378 379 380 381 382 383 384 385 386 387 |
# File 'lib/aws-sdk-taxsettings/types.rb', line 376 class Address < Struct.new( :address_line_1, :address_line_2, :address_line_3, :city, :country_code, :district_or_county, :postal_code, :state_or_region) SENSITIVE = [] include Aws::Structure end |
#state_or_region ⇒ String
The state, region, or province that the address is located. This field is only required for Canada, India, United Arab Emirates, Romania, and Brazil (CPF). It is optional for all other countries.
If this is required for tax settings, use the same name as shown on the **Tax Settings** page.
376 377 378 379 380 381 382 383 384 385 386 387 |
# File 'lib/aws-sdk-taxsettings/types.rb', line 376 class Address < Struct.new( :address_line_1, :address_line_2, :address_line_3, :city, :country_code, :district_or_county, :postal_code, :state_or_region) SENSITIVE = [] include Aws::Structure end |