:doc:`KinesisAnalyticsV2 <../../kinesisanalyticsv2>` / Client / delete_application_output

*************************
delete_application_output
*************************



.. py:method:: KinesisAnalyticsV2.Client.delete_application_output(**kwargs)

  

  Deletes the output destination configuration from your SQL-based Kinesis Data Analytics application's configuration. Kinesis Data Analytics will no longer write data from the corresponding in-application stream to the external output destination.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/DeleteApplicationOutput>`_  


  **Request Syntax**
  ::

    response = client.delete_application_output(
        ApplicationName='string',
        CurrentApplicationVersionId=123,
        OutputId='string'
    )
    
  :type ApplicationName: string
  :param ApplicationName: **[REQUIRED]** 

    The application name.

    

  
  :type CurrentApplicationVersionId: integer
  :param CurrentApplicationVersionId: **[REQUIRED]** 

    The application version. You can use the  DescribeApplication operation to get the current application version. If the version specified is not the current version, the ``ConcurrentModificationException`` is returned.

    

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

    The ID of the configuration to delete. Each output configuration that is added to the application (either when the application is created or later) using the  AddApplicationOutput operation has a unique ID. You need to provide the ID to uniquely identify the output configuration that you want to delete from the application configuration. You can use the  DescribeApplication operation to get the specific ``OutputId``.

    

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

    
    ::

      {
          'ApplicationARN': 'string',
          'ApplicationVersionId': 123
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **ApplicationARN** *(string) --* 

        The application Amazon Resource Name (ARN).

        
      

      - **ApplicationVersionId** *(integer) --* 

        The current application version ID.

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

  
  *   :py:class:`KinesisAnalyticsV2.Client.exceptions.ResourceInUseException`

  
  *   :py:class:`KinesisAnalyticsV2.Client.exceptions.InvalidArgumentException`

  
  *   :py:class:`KinesisAnalyticsV2.Client.exceptions.ConcurrentModificationException`

  
  *   :py:class:`KinesisAnalyticsV2.Client.exceptions.InvalidRequestException`

  