AWS SDK for C++

AWS SDK for C++ Version 1.11.868

Loading...
Searching...
No Matches
TestTemplateSummary.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/resiliencehubv2/Resiliencehubv2_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace resiliencehubv2 {
20namespace Model {
21
29 public:
30 AWS_RESILIENCEHUBV2_API TestTemplateSummary() = default;
31 AWS_RESILIENCEHUBV2_API TestTemplateSummary(Aws::Utils::Json::JsonView jsonValue);
32 AWS_RESILIENCEHUBV2_API TestTemplateSummary& operator=(Aws::Utils::Json::JsonView jsonValue);
33 AWS_RESILIENCEHUBV2_API Aws::Utils::Json::JsonValue Jsonize() const;
34
36
39 inline const Aws::String& GetTestTemplateArn() const { return m_testTemplateArn; }
40 inline bool TestTemplateArnHasBeenSet() const { return m_testTemplateArnHasBeenSet; }
41 template <typename TestTemplateArnT = Aws::String>
42 void SetTestTemplateArn(TestTemplateArnT&& value) {
43 m_testTemplateArnHasBeenSet = true;
44 m_testTemplateArn = std::forward<TestTemplateArnT>(value);
45 }
46 template <typename TestTemplateArnT = Aws::String>
47 TestTemplateSummary& WithTestTemplateArn(TestTemplateArnT&& value) {
48 SetTestTemplateArn(std::forward<TestTemplateArnT>(value));
49 return *this;
50 }
52
54
57 inline const Aws::String& GetName() const { return m_name; }
58 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
59 template <typename NameT = Aws::String>
60 void SetName(NameT&& value) {
61 m_nameHasBeenSet = true;
62 m_name = std::forward<NameT>(value);
63 }
64 template <typename NameT = Aws::String>
65 TestTemplateSummary& WithName(NameT&& value) {
66 SetName(std::forward<NameT>(value));
67 return *this;
68 }
70
72
75 inline const Aws::String& GetDescription() const { return m_description; }
76 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
77 template <typename DescriptionT = Aws::String>
78 void SetDescription(DescriptionT&& value) {
79 m_descriptionHasBeenSet = true;
80 m_description = std::forward<DescriptionT>(value);
81 }
82 template <typename DescriptionT = Aws::String>
83 TestTemplateSummary& WithDescription(DescriptionT&& value) {
84 SetDescription(std::forward<DescriptionT>(value));
85 return *this;
86 }
88 private:
89 Aws::String m_testTemplateArn;
90
91 Aws::String m_name;
92
93 Aws::String m_description;
94 bool m_testTemplateArnHasBeenSet = false;
95 bool m_nameHasBeenSet = false;
96 bool m_descriptionHasBeenSet = false;
97};
98
99} // namespace Model
100} // namespace resiliencehubv2
101} // namespace Aws
TestTemplateSummary & WithDescription(DescriptionT &&value)
AWS_RESILIENCEHUBV2_API TestTemplateSummary()=default
AWS_RESILIENCEHUBV2_API TestTemplateSummary(Aws::Utils::Json::JsonView jsonValue)
AWS_RESILIENCEHUBV2_API Aws::Utils::Json::JsonValue Jsonize() const
TestTemplateSummary & WithName(NameT &&value)
AWS_RESILIENCEHUBV2_API TestTemplateSummary & operator=(Aws::Utils::Json::JsonView jsonValue)
TestTemplateSummary & WithTestTemplateArn(TestTemplateArnT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue