AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
DeleteTemplateSyncConfigRequest.h
1
6#pragma once
7#include <aws/proton/Proton_EXPORTS.h>
8#include <aws/proton/ProtonRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/proton/model/TemplateType.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Proton
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_PROTON_API DeleteTemplateSyncConfigRequest() = default;
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "DeleteTemplateSyncConfig"; }
32
33 AWS_PROTON_API Aws::String SerializePayload() const override;
34
36
37
39
42 inline const Aws::String& GetTemplateName() const { return m_templateName; }
43 inline bool TemplateNameHasBeenSet() const { return m_templateNameHasBeenSet; }
44 template<typename TemplateNameT = Aws::String>
45 void SetTemplateName(TemplateNameT&& value) { m_templateNameHasBeenSet = true; m_templateName = std::forward<TemplateNameT>(value); }
46 template<typename TemplateNameT = Aws::String>
47 DeleteTemplateSyncConfigRequest& WithTemplateName(TemplateNameT&& value) { SetTemplateName(std::forward<TemplateNameT>(value)); return *this;}
49
51
54 inline TemplateType GetTemplateType() const { return m_templateType; }
55 inline bool TemplateTypeHasBeenSet() const { return m_templateTypeHasBeenSet; }
56 inline void SetTemplateType(TemplateType value) { m_templateTypeHasBeenSet = true; m_templateType = value; }
59 private:
60
61 Aws::String m_templateName;
62 bool m_templateNameHasBeenSet = false;
63
64 TemplateType m_templateType{TemplateType::NOT_SET};
65 bool m_templateTypeHasBeenSet = false;
66 };
67
68} // namespace Model
69} // namespace Proton
70} // namespace Aws
DeleteTemplateSyncConfigRequest & WithTemplateName(TemplateNameT &&value)
AWS_PROTON_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_PROTON_API Aws::String SerializePayload() const override
AWS_PROTON_API DeleteTemplateSyncConfigRequest()=default
DeleteTemplateSyncConfigRequest & WithTemplateType(TemplateType value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String