AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CopySnapshotResponse.h
1
6#pragma once
7#include <aws/ec2/EC2_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/ec2/model/ResponseMetadata.h>
11#include <aws/ec2/model/Tag.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:
33 AWS_EC2_API CopySnapshotResponse();
36
37
39
42 inline const Aws::Vector<Tag>& GetTags() const{ return m_tags; }
43 inline void SetTags(const Aws::Vector<Tag>& value) { m_tags = value; }
44 inline void SetTags(Aws::Vector<Tag>&& value) { m_tags = std::move(value); }
45 inline CopySnapshotResponse& WithTags(const Aws::Vector<Tag>& value) { SetTags(value); return *this;}
46 inline CopySnapshotResponse& WithTags(Aws::Vector<Tag>&& value) { SetTags(std::move(value)); return *this;}
47 inline CopySnapshotResponse& AddTags(const Tag& value) { m_tags.push_back(value); return *this; }
48 inline CopySnapshotResponse& AddTags(Tag&& value) { m_tags.push_back(std::move(value)); return *this; }
50
52
55 inline const Aws::String& GetSnapshotId() const{ return m_snapshotId; }
56 inline void SetSnapshotId(const Aws::String& value) { m_snapshotId = value; }
57 inline void SetSnapshotId(Aws::String&& value) { m_snapshotId = std::move(value); }
58 inline void SetSnapshotId(const char* value) { m_snapshotId.assign(value); }
59 inline CopySnapshotResponse& WithSnapshotId(const Aws::String& value) { SetSnapshotId(value); return *this;}
60 inline CopySnapshotResponse& WithSnapshotId(Aws::String&& value) { SetSnapshotId(std::move(value)); return *this;}
61 inline CopySnapshotResponse& WithSnapshotId(const char* value) { SetSnapshotId(value); return *this;}
63
65
66 inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; }
67 inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; }
68 inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); }
70 inline CopySnapshotResponse& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;}
72 private:
73
74 Aws::Vector<Tag> m_tags;
75
76 Aws::String m_snapshotId;
77
78 ResponseMetadata m_responseMetadata;
79 };
80
81} // namespace Model
82} // namespace EC2
83} // namespace Aws
AWS_EC2_API CopySnapshotResponse & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
CopySnapshotResponse & WithTags(Aws::Vector< Tag > &&value)
CopySnapshotResponse & AddTags(const Tag &value)
AWS_EC2_API CopySnapshotResponse(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
const ResponseMetadata & GetResponseMetadata() const
const Aws::String & GetSnapshotId() const
CopySnapshotResponse & WithResponseMetadata(ResponseMetadata &&value)
CopySnapshotResponse & WithSnapshotId(const char *value)
const Aws::Vector< Tag > & GetTags() const
CopySnapshotResponse & WithSnapshotId(Aws::String &&value)
void SetResponseMetadata(const ResponseMetadata &value)
void SetTags(const Aws::Vector< Tag > &value)
void SetSnapshotId(const Aws::String &value)
void SetTags(Aws::Vector< Tag > &&value)
CopySnapshotResponse & AddTags(Tag &&value)
CopySnapshotResponse & WithTags(const Aws::Vector< Tag > &value)
void SetResponseMetadata(ResponseMetadata &&value)
CopySnapshotResponse & WithSnapshotId(const Aws::String &value)
CopySnapshotResponse & WithResponseMetadata(const ResponseMetadata &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