AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
StopStackSetOperationRequest.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/cloudformation/model/CallAs.h>
11#include <utility>
12
13namespace Aws
14{
15namespace CloudFormation
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_CLOUDFORMATION_API StopStackSetOperationRequest();
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 "StopStackSetOperation"; }
32
33 AWS_CLOUDFORMATION_API Aws::String SerializePayload() const override;
34
35 protected:
36 AWS_CLOUDFORMATION_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
37
38 public:
39
41
45 inline const Aws::String& GetStackSetName() const{ return m_stackSetName; }
46 inline bool StackSetNameHasBeenSet() const { return m_stackSetNameHasBeenSet; }
47 inline void SetStackSetName(const Aws::String& value) { m_stackSetNameHasBeenSet = true; m_stackSetName = value; }
48 inline void SetStackSetName(Aws::String&& value) { m_stackSetNameHasBeenSet = true; m_stackSetName = std::move(value); }
49 inline void SetStackSetName(const char* value) { m_stackSetNameHasBeenSet = true; m_stackSetName.assign(value); }
50 inline StopStackSetOperationRequest& WithStackSetName(const Aws::String& value) { SetStackSetName(value); return *this;}
51 inline StopStackSetOperationRequest& WithStackSetName(Aws::String&& value) { SetStackSetName(std::move(value)); return *this;}
52 inline StopStackSetOperationRequest& WithStackSetName(const char* value) { SetStackSetName(value); return *this;}
54
56
59 inline const Aws::String& GetOperationId() const{ return m_operationId; }
60 inline bool OperationIdHasBeenSet() const { return m_operationIdHasBeenSet; }
61 inline void SetOperationId(const Aws::String& value) { m_operationIdHasBeenSet = true; m_operationId = value; }
62 inline void SetOperationId(Aws::String&& value) { m_operationIdHasBeenSet = true; m_operationId = std::move(value); }
63 inline void SetOperationId(const char* value) { m_operationIdHasBeenSet = true; m_operationId.assign(value); }
64 inline StopStackSetOperationRequest& WithOperationId(const Aws::String& value) { SetOperationId(value); return *this;}
65 inline StopStackSetOperationRequest& WithOperationId(Aws::String&& value) { SetOperationId(std::move(value)); return *this;}
66 inline StopStackSetOperationRequest& WithOperationId(const char* value) { SetOperationId(value); return *this;}
68
70
84 inline const CallAs& GetCallAs() const{ return m_callAs; }
85 inline bool CallAsHasBeenSet() const { return m_callAsHasBeenSet; }
86 inline void SetCallAs(const CallAs& value) { m_callAsHasBeenSet = true; m_callAs = value; }
87 inline void SetCallAs(CallAs&& value) { m_callAsHasBeenSet = true; m_callAs = std::move(value); }
88 inline StopStackSetOperationRequest& WithCallAs(const CallAs& value) { SetCallAs(value); return *this;}
89 inline StopStackSetOperationRequest& WithCallAs(CallAs&& value) { SetCallAs(std::move(value)); return *this;}
91 private:
92
93 Aws::String m_stackSetName;
94 bool m_stackSetNameHasBeenSet = false;
95
96 Aws::String m_operationId;
97 bool m_operationIdHasBeenSet = false;
98
99 CallAs m_callAs;
100 bool m_callAsHasBeenSet = false;
101 };
102
103} // namespace Model
104} // namespace CloudFormation
105} // namespace Aws
StopStackSetOperationRequest & WithStackSetName(const Aws::String &value)
StopStackSetOperationRequest & WithCallAs(CallAs &&value)
StopStackSetOperationRequest & WithCallAs(const CallAs &value)
StopStackSetOperationRequest & WithStackSetName(const char *value)
AWS_CLOUDFORMATION_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
StopStackSetOperationRequest & WithOperationId(Aws::String &&value)
StopStackSetOperationRequest & WithOperationId(const Aws::String &value)
AWS_CLOUDFORMATION_API Aws::String SerializePayload() const override
StopStackSetOperationRequest & WithStackSetName(Aws::String &&value)
StopStackSetOperationRequest & WithOperationId(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String