AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetResourceLogLevelRequest.h
1
6#pragma once
7#include <aws/iotwireless/IoTWireless_EXPORTS.h>
8#include <aws/iotwireless/IoTWirelessRequest.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 IoTWireless
19{
20namespace Model
21{
22
26 {
27 public:
28 AWS_IOTWIRELESS_API GetResourceLogLevelRequest();
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "GetResourceLogLevel"; }
35
36 AWS_IOTWIRELESS_API Aws::String SerializePayload() const override;
37
38 AWS_IOTWIRELESS_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
39
40
42
43 inline const Aws::String& GetResourceIdentifier() const{ return m_resourceIdentifier; }
44 inline bool ResourceIdentifierHasBeenSet() const { return m_resourceIdentifierHasBeenSet; }
45 inline void SetResourceIdentifier(const Aws::String& value) { m_resourceIdentifierHasBeenSet = true; m_resourceIdentifier = value; }
46 inline void SetResourceIdentifier(Aws::String&& value) { m_resourceIdentifierHasBeenSet = true; m_resourceIdentifier = std::move(value); }
47 inline void SetResourceIdentifier(const char* value) { m_resourceIdentifierHasBeenSet = true; m_resourceIdentifier.assign(value); }
49 inline GetResourceLogLevelRequest& WithResourceIdentifier(Aws::String&& value) { SetResourceIdentifier(std::move(value)); return *this;}
50 inline GetResourceLogLevelRequest& WithResourceIdentifier(const char* value) { SetResourceIdentifier(value); return *this;}
52
54
58 inline const Aws::String& GetResourceType() const{ return m_resourceType; }
59 inline bool ResourceTypeHasBeenSet() const { return m_resourceTypeHasBeenSet; }
60 inline void SetResourceType(const Aws::String& value) { m_resourceTypeHasBeenSet = true; m_resourceType = value; }
61 inline void SetResourceType(Aws::String&& value) { m_resourceTypeHasBeenSet = true; m_resourceType = std::move(value); }
62 inline void SetResourceType(const char* value) { m_resourceTypeHasBeenSet = true; m_resourceType.assign(value); }
63 inline GetResourceLogLevelRequest& WithResourceType(const Aws::String& value) { SetResourceType(value); return *this;}
64 inline GetResourceLogLevelRequest& WithResourceType(Aws::String&& value) { SetResourceType(std::move(value)); return *this;}
65 inline GetResourceLogLevelRequest& WithResourceType(const char* value) { SetResourceType(value); return *this;}
67 private:
68
69 Aws::String m_resourceIdentifier;
70 bool m_resourceIdentifierHasBeenSet = false;
71
72 Aws::String m_resourceType;
73 bool m_resourceTypeHasBeenSet = false;
74 };
75
76} // namespace Model
77} // namespace IoTWireless
78} // namespace Aws
GetResourceLogLevelRequest & WithResourceType(const char *value)
GetResourceLogLevelRequest & WithResourceIdentifier(const char *value)
GetResourceLogLevelRequest & WithResourceIdentifier(const Aws::String &value)
AWS_IOTWIRELESS_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
GetResourceLogLevelRequest & WithResourceIdentifier(Aws::String &&value)
AWS_IOTWIRELESS_API Aws::String SerializePayload() const override
GetResourceLogLevelRequest & WithResourceType(const Aws::String &value)
GetResourceLogLevelRequest & WithResourceType(Aws::String &&value)
virtual const char * GetServiceRequestName() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String