/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The summary of the media pipeline.See Also:
AWS
* API Reference
The ID of the media pipeline in the summary.
*/ inline const Aws::String& GetMediaPipelineId() const{ return m_mediaPipelineId; } /** *The ID of the media pipeline in the summary.
*/ inline bool MediaPipelineIdHasBeenSet() const { return m_mediaPipelineIdHasBeenSet; } /** *The ID of the media pipeline in the summary.
*/ inline void SetMediaPipelineId(const Aws::String& value) { m_mediaPipelineIdHasBeenSet = true; m_mediaPipelineId = value; } /** *The ID of the media pipeline in the summary.
*/ inline void SetMediaPipelineId(Aws::String&& value) { m_mediaPipelineIdHasBeenSet = true; m_mediaPipelineId = std::move(value); } /** *The ID of the media pipeline in the summary.
*/ inline void SetMediaPipelineId(const char* value) { m_mediaPipelineIdHasBeenSet = true; m_mediaPipelineId.assign(value); } /** *The ID of the media pipeline in the summary.
*/ inline MediaPipelineSummary& WithMediaPipelineId(const Aws::String& value) { SetMediaPipelineId(value); return *this;} /** *The ID of the media pipeline in the summary.
*/ inline MediaPipelineSummary& WithMediaPipelineId(Aws::String&& value) { SetMediaPipelineId(std::move(value)); return *this;} /** *The ID of the media pipeline in the summary.
*/ inline MediaPipelineSummary& WithMediaPipelineId(const char* value) { SetMediaPipelineId(value); return *this;} /** *The ARN of the media pipeline in the summary.
*/ inline const Aws::String& GetMediaPipelineArn() const{ return m_mediaPipelineArn; } /** *The ARN of the media pipeline in the summary.
*/ inline bool MediaPipelineArnHasBeenSet() const { return m_mediaPipelineArnHasBeenSet; } /** *The ARN of the media pipeline in the summary.
*/ inline void SetMediaPipelineArn(const Aws::String& value) { m_mediaPipelineArnHasBeenSet = true; m_mediaPipelineArn = value; } /** *The ARN of the media pipeline in the summary.
*/ inline void SetMediaPipelineArn(Aws::String&& value) { m_mediaPipelineArnHasBeenSet = true; m_mediaPipelineArn = std::move(value); } /** *The ARN of the media pipeline in the summary.
*/ inline void SetMediaPipelineArn(const char* value) { m_mediaPipelineArnHasBeenSet = true; m_mediaPipelineArn.assign(value); } /** *The ARN of the media pipeline in the summary.
*/ inline MediaPipelineSummary& WithMediaPipelineArn(const Aws::String& value) { SetMediaPipelineArn(value); return *this;} /** *The ARN of the media pipeline in the summary.
*/ inline MediaPipelineSummary& WithMediaPipelineArn(Aws::String&& value) { SetMediaPipelineArn(std::move(value)); return *this;} /** *The ARN of the media pipeline in the summary.
*/ inline MediaPipelineSummary& WithMediaPipelineArn(const char* value) { SetMediaPipelineArn(value); return *this;} private: Aws::String m_mediaPipelineId; bool m_mediaPipelineIdHasBeenSet = false; Aws::String m_mediaPipelineArn; bool m_mediaPipelineArnHasBeenSet = false; }; } // namespace Model } // namespace ChimeSDKMediaPipelines } // namespace Aws