:doc:`IAM <../../iam>` / Client / get_open_id_connect_provider

****************************
get_open_id_connect_provider
****************************



.. py:method:: IAM.Client.get_open_id_connect_provider(**kwargs)

  

  Returns information about the specified OpenID Connect (OIDC) provider resource object in IAM.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/iam-2010-05-08/GetOpenIDConnectProvider>`_  


  **Request Syntax**
  ::

    response = client.get_open_id_connect_provider(
        OpenIDConnectProviderArn='string'
    )
    
  :type OpenIDConnectProviderArn: string
  :param OpenIDConnectProviderArn: **[REQUIRED]** 

    The Amazon Resource Name (ARN) of the OIDC provider resource object in IAM to get information for. You can get a list of OIDC provider resource ARNs by using the `ListOpenIDConnectProviders <https://docs.aws.amazon.com/IAM/latest/APIReference/API_ListOpenIDConnectProviders.html>`__ operation.

     

    For more information about ARNs, see `Amazon Resource Names (ARNs) <https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html>`__ in the *Amazon Web Services General Reference*.

    

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

    
    ::

      {
          'Url': 'string',
          'ClientIDList': [
              'string',
          ],
          'ThumbprintList': [
              'string',
          ],
          'CreateDate': datetime(2015, 1, 1),
          'Tags': [
              {
                  'Key': 'string',
                  'Value': 'string'
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 

      Contains the response to a successful `GetOpenIDConnectProvider <https://docs.aws.amazon.com/IAM/latest/APIReference/API_GetOpenIDConnectProvider.html>`__ request.

      
      

      - **Url** *(string) --* 

        The URL that the IAM OIDC provider resource object is associated with. For more information, see `CreateOpenIDConnectProvider <https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateOpenIDConnectProvider.html>`__.

        
      

      - **ClientIDList** *(list) --* 

        A list of client IDs (also known as audiences) that are associated with the specified IAM OIDC provider resource object. For more information, see `CreateOpenIDConnectProvider <https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateOpenIDConnectProvider.html>`__.

        
        

        - *(string) --* 
    
      

      - **ThumbprintList** *(list) --* 

        A list of certificate thumbprints that are associated with the specified IAM OIDC provider resource object. For more information, see `CreateOpenIDConnectProvider <https://docs.aws.amazon.com/IAM/latest/APIReference/API_CreateOpenIDConnectProvider.html>`__.

        
        

        - *(string) --* 

          Contains a thumbprint for an identity provider's server certificate.

           

          The identity provider's server certificate thumbprint is the hex-encoded SHA-1 hash value of the self-signed X.509 certificate. This thumbprint is used by the domain where the OpenID Connect provider makes its keys available. The thumbprint is always a 40-character string.

          
    
      

      - **CreateDate** *(datetime) --* 

        The date and time when the IAM OIDC provider resource object was created in the Amazon Web Services account.

        
      

      - **Tags** *(list) --* 

        A list of tags that are attached to the specified IAM OIDC provider. The returned list of tags is sorted by tag key. For more information about tagging, see `Tagging IAM resources <https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html>`__ in the *IAM User Guide*.

        
        

        - *(dict) --* 

          A structure that represents user-provided metadata that can be associated with an IAM resource. For more information about tagging, see `Tagging IAM resources <https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html>`__ in the *IAM User Guide*.

          
          

          - **Key** *(string) --* 

            The key name that can be used to look up or retrieve the associated value. For example, ``Department`` or ``Cost Center`` are common choices.

            
          

          - **Value** *(string) --* 

            The value associated with this tag. For example, tags with a key name of ``Department`` could have values such as ``Human Resources``, ``Accounting``, and ``Support``. Tags with a key name of ``Cost Center`` might have values that consist of the number associated with the different cost centers in your company. Typically, many resources have tags with the same key name but with different values.

            
      
    
  
  **Exceptions**
  
  *   :py:class:`IAM.Client.exceptions.InvalidInputException`

  
  *   :py:class:`IAM.Client.exceptions.NoSuchEntityException`

  
  *   :py:class:`IAM.Client.exceptions.ServiceFailureException`

  