/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the output of a CreatePipeline
action.See
* Also:
AWS
* API Reference
Represents the structure of actions and stages to be performed in the * pipeline.
*/ inline const PipelineDeclaration& GetPipeline() const{ return m_pipeline; } /** *Represents the structure of actions and stages to be performed in the * pipeline.
*/ inline void SetPipeline(const PipelineDeclaration& value) { m_pipeline = value; } /** *Represents the structure of actions and stages to be performed in the * pipeline.
*/ inline void SetPipeline(PipelineDeclaration&& value) { m_pipeline = std::move(value); } /** *Represents the structure of actions and stages to be performed in the * pipeline.
*/ inline CreatePipelineResult& WithPipeline(const PipelineDeclaration& value) { SetPipeline(value); return *this;} /** *Represents the structure of actions and stages to be performed in the * pipeline.
*/ inline CreatePipelineResult& WithPipeline(PipelineDeclaration&& value) { SetPipeline(std::move(value)); return *this;} /** *Specifies the tags applied to the pipeline.
*/ inline const Aws::VectorSpecifies the tags applied to the pipeline.
*/ inline void SetTags(const Aws::VectorSpecifies the tags applied to the pipeline.
*/ inline void SetTags(Aws::VectorSpecifies the tags applied to the pipeline.
*/ inline CreatePipelineResult& WithTags(const Aws::VectorSpecifies the tags applied to the pipeline.
*/ inline CreatePipelineResult& WithTags(Aws::VectorSpecifies the tags applied to the pipeline.
*/ inline CreatePipelineResult& AddTags(const Tag& value) { m_tags.push_back(value); return *this; } /** *Specifies the tags applied to the pipeline.
*/ inline CreatePipelineResult& AddTags(Tag&& value) { m_tags.push_back(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 CreatePipelineResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreatePipelineResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreatePipelineResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: PipelineDeclaration m_pipeline; Aws::Vector