@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)
104 lines (103 loc) • 3.58 kB
TypeScript
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<pulumi.ID>, 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<string>;
/**
* The ARN of the LAG.
*/
readonly lagArn: pulumi.Output<string>;
/**
* The ID of the LAG.
*/
readonly lagId: pulumi.Output<string>;
/**
* The name of the LAG.
*/
readonly lagName: pulumi.Output<string>;
/**
* The state of the LAG.
*/
readonly lagState: pulumi.Output<string>;
/**
* The location for the LAG.
*/
readonly location: pulumi.Output<string>;
/**
* The minimum number of physical dedicated connections that must be operational for the LAG itself to be operational.
*/
readonly minimumLinks: pulumi.Output<number | undefined>;
/**
* The name of the service provider associated with the requested LAG.
*/
readonly providerName: pulumi.Output<string | undefined>;
/**
* Indicates whether you want the LAG to support MAC Security (MACsec).
*/
readonly requestMacSec: pulumi.Output<boolean | undefined>;
/**
* The tags associated with the LAG.
*/
readonly tags: pulumi.Output<outputs.Tag[] | undefined>;
/**
* 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<string>;
/**
* The name of the LAG.
*/
lagName?: pulumi.Input<string>;
/**
* The location for the LAG.
*/
location: pulumi.Input<string>;
/**
* The minimum number of physical dedicated connections that must be operational for the LAG itself to be operational.
*/
minimumLinks?: pulumi.Input<number>;
/**
* The name of the service provider associated with the requested LAG.
*/
providerName?: pulumi.Input<string>;
/**
* Indicates whether you want the LAG to support MAC Security (MACsec).
*/
requestMacSec?: pulumi.Input<boolean>;
/**
* The tags associated with the LAG.
*/
tags?: pulumi.Input<pulumi.Input<inputs.TagArgs>[]>;
}