AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeLaunchConfigurationTemplatesRequest.h
1
6#pragma once
7#include <aws/drs/Drs_EXPORTS.h>
8#include <aws/drs/DrsRequest.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 drs
16{
17namespace Model
18{
19
23 {
24 public:
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 "DescribeLaunchConfigurationTemplates"; }
32
33 AWS_DRS_API Aws::String SerializePayload() const override;
34
35
37
41 inline const Aws::Vector<Aws::String>& GetLaunchConfigurationTemplateIDs() const { return m_launchConfigurationTemplateIDs; }
42 inline bool LaunchConfigurationTemplateIDsHasBeenSet() const { return m_launchConfigurationTemplateIDsHasBeenSet; }
43 template<typename LaunchConfigurationTemplateIDsT = Aws::Vector<Aws::String>>
44 void SetLaunchConfigurationTemplateIDs(LaunchConfigurationTemplateIDsT&& value) { m_launchConfigurationTemplateIDsHasBeenSet = true; m_launchConfigurationTemplateIDs = std::forward<LaunchConfigurationTemplateIDsT>(value); }
45 template<typename LaunchConfigurationTemplateIDsT = Aws::Vector<Aws::String>>
46 DescribeLaunchConfigurationTemplatesRequest& WithLaunchConfigurationTemplateIDs(LaunchConfigurationTemplateIDsT&& value) { SetLaunchConfigurationTemplateIDs(std::forward<LaunchConfigurationTemplateIDsT>(value)); return *this;}
47 template<typename LaunchConfigurationTemplateIDsT = Aws::String>
48 DescribeLaunchConfigurationTemplatesRequest& AddLaunchConfigurationTemplateIDs(LaunchConfigurationTemplateIDsT&& value) { m_launchConfigurationTemplateIDsHasBeenSet = true; m_launchConfigurationTemplateIDs.emplace_back(std::forward<LaunchConfigurationTemplateIDsT>(value)); return *this; }
50
52
55 inline int GetMaxResults() const { return m_maxResults; }
56 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
57 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
60
62
65 inline const Aws::String& GetNextToken() const { return m_nextToken; }
66 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
67 template<typename NextTokenT = Aws::String>
68 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
69 template<typename NextTokenT = Aws::String>
70 DescribeLaunchConfigurationTemplatesRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
72 private:
73
74 Aws::Vector<Aws::String> m_launchConfigurationTemplateIDs;
75 bool m_launchConfigurationTemplateIDsHasBeenSet = false;
76
77 int m_maxResults{0};
78 bool m_maxResultsHasBeenSet = false;
79
80 Aws::String m_nextToken;
81 bool m_nextTokenHasBeenSet = false;
82 };
83
84} // namespace Model
85} // namespace drs
86} // namespace Aws
AWS_DRS_API Aws::String SerializePayload() const override
DescribeLaunchConfigurationTemplatesRequest & AddLaunchConfigurationTemplateIDs(LaunchConfigurationTemplateIDsT &&value)
DescribeLaunchConfigurationTemplatesRequest & WithNextToken(NextTokenT &&value)
DescribeLaunchConfigurationTemplatesRequest & WithLaunchConfigurationTemplateIDs(LaunchConfigurationTemplateIDsT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector