/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include See Also:
AWS
* API Reference
Name of the application to which you want to add the output * configuration.
*/ inline const Aws::String& GetApplicationName() const{ return m_applicationName; } /** *Name of the application to which you want to add the output * configuration.
*/ inline bool ApplicationNameHasBeenSet() const { return m_applicationNameHasBeenSet; } /** *Name of the application to which you want to add the output * configuration.
*/ inline void SetApplicationName(const Aws::String& value) { m_applicationNameHasBeenSet = true; m_applicationName = value; } /** *Name of the application to which you want to add the output * configuration.
*/ inline void SetApplicationName(Aws::String&& value) { m_applicationNameHasBeenSet = true; m_applicationName = std::move(value); } /** *Name of the application to which you want to add the output * configuration.
*/ inline void SetApplicationName(const char* value) { m_applicationNameHasBeenSet = true; m_applicationName.assign(value); } /** *Name of the application to which you want to add the output * configuration.
*/ inline AddApplicationOutputRequest& WithApplicationName(const Aws::String& value) { SetApplicationName(value); return *this;} /** *Name of the application to which you want to add the output * configuration.
*/ inline AddApplicationOutputRequest& WithApplicationName(Aws::String&& value) { SetApplicationName(std::move(value)); return *this;} /** *Name of the application to which you want to add the output * configuration.
*/ inline AddApplicationOutputRequest& WithApplicationName(const char* value) { SetApplicationName(value); return *this;} /** *Version of the application to which you want to add the output configuration.
* 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.
Version of the application to which you want to add the output configuration.
* 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.
Version of the application to which you want to add the output configuration.
* 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.
Version of the application to which you want to add the output configuration.
* 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.
An array of objects, each describing one output configuration. In the output * configuration, you specify the name of an in-application stream, a destination * (that is, an Amazon Kinesis stream, an Amazon Kinesis Firehose delivery stream, * or an AWS Lambda function), and record the formation to use when writing to the * destination.
*/ inline const Output& GetOutput() const{ return m_output; } /** *An array of objects, each describing one output configuration. In the output * configuration, you specify the name of an in-application stream, a destination * (that is, an Amazon Kinesis stream, an Amazon Kinesis Firehose delivery stream, * or an AWS Lambda function), and record the formation to use when writing to the * destination.
*/ inline bool OutputHasBeenSet() const { return m_outputHasBeenSet; } /** *An array of objects, each describing one output configuration. In the output * configuration, you specify the name of an in-application stream, a destination * (that is, an Amazon Kinesis stream, an Amazon Kinesis Firehose delivery stream, * or an AWS Lambda function), and record the formation to use when writing to the * destination.
*/ inline void SetOutput(const Output& value) { m_outputHasBeenSet = true; m_output = value; } /** *An array of objects, each describing one output configuration. In the output * configuration, you specify the name of an in-application stream, a destination * (that is, an Amazon Kinesis stream, an Amazon Kinesis Firehose delivery stream, * or an AWS Lambda function), and record the formation to use when writing to the * destination.
*/ inline void SetOutput(Output&& value) { m_outputHasBeenSet = true; m_output = std::move(value); } /** *An array of objects, each describing one output configuration. In the output * configuration, you specify the name of an in-application stream, a destination * (that is, an Amazon Kinesis stream, an Amazon Kinesis Firehose delivery stream, * or an AWS Lambda function), and record the formation to use when writing to the * destination.
*/ inline AddApplicationOutputRequest& WithOutput(const Output& value) { SetOutput(value); return *this;} /** *An array of objects, each describing one output configuration. In the output * configuration, you specify the name of an in-application stream, a destination * (that is, an Amazon Kinesis stream, an Amazon Kinesis Firehose delivery stream, * or an AWS Lambda function), and record the formation to use when writing to the * destination.
*/ inline AddApplicationOutputRequest& WithOutput(Output&& value) { SetOutput(std::move(value)); return *this;} private: Aws::String m_applicationName; bool m_applicationNameHasBeenSet = false; long long m_currentApplicationVersionId; bool m_currentApplicationVersionIdHasBeenSet = false; Output m_output; bool m_outputHasBeenSet = false; }; } // namespace Model } // namespace KinesisAnalytics } // namespace Aws