UNPKG

@pulumi/aws-native

Version:

The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)

54 lines (53 loc) 1.6 kB
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<GetEndpointResult>; 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<GetEndpointResult>; export interface GetEndpointOutputArgs { /** * The Amazon Resource Name (ARN) of the endpoint. */ arn: pulumi.Input<string>; }