/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the input of a StartPipelineExecution
* action.See Also:
AWS
* API Reference
The name of the pipeline to start.
*/ inline const Aws::String& GetName() const{ return m_name; } /** *The name of the pipeline to start.
*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *The name of the pipeline to start.
*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *The name of the pipeline to start.
*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *The name of the pipeline to start.
*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *The name of the pipeline to start.
*/ inline StartPipelineExecutionRequest& WithName(const Aws::String& value) { SetName(value); return *this;} /** *The name of the pipeline to start.
*/ inline StartPipelineExecutionRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *The name of the pipeline to start.
*/ inline StartPipelineExecutionRequest& WithName(const char* value) { SetName(value); return *this;} /** *The system-generated unique ID used to identify a unique execution * request.
*/ inline const Aws::String& GetClientRequestToken() const{ return m_clientRequestToken; } /** *The system-generated unique ID used to identify a unique execution * request.
*/ inline bool ClientRequestTokenHasBeenSet() const { return m_clientRequestTokenHasBeenSet; } /** *The system-generated unique ID used to identify a unique execution * request.
*/ inline void SetClientRequestToken(const Aws::String& value) { m_clientRequestTokenHasBeenSet = true; m_clientRequestToken = value; } /** *The system-generated unique ID used to identify a unique execution * request.
*/ inline void SetClientRequestToken(Aws::String&& value) { m_clientRequestTokenHasBeenSet = true; m_clientRequestToken = std::move(value); } /** *The system-generated unique ID used to identify a unique execution * request.
*/ inline void SetClientRequestToken(const char* value) { m_clientRequestTokenHasBeenSet = true; m_clientRequestToken.assign(value); } /** *The system-generated unique ID used to identify a unique execution * request.
*/ inline StartPipelineExecutionRequest& WithClientRequestToken(const Aws::String& value) { SetClientRequestToken(value); return *this;} /** *The system-generated unique ID used to identify a unique execution * request.
*/ inline StartPipelineExecutionRequest& WithClientRequestToken(Aws::String&& value) { SetClientRequestToken(std::move(value)); return *this;} /** *The system-generated unique ID used to identify a unique execution * request.
*/ inline StartPipelineExecutionRequest& WithClientRequestToken(const char* value) { SetClientRequestToken(value); return *this;} private: Aws::String m_name; bool m_nameHasBeenSet = false; Aws::String m_clientRequestToken; bool m_clientRequestTokenHasBeenSet = false; }; } // namespace Model } // namespace CodePipeline } // namespace Aws