AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeleteStackSetRequest.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 DeleteStackSetRequest();
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 "DeleteStackSet"; }
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 DeleteStackSetRequest& WithStackSetName(const Aws::String& value) { SetStackSetName(value); return *this;}
51 inline DeleteStackSetRequest& WithStackSetName(Aws::String&& value) { SetStackSetName(std::move(value)); return *this;}
52 inline DeleteStackSetRequest& WithStackSetName(const char* value) { SetStackSetName(value); return *this;}
54
56
70 inline const CallAs& GetCallAs() const{ return m_callAs; }
71 inline bool CallAsHasBeenSet() const { return m_callAsHasBeenSet; }
72 inline void SetCallAs(const CallAs& value) { m_callAsHasBeenSet = true; m_callAs = value; }
73 inline void SetCallAs(CallAs&& value) { m_callAsHasBeenSet = true; m_callAs = std::move(value); }
74 inline DeleteStackSetRequest& WithCallAs(const CallAs& value) { SetCallAs(value); return *this;}
75 inline DeleteStackSetRequest& WithCallAs(CallAs&& value) { SetCallAs(std::move(value)); return *this;}
77 private:
78
79 Aws::String m_stackSetName;
80 bool m_stackSetNameHasBeenSet = false;
81
82 CallAs m_callAs;
83 bool m_callAsHasBeenSet = false;
84 };
85
86} // namespace Model
87} // namespace CloudFormation
88} // namespace Aws
DeleteStackSetRequest & WithStackSetName(const Aws::String &value)
DeleteStackSetRequest & WithStackSetName(const char *value)
AWS_CLOUDFORMATION_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
virtual const char * GetServiceRequestName() const override
DeleteStackSetRequest & WithStackSetName(Aws::String &&value)
DeleteStackSetRequest & WithCallAs(const CallAs &value)
AWS_CLOUDFORMATION_API Aws::String SerializePayload() const override
DeleteStackSetRequest & WithCallAs(CallAs &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String