import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * An Amazon CloudFront VPC origin. */ export declare function getVpcOrigin(args: GetVpcOriginArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetVpcOriginArgs { /** * The VPC origin ID. */ id: string; } export interface GetVpcOriginResult { /** * The account ID of the AWS account that owns the VPC origin. */ readonly accountId?: string; /** * The VPC origin ARN. */ readonly arn?: string; /** * The VPC origin created time. */ readonly createdTime?: string; /** * The VPC origin ID. */ readonly id?: string; /** * The VPC origin last modified time. */ readonly lastModifiedTime?: string; /** * The VPC origin status. */ readonly status?: string; /** * A complex type that contains zero or more ``Tag`` elements. */ readonly tags?: outputs.Tag[]; /** * The VPC origin endpoint configuration. */ readonly vpcOriginEndpointConfig?: outputs.cloudfront.VpcOriginEndpointConfig; } /** * An Amazon CloudFront VPC origin. */ export declare function getVpcOriginOutput(args: GetVpcOriginOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetVpcOriginOutputArgs { /** * The VPC origin ID. */ id: pulumi.Input; }