typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
35 lines (34 loc) • 1.56 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type ClusterSubnetGroup_Type = 'AWS::Redshift::ClusterSubnetGroup';
export declare const ClusterSubnetGroup_Type = "AWS::Redshift::ClusterSubnetGroup";
/**
* Resource Type definition for AWS::Redshift::ClusterSubnetGroup {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html}
*/
export default function ClusterSubnetGroup(props: ClusterSubnetGroup_Properties): CfnResource<ClusterSubnetGroup_Properties>;
/**
* Resource Type definition for AWS::Redshift::ClusterSubnetGroup {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html}
*/
export declare type ClusterSubnetGroup_Properties = {
Id?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description}
*/
Description: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-subnetids}
*/
SubnetIds: Resolvable<string>[];
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-tags}
*/
Tags?: Tag[];
};
export declare type Tag = {
Key: Resolvable<string>;
Value: Resolvable<string>;
};