@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.96 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Resource Type definition for LocalGatewayVirtualInterfaceGroup which describes a group of LocalGateway VirtualInterfaces
*/
export declare function getLocalGatewayVirtualInterfaceGroup(args: GetLocalGatewayVirtualInterfaceGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetLocalGatewayVirtualInterfaceGroupResult>;
export interface GetLocalGatewayVirtualInterfaceGroupArgs {
/**
* The ID of the virtual interface group
*/
localGatewayVirtualInterfaceGroupId: string;
}
export interface GetLocalGatewayVirtualInterfaceGroupResult {
/**
* The current state of the local gateway virtual interface group
*/
readonly configurationState?: string;
/**
* The Amazon Resource Number (ARN) of the local gateway virtual interface group
*/
readonly localGatewayVirtualInterfaceGroupArn?: string;
/**
* The ID of the virtual interface group
*/
readonly localGatewayVirtualInterfaceGroupId?: string;
/**
* The IDs of the virtual interfaces
*/
readonly localGatewayVirtualInterfaceIds?: string[];
/**
* The ID of the Amazon Web Services account that owns the local gateway virtual interface group
*/
readonly ownerId?: string;
/**
* The tags assigned to the virtual interface group
*/
readonly tags?: outputs.Tag[];
}
/**
* Resource Type definition for LocalGatewayVirtualInterfaceGroup which describes a group of LocalGateway VirtualInterfaces
*/
export declare function getLocalGatewayVirtualInterfaceGroupOutput(args: GetLocalGatewayVirtualInterfaceGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLocalGatewayVirtualInterfaceGroupResult>;
export interface GetLocalGatewayVirtualInterfaceGroupOutputArgs {
/**
* The ID of the virtual interface group
*/
localGatewayVirtualInterfaceGroupId: pulumi.Input<string>;
}