/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include
#include
#include
#include
#include
#include
#include
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace MediaConvert
{
namespace Model
{
/**
* Group of outputsSee Also:
AWS
* API Reference
*/
class OutputGroup
{
public:
AWS_MEDIACONVERT_API OutputGroup();
AWS_MEDIACONVERT_API OutputGroup(Aws::Utils::Json::JsonView jsonValue);
AWS_MEDIACONVERT_API OutputGroup& operator=(Aws::Utils::Json::JsonView jsonValue);
AWS_MEDIACONVERT_API Aws::Utils::Json::JsonValue Jsonize() const;
/**
* Use automated encoding to have MediaConvert choose your encoding settings for
* you, based on characteristics of your input video.
*/
inline const AutomatedEncodingSettings& GetAutomatedEncodingSettings() const{ return m_automatedEncodingSettings; }
/**
* Use automated encoding to have MediaConvert choose your encoding settings for
* you, based on characteristics of your input video.
*/
inline bool AutomatedEncodingSettingsHasBeenSet() const { return m_automatedEncodingSettingsHasBeenSet; }
/**
* Use automated encoding to have MediaConvert choose your encoding settings for
* you, based on characteristics of your input video.
*/
inline void SetAutomatedEncodingSettings(const AutomatedEncodingSettings& value) { m_automatedEncodingSettingsHasBeenSet = true; m_automatedEncodingSettings = value; }
/**
* Use automated encoding to have MediaConvert choose your encoding settings for
* you, based on characteristics of your input video.
*/
inline void SetAutomatedEncodingSettings(AutomatedEncodingSettings&& value) { m_automatedEncodingSettingsHasBeenSet = true; m_automatedEncodingSettings = std::move(value); }
/**
* Use automated encoding to have MediaConvert choose your encoding settings for
* you, based on characteristics of your input video.
*/
inline OutputGroup& WithAutomatedEncodingSettings(const AutomatedEncodingSettings& value) { SetAutomatedEncodingSettings(value); return *this;}
/**
* Use automated encoding to have MediaConvert choose your encoding settings for
* you, based on characteristics of your input video.
*/
inline OutputGroup& WithAutomatedEncodingSettings(AutomatedEncodingSettings&& value) { SetAutomatedEncodingSettings(std::move(value)); return *this;}
/**
* Use Custom Group Name to specify a name for the output group. This value is
* displayed on the console and can make your job settings JSON more
* human-readable. It does not affect your outputs. Use up to twelve characters
* that are either letters, numbers, spaces, or underscores.
*/
inline const Aws::String& GetCustomName() const{ return m_customName; }
/**
* Use Custom Group Name to specify a name for the output group. This value is
* displayed on the console and can make your job settings JSON more
* human-readable. It does not affect your outputs. Use up to twelve characters
* that are either letters, numbers, spaces, or underscores.
*/
inline bool CustomNameHasBeenSet() const { return m_customNameHasBeenSet; }
/**
* Use Custom Group Name to specify a name for the output group. This value is
* displayed on the console and can make your job settings JSON more
* human-readable. It does not affect your outputs. Use up to twelve characters
* that are either letters, numbers, spaces, or underscores.
*/
inline void SetCustomName(const Aws::String& value) { m_customNameHasBeenSet = true; m_customName = value; }
/**
* Use Custom Group Name to specify a name for the output group. This value is
* displayed on the console and can make your job settings JSON more
* human-readable. It does not affect your outputs. Use up to twelve characters
* that are either letters, numbers, spaces, or underscores.
*/
inline void SetCustomName(Aws::String&& value) { m_customNameHasBeenSet = true; m_customName = std::move(value); }
/**
* Use Custom Group Name to specify a name for the output group. This value is
* displayed on the console and can make your job settings JSON more
* human-readable. It does not affect your outputs. Use up to twelve characters
* that are either letters, numbers, spaces, or underscores.
*/
inline void SetCustomName(const char* value) { m_customNameHasBeenSet = true; m_customName.assign(value); }
/**
* Use Custom Group Name to specify a name for the output group. This value is
* displayed on the console and can make your job settings JSON more
* human-readable. It does not affect your outputs. Use up to twelve characters
* that are either letters, numbers, spaces, or underscores.
*/
inline OutputGroup& WithCustomName(const Aws::String& value) { SetCustomName(value); return *this;}
/**
* Use Custom Group Name to specify a name for the output group. This value is
* displayed on the console and can make your job settings JSON more
* human-readable. It does not affect your outputs. Use up to twelve characters
* that are either letters, numbers, spaces, or underscores.
*/
inline OutputGroup& WithCustomName(Aws::String&& value) { SetCustomName(std::move(value)); return *this;}
/**
* Use Custom Group Name to specify a name for the output group. This value is
* displayed on the console and can make your job settings JSON more
* human-readable. It does not affect your outputs. Use up to twelve characters
* that are either letters, numbers, spaces, or underscores.
*/
inline OutputGroup& WithCustomName(const char* value) { SetCustomName(value); return *this;}
/**
* Name of the output group
*/
inline const Aws::String& GetName() const{ return m_name; }
/**
* Name of the output group
*/
inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
/**
* Name of the output group
*/
inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
/**
* Name of the output group
*/
inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
/**
* Name of the output group
*/
inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
/**
* Name of the output group
*/
inline OutputGroup& WithName(const Aws::String& value) { SetName(value); return *this;}
/**
* Name of the output group
*/
inline OutputGroup& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
/**
* Name of the output group
*/
inline OutputGroup& WithName(const char* value) { SetName(value); return *this;}
/**
* Output Group settings, including type
*/
inline const OutputGroupSettings& GetOutputGroupSettings() const{ return m_outputGroupSettings; }
/**
* Output Group settings, including type
*/
inline bool OutputGroupSettingsHasBeenSet() const { return m_outputGroupSettingsHasBeenSet; }
/**
* Output Group settings, including type
*/
inline void SetOutputGroupSettings(const OutputGroupSettings& value) { m_outputGroupSettingsHasBeenSet = true; m_outputGroupSettings = value; }
/**
* Output Group settings, including type
*/
inline void SetOutputGroupSettings(OutputGroupSettings&& value) { m_outputGroupSettingsHasBeenSet = true; m_outputGroupSettings = std::move(value); }
/**
* Output Group settings, including type
*/
inline OutputGroup& WithOutputGroupSettings(const OutputGroupSettings& value) { SetOutputGroupSettings(value); return *this;}
/**
* Output Group settings, including type
*/
inline OutputGroup& WithOutputGroupSettings(OutputGroupSettings&& value) { SetOutputGroupSettings(std::move(value)); return *this;}
/**
* This object holds groups of encoding settings, one group of settings per output.
*/
inline const Aws::Vector