import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::DirectConnect::Lag */ export declare class Lag extends pulumi.CustomResource { /** * Get an existing Lag resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): Lag; /** * Returns true if the given object is an instance of Lag. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Lag; /** * The bandwidth of the individual physical dedicated connections bundled by the LAG. */ readonly connectionsBandwidth: pulumi.Output; /** * The ARN of the LAG. */ readonly lagArn: pulumi.Output; /** * The ID of the LAG. */ readonly lagId: pulumi.Output; /** * The name of the LAG. */ readonly lagName: pulumi.Output; /** * The state of the LAG. */ readonly lagState: pulumi.Output; /** * The location for the LAG. */ readonly location: pulumi.Output; /** * The minimum number of physical dedicated connections that must be operational for the LAG itself to be operational. */ readonly minimumLinks: pulumi.Output; /** * The name of the service provider associated with the requested LAG. */ readonly providerName: pulumi.Output; /** * Indicates whether you want the LAG to support MAC Security (MACsec). */ readonly requestMacSec: pulumi.Output; /** * The tags associated with the LAG. */ readonly tags: pulumi.Output; /** * Create a Lag resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: LagArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Lag resource. */ export interface LagArgs { /** * The bandwidth of the individual physical dedicated connections bundled by the LAG. */ connectionsBandwidth: pulumi.Input; /** * The name of the LAG. */ lagName?: pulumi.Input; /** * The location for the LAG. */ location: pulumi.Input; /** * The minimum number of physical dedicated connections that must be operational for the LAG itself to be operational. */ minimumLinks?: pulumi.Input; /** * The name of the service provider associated with the requested LAG. */ providerName?: pulumi.Input; /** * Indicates whether you want the LAG to support MAC Security (MACsec). */ requestMacSec?: pulumi.Input; /** * The tags associated with the LAG. */ tags?: pulumi.Input[]>; }