UNPKG

@pulumi/aws

Version:

A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.

138 lines (137 loc) 3.24 kB
import * as pulumi from "@pulumi/pulumi"; /** * Provides details about an Outposts Outpost. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aws from "@pulumi/aws"; * * const example = aws.outposts.getOutpost({ * name: "example", * }); * ``` */ export declare function getOutpost(args?: GetOutpostArgs, opts?: pulumi.InvokeOptions): Promise<GetOutpostResult>; /** * A collection of arguments for invoking getOutpost. */ export interface GetOutpostArgs { /** * ARN. */ arn?: string; /** * Identifier of the Outpost. */ id?: string; /** * Name of the Outpost. */ name?: string; /** * AWS Account identifier of the Outpost owner. */ ownerId?: string; /** * Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration. */ region?: string; /** * The Outpost tags. */ tags?: { [key: string]: string; }; } /** * A collection of values returned by getOutpost. */ export interface GetOutpostResult { readonly arn: string; /** * Availability Zone name. */ readonly availabilityZone: string; /** * Availability Zone identifier. */ readonly availabilityZoneId: string; /** * The description of the Outpost. */ readonly description: string; readonly id: string; /** * The life cycle status. */ readonly lifecycleStatus: string; readonly name: string; readonly ownerId?: string; readonly region: string; /** * The Amazon Resource Name (ARN) of the site. */ readonly siteArn: string; /** * The ID of the site. */ readonly siteId: string; /** * The hardware type. */ readonly supportedHardwareType: string; /** * The Outpost tags. */ readonly tags: { [key: string]: string; }; } /** * Provides details about an Outposts Outpost. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aws from "@pulumi/aws"; * * const example = aws.outposts.getOutpost({ * name: "example", * }); * ``` */ export declare function getOutpostOutput(args?: GetOutpostOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetOutpostResult>; /** * A collection of arguments for invoking getOutpost. */ export interface GetOutpostOutputArgs { /** * ARN. */ arn?: pulumi.Input<string>; /** * Identifier of the Outpost. */ id?: pulumi.Input<string>; /** * Name of the Outpost. */ name?: pulumi.Input<string>; /** * AWS Account identifier of the Outpost owner. */ ownerId?: pulumi.Input<string>; /** * Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration. */ region?: pulumi.Input<string>; /** * The Outpost tags. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input<string>; }>; }