/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace KinesisAnalytics { namespace Model { /** */ class DeleteApplicationInputProcessingConfigurationRequest : public KinesisAnalyticsRequest { public: AWS_KINESISANALYTICS_API DeleteApplicationInputProcessingConfigurationRequest(); // 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 "DeleteApplicationInputProcessingConfiguration"; } AWS_KINESISANALYTICS_API Aws::String SerializePayload() const override; AWS_KINESISANALYTICS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The Kinesis Analytics application name.

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

The Kinesis Analytics application name.

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

The Kinesis Analytics application name.

*/ inline void SetApplicationName(const Aws::String& value) { m_applicationNameHasBeenSet = true; m_applicationName = value; } /** *

The Kinesis Analytics application name.

*/ inline void SetApplicationName(Aws::String&& value) { m_applicationNameHasBeenSet = true; m_applicationName = std::move(value); } /** *

The Kinesis Analytics application name.

*/ inline void SetApplicationName(const char* value) { m_applicationNameHasBeenSet = true; m_applicationName.assign(value); } /** *

The Kinesis Analytics application name.

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

The Kinesis Analytics application name.

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

The Kinesis Analytics application name.

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

The version ID of the Kinesis Analytics application.

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

The version ID of the Kinesis Analytics application.

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

The version ID of the Kinesis Analytics application.

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

The version ID of the Kinesis Analytics application.

*/ inline DeleteApplicationInputProcessingConfigurationRequest& WithCurrentApplicationVersionId(long long value) { SetCurrentApplicationVersionId(value); return *this;} /** *

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

*/ inline DeleteApplicationInputProcessingConfigurationRequest& WithInputId(const char* value) { SetInputId(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; }; } // namespace Model } // namespace KinesisAnalytics } // namespace Aws