1 /**
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  * SPDX-License-Identifier: Apache-2.0.
4  */
5 
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 
12 namespace Aws
13 {
14 namespace CloudFormation
15 {
16 namespace Model
17 {
18 
19   /**
20    * <p>The input for the <a>GetStackPolicy</a> action.</p><p><h3>See Also:</h3>   <a
21    * href="http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/GetStackPolicyInput">AWS
22    * API Reference</a></p>
23    */
24   class AWS_CLOUDFORMATION_API GetStackPolicyRequest : public CloudFormationRequest
25   {
26   public:
27     GetStackPolicyRequest();
28 
29     // Service request name is the Operation name which will send this request out,
30     // each operation should has unique request name, so that we can get operation's name from this request.
31     // Note: this is not true for response, multiple operations may have the same response name,
32     // so we can not get operation's name from response.
GetServiceRequestName()33     inline virtual const char* GetServiceRequestName() const override { return "GetStackPolicy"; }
34 
35     Aws::String SerializePayload() const override;
36 
37   protected:
38     void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
39 
40   public:
41 
42     /**
43      * <p>The name or unique stack ID that is associated with the stack whose policy
44      * you want to get.</p>
45      */
GetStackName()46     inline const Aws::String& GetStackName() const{ return m_stackName; }
47 
48     /**
49      * <p>The name or unique stack ID that is associated with the stack whose policy
50      * you want to get.</p>
51      */
StackNameHasBeenSet()52     inline bool StackNameHasBeenSet() const { return m_stackNameHasBeenSet; }
53 
54     /**
55      * <p>The name or unique stack ID that is associated with the stack whose policy
56      * you want to get.</p>
57      */
SetStackName(const Aws::String & value)58     inline void SetStackName(const Aws::String& value) { m_stackNameHasBeenSet = true; m_stackName = value; }
59 
60     /**
61      * <p>The name or unique stack ID that is associated with the stack whose policy
62      * you want to get.</p>
63      */
SetStackName(Aws::String && value)64     inline void SetStackName(Aws::String&& value) { m_stackNameHasBeenSet = true; m_stackName = std::move(value); }
65 
66     /**
67      * <p>The name or unique stack ID that is associated with the stack whose policy
68      * you want to get.</p>
69      */
SetStackName(const char * value)70     inline void SetStackName(const char* value) { m_stackNameHasBeenSet = true; m_stackName.assign(value); }
71 
72     /**
73      * <p>The name or unique stack ID that is associated with the stack whose policy
74      * you want to get.</p>
75      */
WithStackName(const Aws::String & value)76     inline GetStackPolicyRequest& WithStackName(const Aws::String& value) { SetStackName(value); return *this;}
77 
78     /**
79      * <p>The name or unique stack ID that is associated with the stack whose policy
80      * you want to get.</p>
81      */
WithStackName(Aws::String && value)82     inline GetStackPolicyRequest& WithStackName(Aws::String&& value) { SetStackName(std::move(value)); return *this;}
83 
84     /**
85      * <p>The name or unique stack ID that is associated with the stack whose policy
86      * you want to get.</p>
87      */
WithStackName(const char * value)88     inline GetStackPolicyRequest& WithStackName(const char* value) { SetStackName(value); return *this;}
89 
90   private:
91 
92     Aws::String m_stackName;
93     bool m_stackNameHasBeenSet;
94   };
95 
96 } // namespace Model
97 } // namespace CloudFormation
98 } // namespace Aws
99