/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#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 AWS_MEDIACONVERT_API OutputGroup
{
public:
OutputGroup();
OutputGroup(Aws::Utils::Json::JsonView jsonValue);
OutputGroup& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* Use Custom Group Name (CustomName) 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 (CustomName) 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 (CustomName) 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 (CustomName) 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 (CustomName) 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 (CustomName) 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 (CustomName) 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 (CustomName) 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