AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeActionTargetsRequest.h
1
6#pragma once
7#include <aws/securityhub/SecurityHub_EXPORTS.h>
8#include <aws/securityhub/SecurityHubRequest.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <utility>
12
13namespace Aws
14{
15namespace SecurityHub
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_SECURITYHUB_API DescribeActionTargetsRequest() = 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 "DescribeActionTargets"; }
32
33 AWS_SECURITYHUB_API Aws::String SerializePayload() const override;
34
35
37
41 inline const Aws::Vector<Aws::String>& GetActionTargetArns() const { return m_actionTargetArns; }
42 inline bool ActionTargetArnsHasBeenSet() const { return m_actionTargetArnsHasBeenSet; }
43 template<typename ActionTargetArnsT = Aws::Vector<Aws::String>>
44 void SetActionTargetArns(ActionTargetArnsT&& value) { m_actionTargetArnsHasBeenSet = true; m_actionTargetArns = std::forward<ActionTargetArnsT>(value); }
45 template<typename ActionTargetArnsT = Aws::Vector<Aws::String>>
46 DescribeActionTargetsRequest& WithActionTargetArns(ActionTargetArnsT&& value) { SetActionTargetArns(std::forward<ActionTargetArnsT>(value)); return *this;}
47 template<typename ActionTargetArnsT = Aws::String>
48 DescribeActionTargetsRequest& AddActionTargetArns(ActionTargetArnsT&& value) { m_actionTargetArnsHasBeenSet = true; m_actionTargetArns.emplace_back(std::forward<ActionTargetArnsT>(value)); return *this; }
50
52
59 inline const Aws::String& GetNextToken() const { return m_nextToken; }
60 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
61 template<typename NextTokenT = Aws::String>
62 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
63 template<typename NextTokenT = Aws::String>
64 DescribeActionTargetsRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
66
68
71 inline int GetMaxResults() const { return m_maxResults; }
72 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
73 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
74 inline DescribeActionTargetsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
76 private:
77
78 Aws::Vector<Aws::String> m_actionTargetArns;
79 bool m_actionTargetArnsHasBeenSet = false;
80
81 Aws::String m_nextToken;
82 bool m_nextTokenHasBeenSet = false;
83
84 int m_maxResults{0};
85 bool m_maxResultsHasBeenSet = false;
86 };
87
88} // namespace Model
89} // namespace SecurityHub
90} // namespace Aws
AWS_SECURITYHUB_API DescribeActionTargetsRequest()=default
DescribeActionTargetsRequest & WithActionTargetArns(ActionTargetArnsT &&value)
const Aws::Vector< Aws::String > & GetActionTargetArns() const
DescribeActionTargetsRequest & WithNextToken(NextTokenT &&value)
AWS_SECURITYHUB_API Aws::String SerializePayload() const override
DescribeActionTargetsRequest & AddActionTargetArns(ActionTargetArnsT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector