@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)
27 lines (26 loc) • 842 B
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Resource Type definition for AWS::DAX::SubnetGroup
*/
export declare function getSubnetGroup(args: GetSubnetGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetSubnetGroupResult>;
export interface GetSubnetGroupArgs {
id: string;
}
export interface GetSubnetGroupResult {
/**
* The description of the subnet group.
*/
readonly description?: string;
readonly id?: string;
/**
* A list of VPC subnet IDs for the subnet group.
*/
readonly subnetIds?: string[];
}
/**
* Resource Type definition for AWS::DAX::SubnetGroup
*/
export declare function getSubnetGroupOutput(args: GetSubnetGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSubnetGroupResult>;
export interface GetSubnetGroupOutputArgs {
id: pulumi.Input<string>;
}