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/LocalGateway.h

269 lines
8.1 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/Tag.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Xml
{
class XmlNode;
} // namespace Xml
} // namespace Utils
namespace EC2
{
namespace Model
{
/**
* <p>Describes a local gateway.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LocalGateway">AWS
* API Reference</a></p>
*/
class AWS_EC2_API LocalGateway
{
public:
LocalGateway();
LocalGateway(const Aws::Utils::Xml::XmlNode& xmlNode);
LocalGateway& 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 ID of the local gateway.</p>
*/
inline const Aws::String& GetLocalGatewayId() const{ return m_localGatewayId; }
/**
* <p>The ID of the local gateway.</p>
*/
inline bool LocalGatewayIdHasBeenSet() const { return m_localGatewayIdHasBeenSet; }
/**
* <p>The ID of the local gateway.</p>
*/
inline void SetLocalGatewayId(const Aws::String& value) { m_localGatewayIdHasBeenSet = true; m_localGatewayId = value; }
/**
* <p>The ID of the local gateway.</p>
*/
inline void SetLocalGatewayId(Aws::String&& value) { m_localGatewayIdHasBeenSet = true; m_localGatewayId = std::move(value); }
/**
* <p>The ID of the local gateway.</p>
*/
inline void SetLocalGatewayId(const char* value) { m_localGatewayIdHasBeenSet = true; m_localGatewayId.assign(value); }
/**
* <p>The ID of the local gateway.</p>
*/
inline LocalGateway& WithLocalGatewayId(const Aws::String& value) { SetLocalGatewayId(value); return *this;}
/**
* <p>The ID of the local gateway.</p>
*/
inline LocalGateway& WithLocalGatewayId(Aws::String&& value) { SetLocalGatewayId(std::move(value)); return *this;}
/**
* <p>The ID of the local gateway.</p>
*/
inline LocalGateway& WithLocalGatewayId(const char* value) { SetLocalGatewayId(value); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the Outpost.</p>
*/
inline const Aws::String& GetOutpostArn() const{ return m_outpostArn; }
/**
* <p>The Amazon Resource Name (ARN) of the Outpost.</p>
*/
inline bool OutpostArnHasBeenSet() const { return m_outpostArnHasBeenSet; }
/**
* <p>The Amazon Resource Name (ARN) of the Outpost.</p>
*/
inline void SetOutpostArn(const Aws::String& value) { m_outpostArnHasBeenSet = true; m_outpostArn = value; }
/**
* <p>The Amazon Resource Name (ARN) of the Outpost.</p>
*/
inline void SetOutpostArn(Aws::String&& value) { m_outpostArnHasBeenSet = true; m_outpostArn = std::move(value); }
/**
* <p>The Amazon Resource Name (ARN) of the Outpost.</p>
*/
inline void SetOutpostArn(const char* value) { m_outpostArnHasBeenSet = true; m_outpostArn.assign(value); }
/**
* <p>The Amazon Resource Name (ARN) of the Outpost.</p>
*/
inline LocalGateway& WithOutpostArn(const Aws::String& value) { SetOutpostArn(value); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the Outpost.</p>
*/
inline LocalGateway& WithOutpostArn(Aws::String&& value) { SetOutpostArn(std::move(value)); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the Outpost.</p>
*/
inline LocalGateway& WithOutpostArn(const char* value) { SetOutpostArn(value); return *this;}
/**
* <p>The ID of the AWS account ID that owns the local gateway.</p>
*/
inline const Aws::String& GetOwnerId() const{ return m_ownerId; }
/**
* <p>The ID of the AWS account ID that owns the local gateway.</p>
*/
inline bool OwnerIdHasBeenSet() const { return m_ownerIdHasBeenSet; }
/**
* <p>The ID of the AWS account ID that owns the local gateway.</p>
*/
inline void SetOwnerId(const Aws::String& value) { m_ownerIdHasBeenSet = true; m_ownerId = value; }
/**
* <p>The ID of the AWS account ID that owns the local gateway.</p>
*/
inline void SetOwnerId(Aws::String&& value) { m_ownerIdHasBeenSet = true; m_ownerId = std::move(value); }
/**
* <p>The ID of the AWS account ID that owns the local gateway.</p>
*/
inline void SetOwnerId(const char* value) { m_ownerIdHasBeenSet = true; m_ownerId.assign(value); }
/**
* <p>The ID of the AWS account ID that owns the local gateway.</p>
*/
inline LocalGateway& WithOwnerId(const Aws::String& value) { SetOwnerId(value); return *this;}
/**
* <p>The ID of the AWS account ID that owns the local gateway.</p>
*/
inline LocalGateway& WithOwnerId(Aws::String&& value) { SetOwnerId(std::move(value)); return *this;}
/**
* <p>The ID of the AWS account ID that owns the local gateway.</p>
*/
inline LocalGateway& WithOwnerId(const char* value) { SetOwnerId(value); return *this;}
/**
* <p>The state of the local gateway.</p>
*/
inline const Aws::String& GetState() const{ return m_state; }
/**
* <p>The state of the local gateway.</p>
*/
inline bool StateHasBeenSet() const { return m_stateHasBeenSet; }
/**
* <p>The state of the local gateway.</p>
*/
inline void SetState(const Aws::String& value) { m_stateHasBeenSet = true; m_state = value; }
/**
* <p>The state of the local gateway.</p>
*/
inline void SetState(Aws::String&& value) { m_stateHasBeenSet = true; m_state = std::move(value); }
/**
* <p>The state of the local gateway.</p>
*/
inline void SetState(const char* value) { m_stateHasBeenSet = true; m_state.assign(value); }
/**
* <p>The state of the local gateway.</p>
*/
inline LocalGateway& WithState(const Aws::String& value) { SetState(value); return *this;}
/**
* <p>The state of the local gateway.</p>
*/
inline LocalGateway& WithState(Aws::String&& value) { SetState(std::move(value)); return *this;}
/**
* <p>The state of the local gateway.</p>
*/
inline LocalGateway& WithState(const char* value) { SetState(value); return *this;}
/**
* <p>The tags assigned to the local gateway.</p>
*/
inline const Aws::Vector<Tag>& GetTags() const{ return m_tags; }
/**
* <p>The tags assigned to the local gateway.</p>
*/
inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; }
/**
* <p>The tags assigned to the local gateway.</p>
*/
inline void SetTags(const Aws::Vector<Tag>& value) { m_tagsHasBeenSet = true; m_tags = value; }
/**
* <p>The tags assigned to the local gateway.</p>
*/
inline void SetTags(Aws::Vector<Tag>&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); }
/**
* <p>The tags assigned to the local gateway.</p>
*/
inline LocalGateway& WithTags(const Aws::Vector<Tag>& value) { SetTags(value); return *this;}
/**
* <p>The tags assigned to the local gateway.</p>
*/
inline LocalGateway& WithTags(Aws::Vector<Tag>&& value) { SetTags(std::move(value)); return *this;}
/**
* <p>The tags assigned to the local gateway.</p>
*/
inline LocalGateway& AddTags(const Tag& value) { m_tagsHasBeenSet = true; m_tags.push_back(value); return *this; }
/**
* <p>The tags assigned to the local gateway.</p>
*/
inline LocalGateway& AddTags(Tag&& value) { m_tagsHasBeenSet = true; m_tags.push_back(std::move(value)); return *this; }
private:
Aws::String m_localGatewayId;
bool m_localGatewayIdHasBeenSet;
Aws::String m_outpostArn;
bool m_outpostArnHasBeenSet;
Aws::String m_ownerId;
bool m_ownerIdHasBeenSet;
Aws::String m_state;
bool m_stateHasBeenSet;
Aws::Vector<Tag> m_tags;
bool m_tagsHasBeenSet;
};
} // namespace Model
} // namespace EC2
} // namespace Aws