AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
DescribeDatasetRequest.h
1
6#pragma once
7#include <aws/lookoutvision/LookoutforVision_EXPORTS.h>
8#include <aws/lookoutvision/LookoutforVisionRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace LookoutforVision
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_LOOKOUTFORVISION_API DescribeDatasetRequest() = default;
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "DescribeDataset"; }
31
32 AWS_LOOKOUTFORVISION_API Aws::String SerializePayload() const override;
33
34
36
40 inline const Aws::String& GetProjectName() const { return m_projectName; }
41 inline bool ProjectNameHasBeenSet() const { return m_projectNameHasBeenSet; }
42 template<typename ProjectNameT = Aws::String>
43 void SetProjectName(ProjectNameT&& value) { m_projectNameHasBeenSet = true; m_projectName = std::forward<ProjectNameT>(value); }
44 template<typename ProjectNameT = Aws::String>
45 DescribeDatasetRequest& WithProjectName(ProjectNameT&& value) { SetProjectName(std::forward<ProjectNameT>(value)); return *this;}
47
49
54 inline const Aws::String& GetDatasetType() const { return m_datasetType; }
55 inline bool DatasetTypeHasBeenSet() const { return m_datasetTypeHasBeenSet; }
56 template<typename DatasetTypeT = Aws::String>
57 void SetDatasetType(DatasetTypeT&& value) { m_datasetTypeHasBeenSet = true; m_datasetType = std::forward<DatasetTypeT>(value); }
58 template<typename DatasetTypeT = Aws::String>
59 DescribeDatasetRequest& WithDatasetType(DatasetTypeT&& value) { SetDatasetType(std::forward<DatasetTypeT>(value)); return *this;}
61 private:
62
63 Aws::String m_projectName;
64 bool m_projectNameHasBeenSet = false;
65
66 Aws::String m_datasetType;
67 bool m_datasetTypeHasBeenSet = false;
68 };
69
70} // namespace Model
71} // namespace LookoutforVision
72} // namespace Aws
virtual const char * GetServiceRequestName() const override
AWS_LOOKOUTFORVISION_API Aws::String SerializePayload() const override
DescribeDatasetRequest & WithProjectName(ProjectNameT &&value)
DescribeDatasetRequest & WithDatasetType(DatasetTypeT &&value)
AWS_LOOKOUTFORVISION_API DescribeDatasetRequest()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String