AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CreateSecurityGroupResponse.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/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:
36
37
39
42 inline const Aws::String& GetGroupId() const{ return m_groupId; }
43 inline void SetGroupId(const Aws::String& value) { m_groupId = value; }
44 inline void SetGroupId(Aws::String&& value) { m_groupId = std::move(value); }
45 inline void SetGroupId(const char* value) { m_groupId.assign(value); }
46 inline CreateSecurityGroupResponse& WithGroupId(const Aws::String& value) { SetGroupId(value); return *this;}
47 inline CreateSecurityGroupResponse& WithGroupId(Aws::String&& value) { SetGroupId(std::move(value)); return *this;}
48 inline CreateSecurityGroupResponse& WithGroupId(const char* value) { SetGroupId(value); return *this;}
50
52
55 inline const Aws::Vector<Tag>& GetTags() const{ return m_tags; }
56 inline void SetTags(const Aws::Vector<Tag>& value) { m_tags = value; }
57 inline void SetTags(Aws::Vector<Tag>&& value) { m_tags = std::move(value); }
58 inline CreateSecurityGroupResponse& WithTags(const Aws::Vector<Tag>& value) { SetTags(value); return *this;}
59 inline CreateSecurityGroupResponse& WithTags(Aws::Vector<Tag>&& value) { SetTags(std::move(value)); return *this;}
60 inline CreateSecurityGroupResponse& AddTags(const Tag& value) { m_tags.push_back(value); return *this; }
61 inline CreateSecurityGroupResponse& AddTags(Tag&& value) { m_tags.push_back(std::move(value)); return *this; }
63
65
68 inline const Aws::String& GetSecurityGroupArn() const{ return m_securityGroupArn; }
69 inline void SetSecurityGroupArn(const Aws::String& value) { m_securityGroupArn = value; }
70 inline void SetSecurityGroupArn(Aws::String&& value) { m_securityGroupArn = std::move(value); }
71 inline void SetSecurityGroupArn(const char* value) { m_securityGroupArn.assign(value); }
73 inline CreateSecurityGroupResponse& WithSecurityGroupArn(Aws::String&& value) { SetSecurityGroupArn(std::move(value)); return *this;}
74 inline CreateSecurityGroupResponse& WithSecurityGroupArn(const char* value) { SetSecurityGroupArn(value); return *this;}
76
78
79 inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; }
80 inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; }
81 inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); }
83 inline CreateSecurityGroupResponse& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;}
85 private:
86
87 Aws::String m_groupId;
88
89 Aws::Vector<Tag> m_tags;
90
91 Aws::String m_securityGroupArn;
92
93 ResponseMetadata m_responseMetadata;
94 };
95
96} // namespace Model
97} // namespace EC2
98} // namespace Aws
CreateSecurityGroupResponse & WithResponseMetadata(const ResponseMetadata &value)
void SetResponseMetadata(const ResponseMetadata &value)
CreateSecurityGroupResponse & WithTags(Aws::Vector< Tag > &&value)
AWS_EC2_API CreateSecurityGroupResponse(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
CreateSecurityGroupResponse & AddTags(const Tag &value)
CreateSecurityGroupResponse & WithTags(const Aws::Vector< Tag > &value)
CreateSecurityGroupResponse & WithGroupId(Aws::String &&value)
AWS_EC2_API CreateSecurityGroupResponse & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
CreateSecurityGroupResponse & WithGroupId(const char *value)
CreateSecurityGroupResponse & WithSecurityGroupArn(Aws::String &&value)
CreateSecurityGroupResponse & WithResponseMetadata(ResponseMetadata &&value)
CreateSecurityGroupResponse & AddTags(Tag &&value)
CreateSecurityGroupResponse & WithGroupId(const Aws::String &value)
CreateSecurityGroupResponse & WithSecurityGroupArn(const char *value)
CreateSecurityGroupResponse & WithSecurityGroupArn(const Aws::String &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