@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)
41 lines (40 loc) • 1.8 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Resource Type definition for AWS::Redshift::ClusterSubnetGroup. Specifies an Amazon Redshift subnet group.
*/
export declare function getClusterSubnetGroup(args: GetClusterSubnetGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetClusterSubnetGroupResult>;
export interface GetClusterSubnetGroupArgs {
/**
* This name must be unique for all subnet groups that are created by your AWS account. If costumer do not provide it, cloudformation will generate it. Must not be "Default".
*/
clusterSubnetGroupName: string;
}
export interface GetClusterSubnetGroupResult {
/**
* This name must be unique for all subnet groups that are created by your AWS account. If costumer do not provide it, cloudformation will generate it. Must not be "Default".
*/
readonly clusterSubnetGroupName?: string;
/**
* The description of the parameter group.
*/
readonly description?: string;
/**
* The list of VPC subnet IDs
*/
readonly subnetIds?: string[];
/**
* The list of tags for the cluster parameter group.
*/
readonly tags?: outputs.Tag[];
}
/**
* Resource Type definition for AWS::Redshift::ClusterSubnetGroup. Specifies an Amazon Redshift subnet group.
*/
export declare function getClusterSubnetGroupOutput(args: GetClusterSubnetGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetClusterSubnetGroupResult>;
export interface GetClusterSubnetGroupOutputArgs {
/**
* This name must be unique for all subnet groups that are created by your AWS account. If costumer do not provide it, cloudformation will generate it. Must not be "Default".
*/
clusterSubnetGroupName: pulumi.Input<string>;
}