UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

40 lines (39 loc) 1.72 kB
import { CfnResource, Resolvable } from '../../base'; export declare type SubnetGroup_Type = 'AWS::ElastiCache::SubnetGroup'; export declare const SubnetGroup_Type = "AWS::ElastiCache::SubnetGroup"; /** * Resource Type definition for AWS::ElastiCache::SubnetGroup {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html} */ export default function SubnetGroup(props: SubnetGroup_Properties): CfnResource<SubnetGroup_Properties>; /** * Resource Type definition for AWS::ElastiCache::SubnetGroup {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html} */ export declare type SubnetGroup_Properties = { /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description} */ Description: Resolvable<string>; Id?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-subnetids} */ SubnetIds: Resolvable<string>[]; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-cachesubnetgroupname} */ CacheSubnetGroupName?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-tags} */ Tags?: Tag[]; }; export declare type Tag = { Value: Resolvable<string>; Key: Resolvable<string>; };