:doc:`CloudWatchLogs <../../logs>` / Client / get_delivery_destination

************************
get_delivery_destination
************************



.. py:method:: CloudWatchLogs.Client.get_delivery_destination(**kwargs)

  

  Retrieves complete information about one delivery destination.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/GetDeliveryDestination>`_  


  **Request Syntax**
  ::

    response = client.get_delivery_destination(
        name='string'
    )
    
  :type name: string
  :param name: **[REQUIRED]** 

    The name of the delivery destination that you want to retrieve.

    

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

    
    ::

      {
          'deliveryDestination': {
              'name': 'string',
              'arn': 'string',
              'deliveryDestinationType': 'S3'|'CWL'|'FH'|'XRAY',
              'outputFormat': 'json'|'plain'|'w3c'|'raw'|'parquet',
              'deliveryDestinationConfiguration': {
                  'destinationResourceArn': 'string'
              },
              'tags': {
                  'string': 'string'
              }
          }
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **deliveryDestination** *(dict) --* 

        A structure containing information about the delivery destination.

        
        

        - **name** *(string) --* 

          The name of this delivery destination.

          
        

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

          The Amazon Resource Name (ARN) that uniquely identifies this delivery destination.

          
        

        - **deliveryDestinationType** *(string) --* 

          Displays whether this delivery destination is CloudWatch Logs, Amazon S3, Firehose, or X-Ray.

          
        

        - **outputFormat** *(string) --* 

          The format of the logs that are sent to this delivery destination.

          
        

        - **deliveryDestinationConfiguration** *(dict) --* 

          A structure that contains the ARN of the Amazon Web Services resource that will receive the logs.

          
          

          - **destinationResourceArn** *(string) --* 

            The ARN of the Amazon Web Services destination that this delivery destination represents. That Amazon Web Services destination can be a log group in CloudWatch Logs, an Amazon S3 bucket, or a delivery stream in Firehose.

            
      
        

        - **tags** *(dict) --* 

          The tags that have been assigned to this delivery destination.

          
          

          - *(string) --* 
            

            - *(string) --* 
      
    
    
  
  **Exceptions**
  
  *   :py:class:`CloudWatchLogs.Client.exceptions.ResourceNotFoundException`

  
  *   :py:class:`CloudWatchLogs.Client.exceptions.ServiceUnavailableException`

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

  
  *   :py:class:`CloudWatchLogs.Client.exceptions.ServiceQuotaExceededException`

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

  