UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

40 lines (39 loc) 1.67 kB
import { CfnResource, Resolvable } from '../../base'; export declare type DBSubnetGroup_Type = 'AWS::RDS::DBSubnetGroup'; export declare const DBSubnetGroup_Type = "AWS::RDS::DBSubnetGroup"; /** * Resource Type definition for AWS::RDS::DBSubnetGroup {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html} */ export default function DBSubnetGroup(props: DBSubnetGroup_Properties): CfnResource<DBSubnetGroup_Properties>; /** * Resource Type definition for AWS::RDS::DBSubnetGroup {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html} */ export declare type DBSubnetGroup_Properties = { Id?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription} */ DBSubnetGroupDescription: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupname} */ DBSubnetGroupName?: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-subnetids} */ SubnetIds: Resolvable<string>[]; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-tags} */ Tags?: Tag[]; }; export declare type Tag = { Key: Resolvable<string>; Value: Resolvable<string>; };