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/DescribeChannelRequest.h

84 lines
2.1 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/mediapackage/MediaPackageRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace MediaPackage
{
namespace Model
{
/**
*/
class AWS_MEDIAPACKAGE_API DescribeChannelRequest : public MediaPackageRequest
{
public:
DescribeChannelRequest();
// Service request name is the Operation name which will send this request out,
// each operation should has unique request name, so that we can get operation's name from this request.
// Note: this is not true for response, multiple operations may have the same response name,
// so we can not get operation's name from response.
inline virtual const char* GetServiceRequestName() const override { return "DescribeChannel"; }
Aws::String SerializePayload() const override;
/**
* The ID of a Channel.
*/
inline const Aws::String& GetId() const{ return m_id; }
/**
* The ID of a Channel.
*/
inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
/**
* The ID of a Channel.
*/
inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; }
/**
* The ID of a Channel.
*/
inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); }
/**
* The ID of a Channel.
*/
inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); }
/**
* The ID of a Channel.
*/
inline DescribeChannelRequest& WithId(const Aws::String& value) { SetId(value); return *this;}
/**
* The ID of a Channel.
*/
inline DescribeChannelRequest& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;}
/**
* The ID of a Channel.
*/
inline DescribeChannelRequest& WithId(const char* value) { SetId(value); return *this;}
private:
Aws::String m_id;
bool m_idHasBeenSet;
};
} // namespace Model
} // namespace MediaPackage
} // namespace Aws