UNPKG

@altostra/core

Version:

Core library for shared types and logic

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