Class: Aws::PartnerCentralAccount::Types::Headquarters
- Inherits:
-
Struct
- Object
- Struct
- Aws::PartnerCentralAccount::Types::Headquarters
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-partnercentralaccount/types.rb
Overview
Contains the partner's headquarters location using International Organization for Standardization (ISO) 3166 country and subdivision codes.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#country_code ⇒ String
The ISO 3166-1 alpha-2 country code of the partner's headquarters.
-
#subdivision_code ⇒ String
The subdivision portion of the ISO 3166-2 code for the partner's headquarters (for example,
SPfromBR-SP,NSWfromAU-NSW, or13fromJP-13).
Instance Attribute Details
#country_code ⇒ String
The ISO 3166-1 alpha-2 country code of the partner's headquarters.
For example, US, BR, or DE.
1780 1781 1782 1783 1784 1785 |
# File 'lib/aws-sdk-partnercentralaccount/types.rb', line 1780 class Headquarters < Struct.new( :country_code, :subdivision_code) SENSITIVE = [] include Aws::Structure end |
#subdivision_code ⇒ String
The subdivision portion of the ISO 3166-2 code for the partner's
headquarters (for example, SP from BR-SP, NSW from AU-NSW,
or 13 from JP-13).
1780 1781 1782 1783 1784 1785 |
# File 'lib/aws-sdk-partnercentralaccount/types.rb', line 1780 class Headquarters < Struct.new( :country_code, :subdivision_code) SENSITIVE = [] include Aws::Structure end |