Amazon.KinesisAnalytics.AmazonKinesisAnalyticsClient.AddApplicationOutput C# (CSharp) Method

AddApplicationOutput() public method

Adds an external destination to your Amazon Kinesis Analytics application.

If you want Amazon Kinesis Analytics to deliver data from an in-application stream within your application to an external destination (such as an Amazon Kinesis stream or a Firehose delivery stream), you add the relevant configuration to your application using this operation. You can configure one or more outputs for your application. Each output configuration maps an in-application stream and an external destination.

You can use one of the output configurations to deliver data from your in-application error stream to an external destination so that you can analyze the errors. For conceptual information, see Understanding Application Output (Destination).

Note that any configuration update, including adding a streaming source using this operation, results in a new version of the application. You can use the DescribeApplication operation to find the current application version.

For the limits on the number of application inputs and outputs you can configure, see Limits.

This operation requires permissions to perform the kinesisanalytics:AddApplicationOutput action.

/// Exception thrown as a result of concurrent modification to an application. For example, /// two individuals attempting to edit the same application at the same time. /// /// Specified input parameter value is invalid. /// /// Application is not available for this operation. /// /// Specified application can't be found. ///
public AddApplicationOutput ( AddApplicationOutputRequest request ) : AddApplicationOutputResponse
request Amazon.KinesisAnalytics.Model.AddApplicationOutputRequest Container for the necessary parameters to execute the AddApplicationOutput service method.
return AddApplicationOutputResponse
        public AddApplicationOutputResponse AddApplicationOutput(AddApplicationOutputRequest request)
        {
            var marshaller = new AddApplicationOutputRequestMarshaller();
            var unmarshaller = AddApplicationOutputResponseUnmarshaller.Instance;

            return Invoke<AddApplicationOutputRequest,AddApplicationOutputResponse>(request, marshaller, unmarshaller);
        }