/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace KinesisAnalyticsV2 { namespace Model { class AddApplicationInputProcessingConfigurationResult { public: AWS_KINESISANALYTICSV2_API AddApplicationInputProcessingConfigurationResult(); AWS_KINESISANALYTICSV2_API AddApplicationInputProcessingConfigurationResult(const Aws::AmazonWebServiceResult& result); AWS_KINESISANALYTICSV2_API AddApplicationInputProcessingConfigurationResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The Amazon Resource Name (ARN) of the application.

*/ inline const Aws::String& GetApplicationARN() const{ return m_applicationARN; } /** *

The Amazon Resource Name (ARN) of the application.

*/ inline void SetApplicationARN(const Aws::String& value) { m_applicationARN = value; } /** *

The Amazon Resource Name (ARN) of the application.

*/ inline void SetApplicationARN(Aws::String&& value) { m_applicationARN = std::move(value); } /** *

The Amazon Resource Name (ARN) of the application.

*/ inline void SetApplicationARN(const char* value) { m_applicationARN.assign(value); } /** *

The Amazon Resource Name (ARN) of the application.

*/ inline AddApplicationInputProcessingConfigurationResult& WithApplicationARN(const Aws::String& value) { SetApplicationARN(value); return *this;} /** *

The Amazon Resource Name (ARN) of the application.

*/ inline AddApplicationInputProcessingConfigurationResult& WithApplicationARN(Aws::String&& value) { SetApplicationARN(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the application.

*/ inline AddApplicationInputProcessingConfigurationResult& WithApplicationARN(const char* value) { SetApplicationARN(value); return *this;} /** *

Provides the current application version.

*/ inline long long GetApplicationVersionId() const{ return m_applicationVersionId; } /** *

Provides the current application version.

*/ inline void SetApplicationVersionId(long long value) { m_applicationVersionId = value; } /** *

Provides the current application version.

*/ inline AddApplicationInputProcessingConfigurationResult& WithApplicationVersionId(long long value) { SetApplicationVersionId(value); return *this;} /** *

The input ID that is associated with the application input. This is the ID * that Kinesis Data Analytics assigns to each input configuration that you add to * your application.

*/ inline const Aws::String& GetInputId() const{ return m_inputId; } /** *

The input ID that is associated with the application input. This is the ID * that Kinesis Data Analytics assigns to each input configuration that you add to * your application.

*/ inline void SetInputId(const Aws::String& value) { m_inputId = value; } /** *

The input ID that is associated with the application input. This is the ID * that Kinesis Data Analytics assigns to each input configuration that you add to * your application.

*/ inline void SetInputId(Aws::String&& value) { m_inputId = std::move(value); } /** *

The input ID that is associated with the application input. This is the ID * that Kinesis Data Analytics assigns to each input configuration that you add to * your application.

*/ inline void SetInputId(const char* value) { m_inputId.assign(value); } /** *

The input ID that is associated with the application input. This is the ID * that Kinesis Data Analytics assigns to each input configuration that you add to * your application.

*/ inline AddApplicationInputProcessingConfigurationResult& WithInputId(const Aws::String& value) { SetInputId(value); return *this;} /** *

The input ID that is associated with the application input. This is the ID * that Kinesis Data Analytics assigns to each input configuration that you add to * your application.

*/ inline AddApplicationInputProcessingConfigurationResult& WithInputId(Aws::String&& value) { SetInputId(std::move(value)); return *this;} /** *

The input ID that is associated with the application input. This is the ID * that Kinesis Data Analytics assigns to each input configuration that you add to * your application.

*/ inline AddApplicationInputProcessingConfigurationResult& WithInputId(const char* value) { SetInputId(value); return *this;} /** *

The description of the preprocessor that executes on records in this input * before the application's code is run.

*/ inline const InputProcessingConfigurationDescription& GetInputProcessingConfigurationDescription() const{ return m_inputProcessingConfigurationDescription; } /** *

The description of the preprocessor that executes on records in this input * before the application's code is run.

*/ inline void SetInputProcessingConfigurationDescription(const InputProcessingConfigurationDescription& value) { m_inputProcessingConfigurationDescription = value; } /** *

The description of the preprocessor that executes on records in this input * before the application's code is run.

*/ inline void SetInputProcessingConfigurationDescription(InputProcessingConfigurationDescription&& value) { m_inputProcessingConfigurationDescription = std::move(value); } /** *

The description of the preprocessor that executes on records in this input * before the application's code is run.

*/ inline AddApplicationInputProcessingConfigurationResult& WithInputProcessingConfigurationDescription(const InputProcessingConfigurationDescription& value) { SetInputProcessingConfigurationDescription(value); return *this;} /** *

The description of the preprocessor that executes on records in this input * before the application's code is run.

*/ inline AddApplicationInputProcessingConfigurationResult& WithInputProcessingConfigurationDescription(InputProcessingConfigurationDescription&& value) { SetInputProcessingConfigurationDescription(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline AddApplicationInputProcessingConfigurationResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline AddApplicationInputProcessingConfigurationResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline AddApplicationInputProcessingConfigurationResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_applicationARN; long long m_applicationVersionId; Aws::String m_inputId; InputProcessingConfigurationDescription m_inputProcessingConfigurationDescription; Aws::String m_requestId; }; } // namespace Model } // namespace KinesisAnalyticsV2 } // namespace Aws