AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GroupIdentifier.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 <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Xml
17{
18 class XmlNode;
19} // namespace Xml
20} // namespace Utils
21namespace EC2
22{
23namespace Model
24{
25
32 {
33 public:
34 AWS_EC2_API GroupIdentifier();
35 AWS_EC2_API GroupIdentifier(const Aws::Utils::Xml::XmlNode& xmlNode);
37
38 AWS_EC2_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
39 AWS_EC2_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
40
41
43
46 inline const Aws::String& GetGroupId() const{ return m_groupId; }
47 inline bool GroupIdHasBeenSet() const { return m_groupIdHasBeenSet; }
48 inline void SetGroupId(const Aws::String& value) { m_groupIdHasBeenSet = true; m_groupId = value; }
49 inline void SetGroupId(Aws::String&& value) { m_groupIdHasBeenSet = true; m_groupId = std::move(value); }
50 inline void SetGroupId(const char* value) { m_groupIdHasBeenSet = true; m_groupId.assign(value); }
51 inline GroupIdentifier& WithGroupId(const Aws::String& value) { SetGroupId(value); return *this;}
52 inline GroupIdentifier& WithGroupId(Aws::String&& value) { SetGroupId(std::move(value)); return *this;}
53 inline GroupIdentifier& WithGroupId(const char* value) { SetGroupId(value); return *this;}
55
57
60 inline const Aws::String& GetGroupName() const{ return m_groupName; }
61 inline bool GroupNameHasBeenSet() const { return m_groupNameHasBeenSet; }
62 inline void SetGroupName(const Aws::String& value) { m_groupNameHasBeenSet = true; m_groupName = value; }
63 inline void SetGroupName(Aws::String&& value) { m_groupNameHasBeenSet = true; m_groupName = std::move(value); }
64 inline void SetGroupName(const char* value) { m_groupNameHasBeenSet = true; m_groupName.assign(value); }
65 inline GroupIdentifier& WithGroupName(const Aws::String& value) { SetGroupName(value); return *this;}
66 inline GroupIdentifier& WithGroupName(Aws::String&& value) { SetGroupName(std::move(value)); return *this;}
67 inline GroupIdentifier& WithGroupName(const char* value) { SetGroupName(value); return *this;}
69 private:
70
71 Aws::String m_groupId;
72 bool m_groupIdHasBeenSet = false;
73
74 Aws::String m_groupName;
75 bool m_groupNameHasBeenSet = false;
76 };
77
78} // namespace Model
79} // namespace EC2
80} // namespace Aws
AWS_EC2_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
GroupIdentifier & WithGroupId(const char *value)
void SetGroupName(Aws::String &&value)
void SetGroupId(Aws::String &&value)
GroupIdentifier & WithGroupName(const Aws::String &value)
AWS_EC2_API GroupIdentifier(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_EC2_API void OutputToStream(Aws::OStream &oStream, const char *location) const
void SetGroupId(const Aws::String &value)
void SetGroupName(const Aws::String &value)
AWS_EC2_API GroupIdentifier & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
GroupIdentifier & WithGroupName(Aws::String &&value)
const Aws::String & GetGroupId() const
void SetGroupName(const char *value)
const Aws::String & GetGroupName() const
GroupIdentifier & WithGroupName(const char *value)
GroupIdentifier & WithGroupId(const Aws::String &value)
void SetGroupId(const char *value)
GroupIdentifier & WithGroupId(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::basic_ostream< char, std::char_traits< char > > OStream