/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace OSIS { namespace Model { class GetPipelineBlueprintResult { public: AWS_OSIS_API GetPipelineBlueprintResult(); AWS_OSIS_API GetPipelineBlueprintResult(const Aws::AmazonWebServiceResult& result); AWS_OSIS_API GetPipelineBlueprintResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The requested blueprint in YAML format.

*/ inline const PipelineBlueprint& GetBlueprint() const{ return m_blueprint; } /** *

The requested blueprint in YAML format.

*/ inline void SetBlueprint(const PipelineBlueprint& value) { m_blueprint = value; } /** *

The requested blueprint in YAML format.

*/ inline void SetBlueprint(PipelineBlueprint&& value) { m_blueprint = std::move(value); } /** *

The requested blueprint in YAML format.

*/ inline GetPipelineBlueprintResult& WithBlueprint(const PipelineBlueprint& value) { SetBlueprint(value); return *this;} /** *

The requested blueprint in YAML format.

*/ inline GetPipelineBlueprintResult& WithBlueprint(PipelineBlueprint&& value) { SetBlueprint(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetPipelineBlueprintResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetPipelineBlueprintResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetPipelineBlueprintResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: PipelineBlueprint m_blueprint; Aws::String m_requestId; }; } // namespace Model } // namespace OSIS } // namespace Aws