/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include namespace Aws { namespace CodePipeline { namespace Model { enum class PipelineExecutionStatus { NOT_SET, Cancelled, InProgress, Stopped, Stopping, Succeeded, Superseded, Failed }; namespace PipelineExecutionStatusMapper { AWS_CODEPIPELINE_API PipelineExecutionStatus GetPipelineExecutionStatusForName(const Aws::String& name); AWS_CODEPIPELINE_API Aws::String GetNameForPipelineExecutionStatus(PipelineExecutionStatus value); } // namespace PipelineExecutionStatusMapper } // namespace Model } // namespace CodePipeline } // namespace Aws