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/servicecatalog/ServiceCatalog_EXPORTS.h>
8 #include <aws/core/utils/memory/stl/AWSString.h>
9 #include <utility>
10 
11 namespace Aws
12 {
13 namespace Utils
14 {
15 namespace Json
16 {
17   class JsonValue;
18   class JsonView;
19 } // namespace Json
20 } // namespace Utils
21 namespace ServiceCatalog
22 {
23 namespace Model
24 {
25 
26   /**
27    * <p>Provisioning artifact output.</p><p><h3>See Also:</h3>   <a
28    * href="http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ProvisioningArtifactOutput">AWS
29    * API Reference</a></p>
30    */
31   class AWS_SERVICECATALOG_API ProvisioningArtifactOutput
32   {
33   public:
34     ProvisioningArtifactOutput();
35     ProvisioningArtifactOutput(Aws::Utils::Json::JsonView jsonValue);
36     ProvisioningArtifactOutput& operator=(Aws::Utils::Json::JsonView jsonValue);
37     Aws::Utils::Json::JsonValue Jsonize() const;
38 
39 
40     /**
41      * <p>The provisioning artifact output key.</p>
42      */
GetKey()43     inline const Aws::String& GetKey() const{ return m_key; }
44 
45     /**
46      * <p>The provisioning artifact output key.</p>
47      */
KeyHasBeenSet()48     inline bool KeyHasBeenSet() const { return m_keyHasBeenSet; }
49 
50     /**
51      * <p>The provisioning artifact output key.</p>
52      */
SetKey(const Aws::String & value)53     inline void SetKey(const Aws::String& value) { m_keyHasBeenSet = true; m_key = value; }
54 
55     /**
56      * <p>The provisioning artifact output key.</p>
57      */
SetKey(Aws::String && value)58     inline void SetKey(Aws::String&& value) { m_keyHasBeenSet = true; m_key = std::move(value); }
59 
60     /**
61      * <p>The provisioning artifact output key.</p>
62      */
SetKey(const char * value)63     inline void SetKey(const char* value) { m_keyHasBeenSet = true; m_key.assign(value); }
64 
65     /**
66      * <p>The provisioning artifact output key.</p>
67      */
WithKey(const Aws::String & value)68     inline ProvisioningArtifactOutput& WithKey(const Aws::String& value) { SetKey(value); return *this;}
69 
70     /**
71      * <p>The provisioning artifact output key.</p>
72      */
WithKey(Aws::String && value)73     inline ProvisioningArtifactOutput& WithKey(Aws::String&& value) { SetKey(std::move(value)); return *this;}
74 
75     /**
76      * <p>The provisioning artifact output key.</p>
77      */
WithKey(const char * value)78     inline ProvisioningArtifactOutput& WithKey(const char* value) { SetKey(value); return *this;}
79 
80 
81     /**
82      * <p>Description of the provisioning artifact output key.</p>
83      */
GetDescription()84     inline const Aws::String& GetDescription() const{ return m_description; }
85 
86     /**
87      * <p>Description of the provisioning artifact output key.</p>
88      */
DescriptionHasBeenSet()89     inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
90 
91     /**
92      * <p>Description of the provisioning artifact output key.</p>
93      */
SetDescription(const Aws::String & value)94     inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
95 
96     /**
97      * <p>Description of the provisioning artifact output key.</p>
98      */
SetDescription(Aws::String && value)99     inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
100 
101     /**
102      * <p>Description of the provisioning artifact output key.</p>
103      */
SetDescription(const char * value)104     inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
105 
106     /**
107      * <p>Description of the provisioning artifact output key.</p>
108      */
WithDescription(const Aws::String & value)109     inline ProvisioningArtifactOutput& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
110 
111     /**
112      * <p>Description of the provisioning artifact output key.</p>
113      */
WithDescription(Aws::String && value)114     inline ProvisioningArtifactOutput& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
115 
116     /**
117      * <p>Description of the provisioning artifact output key.</p>
118      */
WithDescription(const char * value)119     inline ProvisioningArtifactOutput& WithDescription(const char* value) { SetDescription(value); return *this;}
120 
121   private:
122 
123     Aws::String m_key;
124     bool m_keyHasBeenSet;
125 
126     Aws::String m_description;
127     bool m_descriptionHasBeenSet;
128   };
129 
130 } // namespace Model
131 } // namespace ServiceCatalog
132 } // namespace Aws
133