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-route53/include/aws/route53/model/DisassociateVPCFromHostedZoneRequest.h

181 lines
6.3 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/route53/Route53_EXPORTS.h>
#include <aws/route53/Route53Request.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/route53/model/VPC.h>
#include <utility>
namespace Aws
{
namespace Route53
{
namespace Model
{
/**
* <p>A complex type that contains information about the VPC that you want to
* disassociate from a specified private hosted zone.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/route53-2013-04-01/DisassociateVPCFromHostedZoneRequest">AWS
* API Reference</a></p>
*/
class AWS_ROUTE53_API DisassociateVPCFromHostedZoneRequest : public Route53Request
{
public:
DisassociateVPCFromHostedZoneRequest();
// Service request name is the Operation name which will send this request out,
// each operation should has unique request name, so that we can get operation's name from this request.
// Note: this is not true for response, multiple operations may have the same response name,
// so we can not get operation's name from response.
inline virtual const char* GetServiceRequestName() const override { return "DisassociateVPCFromHostedZone"; }
Aws::String SerializePayload() const override;
/**
* <p>The ID of the private hosted zone that you want to disassociate a VPC
* from.</p>
*/
inline const Aws::String& GetHostedZoneId() const{ return m_hostedZoneId; }
/**
* <p>The ID of the private hosted zone that you want to disassociate a VPC
* from.</p>
*/
inline bool HostedZoneIdHasBeenSet() const { return m_hostedZoneIdHasBeenSet; }
/**
* <p>The ID of the private hosted zone that you want to disassociate a VPC
* from.</p>
*/
inline void SetHostedZoneId(const Aws::String& value) { m_hostedZoneIdHasBeenSet = true; m_hostedZoneId = value; }
/**
* <p>The ID of the private hosted zone that you want to disassociate a VPC
* from.</p>
*/
inline void SetHostedZoneId(Aws::String&& value) { m_hostedZoneIdHasBeenSet = true; m_hostedZoneId = std::move(value); }
/**
* <p>The ID of the private hosted zone that you want to disassociate a VPC
* from.</p>
*/
inline void SetHostedZoneId(const char* value) { m_hostedZoneIdHasBeenSet = true; m_hostedZoneId.assign(value); }
/**
* <p>The ID of the private hosted zone that you want to disassociate a VPC
* from.</p>
*/
inline DisassociateVPCFromHostedZoneRequest& WithHostedZoneId(const Aws::String& value) { SetHostedZoneId(value); return *this;}
/**
* <p>The ID of the private hosted zone that you want to disassociate a VPC
* from.</p>
*/
inline DisassociateVPCFromHostedZoneRequest& WithHostedZoneId(Aws::String&& value) { SetHostedZoneId(std::move(value)); return *this;}
/**
* <p>The ID of the private hosted zone that you want to disassociate a VPC
* from.</p>
*/
inline DisassociateVPCFromHostedZoneRequest& WithHostedZoneId(const char* value) { SetHostedZoneId(value); return *this;}
/**
* <p>A complex type that contains information about the VPC that you're
* disassociating from the specified hosted zone.</p>
*/
inline const VPC& GetVPC() const{ return m_vPC; }
/**
* <p>A complex type that contains information about the VPC that you're
* disassociating from the specified hosted zone.</p>
*/
inline bool VPCHasBeenSet() const { return m_vPCHasBeenSet; }
/**
* <p>A complex type that contains information about the VPC that you're
* disassociating from the specified hosted zone.</p>
*/
inline void SetVPC(const VPC& value) { m_vPCHasBeenSet = true; m_vPC = value; }
/**
* <p>A complex type that contains information about the VPC that you're
* disassociating from the specified hosted zone.</p>
*/
inline void SetVPC(VPC&& value) { m_vPCHasBeenSet = true; m_vPC = std::move(value); }
/**
* <p>A complex type that contains information about the VPC that you're
* disassociating from the specified hosted zone.</p>
*/
inline DisassociateVPCFromHostedZoneRequest& WithVPC(const VPC& value) { SetVPC(value); return *this;}
/**
* <p>A complex type that contains information about the VPC that you're
* disassociating from the specified hosted zone.</p>
*/
inline DisassociateVPCFromHostedZoneRequest& WithVPC(VPC&& value) { SetVPC(std::move(value)); return *this;}
/**
* <p> <i>Optional:</i> A comment about the disassociation request.</p>
*/
inline const Aws::String& GetComment() const{ return m_comment; }
/**
* <p> <i>Optional:</i> A comment about the disassociation request.</p>
*/
inline bool CommentHasBeenSet() const { return m_commentHasBeenSet; }
/**
* <p> <i>Optional:</i> A comment about the disassociation request.</p>
*/
inline void SetComment(const Aws::String& value) { m_commentHasBeenSet = true; m_comment = value; }
/**
* <p> <i>Optional:</i> A comment about the disassociation request.</p>
*/
inline void SetComment(Aws::String&& value) { m_commentHasBeenSet = true; m_comment = std::move(value); }
/**
* <p> <i>Optional:</i> A comment about the disassociation request.</p>
*/
inline void SetComment(const char* value) { m_commentHasBeenSet = true; m_comment.assign(value); }
/**
* <p> <i>Optional:</i> A comment about the disassociation request.</p>
*/
inline DisassociateVPCFromHostedZoneRequest& WithComment(const Aws::String& value) { SetComment(value); return *this;}
/**
* <p> <i>Optional:</i> A comment about the disassociation request.</p>
*/
inline DisassociateVPCFromHostedZoneRequest& WithComment(Aws::String&& value) { SetComment(std::move(value)); return *this;}
/**
* <p> <i>Optional:</i> A comment about the disassociation request.</p>
*/
inline DisassociateVPCFromHostedZoneRequest& WithComment(const char* value) { SetComment(value); return *this;}
private:
Aws::String m_hostedZoneId;
bool m_hostedZoneIdHasBeenSet;
VPC m_vPC;
bool m_vPCHasBeenSet;
Aws::String m_comment;
bool m_commentHasBeenSet;
};
} // namespace Model
} // namespace Route53
} // namespace Aws