import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DisassociateVPCFromHostedZoneRequest, DisassociateVPCFromHostedZoneResponse } from "../models/models_0"; import type { Route53ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53Client"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DisassociateVPCFromHostedZoneCommand}. */ export interface DisassociateVPCFromHostedZoneCommandInput extends DisassociateVPCFromHostedZoneRequest { } /** * @public * * The output of {@link DisassociateVPCFromHostedZoneCommand}. */ export interface DisassociateVPCFromHostedZoneCommandOutput extends DisassociateVPCFromHostedZoneResponse, __MetadataBearer { } declare const DisassociateVPCFromHostedZoneCommand_base: { new (input: DisassociateVPCFromHostedZoneCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DisassociateVPCFromHostedZoneCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Disassociates an Amazon Virtual Private Cloud (Amazon VPC) from an Amazon Route 53 * private hosted zone. Note the following:

* * *

When revoking access, the hosted zone and the Amazon VPC must belong to * the same partition. A partition is a group of Amazon Web Services Regions. Each * Amazon Web Services account is scoped to one partition.

*

The following are the supported partitions:

*
    *
  • *

    * aws - Amazon Web Services Regions

    *
  • *
  • *

    * aws-cn - China Regions

    *
  • *
  • *

    * aws-us-gov - Amazon Web Services GovCloud (US) Region

    *
  • *
*

For more information, see Access Management * in the Amazon Web Services General Reference.

*
* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { Route53Client, DisassociateVPCFromHostedZoneCommand } from "@aws-sdk/client-route-53"; // ES Modules import * // const { Route53Client, DisassociateVPCFromHostedZoneCommand } = require("@aws-sdk/client-route-53"); // CommonJS import * // import type { Route53ClientConfig } from "@aws-sdk/client-route-53"; * const config = {}; // type is Route53ClientConfig * const client = new Route53Client(config); * const input = { // DisassociateVPCFromHostedZoneRequest * HostedZoneId: "STRING_VALUE", // required * VPC: { // VPC * VPCRegion: "us-east-1" || "us-east-2" || "us-west-1" || "us-west-2" || "eu-west-1" || "eu-west-2" || "eu-west-3" || "eu-central-1" || "eu-central-2" || "ap-east-1" || "me-south-1" || "us-gov-west-1" || "us-gov-east-1" || "us-iso-east-1" || "us-iso-west-1" || "us-isob-east-1" || "me-central-1" || "ap-southeast-1" || "ap-southeast-2" || "ap-southeast-3" || "ap-south-1" || "ap-south-2" || "ap-northeast-1" || "ap-northeast-2" || "ap-northeast-3" || "eu-north-1" || "sa-east-1" || "ca-central-1" || "cn-north-1" || "cn-northwest-1" || "af-south-1" || "eu-south-1" || "eu-south-2" || "ap-southeast-4" || "il-central-1" || "ca-west-1" || "ap-southeast-5" || "mx-central-1" || "us-isof-south-1" || "us-isof-east-1" || "ap-southeast-7" || "ap-east-2" || "eu-isoe-west-1" || "ap-southeast-6" || "us-isob-west-1" || "eusc-de-east-1", * VPCId: "STRING_VALUE", * }, * Comment: "STRING_VALUE", * }; * const command = new DisassociateVPCFromHostedZoneCommand(input); * const response = await client.send(command); * // { // DisassociateVPCFromHostedZoneResponse * // ChangeInfo: { // ChangeInfo * // Id: "STRING_VALUE", // required * // Status: "PENDING" || "INSYNC", // required * // SubmittedAt: new Date("TIMESTAMP"), // required * // Comment: "STRING_VALUE", * // }, * // }; * * ``` * * @param DisassociateVPCFromHostedZoneCommandInput - {@link DisassociateVPCFromHostedZoneCommandInput} * @returns {@link DisassociateVPCFromHostedZoneCommandOutput} * @see {@link DisassociateVPCFromHostedZoneCommandInput} for command's `input` shape. * @see {@link DisassociateVPCFromHostedZoneCommandOutput} for command's `response` shape. * @see {@link Route53ClientResolvedConfig | config} for Route53Client's `config` shape. * * @throws {@link InvalidInput} (client fault) *

The input is not valid.

* * @throws {@link InvalidVPCId} (client fault) *

The VPC ID that you specified either isn't a valid ID or the current account is not * authorized to access this VPC.

* * @throws {@link LastVPCAssociation} (client fault) *

The VPC that you're trying to disassociate from the private hosted zone is the last * VPC that is associated with the hosted zone. Amazon Route 53 doesn't support * disassociating the last VPC from a hosted zone.

* * @throws {@link NoSuchHostedZone} (client fault) *

No hosted zone exists with the ID that you specified.

* * @throws {@link VPCAssociationNotFound} (client fault) *

The specified VPC and hosted zone are not currently associated.

* * @throws {@link Route53ServiceException} *

Base exception class for all service exceptions from Route53 service.

* * * @public */ export declare class DisassociateVPCFromHostedZoneCommand extends DisassociateVPCFromHostedZoneCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DisassociateVPCFromHostedZoneRequest; output: DisassociateVPCFromHostedZoneResponse; }; sdk: { input: DisassociateVPCFromHostedZoneCommandInput; output: DisassociateVPCFromHostedZoneCommandOutput; }; }; }