AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeDhcpOptionsResponse.h
1
6#pragma once
7#include <aws/ec2/EC2_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/ec2/model/ResponseMetadata.h>
11#include <aws/ec2/model/DhcpOptions.h>
12#include <utility>
13
14namespace Aws
15{
16template<typename RESULT_TYPE>
17class AmazonWebServiceResult;
18
19namespace Utils
20{
21namespace Xml
22{
23 class XmlDocument;
24} // namespace Xml
25} // namespace Utils
26namespace EC2
27{
28namespace Model
29{
31 {
32 public:
36
37
39
43 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
44 inline void SetNextToken(const Aws::String& value) { m_nextToken = value; }
45 inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); }
46 inline void SetNextToken(const char* value) { m_nextToken.assign(value); }
47 inline DescribeDhcpOptionsResponse& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
48 inline DescribeDhcpOptionsResponse& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
49 inline DescribeDhcpOptionsResponse& WithNextToken(const char* value) { SetNextToken(value); return *this;}
51
53
56 inline const Aws::Vector<DhcpOptions>& GetDhcpOptions() const{ return m_dhcpOptions; }
57 inline void SetDhcpOptions(const Aws::Vector<DhcpOptions>& value) { m_dhcpOptions = value; }
58 inline void SetDhcpOptions(Aws::Vector<DhcpOptions>&& value) { m_dhcpOptions = std::move(value); }
60 inline DescribeDhcpOptionsResponse& WithDhcpOptions(Aws::Vector<DhcpOptions>&& value) { SetDhcpOptions(std::move(value)); return *this;}
61 inline DescribeDhcpOptionsResponse& AddDhcpOptions(const DhcpOptions& value) { m_dhcpOptions.push_back(value); return *this; }
62 inline DescribeDhcpOptionsResponse& AddDhcpOptions(DhcpOptions&& value) { m_dhcpOptions.push_back(std::move(value)); return *this; }
64
66
67 inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; }
68 inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; }
69 inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); }
71 inline DescribeDhcpOptionsResponse& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;}
73 private:
74
75 Aws::String m_nextToken;
76
77 Aws::Vector<DhcpOptions> m_dhcpOptions;
78
79 ResponseMetadata m_responseMetadata;
80 };
81
82} // namespace Model
83} // namespace EC2
84} // namespace Aws
DescribeDhcpOptionsResponse & WithNextToken(const Aws::String &value)
DescribeDhcpOptionsResponse & WithNextToken(Aws::String &&value)
DescribeDhcpOptionsResponse & WithResponseMetadata(ResponseMetadata &&value)
void SetResponseMetadata(const ResponseMetadata &value)
DescribeDhcpOptionsResponse & AddDhcpOptions(const DhcpOptions &value)
const Aws::Vector< DhcpOptions > & GetDhcpOptions() const
DescribeDhcpOptionsResponse & WithNextToken(const char *value)
AWS_EC2_API DescribeDhcpOptionsResponse & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
void SetDhcpOptions(Aws::Vector< DhcpOptions > &&value)
DescribeDhcpOptionsResponse & WithDhcpOptions(const Aws::Vector< DhcpOptions > &value)
DescribeDhcpOptionsResponse & WithResponseMetadata(const ResponseMetadata &value)
DescribeDhcpOptionsResponse & WithDhcpOptions(Aws::Vector< DhcpOptions > &&value)
DescribeDhcpOptionsResponse & AddDhcpOptions(DhcpOptions &&value)
AWS_EC2_API DescribeDhcpOptionsResponse(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
void SetDhcpOptions(const Aws::Vector< DhcpOptions > &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Xml::XmlDocument XmlDocument