AWS SDK for C++

AWS SDK for C++ Version 1.11.752

Loading...
Searching...
No Matches
ListModelsRequest.h
1
6#pragma once
7#include <aws/nova-act/NovaActRequest.h>
8#include <aws/nova-act/NovaAct_EXPORTS.h>
9
10namespace Aws {
11namespace Http {
12class URI;
13} // namespace Http
14namespace NovaAct {
15namespace Model {
16
20 public:
21 AWS_NOVAACT_API ListModelsRequest() = 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 "ListModels"; }
28
29 AWS_NOVAACT_API Aws::String SerializePayload() const override;
30
31 AWS_NOVAACT_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
32
34
37 inline int GetClientCompatibilityVersion() const { return m_clientCompatibilityVersion; }
38 inline bool ClientCompatibilityVersionHasBeenSet() const { return m_clientCompatibilityVersionHasBeenSet; }
39 inline void SetClientCompatibilityVersion(int value) {
40 m_clientCompatibilityVersionHasBeenSet = true;
41 m_clientCompatibilityVersion = value;
42 }
45 return *this;
46 }
48 private:
49 int m_clientCompatibilityVersion{0};
50 bool m_clientCompatibilityVersionHasBeenSet = false;
51};
52
53} // namespace Model
54} // namespace NovaAct
55} // namespace Aws
virtual const char * GetServiceRequestName() const override
AWS_NOVAACT_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
AWS_NOVAACT_API Aws::String SerializePayload() const override
ListModelsRequest & WithClientCompatibilityVersion(int value)
AWS_NOVAACT_API ListModelsRequest()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String