/** * 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 KinesisAnalytics { namespace Model { /** *

See Also:

AWS * API Reference

*/ class DeleteApplicationRequest : public KinesisAnalyticsRequest { public: AWS_KINESISANALYTICS_API DeleteApplicationRequest(); // 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 "DeleteApplication"; } AWS_KINESISANALYTICS_API Aws::String SerializePayload() const override; AWS_KINESISANALYTICS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

Name of the Amazon Kinesis Analytics application to delete.

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

Name of the Amazon Kinesis Analytics application to delete.

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

Name of the Amazon Kinesis Analytics application to delete.

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

Name of the Amazon Kinesis Analytics application to delete.

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

Name of the Amazon Kinesis Analytics application to delete.

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

Name of the Amazon Kinesis Analytics application to delete.

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

Name of the Amazon Kinesis Analytics application to delete.

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

Name of the Amazon Kinesis Analytics application to delete.

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

You can use the DescribeApplication operation to get this * value.

*/ inline const Aws::Utils::DateTime& GetCreateTimestamp() const{ return m_createTimestamp; } /** *

You can use the DescribeApplication operation to get this * value.

*/ inline bool CreateTimestampHasBeenSet() const { return m_createTimestampHasBeenSet; } /** *

You can use the DescribeApplication operation to get this * value.

*/ inline void SetCreateTimestamp(const Aws::Utils::DateTime& value) { m_createTimestampHasBeenSet = true; m_createTimestamp = value; } /** *

You can use the DescribeApplication operation to get this * value.

*/ inline void SetCreateTimestamp(Aws::Utils::DateTime&& value) { m_createTimestampHasBeenSet = true; m_createTimestamp = std::move(value); } /** *

You can use the DescribeApplication operation to get this * value.

*/ inline DeleteApplicationRequest& WithCreateTimestamp(const Aws::Utils::DateTime& value) { SetCreateTimestamp(value); return *this;} /** *

You can use the DescribeApplication operation to get this * value.

*/ inline DeleteApplicationRequest& WithCreateTimestamp(Aws::Utils::DateTime&& value) { SetCreateTimestamp(std::move(value)); return *this;} private: Aws::String m_applicationName; bool m_applicationNameHasBeenSet = false; Aws::Utils::DateTime m_createTimestamp; bool m_createTimestampHasBeenSet = false; }; } // namespace Model } // namespace KinesisAnalytics } // namespace Aws