/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include
#include
#include
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace ChimeSDKMediaPipelines
{
namespace Model
{
/**
* Defines the configuration for an ActiveSpeakerOnly
video
* tile.
See Also:
AWS
* API Reference
*/
class ActiveSpeakerOnlyConfiguration
{
public:
AWS_CHIMESDKMEDIAPIPELINES_API ActiveSpeakerOnlyConfiguration();
AWS_CHIMESDKMEDIAPIPELINES_API ActiveSpeakerOnlyConfiguration(Aws::Utils::Json::JsonView jsonValue);
AWS_CHIMESDKMEDIAPIPELINES_API ActiveSpeakerOnlyConfiguration& operator=(Aws::Utils::Json::JsonView jsonValue);
AWS_CHIMESDKMEDIAPIPELINES_API Aws::Utils::Json::JsonValue Jsonize() const;
/**
* The position of the ActiveSpeakerOnly
video tile.
*/
inline const ActiveSpeakerPosition& GetActiveSpeakerPosition() const{ return m_activeSpeakerPosition; }
/**
* The position of the ActiveSpeakerOnly
video tile.
*/
inline bool ActiveSpeakerPositionHasBeenSet() const { return m_activeSpeakerPositionHasBeenSet; }
/**
* The position of the ActiveSpeakerOnly
video tile.
*/
inline void SetActiveSpeakerPosition(const ActiveSpeakerPosition& value) { m_activeSpeakerPositionHasBeenSet = true; m_activeSpeakerPosition = value; }
/**
* The position of the ActiveSpeakerOnly
video tile.
*/
inline void SetActiveSpeakerPosition(ActiveSpeakerPosition&& value) { m_activeSpeakerPositionHasBeenSet = true; m_activeSpeakerPosition = std::move(value); }
/**
* The position of the ActiveSpeakerOnly
video tile.
*/
inline ActiveSpeakerOnlyConfiguration& WithActiveSpeakerPosition(const ActiveSpeakerPosition& value) { SetActiveSpeakerPosition(value); return *this;}
/**
* The position of the ActiveSpeakerOnly
video tile.
*/
inline ActiveSpeakerOnlyConfiguration& WithActiveSpeakerPosition(ActiveSpeakerPosition&& value) { SetActiveSpeakerPosition(std::move(value)); return *this;}
private:
ActiveSpeakerPosition m_activeSpeakerPosition;
bool m_activeSpeakerPositionHasBeenSet = false;
};
} // namespace Model
} // namespace ChimeSDKMediaPipelines
} // namespace Aws