AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
DeleteApplicationRequest.h
1
6#pragma once
7#include <aws/kinesisanalytics/KinesisAnalytics_EXPORTS.h>
8#include <aws/kinesisanalytics/KinesisAnalyticsRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/DateTime.h>
11#include <utility>
12
13namespace Aws
14{
15namespace KinesisAnalytics
16{
17namespace Model
18{
19
26 {
27 public:
28 AWS_KINESISANALYTICS_API DeleteApplicationRequest() = default;
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "DeleteApplication"; }
35
36 AWS_KINESISANALYTICS_API Aws::String SerializePayload() const override;
37
38 AWS_KINESISANALYTICS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
39
40
42
45 inline const Aws::String& GetApplicationName() const { return m_applicationName; }
46 inline bool ApplicationNameHasBeenSet() const { return m_applicationNameHasBeenSet; }
47 template<typename ApplicationNameT = Aws::String>
48 void SetApplicationName(ApplicationNameT&& value) { m_applicationNameHasBeenSet = true; m_applicationName = std::forward<ApplicationNameT>(value); }
49 template<typename ApplicationNameT = Aws::String>
50 DeleteApplicationRequest& WithApplicationName(ApplicationNameT&& value) { SetApplicationName(std::forward<ApplicationNameT>(value)); return *this;}
52
54
58 inline const Aws::Utils::DateTime& GetCreateTimestamp() const { return m_createTimestamp; }
59 inline bool CreateTimestampHasBeenSet() const { return m_createTimestampHasBeenSet; }
60 template<typename CreateTimestampT = Aws::Utils::DateTime>
61 void SetCreateTimestamp(CreateTimestampT&& value) { m_createTimestampHasBeenSet = true; m_createTimestamp = std::forward<CreateTimestampT>(value); }
62 template<typename CreateTimestampT = Aws::Utils::DateTime>
63 DeleteApplicationRequest& WithCreateTimestamp(CreateTimestampT&& value) { SetCreateTimestamp(std::forward<CreateTimestampT>(value)); return *this;}
65 private:
66
67 Aws::String m_applicationName;
68 bool m_applicationNameHasBeenSet = false;
69
70 Aws::Utils::DateTime m_createTimestamp{};
71 bool m_createTimestampHasBeenSet = false;
72 };
73
74} // namespace Model
75} // namespace KinesisAnalytics
76} // namespace Aws
AWS_KINESISANALYTICS_API Aws::String SerializePayload() const override
DeleteApplicationRequest & WithApplicationName(ApplicationNameT &&value)
AWS_KINESISANALYTICS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DeleteApplicationRequest & WithCreateTimestamp(CreateTimestampT &&value)
AWS_KINESISANALYTICS_API DeleteApplicationRequest()=default
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String