import { _UnmarshalledHostedZone } from "./_HostedZone"; import { _UnmarshalledChangeInfo } from "./_ChangeInfo"; import { _UnmarshalledDelegationSet } from "./_DelegationSet"; import { _UnmarshalledVPC } from "./_VPC"; import * as __aws_sdk_types from "@aws-sdk/types"; /** *
A complex type containing the response information for the hosted zone.
*/ export interface CreateHostedZoneOutput extends __aws_sdk_types.MetadataBearer { /** *A complex type that contains general information about the hosted zone.
*/ HostedZone: _UnmarshalledHostedZone; /** *A complex type that contains information about the CreateHostedZone request.
A complex type that describes the name servers for this hosted zone.
*/ DelegationSet: _UnmarshalledDelegationSet; /** *A complex type that contains information about an Amazon VPC that you associated with this hosted zone.
*/ VPC?: _UnmarshalledVPC; /** *The unique URL representing the new hosted zone.
*/ Location: string; /** * Metadata about the response received, including the HTTP status code, HTTP headers, and any request identifiers recognized by the SDK. */ $metadata: __aws_sdk_types.ResponseMetadata; }