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)

42 lines (41 loc) 1.44 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Resource Type definition for AWS::DevOpsAgent::PrivateConnection */ export declare function getPrivateConnection(args: GetPrivateConnectionArgs, opts?: pulumi.InvokeOptions): Promise<GetPrivateConnectionResult>; export interface GetPrivateConnectionArgs { /** * Unique name for this Private Connection within the account. */ name: string; } export interface GetPrivateConnectionResult { /** * The Amazon Resource Name (ARN) of the Private Connection. */ readonly arn?: string; /** * The expiry time of the certificate associated with the Private Connection. */ readonly certificateExpiryTime?: string; /** * The status of the Private Connection. */ readonly status?: enums.devopsagent.PrivateConnectionStatus; /** * An array of key-value pairs to apply to this resource. */ readonly tags?: outputs.Tag[]; } /** * Resource Type definition for AWS::DevOpsAgent::PrivateConnection */ export declare function getPrivateConnectionOutput(args: GetPrivateConnectionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPrivateConnectionResult>; export interface GetPrivateConnectionOutputArgs { /** * Unique name for this Private Connection within the account. */ name: pulumi.Input<string>; }