typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
38 lines (37 loc) • 1.97 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type ClusterSecurityGroupIngress_Type = 'AWS::Redshift::ClusterSecurityGroupIngress';
export declare const ClusterSecurityGroupIngress_Type = "AWS::Redshift::ClusterSecurityGroupIngress";
/**
* Resource Type definition for
* AWS::Redshift::ClusterSecurityGroupIngress {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html}
*/
export default function ClusterSecurityGroupIngress(props: ClusterSecurityGroupIngress_Properties): CfnResource<ClusterSecurityGroupIngress_Properties>;
/**
* Resource Type definition for
* AWS::Redshift::ClusterSecurityGroupIngress {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html}
*/
export declare type ClusterSecurityGroupIngress_Properties = {
Id?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-cidrip}
*/
CIDRIP?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname}
*/
ClusterSecurityGroupName: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupname}
*/
EC2SecurityGroupName?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupownerid}
*/
EC2SecurityGroupOwnerId?: Resolvable<string>;
};