402 lines
13 KiB
C++
402 lines
13 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/ec2/EC2_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/ec2/model/IpPermission.h>
|
|
#include <aws/ec2/model/Tag.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Utils
|
|
{
|
|
namespace Xml
|
|
{
|
|
class XmlNode;
|
|
} // namespace Xml
|
|
} // namespace Utils
|
|
namespace EC2
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>Describes a security group</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SecurityGroup">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_EC2_API SecurityGroup
|
|
{
|
|
public:
|
|
SecurityGroup();
|
|
SecurityGroup(const Aws::Utils::Xml::XmlNode& xmlNode);
|
|
SecurityGroup& 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>A description of the security group.</p>
|
|
*/
|
|
inline const Aws::String& GetDescription() const{ return m_description; }
|
|
|
|
/**
|
|
* <p>A description of the security group.</p>
|
|
*/
|
|
inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
|
|
|
|
/**
|
|
* <p>A description of the security group.</p>
|
|
*/
|
|
inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
|
|
|
|
/**
|
|
* <p>A description of the security group.</p>
|
|
*/
|
|
inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
|
|
|
|
/**
|
|
* <p>A description of the security group.</p>
|
|
*/
|
|
inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
|
|
|
|
/**
|
|
* <p>A description of the security group.</p>
|
|
*/
|
|
inline SecurityGroup& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
|
|
|
|
/**
|
|
* <p>A description of the security group.</p>
|
|
*/
|
|
inline SecurityGroup& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>A description of the security group.</p>
|
|
*/
|
|
inline SecurityGroup& WithDescription(const char* value) { SetDescription(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The name of the security group.</p>
|
|
*/
|
|
inline const Aws::String& GetGroupName() const{ return m_groupName; }
|
|
|
|
/**
|
|
* <p>The name of the security group.</p>
|
|
*/
|
|
inline bool GroupNameHasBeenSet() const { return m_groupNameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The name of the security group.</p>
|
|
*/
|
|
inline void SetGroupName(const Aws::String& value) { m_groupNameHasBeenSet = true; m_groupName = value; }
|
|
|
|
/**
|
|
* <p>The name of the security group.</p>
|
|
*/
|
|
inline void SetGroupName(Aws::String&& value) { m_groupNameHasBeenSet = true; m_groupName = std::move(value); }
|
|
|
|
/**
|
|
* <p>The name of the security group.</p>
|
|
*/
|
|
inline void SetGroupName(const char* value) { m_groupNameHasBeenSet = true; m_groupName.assign(value); }
|
|
|
|
/**
|
|
* <p>The name of the security group.</p>
|
|
*/
|
|
inline SecurityGroup& WithGroupName(const Aws::String& value) { SetGroupName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the security group.</p>
|
|
*/
|
|
inline SecurityGroup& WithGroupName(Aws::String&& value) { SetGroupName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the security group.</p>
|
|
*/
|
|
inline SecurityGroup& WithGroupName(const char* value) { SetGroupName(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The inbound rules associated with the security group.</p>
|
|
*/
|
|
inline const Aws::Vector<IpPermission>& GetIpPermissions() const{ return m_ipPermissions; }
|
|
|
|
/**
|
|
* <p>The inbound rules associated with the security group.</p>
|
|
*/
|
|
inline bool IpPermissionsHasBeenSet() const { return m_ipPermissionsHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The inbound rules associated with the security group.</p>
|
|
*/
|
|
inline void SetIpPermissions(const Aws::Vector<IpPermission>& value) { m_ipPermissionsHasBeenSet = true; m_ipPermissions = value; }
|
|
|
|
/**
|
|
* <p>The inbound rules associated with the security group.</p>
|
|
*/
|
|
inline void SetIpPermissions(Aws::Vector<IpPermission>&& value) { m_ipPermissionsHasBeenSet = true; m_ipPermissions = std::move(value); }
|
|
|
|
/**
|
|
* <p>The inbound rules associated with the security group.</p>
|
|
*/
|
|
inline SecurityGroup& WithIpPermissions(const Aws::Vector<IpPermission>& value) { SetIpPermissions(value); return *this;}
|
|
|
|
/**
|
|
* <p>The inbound rules associated with the security group.</p>
|
|
*/
|
|
inline SecurityGroup& WithIpPermissions(Aws::Vector<IpPermission>&& value) { SetIpPermissions(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The inbound rules associated with the security group.</p>
|
|
*/
|
|
inline SecurityGroup& AddIpPermissions(const IpPermission& value) { m_ipPermissionsHasBeenSet = true; m_ipPermissions.push_back(value); return *this; }
|
|
|
|
/**
|
|
* <p>The inbound rules associated with the security group.</p>
|
|
*/
|
|
inline SecurityGroup& AddIpPermissions(IpPermission&& value) { m_ipPermissionsHasBeenSet = true; m_ipPermissions.push_back(std::move(value)); return *this; }
|
|
|
|
|
|
/**
|
|
* <p>The AWS account ID of the owner of the security group.</p>
|
|
*/
|
|
inline const Aws::String& GetOwnerId() const{ return m_ownerId; }
|
|
|
|
/**
|
|
* <p>The AWS account ID of the owner of the security group.</p>
|
|
*/
|
|
inline bool OwnerIdHasBeenSet() const { return m_ownerIdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The AWS account ID of the owner of the security group.</p>
|
|
*/
|
|
inline void SetOwnerId(const Aws::String& value) { m_ownerIdHasBeenSet = true; m_ownerId = value; }
|
|
|
|
/**
|
|
* <p>The AWS account ID of the owner of the security group.</p>
|
|
*/
|
|
inline void SetOwnerId(Aws::String&& value) { m_ownerIdHasBeenSet = true; m_ownerId = std::move(value); }
|
|
|
|
/**
|
|
* <p>The AWS account ID of the owner of the security group.</p>
|
|
*/
|
|
inline void SetOwnerId(const char* value) { m_ownerIdHasBeenSet = true; m_ownerId.assign(value); }
|
|
|
|
/**
|
|
* <p>The AWS account ID of the owner of the security group.</p>
|
|
*/
|
|
inline SecurityGroup& WithOwnerId(const Aws::String& value) { SetOwnerId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The AWS account ID of the owner of the security group.</p>
|
|
*/
|
|
inline SecurityGroup& WithOwnerId(Aws::String&& value) { SetOwnerId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The AWS account ID of the owner of the security group.</p>
|
|
*/
|
|
inline SecurityGroup& WithOwnerId(const char* value) { SetOwnerId(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The ID of the security group.</p>
|
|
*/
|
|
inline const Aws::String& GetGroupId() const{ return m_groupId; }
|
|
|
|
/**
|
|
* <p>The ID of the security group.</p>
|
|
*/
|
|
inline bool GroupIdHasBeenSet() const { return m_groupIdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The ID of the security group.</p>
|
|
*/
|
|
inline void SetGroupId(const Aws::String& value) { m_groupIdHasBeenSet = true; m_groupId = value; }
|
|
|
|
/**
|
|
* <p>The ID of the security group.</p>
|
|
*/
|
|
inline void SetGroupId(Aws::String&& value) { m_groupIdHasBeenSet = true; m_groupId = std::move(value); }
|
|
|
|
/**
|
|
* <p>The ID of the security group.</p>
|
|
*/
|
|
inline void SetGroupId(const char* value) { m_groupIdHasBeenSet = true; m_groupId.assign(value); }
|
|
|
|
/**
|
|
* <p>The ID of the security group.</p>
|
|
*/
|
|
inline SecurityGroup& WithGroupId(const Aws::String& value) { SetGroupId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the security group.</p>
|
|
*/
|
|
inline SecurityGroup& WithGroupId(Aws::String&& value) { SetGroupId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the security group.</p>
|
|
*/
|
|
inline SecurityGroup& WithGroupId(const char* value) { SetGroupId(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>[VPC only] The outbound rules associated with the security group.</p>
|
|
*/
|
|
inline const Aws::Vector<IpPermission>& GetIpPermissionsEgress() const{ return m_ipPermissionsEgress; }
|
|
|
|
/**
|
|
* <p>[VPC only] The outbound rules associated with the security group.</p>
|
|
*/
|
|
inline bool IpPermissionsEgressHasBeenSet() const { return m_ipPermissionsEgressHasBeenSet; }
|
|
|
|
/**
|
|
* <p>[VPC only] The outbound rules associated with the security group.</p>
|
|
*/
|
|
inline void SetIpPermissionsEgress(const Aws::Vector<IpPermission>& value) { m_ipPermissionsEgressHasBeenSet = true; m_ipPermissionsEgress = value; }
|
|
|
|
/**
|
|
* <p>[VPC only] The outbound rules associated with the security group.</p>
|
|
*/
|
|
inline void SetIpPermissionsEgress(Aws::Vector<IpPermission>&& value) { m_ipPermissionsEgressHasBeenSet = true; m_ipPermissionsEgress = std::move(value); }
|
|
|
|
/**
|
|
* <p>[VPC only] The outbound rules associated with the security group.</p>
|
|
*/
|
|
inline SecurityGroup& WithIpPermissionsEgress(const Aws::Vector<IpPermission>& value) { SetIpPermissionsEgress(value); return *this;}
|
|
|
|
/**
|
|
* <p>[VPC only] The outbound rules associated with the security group.</p>
|
|
*/
|
|
inline SecurityGroup& WithIpPermissionsEgress(Aws::Vector<IpPermission>&& value) { SetIpPermissionsEgress(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>[VPC only] The outbound rules associated with the security group.</p>
|
|
*/
|
|
inline SecurityGroup& AddIpPermissionsEgress(const IpPermission& value) { m_ipPermissionsEgressHasBeenSet = true; m_ipPermissionsEgress.push_back(value); return *this; }
|
|
|
|
/**
|
|
* <p>[VPC only] The outbound rules associated with the security group.</p>
|
|
*/
|
|
inline SecurityGroup& AddIpPermissionsEgress(IpPermission&& value) { m_ipPermissionsEgressHasBeenSet = true; m_ipPermissionsEgress.push_back(std::move(value)); return *this; }
|
|
|
|
|
|
/**
|
|
* <p>Any tags assigned to the security group.</p>
|
|
*/
|
|
inline const Aws::Vector<Tag>& GetTags() const{ return m_tags; }
|
|
|
|
/**
|
|
* <p>Any tags assigned to the security group.</p>
|
|
*/
|
|
inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; }
|
|
|
|
/**
|
|
* <p>Any tags assigned to the security group.</p>
|
|
*/
|
|
inline void SetTags(const Aws::Vector<Tag>& value) { m_tagsHasBeenSet = true; m_tags = value; }
|
|
|
|
/**
|
|
* <p>Any tags assigned to the security group.</p>
|
|
*/
|
|
inline void SetTags(Aws::Vector<Tag>&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); }
|
|
|
|
/**
|
|
* <p>Any tags assigned to the security group.</p>
|
|
*/
|
|
inline SecurityGroup& WithTags(const Aws::Vector<Tag>& value) { SetTags(value); return *this;}
|
|
|
|
/**
|
|
* <p>Any tags assigned to the security group.</p>
|
|
*/
|
|
inline SecurityGroup& WithTags(Aws::Vector<Tag>&& value) { SetTags(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>Any tags assigned to the security group.</p>
|
|
*/
|
|
inline SecurityGroup& AddTags(const Tag& value) { m_tagsHasBeenSet = true; m_tags.push_back(value); return *this; }
|
|
|
|
/**
|
|
* <p>Any tags assigned to the security group.</p>
|
|
*/
|
|
inline SecurityGroup& AddTags(Tag&& value) { m_tagsHasBeenSet = true; m_tags.push_back(std::move(value)); return *this; }
|
|
|
|
|
|
/**
|
|
* <p>[VPC only] The ID of the VPC for the security group.</p>
|
|
*/
|
|
inline const Aws::String& GetVpcId() const{ return m_vpcId; }
|
|
|
|
/**
|
|
* <p>[VPC only] The ID of the VPC for the security group.</p>
|
|
*/
|
|
inline bool VpcIdHasBeenSet() const { return m_vpcIdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>[VPC only] The ID of the VPC for the security group.</p>
|
|
*/
|
|
inline void SetVpcId(const Aws::String& value) { m_vpcIdHasBeenSet = true; m_vpcId = value; }
|
|
|
|
/**
|
|
* <p>[VPC only] The ID of the VPC for the security group.</p>
|
|
*/
|
|
inline void SetVpcId(Aws::String&& value) { m_vpcIdHasBeenSet = true; m_vpcId = std::move(value); }
|
|
|
|
/**
|
|
* <p>[VPC only] The ID of the VPC for the security group.</p>
|
|
*/
|
|
inline void SetVpcId(const char* value) { m_vpcIdHasBeenSet = true; m_vpcId.assign(value); }
|
|
|
|
/**
|
|
* <p>[VPC only] The ID of the VPC for the security group.</p>
|
|
*/
|
|
inline SecurityGroup& WithVpcId(const Aws::String& value) { SetVpcId(value); return *this;}
|
|
|
|
/**
|
|
* <p>[VPC only] The ID of the VPC for the security group.</p>
|
|
*/
|
|
inline SecurityGroup& WithVpcId(Aws::String&& value) { SetVpcId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>[VPC only] The ID of the VPC for the security group.</p>
|
|
*/
|
|
inline SecurityGroup& WithVpcId(const char* value) { SetVpcId(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_description;
|
|
bool m_descriptionHasBeenSet;
|
|
|
|
Aws::String m_groupName;
|
|
bool m_groupNameHasBeenSet;
|
|
|
|
Aws::Vector<IpPermission> m_ipPermissions;
|
|
bool m_ipPermissionsHasBeenSet;
|
|
|
|
Aws::String m_ownerId;
|
|
bool m_ownerIdHasBeenSet;
|
|
|
|
Aws::String m_groupId;
|
|
bool m_groupIdHasBeenSet;
|
|
|
|
Aws::Vector<IpPermission> m_ipPermissionsEgress;
|
|
bool m_ipPermissionsEgressHasBeenSet;
|
|
|
|
Aws::Vector<Tag> m_tags;
|
|
bool m_tagsHasBeenSet;
|
|
|
|
Aws::String m_vpcId;
|
|
bool m_vpcIdHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace EC2
|
|
} // namespace Aws
|