This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-ivs/include/aws/ivs/model/ChannelNotBroadcasting.h

84 lines
2.4 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/ivs/IVS_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace IVS
{
namespace Model
{
class AWS_IVS_API ChannelNotBroadcasting
{
public:
ChannelNotBroadcasting();
ChannelNotBroadcasting(Aws::Utils::Json::JsonView jsonValue);
ChannelNotBroadcasting& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>The stream is offline for the given channel ARN.</p>
*/
inline const Aws::String& GetExceptionMessage() const{ return m_exceptionMessage; }
/**
* <p>The stream is offline for the given channel ARN.</p>
*/
inline bool ExceptionMessageHasBeenSet() const { return m_exceptionMessageHasBeenSet; }
/**
* <p>The stream is offline for the given channel ARN.</p>
*/
inline void SetExceptionMessage(const Aws::String& value) { m_exceptionMessageHasBeenSet = true; m_exceptionMessage = value; }
/**
* <p>The stream is offline for the given channel ARN.</p>
*/
inline void SetExceptionMessage(Aws::String&& value) { m_exceptionMessageHasBeenSet = true; m_exceptionMessage = std::move(value); }
/**
* <p>The stream is offline for the given channel ARN.</p>
*/
inline void SetExceptionMessage(const char* value) { m_exceptionMessageHasBeenSet = true; m_exceptionMessage.assign(value); }
/**
* <p>The stream is offline for the given channel ARN.</p>
*/
inline ChannelNotBroadcasting& WithExceptionMessage(const Aws::String& value) { SetExceptionMessage(value); return *this;}
/**
* <p>The stream is offline for the given channel ARN.</p>
*/
inline ChannelNotBroadcasting& WithExceptionMessage(Aws::String&& value) { SetExceptionMessage(std::move(value)); return *this;}
/**
* <p>The stream is offline for the given channel ARN.</p>
*/
inline ChannelNotBroadcasting& WithExceptionMessage(const char* value) { SetExceptionMessage(value); return *this;}
private:
Aws::String m_exceptionMessage;
bool m_exceptionMessageHasBeenSet;
};
} // namespace Model
} // namespace IVS
} // namespace Aws