AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeChangeSetHooksRequest.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
22 {
23 public:
24 AWS_CLOUDFORMATION_API DescribeChangeSetHooksRequest();
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "DescribeChangeSetHooks"; }
31
32 AWS_CLOUDFORMATION_API Aws::String SerializePayload() const override;
33
34 protected:
35 AWS_CLOUDFORMATION_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
36
37 public:
38
40
44 inline const Aws::String& GetChangeSetName() const{ return m_changeSetName; }
45 inline bool ChangeSetNameHasBeenSet() const { return m_changeSetNameHasBeenSet; }
46 inline void SetChangeSetName(const Aws::String& value) { m_changeSetNameHasBeenSet = true; m_changeSetName = value; }
47 inline void SetChangeSetName(Aws::String&& value) { m_changeSetNameHasBeenSet = true; m_changeSetName = std::move(value); }
48 inline void SetChangeSetName(const char* value) { m_changeSetNameHasBeenSet = true; m_changeSetName.assign(value); }
49 inline DescribeChangeSetHooksRequest& WithChangeSetName(const Aws::String& value) { SetChangeSetName(value); return *this;}
50 inline DescribeChangeSetHooksRequest& WithChangeSetName(Aws::String&& value) { SetChangeSetName(std::move(value)); return *this;}
51 inline DescribeChangeSetHooksRequest& WithChangeSetName(const char* value) { SetChangeSetName(value); return *this;}
53
55
59 inline const Aws::String& GetStackName() const{ return m_stackName; }
60 inline bool StackNameHasBeenSet() const { return m_stackNameHasBeenSet; }
61 inline void SetStackName(const Aws::String& value) { m_stackNameHasBeenSet = true; m_stackName = value; }
62 inline void SetStackName(Aws::String&& value) { m_stackNameHasBeenSet = true; m_stackName = std::move(value); }
63 inline void SetStackName(const char* value) { m_stackNameHasBeenSet = true; m_stackName.assign(value); }
64 inline DescribeChangeSetHooksRequest& WithStackName(const Aws::String& value) { SetStackName(value); return *this;}
65 inline DescribeChangeSetHooksRequest& WithStackName(Aws::String&& value) { SetStackName(std::move(value)); return *this;}
66 inline DescribeChangeSetHooksRequest& WithStackName(const char* value) { SetStackName(value); return *this;}
68
70
75 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
76 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
77 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
78 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
79 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
80 inline DescribeChangeSetHooksRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
81 inline DescribeChangeSetHooksRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
82 inline DescribeChangeSetHooksRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
84
86
90 inline const Aws::String& GetLogicalResourceId() const{ return m_logicalResourceId; }
91 inline bool LogicalResourceIdHasBeenSet() const { return m_logicalResourceIdHasBeenSet; }
92 inline void SetLogicalResourceId(const Aws::String& value) { m_logicalResourceIdHasBeenSet = true; m_logicalResourceId = value; }
93 inline void SetLogicalResourceId(Aws::String&& value) { m_logicalResourceIdHasBeenSet = true; m_logicalResourceId = std::move(value); }
94 inline void SetLogicalResourceId(const char* value) { m_logicalResourceIdHasBeenSet = true; m_logicalResourceId.assign(value); }
96 inline DescribeChangeSetHooksRequest& WithLogicalResourceId(Aws::String&& value) { SetLogicalResourceId(std::move(value)); return *this;}
97 inline DescribeChangeSetHooksRequest& WithLogicalResourceId(const char* value) { SetLogicalResourceId(value); return *this;}
99 private:
100
101 Aws::String m_changeSetName;
102 bool m_changeSetNameHasBeenSet = false;
103
104 Aws::String m_stackName;
105 bool m_stackNameHasBeenSet = false;
106
107 Aws::String m_nextToken;
108 bool m_nextTokenHasBeenSet = false;
109
110 Aws::String m_logicalResourceId;
111 bool m_logicalResourceIdHasBeenSet = false;
112 };
113
114} // namespace Model
115} // namespace CloudFormation
116} // namespace Aws
DescribeChangeSetHooksRequest & WithChangeSetName(const char *value)
DescribeChangeSetHooksRequest & WithLogicalResourceId(Aws::String &&value)
DescribeChangeSetHooksRequest & WithNextToken(const Aws::String &value)
AWS_CLOUDFORMATION_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DescribeChangeSetHooksRequest & WithChangeSetName(Aws::String &&value)
DescribeChangeSetHooksRequest & WithStackName(Aws::String &&value)
DescribeChangeSetHooksRequest & WithChangeSetName(const Aws::String &value)
DescribeChangeSetHooksRequest & WithNextToken(Aws::String &&value)
DescribeChangeSetHooksRequest & WithLogicalResourceId(const Aws::String &value)
AWS_CLOUDFORMATION_API Aws::String SerializePayload() const override
DescribeChangeSetHooksRequest & WithStackName(const char *value)
DescribeChangeSetHooksRequest & WithNextToken(const char *value)
DescribeChangeSetHooksRequest & WithLogicalResourceId(const char *value)
DescribeChangeSetHooksRequest & WithStackName(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String