AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeStackSetOperationRequest.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 DescribeStackSetOperationRequest();
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 "DescribeStackSetOperation"; }
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
44 inline const Aws::String& GetStackSetName() const{ return m_stackSetName; }
45 inline bool StackSetNameHasBeenSet() const { return m_stackSetNameHasBeenSet; }
46 inline void SetStackSetName(const Aws::String& value) { m_stackSetNameHasBeenSet = true; m_stackSetName = value; }
47 inline void SetStackSetName(Aws::String&& value) { m_stackSetNameHasBeenSet = true; m_stackSetName = std::move(value); }
48 inline void SetStackSetName(const char* value) { m_stackSetNameHasBeenSet = true; m_stackSetName.assign(value); }
50 inline DescribeStackSetOperationRequest& WithStackSetName(Aws::String&& value) { SetStackSetName(std::move(value)); return *this;}
51 inline DescribeStackSetOperationRequest& WithStackSetName(const char* value) { SetStackSetName(value); return *this;}
53
55
58 inline const Aws::String& GetOperationId() const{ return m_operationId; }
59 inline bool OperationIdHasBeenSet() const { return m_operationIdHasBeenSet; }
60 inline void SetOperationId(const Aws::String& value) { m_operationIdHasBeenSet = true; m_operationId = value; }
61 inline void SetOperationId(Aws::String&& value) { m_operationIdHasBeenSet = true; m_operationId = std::move(value); }
62 inline void SetOperationId(const char* value) { m_operationIdHasBeenSet = true; m_operationId.assign(value); }
63 inline DescribeStackSetOperationRequest& WithOperationId(const Aws::String& value) { SetOperationId(value); return *this;}
64 inline DescribeStackSetOperationRequest& WithOperationId(Aws::String&& value) { SetOperationId(std::move(value)); return *this;}
65 inline DescribeStackSetOperationRequest& WithOperationId(const char* value) { SetOperationId(value); return *this;}
67
69
83 inline const CallAs& GetCallAs() const{ return m_callAs; }
84 inline bool CallAsHasBeenSet() const { return m_callAsHasBeenSet; }
85 inline void SetCallAs(const CallAs& value) { m_callAsHasBeenSet = true; m_callAs = value; }
86 inline void SetCallAs(CallAs&& value) { m_callAsHasBeenSet = true; m_callAs = std::move(value); }
87 inline DescribeStackSetOperationRequest& WithCallAs(const CallAs& value) { SetCallAs(value); return *this;}
88 inline DescribeStackSetOperationRequest& WithCallAs(CallAs&& value) { SetCallAs(std::move(value)); return *this;}
90 private:
91
92 Aws::String m_stackSetName;
93 bool m_stackSetNameHasBeenSet = false;
94
95 Aws::String m_operationId;
96 bool m_operationIdHasBeenSet = false;
97
98 CallAs m_callAs;
99 bool m_callAsHasBeenSet = false;
100 };
101
102} // namespace Model
103} // namespace CloudFormation
104} // namespace Aws
DescribeStackSetOperationRequest & WithStackSetName(const Aws::String &value)
DescribeStackSetOperationRequest & WithStackSetName(Aws::String &&value)
DescribeStackSetOperationRequest & WithStackSetName(const char *value)
DescribeStackSetOperationRequest & WithOperationId(Aws::String &&value)
AWS_CLOUDFORMATION_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DescribeStackSetOperationRequest & WithCallAs(const CallAs &value)
DescribeStackSetOperationRequest & WithOperationId(const char *value)
DescribeStackSetOperationRequest & WithOperationId(const Aws::String &value)
AWS_CLOUDFORMATION_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String