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-sagemaker/include/aws/sagemaker/model/DescribeHumanTaskUiRequest.h

94 lines
3.2 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/sagemaker/SageMaker_EXPORTS.h>
#include <aws/sagemaker/SageMakerRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace SageMaker
{
namespace Model
{
/**
*/
class AWS_SAGEMAKER_API DescribeHumanTaskUiRequest : public SageMakerRequest
{
public:
DescribeHumanTaskUiRequest();
// 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 "DescribeHumanTaskUi"; }
Aws::String SerializePayload() const override;
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
/**
* <p>The name of the human task user interface (worker task template) you want
* information about.</p>
*/
inline const Aws::String& GetHumanTaskUiName() const{ return m_humanTaskUiName; }
/**
* <p>The name of the human task user interface (worker task template) you want
* information about.</p>
*/
inline bool HumanTaskUiNameHasBeenSet() const { return m_humanTaskUiNameHasBeenSet; }
/**
* <p>The name of the human task user interface (worker task template) you want
* information about.</p>
*/
inline void SetHumanTaskUiName(const Aws::String& value) { m_humanTaskUiNameHasBeenSet = true; m_humanTaskUiName = value; }
/**
* <p>The name of the human task user interface (worker task template) you want
* information about.</p>
*/
inline void SetHumanTaskUiName(Aws::String&& value) { m_humanTaskUiNameHasBeenSet = true; m_humanTaskUiName = std::move(value); }
/**
* <p>The name of the human task user interface (worker task template) you want
* information about.</p>
*/
inline void SetHumanTaskUiName(const char* value) { m_humanTaskUiNameHasBeenSet = true; m_humanTaskUiName.assign(value); }
/**
* <p>The name of the human task user interface (worker task template) you want
* information about.</p>
*/
inline DescribeHumanTaskUiRequest& WithHumanTaskUiName(const Aws::String& value) { SetHumanTaskUiName(value); return *this;}
/**
* <p>The name of the human task user interface (worker task template) you want
* information about.</p>
*/
inline DescribeHumanTaskUiRequest& WithHumanTaskUiName(Aws::String&& value) { SetHumanTaskUiName(std::move(value)); return *this;}
/**
* <p>The name of the human task user interface (worker task template) you want
* information about.</p>
*/
inline DescribeHumanTaskUiRequest& WithHumanTaskUiName(const char* value) { SetHumanTaskUiName(value); return *this;}
private:
Aws::String m_humanTaskUiName;
bool m_humanTaskUiNameHasBeenSet;
};
} // namespace Model
} // namespace SageMaker
} // namespace Aws