import { _UnmarshalledVPC } from "./_VPC"; import * as __aws_sdk_types from "@aws-sdk/types"; /** *
A complex type that contains the response information for the request.
*/ export interface ListVPCAssociationAuthorizationsOutput extends __aws_sdk_types.MetadataBearer { /** *The ID of the hosted zone that you can associate the listed VPCs with.
*/ HostedZoneId: string; /** *When the response includes a NextToken element, there are more VPCs that can be associated with the specified hosted zone. To get the next page of VPCs, submit another ListVPCAssociationAuthorizations request, and include the value of the NextToken element from the response in the nexttoken request parameter.
The list of VPCs that are authorized to be associated with the specified hosted zone.
*/ VPCs: Array<_UnmarshalledVPC>; /** * 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; }