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-ec2/include/aws/ec2/model/LaunchPermissionModifications.h

144 lines
4.9 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/AWSVector.h>
#include <aws/ec2/model/LaunchPermission.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Xml
{
class XmlNode;
} // namespace Xml
} // namespace Utils
namespace EC2
{
namespace Model
{
/**
* <p>Describes a launch permission modification.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchPermissionModifications">AWS
* API Reference</a></p>
*/
class AWS_EC2_API LaunchPermissionModifications
{
public:
LaunchPermissionModifications();
LaunchPermissionModifications(const Aws::Utils::Xml::XmlNode& xmlNode);
LaunchPermissionModifications& 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 AWS account ID to add to the list of launch permissions for the AMI.</p>
*/
inline const Aws::Vector<LaunchPermission>& GetAdd() const{ return m_add; }
/**
* <p>The AWS account ID to add to the list of launch permissions for the AMI.</p>
*/
inline bool AddHasBeenSet() const { return m_addHasBeenSet; }
/**
* <p>The AWS account ID to add to the list of launch permissions for the AMI.</p>
*/
inline void SetAdd(const Aws::Vector<LaunchPermission>& value) { m_addHasBeenSet = true; m_add = value; }
/**
* <p>The AWS account ID to add to the list of launch permissions for the AMI.</p>
*/
inline void SetAdd(Aws::Vector<LaunchPermission>&& value) { m_addHasBeenSet = true; m_add = std::move(value); }
/**
* <p>The AWS account ID to add to the list of launch permissions for the AMI.</p>
*/
inline LaunchPermissionModifications& WithAdd(const Aws::Vector<LaunchPermission>& value) { SetAdd(value); return *this;}
/**
* <p>The AWS account ID to add to the list of launch permissions for the AMI.</p>
*/
inline LaunchPermissionModifications& WithAdd(Aws::Vector<LaunchPermission>&& value) { SetAdd(std::move(value)); return *this;}
/**
* <p>The AWS account ID to add to the list of launch permissions for the AMI.</p>
*/
inline LaunchPermissionModifications& AddAdd(const LaunchPermission& value) { m_addHasBeenSet = true; m_add.push_back(value); return *this; }
/**
* <p>The AWS account ID to add to the list of launch permissions for the AMI.</p>
*/
inline LaunchPermissionModifications& AddAdd(LaunchPermission&& value) { m_addHasBeenSet = true; m_add.push_back(std::move(value)); return *this; }
/**
* <p>The AWS account ID to remove from the list of launch permissions for the
* AMI.</p>
*/
inline const Aws::Vector<LaunchPermission>& GetRemove() const{ return m_remove; }
/**
* <p>The AWS account ID to remove from the list of launch permissions for the
* AMI.</p>
*/
inline bool RemoveHasBeenSet() const { return m_removeHasBeenSet; }
/**
* <p>The AWS account ID to remove from the list of launch permissions for the
* AMI.</p>
*/
inline void SetRemove(const Aws::Vector<LaunchPermission>& value) { m_removeHasBeenSet = true; m_remove = value; }
/**
* <p>The AWS account ID to remove from the list of launch permissions for the
* AMI.</p>
*/
inline void SetRemove(Aws::Vector<LaunchPermission>&& value) { m_removeHasBeenSet = true; m_remove = std::move(value); }
/**
* <p>The AWS account ID to remove from the list of launch permissions for the
* AMI.</p>
*/
inline LaunchPermissionModifications& WithRemove(const Aws::Vector<LaunchPermission>& value) { SetRemove(value); return *this;}
/**
* <p>The AWS account ID to remove from the list of launch permissions for the
* AMI.</p>
*/
inline LaunchPermissionModifications& WithRemove(Aws::Vector<LaunchPermission>&& value) { SetRemove(std::move(value)); return *this;}
/**
* <p>The AWS account ID to remove from the list of launch permissions for the
* AMI.</p>
*/
inline LaunchPermissionModifications& AddRemove(const LaunchPermission& value) { m_removeHasBeenSet = true; m_remove.push_back(value); return *this; }
/**
* <p>The AWS account ID to remove from the list of launch permissions for the
* AMI.</p>
*/
inline LaunchPermissionModifications& AddRemove(LaunchPermission&& value) { m_removeHasBeenSet = true; m_remove.push_back(std::move(value)); return *this; }
private:
Aws::Vector<LaunchPermission> m_add;
bool m_addHasBeenSet;
Aws::Vector<LaunchPermission> m_remove;
bool m_removeHasBeenSet;
};
} // namespace Model
} // namespace EC2
} // namespace Aws