AWS SDK for C++

AWS SDK for C++ Version 1.11.717

Loading...
Searching...
No Matches
DescribeFeatureGroupRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/sagemaker/SageMakerRequest.h>
9#include <aws/sagemaker/SageMaker_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace SageMaker {
15namespace Model {
16
20 public:
21 AWS_SAGEMAKER_API DescribeFeatureGroupRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "DescribeFeatureGroup"; }
28
29 AWS_SAGEMAKER_API Aws::String SerializePayload() const override;
30
32
34
38 inline const Aws::String& GetFeatureGroupName() const { return m_featureGroupName; }
39 inline bool FeatureGroupNameHasBeenSet() const { return m_featureGroupNameHasBeenSet; }
40 template <typename FeatureGroupNameT = Aws::String>
41 void SetFeatureGroupName(FeatureGroupNameT&& value) {
42 m_featureGroupNameHasBeenSet = true;
43 m_featureGroupName = std::forward<FeatureGroupNameT>(value);
44 }
45 template <typename FeatureGroupNameT = Aws::String>
47 SetFeatureGroupName(std::forward<FeatureGroupNameT>(value));
48 return *this;
49 }
51
53
58 inline const Aws::String& GetNextToken() const { return m_nextToken; }
59 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
60 template <typename NextTokenT = Aws::String>
61 void SetNextToken(NextTokenT&& value) {
62 m_nextTokenHasBeenSet = true;
63 m_nextToken = std::forward<NextTokenT>(value);
64 }
65 template <typename NextTokenT = Aws::String>
67 SetNextToken(std::forward<NextTokenT>(value));
68 return *this;
69 }
71 private:
72 Aws::String m_featureGroupName;
73
74 Aws::String m_nextToken;
75 bool m_featureGroupNameHasBeenSet = false;
76 bool m_nextTokenHasBeenSet = false;
77};
78
79} // namespace Model
80} // namespace SageMaker
81} // namespace Aws
DescribeFeatureGroupRequest & WithNextToken(NextTokenT &&value)
DescribeFeatureGroupRequest & WithFeatureGroupName(FeatureGroupNameT &&value)
virtual const char * GetServiceRequestName() const override
AWS_SAGEMAKER_API DescribeFeatureGroupRequest()=default
AWS_SAGEMAKER_API Aws::String SerializePayload() const override
AWS_SAGEMAKER_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String