AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
DescribeAgentVersionsRequest.h
1
6#pragma once
7#include <aws/opsworks/OpsWorks_EXPORTS.h>
8#include <aws/opsworks/OpsWorksRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/opsworks/model/StackConfigurationManager.h>
11#include <utility>
12
13namespace Aws
14{
15namespace OpsWorks
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_OPSWORKS_API DescribeAgentVersionsRequest() = 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 "DescribeAgentVersions"; }
32
33 AWS_OPSWORKS_API Aws::String SerializePayload() const override;
34
36
37
39
42 inline const Aws::String& GetStackId() const { return m_stackId; }
43 inline bool StackIdHasBeenSet() const { return m_stackIdHasBeenSet; }
44 template<typename StackIdT = Aws::String>
45 void SetStackId(StackIdT&& value) { m_stackIdHasBeenSet = true; m_stackId = std::forward<StackIdT>(value); }
46 template<typename StackIdT = Aws::String>
47 DescribeAgentVersionsRequest& WithStackId(StackIdT&& value) { SetStackId(std::forward<StackIdT>(value)); return *this;}
49
51
54 inline const StackConfigurationManager& GetConfigurationManager() const { return m_configurationManager; }
55 inline bool ConfigurationManagerHasBeenSet() const { return m_configurationManagerHasBeenSet; }
56 template<typename ConfigurationManagerT = StackConfigurationManager>
57 void SetConfigurationManager(ConfigurationManagerT&& value) { m_configurationManagerHasBeenSet = true; m_configurationManager = std::forward<ConfigurationManagerT>(value); }
58 template<typename ConfigurationManagerT = StackConfigurationManager>
59 DescribeAgentVersionsRequest& WithConfigurationManager(ConfigurationManagerT&& value) { SetConfigurationManager(std::forward<ConfigurationManagerT>(value)); return *this;}
61 private:
62
63 Aws::String m_stackId;
64 bool m_stackIdHasBeenSet = false;
65
66 StackConfigurationManager m_configurationManager;
67 bool m_configurationManagerHasBeenSet = false;
68 };
69
70} // namespace Model
71} // namespace OpsWorks
72} // namespace Aws
AWS_OPSWORKS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DescribeAgentVersionsRequest & WithConfigurationManager(ConfigurationManagerT &&value)
const StackConfigurationManager & GetConfigurationManager() const
DescribeAgentVersionsRequest & WithStackId(StackIdT &&value)
AWS_OPSWORKS_API DescribeAgentVersionsRequest()=default
AWS_OPSWORKS_API Aws::String SerializePayload() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String