AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
ListDecoderManifestsRequest.h
1
6#pragma once
7#include <aws/iotfleetwise/IoTFleetWise_EXPORTS.h>
8#include <aws/iotfleetwise/IoTFleetWiseRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/iotfleetwise/model/ListResponseScope.h>
11#include <utility>
12
13namespace Aws
14{
15namespace IoTFleetWise
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_IOTFLEETWISE_API ListDecoderManifestsRequest() = default;
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "ListDecoderManifests"; }
32
33 AWS_IOTFLEETWISE_API Aws::String SerializePayload() const override;
34
35 AWS_IOTFLEETWISE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
36
37
39
43 inline const Aws::String& GetModelManifestArn() const { return m_modelManifestArn; }
44 inline bool ModelManifestArnHasBeenSet() const { return m_modelManifestArnHasBeenSet; }
45 template<typename ModelManifestArnT = Aws::String>
46 void SetModelManifestArn(ModelManifestArnT&& value) { m_modelManifestArnHasBeenSet = true; m_modelManifestArn = std::forward<ModelManifestArnT>(value); }
47 template<typename ModelManifestArnT = Aws::String>
48 ListDecoderManifestsRequest& WithModelManifestArn(ModelManifestArnT&& value) { SetModelManifestArn(std::forward<ModelManifestArnT>(value)); return *this;}
50
52
60 inline const Aws::String& GetNextToken() const { return m_nextToken; }
61 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
62 template<typename NextTokenT = Aws::String>
63 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
64 template<typename NextTokenT = Aws::String>
65 ListDecoderManifestsRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
67
69
72 inline int GetMaxResults() const { return m_maxResults; }
73 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
74 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
75 inline ListDecoderManifestsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
77
79
84 inline ListResponseScope GetListResponseScope() const { return m_listResponseScope; }
85 inline bool ListResponseScopeHasBeenSet() const { return m_listResponseScopeHasBeenSet; }
86 inline void SetListResponseScope(ListResponseScope value) { m_listResponseScopeHasBeenSet = true; m_listResponseScope = value; }
89 private:
90
91 Aws::String m_modelManifestArn;
92 bool m_modelManifestArnHasBeenSet = false;
93
94 Aws::String m_nextToken;
95 bool m_nextTokenHasBeenSet = false;
96
97 int m_maxResults{0};
98 bool m_maxResultsHasBeenSet = false;
99
101 bool m_listResponseScopeHasBeenSet = false;
102 };
103
104} // namespace Model
105} // namespace IoTFleetWise
106} // namespace Aws
ListDecoderManifestsRequest & WithNextToken(NextTokenT &&value)
ListDecoderManifestsRequest & WithModelManifestArn(ModelManifestArnT &&value)
AWS_IOTFLEETWISE_API Aws::String SerializePayload() const override
ListDecoderManifestsRequest & WithListResponseScope(ListResponseScope value)
AWS_IOTFLEETWISE_API ListDecoderManifestsRequest()=default
AWS_IOTFLEETWISE_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