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