import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Resource Type Definition for AWS::S3Outposts::Endpoint */ export declare function getEndpoint(args: GetEndpointArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetEndpointArgs { /** * The Amazon Resource Name (ARN) of the endpoint. */ arn: string; } export interface GetEndpointResult { /** * The Amazon Resource Name (ARN) of the endpoint. */ readonly arn?: string; /** * The VPC CIDR committed by this endpoint. */ readonly cidrBlock?: string; /** * The time the endpoint was created. */ readonly creationTime?: string; /** * The failure reason, if any, for a create or delete endpoint operation. */ readonly failedReason?: outputs.s3outposts.EndpointFailedReason; /** * The ID of the endpoint. */ readonly id?: string; /** * The network interfaces of the endpoint. */ readonly networkInterfaces?: outputs.s3outposts.EndpointNetworkInterface[]; /** * The status of the endpoint. */ readonly status?: enums.s3outposts.EndpointStatus; } /** * Resource Type Definition for AWS::S3Outposts::Endpoint */ export declare function getEndpointOutput(args: GetEndpointOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetEndpointOutputArgs { /** * The Amazon Resource Name (ARN) of the endpoint. */ arn: pulumi.Input; }