AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeEndpointRequest.h
1
6#pragma once
7#include <aws/iot/IoT_EXPORTS.h>
8#include <aws/iot/IoTRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Http
15{
16 class URI;
17} //namespace Http
18namespace IoT
19{
20namespace Model
21{
22
29 {
30 public:
32
33 // Service request name is the Operation name which will send this request out,
34 // each operation should has unique request name, so that we can get operation's name from this request.
35 // Note: this is not true for response, multiple operations may have the same response name,
36 // so we can not get operation's name from response.
37 inline virtual const char* GetServiceRequestName() const override { return "DescribeEndpoint"; }
38
39 AWS_IOT_API Aws::String SerializePayload() const override;
40
41 AWS_IOT_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
42
43
45
57 inline const Aws::String& GetEndpointType() const{ return m_endpointType; }
58 inline bool EndpointTypeHasBeenSet() const { return m_endpointTypeHasBeenSet; }
59 inline void SetEndpointType(const Aws::String& value) { m_endpointTypeHasBeenSet = true; m_endpointType = value; }
60 inline void SetEndpointType(Aws::String&& value) { m_endpointTypeHasBeenSet = true; m_endpointType = std::move(value); }
61 inline void SetEndpointType(const char* value) { m_endpointTypeHasBeenSet = true; m_endpointType.assign(value); }
62 inline DescribeEndpointRequest& WithEndpointType(const Aws::String& value) { SetEndpointType(value); return *this;}
63 inline DescribeEndpointRequest& WithEndpointType(Aws::String&& value) { SetEndpointType(std::move(value)); return *this;}
64 inline DescribeEndpointRequest& WithEndpointType(const char* value) { SetEndpointType(value); return *this;}
66 private:
67
68 Aws::String m_endpointType;
69 bool m_endpointTypeHasBeenSet = false;
70 };
71
72} // namespace Model
73} // namespace IoT
74} // namespace Aws
AWS_IOT_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
AWS_IOT_API Aws::String SerializePayload() const override
virtual const char * GetServiceRequestName() const override
void SetEndpointType(const Aws::String &value)
DescribeEndpointRequest & WithEndpointType(Aws::String &&value)
DescribeEndpointRequest & WithEndpointType(const Aws::String &value)
DescribeEndpointRequest & WithEndpointType(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String