AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
DescribeResourceCollectionHealthRequest.h
1
6#pragma once
7#include <aws/devops-guru/DevOpsGuru_EXPORTS.h>
8#include <aws/devops-guru/DevOpsGuruRequest.h>
9#include <aws/devops-guru/model/ResourceCollectionType.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Http
16{
17 class URI;
18} //namespace Http
19namespace DevOpsGuru
20{
21namespace Model
22{
23
27 {
28 public:
29 AWS_DEVOPSGURU_API DescribeResourceCollectionHealthRequest() = default;
30
31 // Service request name is the Operation name which will send this request out,
32 // each operation should has unique request name, so that we can get operation's name from this request.
33 // Note: this is not true for response, multiple operations may have the same response name,
34 // so we can not get operation's name from response.
35 inline virtual const char* GetServiceRequestName() const override { return "DescribeResourceCollectionHealth"; }
36
37 AWS_DEVOPSGURU_API Aws::String SerializePayload() const override;
38
39 AWS_DEVOPSGURU_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
40
41
43
53 inline ResourceCollectionType GetResourceCollectionType() const { return m_resourceCollectionType; }
54 inline bool ResourceCollectionTypeHasBeenSet() const { return m_resourceCollectionTypeHasBeenSet; }
55 inline void SetResourceCollectionType(ResourceCollectionType value) { m_resourceCollectionTypeHasBeenSet = true; m_resourceCollectionType = value; }
58
60
64 inline const Aws::String& GetNextToken() const { return m_nextToken; }
65 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
66 template<typename NextTokenT = Aws::String>
67 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
68 template<typename NextTokenT = Aws::String>
69 DescribeResourceCollectionHealthRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
71 private:
72
74 bool m_resourceCollectionTypeHasBeenSet = false;
75
76 Aws::String m_nextToken;
77 bool m_nextTokenHasBeenSet = false;
78 };
79
80} // namespace Model
81} // namespace DevOpsGuru
82} // namespace Aws
DescribeResourceCollectionHealthRequest & WithNextToken(NextTokenT &&value)
DescribeResourceCollectionHealthRequest & WithResourceCollectionType(ResourceCollectionType value)
AWS_DEVOPSGURU_API Aws::String SerializePayload() const override
AWS_DEVOPSGURU_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String