This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-redshift/include/aws/redshift/model/EC2SecurityGroup.h

233 lines
7.9 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/redshift/Redshift_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/redshift/model/Tag.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Xml
{
class XmlNode;
} // namespace Xml
} // namespace Utils
namespace Redshift
{
namespace Model
{
/**
* <p>Describes an Amazon EC2 security group.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/EC2SecurityGroup">AWS
* API Reference</a></p>
*/
class AWS_REDSHIFT_API EC2SecurityGroup
{
public:
EC2SecurityGroup();
EC2SecurityGroup(const Aws::Utils::Xml::XmlNode& xmlNode);
EC2SecurityGroup& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
void OutputToStream(Aws::OStream& oStream, const char* location) const;
/**
* <p>The status of the EC2 security group.</p>
*/
inline const Aws::String& GetStatus() const{ return m_status; }
/**
* <p>The status of the EC2 security group.</p>
*/
inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; }
/**
* <p>The status of the EC2 security group.</p>
*/
inline void SetStatus(const Aws::String& value) { m_statusHasBeenSet = true; m_status = value; }
/**
* <p>The status of the EC2 security group.</p>
*/
inline void SetStatus(Aws::String&& value) { m_statusHasBeenSet = true; m_status = std::move(value); }
/**
* <p>The status of the EC2 security group.</p>
*/
inline void SetStatus(const char* value) { m_statusHasBeenSet = true; m_status.assign(value); }
/**
* <p>The status of the EC2 security group.</p>
*/
inline EC2SecurityGroup& WithStatus(const Aws::String& value) { SetStatus(value); return *this;}
/**
* <p>The status of the EC2 security group.</p>
*/
inline EC2SecurityGroup& WithStatus(Aws::String&& value) { SetStatus(std::move(value)); return *this;}
/**
* <p>The status of the EC2 security group.</p>
*/
inline EC2SecurityGroup& WithStatus(const char* value) { SetStatus(value); return *this;}
/**
* <p>The name of the EC2 Security Group.</p>
*/
inline const Aws::String& GetEC2SecurityGroupName() const{ return m_eC2SecurityGroupName; }
/**
* <p>The name of the EC2 Security Group.</p>
*/
inline bool EC2SecurityGroupNameHasBeenSet() const { return m_eC2SecurityGroupNameHasBeenSet; }
/**
* <p>The name of the EC2 Security Group.</p>
*/
inline void SetEC2SecurityGroupName(const Aws::String& value) { m_eC2SecurityGroupNameHasBeenSet = true; m_eC2SecurityGroupName = value; }
/**
* <p>The name of the EC2 Security Group.</p>
*/
inline void SetEC2SecurityGroupName(Aws::String&& value) { m_eC2SecurityGroupNameHasBeenSet = true; m_eC2SecurityGroupName = std::move(value); }
/**
* <p>The name of the EC2 Security Group.</p>
*/
inline void SetEC2SecurityGroupName(const char* value) { m_eC2SecurityGroupNameHasBeenSet = true; m_eC2SecurityGroupName.assign(value); }
/**
* <p>The name of the EC2 Security Group.</p>
*/
inline EC2SecurityGroup& WithEC2SecurityGroupName(const Aws::String& value) { SetEC2SecurityGroupName(value); return *this;}
/**
* <p>The name of the EC2 Security Group.</p>
*/
inline EC2SecurityGroup& WithEC2SecurityGroupName(Aws::String&& value) { SetEC2SecurityGroupName(std::move(value)); return *this;}
/**
* <p>The name of the EC2 Security Group.</p>
*/
inline EC2SecurityGroup& WithEC2SecurityGroupName(const char* value) { SetEC2SecurityGroupName(value); return *this;}
/**
* <p>The AWS ID of the owner of the EC2 security group specified in the
* <code>EC2SecurityGroupName</code> field. </p>
*/
inline const Aws::String& GetEC2SecurityGroupOwnerId() const{ return m_eC2SecurityGroupOwnerId; }
/**
* <p>The AWS ID of the owner of the EC2 security group specified in the
* <code>EC2SecurityGroupName</code> field. </p>
*/
inline bool EC2SecurityGroupOwnerIdHasBeenSet() const { return m_eC2SecurityGroupOwnerIdHasBeenSet; }
/**
* <p>The AWS ID of the owner of the EC2 security group specified in the
* <code>EC2SecurityGroupName</code> field. </p>
*/
inline void SetEC2SecurityGroupOwnerId(const Aws::String& value) { m_eC2SecurityGroupOwnerIdHasBeenSet = true; m_eC2SecurityGroupOwnerId = value; }
/**
* <p>The AWS ID of the owner of the EC2 security group specified in the
* <code>EC2SecurityGroupName</code> field. </p>
*/
inline void SetEC2SecurityGroupOwnerId(Aws::String&& value) { m_eC2SecurityGroupOwnerIdHasBeenSet = true; m_eC2SecurityGroupOwnerId = std::move(value); }
/**
* <p>The AWS ID of the owner of the EC2 security group specified in the
* <code>EC2SecurityGroupName</code> field. </p>
*/
inline void SetEC2SecurityGroupOwnerId(const char* value) { m_eC2SecurityGroupOwnerIdHasBeenSet = true; m_eC2SecurityGroupOwnerId.assign(value); }
/**
* <p>The AWS ID of the owner of the EC2 security group specified in the
* <code>EC2SecurityGroupName</code> field. </p>
*/
inline EC2SecurityGroup& WithEC2SecurityGroupOwnerId(const Aws::String& value) { SetEC2SecurityGroupOwnerId(value); return *this;}
/**
* <p>The AWS ID of the owner of the EC2 security group specified in the
* <code>EC2SecurityGroupName</code> field. </p>
*/
inline EC2SecurityGroup& WithEC2SecurityGroupOwnerId(Aws::String&& value) { SetEC2SecurityGroupOwnerId(std::move(value)); return *this;}
/**
* <p>The AWS ID of the owner of the EC2 security group specified in the
* <code>EC2SecurityGroupName</code> field. </p>
*/
inline EC2SecurityGroup& WithEC2SecurityGroupOwnerId(const char* value) { SetEC2SecurityGroupOwnerId(value); return *this;}
/**
* <p>The list of tags for the EC2 security group.</p>
*/
inline const Aws::Vector<Tag>& GetTags() const{ return m_tags; }
/**
* <p>The list of tags for the EC2 security group.</p>
*/
inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; }
/**
* <p>The list of tags for the EC2 security group.</p>
*/
inline void SetTags(const Aws::Vector<Tag>& value) { m_tagsHasBeenSet = true; m_tags = value; }
/**
* <p>The list of tags for the EC2 security group.</p>
*/
inline void SetTags(Aws::Vector<Tag>&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); }
/**
* <p>The list of tags for the EC2 security group.</p>
*/
inline EC2SecurityGroup& WithTags(const Aws::Vector<Tag>& value) { SetTags(value); return *this;}
/**
* <p>The list of tags for the EC2 security group.</p>
*/
inline EC2SecurityGroup& WithTags(Aws::Vector<Tag>&& value) { SetTags(std::move(value)); return *this;}
/**
* <p>The list of tags for the EC2 security group.</p>
*/
inline EC2SecurityGroup& AddTags(const Tag& value) { m_tagsHasBeenSet = true; m_tags.push_back(value); return *this; }
/**
* <p>The list of tags for the EC2 security group.</p>
*/
inline EC2SecurityGroup& AddTags(Tag&& value) { m_tagsHasBeenSet = true; m_tags.push_back(std::move(value)); return *this; }
private:
Aws::String m_status;
bool m_statusHasBeenSet;
Aws::String m_eC2SecurityGroupName;
bool m_eC2SecurityGroupNameHasBeenSet;
Aws::String m_eC2SecurityGroupOwnerId;
bool m_eC2SecurityGroupOwnerIdHasBeenSet;
Aws::Vector<Tag> m_tags;
bool m_tagsHasBeenSet;
};
} // namespace Model
} // namespace Redshift
} // namespace Aws