@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)
49 lines (48 loc) • 1.25 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Resource Type definition for AWS::DirectConnect::Lag
*/
export declare function getLag(args: GetLagArgs, opts?: pulumi.InvokeOptions): Promise<GetLagResult>;
export interface GetLagArgs {
/**
* The ARN of the LAG.
*/
lagArn: string;
}
export interface GetLagResult {
/**
* The ARN of the LAG.
*/
readonly lagArn?: string;
/**
* The ID of the LAG.
*/
readonly lagId?: string;
/**
* The name of the LAG.
*/
readonly lagName?: string;
/**
* The state of the LAG.
*/
readonly lagState?: string;
/**
* The minimum number of physical dedicated connections that must be operational for the LAG itself to be operational.
*/
readonly minimumLinks?: number;
/**
* The tags associated with the LAG.
*/
readonly tags?: outputs.Tag[];
}
/**
* Resource Type definition for AWS::DirectConnect::Lag
*/
export declare function getLagOutput(args: GetLagOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLagResult>;
export interface GetLagOutputArgs {
/**
* The ARN of the LAG.
*/
lagArn: pulumi.Input<string>;
}