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-medialive/include/aws/medialive/model/DescribeInputDeviceThumbnailRequest.h

125 lines
4.4 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/medialive/MediaLive_EXPORTS.h>
#include <aws/medialive/MediaLiveRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/medialive/model/AcceptHeader.h>
#include <utility>
namespace Aws
{
namespace MediaLive
{
namespace Model
{
/**
* Placeholder documentation for DescribeInputDeviceThumbnailRequest<p><h3>See
* Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeInputDeviceThumbnailRequest">AWS
* API Reference</a></p>
*/
class AWS_MEDIALIVE_API DescribeInputDeviceThumbnailRequest : public MediaLiveRequest
{
public:
DescribeInputDeviceThumbnailRequest();
// 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 "DescribeInputDeviceThumbnail"; }
Aws::String SerializePayload() const override;
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
/**
* The unique ID of this input device. For example, hd-123456789abcdef.
*/
inline const Aws::String& GetInputDeviceId() const{ return m_inputDeviceId; }
/**
* The unique ID of this input device. For example, hd-123456789abcdef.
*/
inline bool InputDeviceIdHasBeenSet() const { return m_inputDeviceIdHasBeenSet; }
/**
* The unique ID of this input device. For example, hd-123456789abcdef.
*/
inline void SetInputDeviceId(const Aws::String& value) { m_inputDeviceIdHasBeenSet = true; m_inputDeviceId = value; }
/**
* The unique ID of this input device. For example, hd-123456789abcdef.
*/
inline void SetInputDeviceId(Aws::String&& value) { m_inputDeviceIdHasBeenSet = true; m_inputDeviceId = std::move(value); }
/**
* The unique ID of this input device. For example, hd-123456789abcdef.
*/
inline void SetInputDeviceId(const char* value) { m_inputDeviceIdHasBeenSet = true; m_inputDeviceId.assign(value); }
/**
* The unique ID of this input device. For example, hd-123456789abcdef.
*/
inline DescribeInputDeviceThumbnailRequest& WithInputDeviceId(const Aws::String& value) { SetInputDeviceId(value); return *this;}
/**
* The unique ID of this input device. For example, hd-123456789abcdef.
*/
inline DescribeInputDeviceThumbnailRequest& WithInputDeviceId(Aws::String&& value) { SetInputDeviceId(std::move(value)); return *this;}
/**
* The unique ID of this input device. For example, hd-123456789abcdef.
*/
inline DescribeInputDeviceThumbnailRequest& WithInputDeviceId(const char* value) { SetInputDeviceId(value); return *this;}
/**
* The HTTP Accept header. Indicates the requested type for the thumbnail.
*/
inline const AcceptHeader& GetAccept() const{ return m_accept; }
/**
* The HTTP Accept header. Indicates the requested type for the thumbnail.
*/
inline bool AcceptHasBeenSet() const { return m_acceptHasBeenSet; }
/**
* The HTTP Accept header. Indicates the requested type for the thumbnail.
*/
inline void SetAccept(const AcceptHeader& value) { m_acceptHasBeenSet = true; m_accept = value; }
/**
* The HTTP Accept header. Indicates the requested type for the thumbnail.
*/
inline void SetAccept(AcceptHeader&& value) { m_acceptHasBeenSet = true; m_accept = std::move(value); }
/**
* The HTTP Accept header. Indicates the requested type for the thumbnail.
*/
inline DescribeInputDeviceThumbnailRequest& WithAccept(const AcceptHeader& value) { SetAccept(value); return *this;}
/**
* The HTTP Accept header. Indicates the requested type for the thumbnail.
*/
inline DescribeInputDeviceThumbnailRequest& WithAccept(AcceptHeader&& value) { SetAccept(std::move(value)); return *this;}
private:
Aws::String m_inputDeviceId;
bool m_inputDeviceIdHasBeenSet;
AcceptHeader m_accept;
bool m_acceptHasBeenSet;
};
} // namespace Model
} // namespace MediaLive
} // namespace Aws