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

84 lines
2.8 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/sagemaker-a2i-runtime/AugmentedAIRuntime_EXPORTS.h>
#include <aws/sagemaker-a2i-runtime/AugmentedAIRuntimeRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace AugmentedAIRuntime
{
namespace Model
{
/**
*/
class AWS_AUGMENTEDAIRUNTIME_API DescribeHumanLoopRequest : public AugmentedAIRuntimeRequest
{
public:
DescribeHumanLoopRequest();
// 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 "DescribeHumanLoop"; }
Aws::String SerializePayload() const override;
/**
* <p>The name of the human loop that you want information about.</p>
*/
inline const Aws::String& GetHumanLoopName() const{ return m_humanLoopName; }
/**
* <p>The name of the human loop that you want information about.</p>
*/
inline bool HumanLoopNameHasBeenSet() const { return m_humanLoopNameHasBeenSet; }
/**
* <p>The name of the human loop that you want information about.</p>
*/
inline void SetHumanLoopName(const Aws::String& value) { m_humanLoopNameHasBeenSet = true; m_humanLoopName = value; }
/**
* <p>The name of the human loop that you want information about.</p>
*/
inline void SetHumanLoopName(Aws::String&& value) { m_humanLoopNameHasBeenSet = true; m_humanLoopName = std::move(value); }
/**
* <p>The name of the human loop that you want information about.</p>
*/
inline void SetHumanLoopName(const char* value) { m_humanLoopNameHasBeenSet = true; m_humanLoopName.assign(value); }
/**
* <p>The name of the human loop that you want information about.</p>
*/
inline DescribeHumanLoopRequest& WithHumanLoopName(const Aws::String& value) { SetHumanLoopName(value); return *this;}
/**
* <p>The name of the human loop that you want information about.</p>
*/
inline DescribeHumanLoopRequest& WithHumanLoopName(Aws::String&& value) { SetHumanLoopName(std::move(value)); return *this;}
/**
* <p>The name of the human loop that you want information about.</p>
*/
inline DescribeHumanLoopRequest& WithHumanLoopName(const char* value) { SetHumanLoopName(value); return *this;}
private:
Aws::String m_humanLoopName;
bool m_humanLoopNameHasBeenSet;
};
} // namespace Model
} // namespace AugmentedAIRuntime
} // namespace Aws