UNPKG

@altostra/core

Version:

Core library for shared types and logic

13 lines (12 loc) 475 B
import type { AwsResourceCommon, CloudFormationTags } from "../common"; import type { CloudFormationValue } from "../IntrinsicFunctions"; export declare type DBSubnetGroupType = 'AWS::RDS::DBSubnetGroup'; export interface DBSubnetGroup extends AwsResourceCommon { Type: DBSubnetGroupType; Properties: { DBSubnetGroupDescription: string; DBSubnetGroupName?: string; SubnetIds: CloudFormationValue[]; Tags?: CloudFormationTags; }; }