AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
DescribeChangeSetRequest.h
1
6#pragma once
7#include <aws/cloudformation/CloudFormation_EXPORTS.h>
8#include <aws/cloudformation/CloudFormationRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace CloudFormation
15{
16namespace Model
17{
18
26 {
27 public:
28 AWS_CLOUDFORMATION_API DescribeChangeSetRequest() = 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 "DescribeChangeSet"; }
35
36 AWS_CLOUDFORMATION_API Aws::String SerializePayload() const override;
37
38 protected:
39 AWS_CLOUDFORMATION_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
40
41 public:
42
44
48 inline const Aws::String& GetChangeSetName() const { return m_changeSetName; }
49 inline bool ChangeSetNameHasBeenSet() const { return m_changeSetNameHasBeenSet; }
50 template<typename ChangeSetNameT = Aws::String>
51 void SetChangeSetName(ChangeSetNameT&& value) { m_changeSetNameHasBeenSet = true; m_changeSetName = std::forward<ChangeSetNameT>(value); }
52 template<typename ChangeSetNameT = Aws::String>
53 DescribeChangeSetRequest& WithChangeSetName(ChangeSetNameT&& value) { SetChangeSetName(std::forward<ChangeSetNameT>(value)); return *this;}
55
57
61 inline const Aws::String& GetStackName() const { return m_stackName; }
62 inline bool StackNameHasBeenSet() const { return m_stackNameHasBeenSet; }
63 template<typename StackNameT = Aws::String>
64 void SetStackName(StackNameT&& value) { m_stackNameHasBeenSet = true; m_stackName = std::forward<StackNameT>(value); }
65 template<typename StackNameT = Aws::String>
66 DescribeChangeSetRequest& WithStackName(StackNameT&& value) { SetStackName(std::forward<StackNameT>(value)); return *this;}
68
70
74 inline const Aws::String& GetNextToken() const { return m_nextToken; }
75 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
76 template<typename NextTokenT = Aws::String>
77 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
78 template<typename NextTokenT = Aws::String>
79 DescribeChangeSetRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
81
83
87 inline bool GetIncludePropertyValues() const { return m_includePropertyValues; }
88 inline bool IncludePropertyValuesHasBeenSet() const { return m_includePropertyValuesHasBeenSet; }
89 inline void SetIncludePropertyValues(bool value) { m_includePropertyValuesHasBeenSet = true; m_includePropertyValues = value; }
92 private:
93
94 Aws::String m_changeSetName;
95 bool m_changeSetNameHasBeenSet = false;
96
97 Aws::String m_stackName;
98 bool m_stackNameHasBeenSet = false;
99
100 Aws::String m_nextToken;
101 bool m_nextTokenHasBeenSet = false;
102
103 bool m_includePropertyValues{false};
104 bool m_includePropertyValuesHasBeenSet = false;
105 };
106
107} // namespace Model
108} // namespace CloudFormation
109} // namespace Aws
AWS_CLOUDFORMATION_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DescribeChangeSetRequest & WithNextToken(NextTokenT &&value)
DescribeChangeSetRequest & WithChangeSetName(ChangeSetNameT &&value)
virtual const char * GetServiceRequestName() const override
DescribeChangeSetRequest & WithStackName(StackNameT &&value)
AWS_CLOUDFORMATION_API DescribeChangeSetRequest()=default
DescribeChangeSetRequest & WithIncludePropertyValues(bool value)
AWS_CLOUDFORMATION_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String