UNPKG

@altostra/core

Version:

Core library for shared types and logic

8 lines (7 loc) 321 B
import type { AwsResourceCommon } from "../common"; import type { ParameterGroupProperties } from "./common"; export declare type DBParameterGroupType = 'AWS::RDS::DBParameterGroup'; export interface DBParameterGroup extends AwsResourceCommon { Type: DBParameterGroupType; Properties: ParameterGroupProperties; }