/** * 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 AddApplicationInputProcessingConfigurationRequest : public KinesisAnalyticsV2Request { public: AWS_KINESISANALYTICSV2_API AddApplicationInputProcessingConfigurationRequest(); // 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 "AddApplicationInputProcessingConfiguration"; } AWS_KINESISANALYTICSV2_API Aws::String SerializePayload() const override; AWS_KINESISANALYTICSV2_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

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

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

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

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

The name of the application to which you want to add the input processing * 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 input processing * 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 input processing * 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 input processing * configuration.

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

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

*/ inline AddApplicationInputProcessingConfigurationRequest& WithApplicationName(Aws::String&& value) { SetApplicationName(std::move(value)); return *this;} /** *

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

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

The version of the application to which you want to add the input processing * 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 input processing * 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 input processing * 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 input processing * 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 AddApplicationInputProcessingConfigurationRequest& WithCurrentApplicationVersionId(long long value) { SetCurrentApplicationVersionId(value); return *this;} /** *

The ID of the input configuration to add the input processing configuration * to. You can get a list of the input IDs for an application using the * DescribeApplication operation.

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

The ID of the input configuration to add the input processing configuration * to. You can get a list of the input IDs for an application using the * DescribeApplication operation.

*/ inline bool InputIdHasBeenSet() const { return m_inputIdHasBeenSet; } /** *

The ID of the input configuration to add the input processing configuration * to. You can get a list of the input IDs for an application using the * DescribeApplication operation.

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

The ID of the input configuration to add the input processing configuration * to. You can get a list of the input IDs for an application using the * DescribeApplication operation.

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

The ID of the input configuration to add the input processing configuration * to. You can get a list of the input IDs for an application using the * DescribeApplication operation.

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

The ID of the input configuration to add the input processing configuration * to. You can get a list of the input IDs for an application using the * DescribeApplication operation.

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

The ID of the input configuration to add the input processing configuration * to. You can get a list of the input IDs for an application using the * DescribeApplication operation.

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

The ID of the input configuration to add the input processing configuration * to. You can get a list of the input IDs for an application using the * DescribeApplication operation.

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

The InputProcessingConfiguration to add to the application.

*/ inline const InputProcessingConfiguration& GetInputProcessingConfiguration() const{ return m_inputProcessingConfiguration; } /** *

The InputProcessingConfiguration to add to the application.

*/ inline bool InputProcessingConfigurationHasBeenSet() const { return m_inputProcessingConfigurationHasBeenSet; } /** *

The InputProcessingConfiguration to add to the application.

*/ inline void SetInputProcessingConfiguration(const InputProcessingConfiguration& value) { m_inputProcessingConfigurationHasBeenSet = true; m_inputProcessingConfiguration = value; } /** *

The InputProcessingConfiguration to add to the application.

*/ inline void SetInputProcessingConfiguration(InputProcessingConfiguration&& value) { m_inputProcessingConfigurationHasBeenSet = true; m_inputProcessingConfiguration = std::move(value); } /** *

The InputProcessingConfiguration to add to the application.

*/ inline AddApplicationInputProcessingConfigurationRequest& WithInputProcessingConfiguration(const InputProcessingConfiguration& value) { SetInputProcessingConfiguration(value); return *this;} /** *

The InputProcessingConfiguration to add to the application.

*/ inline AddApplicationInputProcessingConfigurationRequest& WithInputProcessingConfiguration(InputProcessingConfiguration&& value) { SetInputProcessingConfiguration(std::move(value)); return *this;} private: Aws::String m_applicationName; bool m_applicationNameHasBeenSet = false; long long m_currentApplicationVersionId; bool m_currentApplicationVersionIdHasBeenSet = false; Aws::String m_inputId; bool m_inputIdHasBeenSet = false; InputProcessingConfiguration m_inputProcessingConfiguration; bool m_inputProcessingConfigurationHasBeenSet = false; }; } // namespace Model } // namespace KinesisAnalyticsV2 } // namespace Aws