:doc:`ManagedintegrationsforIoTDeviceManagement <../../iot-managed-integrations>` / Client / get_connector_destination

*************************
get_connector_destination
*************************



.. py:method:: ManagedintegrationsforIoTDeviceManagement.Client.get_connector_destination(**kwargs)

  

  Get connector destination details linked to a cloud-to-cloud (C2C) connector.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/iot-managed-integrations-2025-03-03/GetConnectorDestination>`_  


  **Request Syntax**
  ::

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

    The identifier of the C2C connector destination.

    

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

    
    ::

      {
          'Name': 'string',
          'Description': 'string',
          'CloudConnectorId': 'string',
          'Id': 'string',
          'AuthType': 'OAUTH',
          'AuthConfig': {
              'oAuth': {
                  'authUrl': 'string',
                  'tokenUrl': 'string',
                  'scope': 'string',
                  'tokenEndpointAuthenticationScheme': 'HTTP_BASIC'|'REQUEST_BODY_CREDENTIALS',
                  'oAuthCompleteRedirectUrl': 'string',
                  'proactiveRefreshTokenRenewal': {
                      'enabled': True|False,
                      'DaysBeforeRenewal': 123
                  }
              },
              'GeneralAuthorization': [
                  {
                      'SecretsManager': {
                          'arn': 'string',
                          'versionId': 'string'
                      },
                      'AuthMaterialName': 'string'
                  },
              ]
          },
          'SecretsManager': {
              'arn': 'string',
              'versionId': 'string'
          },
          'OAuthCompleteRedirectUrl': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **Name** *(string) --* 

        The display name of the connector destination.

        
      

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

        A description of the connector destination.

        
      

      - **CloudConnectorId** *(string) --* 

        The identifier of the C2C connector.

        
      

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

        The unique identifier of the connector destination.

        
      

      - **AuthType** *(string) --* 

        The authentication type used for the connector destination, which determines how credentials and access are managed.

        
      

      - **AuthConfig** *(dict) --* 

        The authentication configuration details for the connector destination, including OAuth settings and other authentication parameters.

        
        

        - **oAuth** *(dict) --* 

          The OAuth configuration settings used for authentication with the third-party service.

          
          

          - **authUrl** *(string) --* 

            The authorization URL for the OAuth service, where users are directed to authenticate and authorize access.

            
          

          - **tokenUrl** *(string) --* 

            The token URL for the OAuth service, where authorization codes are exchanged for access tokens.

            
          

          - **scope** *(string) --* 

            The OAuth scopes requested during authorization, which define the permissions granted to the application.

            
          

          - **tokenEndpointAuthenticationScheme** *(string) --* 

            The authentication scheme used when requesting tokens from the token endpoint.

            
          

          - **oAuthCompleteRedirectUrl** *(string) --* 

            The URL where users are redirected after completing the OAuth authorization process.

            
          

          - **proactiveRefreshTokenRenewal** *(dict) --* 

            Configuration for proactively refreshing OAuth tokens before they expire.

            
            

            - **enabled** *(boolean) --* 

              Indicates whether proactive refresh token renewal is enabled.

              
            

            - **DaysBeforeRenewal** *(integer) --* 

              The days before token expiration when the system should attempt to renew the token, specified in days.

              
        
      
        

        - **GeneralAuthorization** *(list) --* 

          The authorization materials for General Authorization.

          
          

          - *(dict) --* 

            The authorization material containing the Secrets Manager arn and version.

            
            

            - **SecretsManager** *(dict) --* 

              Configuration for AWS Secrets Manager, used to securely store and manage sensitive information for connector destinations.

              
              

              - **arn** *(string) --* 

                The Amazon Resource Name (ARN) of the AWS Secrets Manager secret.

                
              

              - **versionId** *(string) --* 

                The version ID of the AWS Secrets Manager secret.

                
          
            

            - **AuthMaterialName** *(string) --* 

              The name of the authorization material.

              
        
      
    
      

      - **SecretsManager** *(dict) --* 

        The AWS Secrets Manager configuration used to securely store and manage sensitive information for the connector destination.

        
        

        - **arn** *(string) --* 

          The Amazon Resource Name (ARN) of the AWS Secrets Manager secret.

          
        

        - **versionId** *(string) --* 

          The version ID of the AWS Secrets Manager secret.

          
    
      

      - **OAuthCompleteRedirectUrl** *(string) --* 

        The URL where users are redirected after completing the OAuth authorization process for the connector destination.

        
  
  **Exceptions**
  
  *   :py:class:`ManagedintegrationsforIoTDeviceManagement.Client.exceptions.AccessDeniedException`

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

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

  
  *   :py:class:`ManagedintegrationsforIoTDeviceManagement.Client.exceptions.ResourceNotFoundException`

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

  