/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace ElasticTranscoder { namespace Model { /** *

The UpdatePipelineStatusRequest structure.

See * Also:

AWS * API Reference

*/ class UpdatePipelineStatusRequest : public ElasticTranscoderRequest { public: AWS_ELASTICTRANSCODER_API UpdatePipelineStatusRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "UpdatePipelineStatus"; } AWS_ELASTICTRANSCODER_API Aws::String SerializePayload() const override; /** *

The identifier of the pipeline to update.

*/ inline const Aws::String& GetId() const{ return m_id; } /** *

The identifier of the pipeline to update.

*/ inline bool IdHasBeenSet() const { return m_idHasBeenSet; } /** *

The identifier of the pipeline to update.

*/ inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; } /** *

The identifier of the pipeline to update.

*/ inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); } /** *

The identifier of the pipeline to update.

*/ inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); } /** *

The identifier of the pipeline to update.

*/ inline UpdatePipelineStatusRequest& WithId(const Aws::String& value) { SetId(value); return *this;} /** *

The identifier of the pipeline to update.

*/ inline UpdatePipelineStatusRequest& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} /** *

The identifier of the pipeline to update.

*/ inline UpdatePipelineStatusRequest& WithId(const char* value) { SetId(value); return *this;} /** *

The desired status of the pipeline:

  • Active: * The pipeline is processing jobs.

  • Paused: The * pipeline is not currently processing jobs.

*/ inline const Aws::String& GetStatus() const{ return m_status; } /** *

The desired status of the pipeline:

  • Active: * The pipeline is processing jobs.

  • Paused: The * pipeline is not currently processing jobs.

*/ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** *

The desired status of the pipeline:

  • Active: * The pipeline is processing jobs.

  • Paused: The * pipeline is not currently processing jobs.

*/ inline void SetStatus(const Aws::String& value) { m_statusHasBeenSet = true; m_status = value; } /** *

The desired status of the pipeline:

  • Active: * The pipeline is processing jobs.

  • Paused: The * pipeline is not currently processing jobs.

*/ inline void SetStatus(Aws::String&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** *

The desired status of the pipeline:

  • Active: * The pipeline is processing jobs.

  • Paused: The * pipeline is not currently processing jobs.

*/ inline void SetStatus(const char* value) { m_statusHasBeenSet = true; m_status.assign(value); } /** *

The desired status of the pipeline:

  • Active: * The pipeline is processing jobs.

  • Paused: The * pipeline is not currently processing jobs.

*/ inline UpdatePipelineStatusRequest& WithStatus(const Aws::String& value) { SetStatus(value); return *this;} /** *

The desired status of the pipeline:

  • Active: * The pipeline is processing jobs.

  • Paused: The * pipeline is not currently processing jobs.

*/ inline UpdatePipelineStatusRequest& WithStatus(Aws::String&& value) { SetStatus(std::move(value)); return *this;} /** *

The desired status of the pipeline:

  • Active: * The pipeline is processing jobs.

  • Paused: The * pipeline is not currently processing jobs.

*/ inline UpdatePipelineStatusRequest& WithStatus(const char* value) { SetStatus(value); return *this;} private: Aws::String m_id; bool m_idHasBeenSet = false; Aws::String m_status; bool m_statusHasBeenSet = false; }; } // namespace Model } // namespace ElasticTranscoder } // namespace Aws