/**
* 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 Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace MediaConvert
{
namespace Model
{
/**
* Contains details about the output groups specified in the job
* settings.See Also:
AWS
* API Reference
*/
class AWS_MEDIACONVERT_API OutputGroupDetail
{
public:
OutputGroupDetail();
OutputGroupDetail(Aws::Utils::Json::JsonView jsonValue);
OutputGroupDetail& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* Details about the output
*/
inline const Aws::Vector& GetOutputDetails() const{ return m_outputDetails; }
/**
* Details about the output
*/
inline bool OutputDetailsHasBeenSet() const { return m_outputDetailsHasBeenSet; }
/**
* Details about the output
*/
inline void SetOutputDetails(const Aws::Vector& value) { m_outputDetailsHasBeenSet = true; m_outputDetails = value; }
/**
* Details about the output
*/
inline void SetOutputDetails(Aws::Vector&& value) { m_outputDetailsHasBeenSet = true; m_outputDetails = std::move(value); }
/**
* Details about the output
*/
inline OutputGroupDetail& WithOutputDetails(const Aws::Vector& value) { SetOutputDetails(value); return *this;}
/**
* Details about the output
*/
inline OutputGroupDetail& WithOutputDetails(Aws::Vector&& value) { SetOutputDetails(std::move(value)); return *this;}
/**
* Details about the output
*/
inline OutputGroupDetail& AddOutputDetails(const OutputDetail& value) { m_outputDetailsHasBeenSet = true; m_outputDetails.push_back(value); return *this; }
/**
* Details about the output
*/
inline OutputGroupDetail& AddOutputDetails(OutputDetail&& value) { m_outputDetailsHasBeenSet = true; m_outputDetails.push_back(std::move(value)); return *this; }
private:
Aws::Vector m_outputDetails;
bool m_outputDetailsHasBeenSet;
};
} // namespace Model
} // namespace MediaConvert
} // namespace Aws