@altostra/core
Version:
Core library for shared types and logic
8 lines (7 loc) • 349 B
TypeScript
import type { AwsResourceCommon } from "../common";
import type { ParameterGroupProperties } from "./common";
export declare type DBClusterParameterGroupType = 'AWS::RDS::DBClusterParameterGroup';
export interface DBClusterParameterGroup extends AwsResourceCommon {
Type: DBClusterParameterGroupType;
Properties: ParameterGroupProperties;
}