/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace KinesisAnalyticsV2 { namespace Model { /** */ class AWS_KINESISANALYTICSV2_API AddApplicationOutputRequest : public KinesisAnalyticsV2Request { public: AddApplicationOutputRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "AddApplicationOutput"; } Aws::String SerializePayload() const override; Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The name of the application to which you want to add the output * configuration.

*/ inline const Aws::String& GetApplicationName() const{ return m_applicationName; } /** *

The name of the application to which you want to add the output * configuration.

*/ inline bool ApplicationNameHasBeenSet() const { return m_applicationNameHasBeenSet; } /** *

The 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; } /** *

The 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); } /** *

The 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); } /** *

The name of the application to which you want to add the output * configuration.

*/ inline AddApplicationOutputRequest& WithApplicationName(const Aws::String& value) { SetApplicationName(value); return *this;} /** *

The 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;} /** *

The name of the application to which you want to add the output * configuration.

*/ inline AddApplicationOutputRequest& WithApplicationName(const char* value) { SetApplicationName(value); return *this;} /** *

The 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.

*/ inline long long GetCurrentApplicationVersionId() const{ return m_currentApplicationVersionId; } /** *

The 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.

*/ inline bool CurrentApplicationVersionIdHasBeenSet() const { return m_currentApplicationVersionIdHasBeenSet; } /** *

The 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.

*/ inline void SetCurrentApplicationVersionId(long long value) { m_currentApplicationVersionIdHasBeenSet = true; m_currentApplicationVersionId = value; } /** *

The 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.

*/ inline AddApplicationOutputRequest& WithCurrentApplicationVersionId(long long value) { SetCurrentApplicationVersionId(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, a Kinesis data stream, a Kinesis Data Firehose delivery stream, or an * Amazon 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, a Kinesis data stream, a Kinesis Data Firehose delivery stream, or an * Amazon 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, a Kinesis data stream, a Kinesis Data Firehose delivery stream, or an * Amazon 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, a Kinesis data stream, a Kinesis Data Firehose delivery stream, or an * Amazon 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, a Kinesis data stream, a Kinesis Data Firehose delivery stream, or an * Amazon 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, a Kinesis data stream, a Kinesis Data Firehose delivery stream, or an * Amazon 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; long long m_currentApplicationVersionId; bool m_currentApplicationVersionIdHasBeenSet; Output m_output; bool m_outputHasBeenSet; }; } // namespace Model } // namespace KinesisAnalyticsV2 } // namespace Aws