:doc:`PartnerCentralAccountAPI <../../partnercentral-account>` / Client / get_partner

***********
get_partner
***********



.. py:method:: PartnerCentralAccountAPI.Client.get_partner(**kwargs)

  

  Retrieves detailed information about a specific partner account.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/partnercentral-account-2025-04-04/GetPartner>`_  


  **Request Syntax**
  ::

    response = client.get_partner(
        Catalog='string',
        Identifier='string'
    )
    
  :type Catalog: string
  :param Catalog: **[REQUIRED]** 

    The catalog identifier for the partner account.

    

  
  :type Identifier: string
  :param Identifier: **[REQUIRED]** 

    The unique identifier of the partner account to retrieve.

    

  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'Catalog': 'string',
          'Arn': 'string',
          'Id': 'string',
          'LegalName': 'string',
          'CreatedAt': datetime(2015, 1, 1),
          'Profile': {
              'DisplayName': 'string',
              'Description': 'string',
              'WebsiteUrl': 'string',
              'LogoUrl': 'string',
              'PrimarySolutionType': 'SOFTWARE_PRODUCTS'|'CONSULTING_SERVICES'|'PROFESSIONAL_SERVICES'|'MANAGED_SERVICES'|'HARDWARE_PRODUCTS'|'COMMUNICATION_SERVICES'|'VALUE_ADDED_RESALE_AWS_SERVICES'|'TRAINING_SERVICES',
              'IndustrySegments': [
                  'AGRICULTURE_MINING'|'BIOTECHNOLOGY'|'BUSINESS_CONSUMER_SERVICES'|'BUSINESS_SERV'|'COMMUNICATIONS'|'COMPUTER_HARDWARE'|'COMPUTERS_ELECTRONICS'|'COMPUTER_SOFTWARE'|'CONSUMER_GOODS'|'CONSUMER_RELATED'|'EDUCATION'|'ENERGY_UTILITIES'|'FINANCIAL_SERVICES'|'GAMING'|'GOVERNMENT'|'GOVERNMENT_EDUCATION_PUBLIC_SERVICES'|'HEALTHCARE'|'HEALTHCARE_PHARMACEUTICALS_BIOTECH'|'INDUSTRIAL_ENERGY'|'INTERNET_SPECIFIC'|'LIFE_SCIENCES'|'MANUFACTURING'|'MEDIA_ENTERTAINMENT_LEISURE'|'MEDIA_ENTERTAINMENT'|'MEDICAL_HEALTH'|'NON_PROFIT_ORGANIZATION'|'OTHER'|'PROFESSIONAL_SERVICES'|'REAL_ESTATE_CONSTRUCTION'|'RETAIL'|'RETAIL_WHOLESALE_DISTRIBUTION'|'SEMICONDUCTOR_ELECTR'|'SOFTWARE_INTERNET'|'TELECOMMUNICATIONS'|'TRANSPORTATION_LOGISTICS'|'TRAVEL_HOSPITALITY'|'WHOLESALE_DISTRIBUTION',
              ],
              'TranslationSourceLocale': 'string',
              'LocalizedContents': [
                  {
                      'DisplayName': 'string',
                      'Description': 'string',
                      'WebsiteUrl': 'string',
                      'LogoUrl': 'string',
                      'Locale': 'string'
                  },
              ],
              'ProfileId': 'string'
          },
          'AwsTrainingCertificationEmailDomains': [
              {
                  'DomainName': 'string',
                  'RegisteredAt': datetime(2015, 1, 1)
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **Catalog** *(string) --* 

        The catalog identifier for the partner account.

        
      

      - **Arn** *(string) --* 

        The Amazon Resource Name (ARN) of the partner account.

        
      

      - **Id** *(string) --* 

        The unique identifier of the partner account.

        
      

      - **LegalName** *(string) --* 

        The legal name of the partner organization.

        
      

      - **CreatedAt** *(datetime) --* 

        The timestamp when the partner account was created.

        
      

      - **Profile** *(dict) --* 

        The partner profile information including display name, description, and other public details.

        
        

        - **DisplayName** *(string) --* 

          The public display name for the partner organization.

          
        

        - **Description** *(string) --* 

          A description of the partner's business, services, and capabilities.

          
        

        - **WebsiteUrl** *(string) --* 

          The partner's primary website URL.

          
        

        - **LogoUrl** *(string) --* 

          The URL to the partner's logo image.

          
        

        - **PrimarySolutionType** *(string) --* 

          The primary type of solution or service the partner provides.

          
        

        - **IndustrySegments** *(list) --* 

          The industry segments or verticals that the partner serves.

          
          

          - *(string) --* 
      
        

        - **TranslationSourceLocale** *(string) --* 

          The source locale used for automatic translation of profile content.

          
        

        - **LocalizedContents** *(list) --* 

          A list of localized content versions for different languages and regions.

          
          

          - *(dict) --* 

            Contains localized content for a partner profile in a specific language or locale.

            
            

            - **DisplayName** *(string) --* 

              The localized display name for the partner.

              
            

            - **Description** *(string) --* 

              The localized description of the partner's business and services.

              
            

            - **WebsiteUrl** *(string) --* 

              The localized website URL for the partner.

              
            

            - **LogoUrl** *(string) --* 

              The URL to the partner's logo image for this locale.

              
            

            - **Locale** *(string) --* 

              The locale or language code for the localized content.

              
        
      
        

        - **ProfileId** *(string) --* 

          The unique identifier of the partner profile.

          
    
      

      - **AwsTrainingCertificationEmailDomains** *(list) --* 

        The list of verified email domains associated with AWS training and certification credentials for the partner organization.

        
        

        - *(dict) --* 

          Represents a verified domain associated with a partner account.

          
          

          - **DomainName** *(string) --* 

            The domain name that has been verified for the partner account.

            
          

          - **RegisteredAt** *(datetime) --* 

            The timestamp when the domain was registered and verified for the partner account.

            
      
    
  
  **Exceptions**
  
  *   :py:class:`PartnerCentralAccountAPI.Client.exceptions.ResourceNotFoundException`

  
  *   :py:class:`PartnerCentralAccountAPI.Client.exceptions.AccessDeniedException`

  
  *   :py:class:`PartnerCentralAccountAPI.Client.exceptions.ThrottlingException`

  
  *   :py:class:`PartnerCentralAccountAPI.Client.exceptions.ValidationException`

  
  *   :py:class:`PartnerCentralAccountAPI.Client.exceptions.InternalServerException`

  