AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
ContinueUpdateRollbackRequest.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 <aws/core/utils/memory/stl/AWSVector.h>
11#include <utility>
12
13namespace Aws
14{
15namespace CloudFormation
16{
17namespace Model
18{
19
27 {
28 public:
29 AWS_CLOUDFORMATION_API ContinueUpdateRollbackRequest() = default;
30
31 // Service request name is the Operation name which will send this request out,
32 // each operation should has unique request name, so that we can get operation's name from this request.
33 // Note: this is not true for response, multiple operations may have the same response name,
34 // so we can not get operation's name from response.
35 inline virtual const char* GetServiceRequestName() const override { return "ContinueUpdateRollback"; }
36
37 AWS_CLOUDFORMATION_API Aws::String SerializePayload() const override;
38
39 protected:
40 AWS_CLOUDFORMATION_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
41
42 public:
43
45
52 inline const Aws::String& GetStackName() const { return m_stackName; }
53 inline bool StackNameHasBeenSet() const { return m_stackNameHasBeenSet; }
54 template<typename StackNameT = Aws::String>
55 void SetStackName(StackNameT&& value) { m_stackNameHasBeenSet = true; m_stackName = std::forward<StackNameT>(value); }
56 template<typename StackNameT = Aws::String>
57 ContinueUpdateRollbackRequest& WithStackName(StackNameT&& value) { SetStackName(std::forward<StackNameT>(value)); return *this;}
59
61
72 inline const Aws::String& GetRoleARN() const { return m_roleARN; }
73 inline bool RoleARNHasBeenSet() const { return m_roleARNHasBeenSet; }
74 template<typename RoleARNT = Aws::String>
75 void SetRoleARN(RoleARNT&& value) { m_roleARNHasBeenSet = true; m_roleARN = std::forward<RoleARNT>(value); }
76 template<typename RoleARNT = Aws::String>
77 ContinueUpdateRollbackRequest& WithRoleARN(RoleARNT&& value) { SetRoleARN(std::forward<RoleARNT>(value)); return *this;}
79
81
114 inline const Aws::Vector<Aws::String>& GetResourcesToSkip() const { return m_resourcesToSkip; }
115 inline bool ResourcesToSkipHasBeenSet() const { return m_resourcesToSkipHasBeenSet; }
116 template<typename ResourcesToSkipT = Aws::Vector<Aws::String>>
117 void SetResourcesToSkip(ResourcesToSkipT&& value) { m_resourcesToSkipHasBeenSet = true; m_resourcesToSkip = std::forward<ResourcesToSkipT>(value); }
118 template<typename ResourcesToSkipT = Aws::Vector<Aws::String>>
119 ContinueUpdateRollbackRequest& WithResourcesToSkip(ResourcesToSkipT&& value) { SetResourcesToSkip(std::forward<ResourcesToSkipT>(value)); return *this;}
120 template<typename ResourcesToSkipT = Aws::String>
121 ContinueUpdateRollbackRequest& AddResourcesToSkip(ResourcesToSkipT&& value) { m_resourcesToSkipHasBeenSet = true; m_resourcesToSkip.emplace_back(std::forward<ResourcesToSkipT>(value)); return *this; }
123
125
132 inline const Aws::String& GetClientRequestToken() const { return m_clientRequestToken; }
133 inline bool ClientRequestTokenHasBeenSet() const { return m_clientRequestTokenHasBeenSet; }
134 template<typename ClientRequestTokenT = Aws::String>
135 void SetClientRequestToken(ClientRequestTokenT&& value) { m_clientRequestTokenHasBeenSet = true; m_clientRequestToken = std::forward<ClientRequestTokenT>(value); }
136 template<typename ClientRequestTokenT = Aws::String>
137 ContinueUpdateRollbackRequest& WithClientRequestToken(ClientRequestTokenT&& value) { SetClientRequestToken(std::forward<ClientRequestTokenT>(value)); return *this;}
139 private:
140
141 Aws::String m_stackName;
142 bool m_stackNameHasBeenSet = false;
143
144 Aws::String m_roleARN;
145 bool m_roleARNHasBeenSet = false;
146
147 Aws::Vector<Aws::String> m_resourcesToSkip;
148 bool m_resourcesToSkipHasBeenSet = false;
149
150 Aws::String m_clientRequestToken;
151 bool m_clientRequestTokenHasBeenSet = false;
152 };
153
154} // namespace Model
155} // namespace CloudFormation
156} // namespace Aws
AWS_CLOUDFORMATION_API Aws::String SerializePayload() const override
AWS_CLOUDFORMATION_API ContinueUpdateRollbackRequest()=default
ContinueUpdateRollbackRequest & WithRoleARN(RoleARNT &&value)
AWS_CLOUDFORMATION_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
ContinueUpdateRollbackRequest & AddResourcesToSkip(ResourcesToSkipT &&value)
ContinueUpdateRollbackRequest & WithClientRequestToken(ClientRequestTokenT &&value)
ContinueUpdateRollbackRequest & WithResourcesToSkip(ResourcesToSkipT &&value)
ContinueUpdateRollbackRequest & WithStackName(StackNameT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector