170 lines
4.9 KiB
C++
170 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/redshift/Redshift_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <aws/redshift/model/AvailabilityZone.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Utils
|
|
{
|
|
namespace Xml
|
|
{
|
|
class XmlNode;
|
|
} // namespace Xml
|
|
} // namespace Utils
|
|
namespace Redshift
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>Describes a subnet.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/Subnet">AWS API
|
|
* Reference</a></p>
|
|
*/
|
|
class AWS_REDSHIFT_API Subnet
|
|
{
|
|
public:
|
|
Subnet();
|
|
Subnet(const Aws::Utils::Xml::XmlNode& xmlNode);
|
|
Subnet& 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 identifier of the subnet.</p>
|
|
*/
|
|
inline const Aws::String& GetSubnetIdentifier() const{ return m_subnetIdentifier; }
|
|
|
|
/**
|
|
* <p>The identifier of the subnet.</p>
|
|
*/
|
|
inline bool SubnetIdentifierHasBeenSet() const { return m_subnetIdentifierHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The identifier of the subnet.</p>
|
|
*/
|
|
inline void SetSubnetIdentifier(const Aws::String& value) { m_subnetIdentifierHasBeenSet = true; m_subnetIdentifier = value; }
|
|
|
|
/**
|
|
* <p>The identifier of the subnet.</p>
|
|
*/
|
|
inline void SetSubnetIdentifier(Aws::String&& value) { m_subnetIdentifierHasBeenSet = true; m_subnetIdentifier = std::move(value); }
|
|
|
|
/**
|
|
* <p>The identifier of the subnet.</p>
|
|
*/
|
|
inline void SetSubnetIdentifier(const char* value) { m_subnetIdentifierHasBeenSet = true; m_subnetIdentifier.assign(value); }
|
|
|
|
/**
|
|
* <p>The identifier of the subnet.</p>
|
|
*/
|
|
inline Subnet& WithSubnetIdentifier(const Aws::String& value) { SetSubnetIdentifier(value); return *this;}
|
|
|
|
/**
|
|
* <p>The identifier of the subnet.</p>
|
|
*/
|
|
inline Subnet& WithSubnetIdentifier(Aws::String&& value) { SetSubnetIdentifier(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The identifier of the subnet.</p>
|
|
*/
|
|
inline Subnet& WithSubnetIdentifier(const char* value) { SetSubnetIdentifier(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p/>
|
|
*/
|
|
inline const AvailabilityZone& GetSubnetAvailabilityZone() const{ return m_subnetAvailabilityZone; }
|
|
|
|
/**
|
|
* <p/>
|
|
*/
|
|
inline bool SubnetAvailabilityZoneHasBeenSet() const { return m_subnetAvailabilityZoneHasBeenSet; }
|
|
|
|
/**
|
|
* <p/>
|
|
*/
|
|
inline void SetSubnetAvailabilityZone(const AvailabilityZone& value) { m_subnetAvailabilityZoneHasBeenSet = true; m_subnetAvailabilityZone = value; }
|
|
|
|
/**
|
|
* <p/>
|
|
*/
|
|
inline void SetSubnetAvailabilityZone(AvailabilityZone&& value) { m_subnetAvailabilityZoneHasBeenSet = true; m_subnetAvailabilityZone = std::move(value); }
|
|
|
|
/**
|
|
* <p/>
|
|
*/
|
|
inline Subnet& WithSubnetAvailabilityZone(const AvailabilityZone& value) { SetSubnetAvailabilityZone(value); return *this;}
|
|
|
|
/**
|
|
* <p/>
|
|
*/
|
|
inline Subnet& WithSubnetAvailabilityZone(AvailabilityZone&& value) { SetSubnetAvailabilityZone(std::move(value)); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The status of the subnet.</p>
|
|
*/
|
|
inline const Aws::String& GetSubnetStatus() const{ return m_subnetStatus; }
|
|
|
|
/**
|
|
* <p>The status of the subnet.</p>
|
|
*/
|
|
inline bool SubnetStatusHasBeenSet() const { return m_subnetStatusHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The status of the subnet.</p>
|
|
*/
|
|
inline void SetSubnetStatus(const Aws::String& value) { m_subnetStatusHasBeenSet = true; m_subnetStatus = value; }
|
|
|
|
/**
|
|
* <p>The status of the subnet.</p>
|
|
*/
|
|
inline void SetSubnetStatus(Aws::String&& value) { m_subnetStatusHasBeenSet = true; m_subnetStatus = std::move(value); }
|
|
|
|
/**
|
|
* <p>The status of the subnet.</p>
|
|
*/
|
|
inline void SetSubnetStatus(const char* value) { m_subnetStatusHasBeenSet = true; m_subnetStatus.assign(value); }
|
|
|
|
/**
|
|
* <p>The status of the subnet.</p>
|
|
*/
|
|
inline Subnet& WithSubnetStatus(const Aws::String& value) { SetSubnetStatus(value); return *this;}
|
|
|
|
/**
|
|
* <p>The status of the subnet.</p>
|
|
*/
|
|
inline Subnet& WithSubnetStatus(Aws::String&& value) { SetSubnetStatus(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The status of the subnet.</p>
|
|
*/
|
|
inline Subnet& WithSubnetStatus(const char* value) { SetSubnetStatus(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_subnetIdentifier;
|
|
bool m_subnetIdentifierHasBeenSet;
|
|
|
|
AvailabilityZone m_subnetAvailabilityZone;
|
|
bool m_subnetAvailabilityZoneHasBeenSet;
|
|
|
|
Aws::String m_subnetStatus;
|
|
bool m_subnetStatusHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace Redshift
|
|
} // namespace Aws
|