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/servicecatalog/model/RecordDetail.h>
9 #include <utility>
10 
11 namespace Aws
12 {
13 template<typename RESULT_TYPE>
14 class AmazonWebServiceResult;
15 
16 namespace Utils
17 {
18 namespace Json
19 {
20   class JsonValue;
21 } // namespace Json
22 } // namespace Utils
23 namespace ServiceCatalog
24 {
25 namespace Model
26 {
27   class AWS_SERVICECATALOG_API ExecuteProvisionedProductPlanResult
28   {
29   public:
30     ExecuteProvisionedProductPlanResult();
31     ExecuteProvisionedProductPlanResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
32     ExecuteProvisionedProductPlanResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
33 
34 
35     /**
36      * <p>Information about the result of provisioning the product.</p>
37      */
GetRecordDetail()38     inline const RecordDetail& GetRecordDetail() const{ return m_recordDetail; }
39 
40     /**
41      * <p>Information about the result of provisioning the product.</p>
42      */
SetRecordDetail(const RecordDetail & value)43     inline void SetRecordDetail(const RecordDetail& value) { m_recordDetail = value; }
44 
45     /**
46      * <p>Information about the result of provisioning the product.</p>
47      */
SetRecordDetail(RecordDetail && value)48     inline void SetRecordDetail(RecordDetail&& value) { m_recordDetail = std::move(value); }
49 
50     /**
51      * <p>Information about the result of provisioning the product.</p>
52      */
WithRecordDetail(const RecordDetail & value)53     inline ExecuteProvisionedProductPlanResult& WithRecordDetail(const RecordDetail& value) { SetRecordDetail(value); return *this;}
54 
55     /**
56      * <p>Information about the result of provisioning the product.</p>
57      */
WithRecordDetail(RecordDetail && value)58     inline ExecuteProvisionedProductPlanResult& WithRecordDetail(RecordDetail&& value) { SetRecordDetail(std::move(value)); return *this;}
59 
60   private:
61 
62     RecordDetail m_recordDetail;
63   };
64 
65 } // namespace Model
66 } // namespace ServiceCatalog
67 } // namespace Aws
68