typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
30 lines (29 loc) • 1.3 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type SecurityGroup_Type = 'AWS::ElastiCache::SecurityGroup';
export declare const SecurityGroup_Type = "AWS::ElastiCache::SecurityGroup";
/**
* Resource Type definition for AWS::ElastiCache::SecurityGroup {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html}
*/
export default function SecurityGroup(props: SecurityGroup_Properties): CfnResource<SecurityGroup_Properties>;
/**
* Resource Type definition for AWS::ElastiCache::SecurityGroup {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html}
*/
export declare type SecurityGroup_Properties = {
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-tags}
*/
Tags?: Tag[];
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description}
*/
Description: Resolvable<string>;
Id?: Resolvable<string>;
};
export declare type Tag = {
Value: Resolvable<string>;
Key: Resolvable<string>;
};