AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
InstanceExportDetails.h
1
6#pragma once
7#include <aws/ec2/EC2_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/ec2/model/ExportEnvironment.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Utils
16{
17namespace Xml
18{
19 class XmlNode;
20} // namespace Xml
21} // namespace Utils
22namespace EC2
23{
24namespace Model
25{
26
33 {
34 public:
35 AWS_EC2_API InstanceExportDetails() = default;
38
39 AWS_EC2_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
40 AWS_EC2_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
41
42
44
47 inline const Aws::String& GetInstanceId() const { return m_instanceId; }
48 inline bool InstanceIdHasBeenSet() const { return m_instanceIdHasBeenSet; }
49 template<typename InstanceIdT = Aws::String>
50 void SetInstanceId(InstanceIdT&& value) { m_instanceIdHasBeenSet = true; m_instanceId = std::forward<InstanceIdT>(value); }
51 template<typename InstanceIdT = Aws::String>
52 InstanceExportDetails& WithInstanceId(InstanceIdT&& value) { SetInstanceId(std::forward<InstanceIdT>(value)); return *this;}
54
56
59 inline ExportEnvironment GetTargetEnvironment() const { return m_targetEnvironment; }
60 inline bool TargetEnvironmentHasBeenSet() const { return m_targetEnvironmentHasBeenSet; }
61 inline void SetTargetEnvironment(ExportEnvironment value) { m_targetEnvironmentHasBeenSet = true; m_targetEnvironment = value; }
64 private:
65
66 Aws::String m_instanceId;
67 bool m_instanceIdHasBeenSet = false;
68
70 bool m_targetEnvironmentHasBeenSet = false;
71 };
72
73} // namespace Model
74} // namespace EC2
75} // namespace Aws
AWS_EC2_API InstanceExportDetails(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_EC2_API InstanceExportDetails & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
void SetTargetEnvironment(ExportEnvironment value)
InstanceExportDetails & WithTargetEnvironment(ExportEnvironment value)
AWS_EC2_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
AWS_EC2_API InstanceExportDetails()=default
AWS_EC2_API void OutputToStream(Aws::OStream &oStream, const char *location) const
InstanceExportDetails & WithInstanceId(InstanceIdT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::basic_ostream< char, std::char_traits< char > > OStream