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-mediapackage/include/aws/mediapackage/model/DescribeChannelResult.h

213 lines
6.2 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/mediapackage/MediaPackage_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/mediapackage/model/HlsIngest.h>
#include <aws/core/utils/memory/stl/AWSMap.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace MediaPackage
{
namespace Model
{
class AWS_MEDIAPACKAGE_API DescribeChannelResult
{
public:
DescribeChannelResult();
DescribeChannelResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
DescribeChannelResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* The Amazon Resource Name (ARN) assigned to the Channel.
*/
inline const Aws::String& GetArn() const{ return m_arn; }
/**
* The Amazon Resource Name (ARN) assigned to the Channel.
*/
inline void SetArn(const Aws::String& value) { m_arn = value; }
/**
* The Amazon Resource Name (ARN) assigned to the Channel.
*/
inline void SetArn(Aws::String&& value) { m_arn = std::move(value); }
/**
* The Amazon Resource Name (ARN) assigned to the Channel.
*/
inline void SetArn(const char* value) { m_arn.assign(value); }
/**
* The Amazon Resource Name (ARN) assigned to the Channel.
*/
inline DescribeChannelResult& WithArn(const Aws::String& value) { SetArn(value); return *this;}
/**
* The Amazon Resource Name (ARN) assigned to the Channel.
*/
inline DescribeChannelResult& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;}
/**
* The Amazon Resource Name (ARN) assigned to the Channel.
*/
inline DescribeChannelResult& WithArn(const char* value) { SetArn(value); return *this;}
/**
* A short text description of the Channel.
*/
inline const Aws::String& GetDescription() const{ return m_description; }
/**
* A short text description of the Channel.
*/
inline void SetDescription(const Aws::String& value) { m_description = value; }
/**
* A short text description of the Channel.
*/
inline void SetDescription(Aws::String&& value) { m_description = std::move(value); }
/**
* A short text description of the Channel.
*/
inline void SetDescription(const char* value) { m_description.assign(value); }
/**
* A short text description of the Channel.
*/
inline DescribeChannelResult& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
/**
* A short text description of the Channel.
*/
inline DescribeChannelResult& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
/**
* A short text description of the Channel.
*/
inline DescribeChannelResult& WithDescription(const char* value) { SetDescription(value); return *this;}
inline const HlsIngest& GetHlsIngest() const{ return m_hlsIngest; }
inline void SetHlsIngest(const HlsIngest& value) { m_hlsIngest = value; }
inline void SetHlsIngest(HlsIngest&& value) { m_hlsIngest = std::move(value); }
inline DescribeChannelResult& WithHlsIngest(const HlsIngest& value) { SetHlsIngest(value); return *this;}
inline DescribeChannelResult& WithHlsIngest(HlsIngest&& value) { SetHlsIngest(std::move(value)); return *this;}
/**
* The ID of the Channel.
*/
inline const Aws::String& GetId() const{ return m_id; }
/**
* The ID of the Channel.
*/
inline void SetId(const Aws::String& value) { m_id = value; }
/**
* The ID of the Channel.
*/
inline void SetId(Aws::String&& value) { m_id = std::move(value); }
/**
* The ID of the Channel.
*/
inline void SetId(const char* value) { m_id.assign(value); }
/**
* The ID of the Channel.
*/
inline DescribeChannelResult& WithId(const Aws::String& value) { SetId(value); return *this;}
/**
* The ID of the Channel.
*/
inline DescribeChannelResult& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;}
/**
* The ID of the Channel.
*/
inline DescribeChannelResult& WithId(const char* value) { SetId(value); return *this;}
inline const Aws::Map<Aws::String, Aws::String>& GetTags() const{ return m_tags; }
inline void SetTags(const Aws::Map<Aws::String, Aws::String>& value) { m_tags = value; }
inline void SetTags(Aws::Map<Aws::String, Aws::String>&& value) { m_tags = std::move(value); }
inline DescribeChannelResult& WithTags(const Aws::Map<Aws::String, Aws::String>& value) { SetTags(value); return *this;}
inline DescribeChannelResult& WithTags(Aws::Map<Aws::String, Aws::String>&& value) { SetTags(std::move(value)); return *this;}
inline DescribeChannelResult& AddTags(const Aws::String& key, const Aws::String& value) { m_tags.emplace(key, value); return *this; }
inline DescribeChannelResult& AddTags(Aws::String&& key, const Aws::String& value) { m_tags.emplace(std::move(key), value); return *this; }
inline DescribeChannelResult& AddTags(const Aws::String& key, Aws::String&& value) { m_tags.emplace(key, std::move(value)); return *this; }
inline DescribeChannelResult& AddTags(Aws::String&& key, Aws::String&& value) { m_tags.emplace(std::move(key), std::move(value)); return *this; }
inline DescribeChannelResult& AddTags(const char* key, Aws::String&& value) { m_tags.emplace(key, std::move(value)); return *this; }
inline DescribeChannelResult& AddTags(Aws::String&& key, const char* value) { m_tags.emplace(std::move(key), value); return *this; }
inline DescribeChannelResult& AddTags(const char* key, const char* value) { m_tags.emplace(key, value); return *this; }
private:
Aws::String m_arn;
Aws::String m_description;
HlsIngest m_hlsIngest;
Aws::String m_id;
Aws::Map<Aws::String, Aws::String> m_tags;
};
} // namespace Model
} // namespace MediaPackage
} // namespace Aws