import type { Arn } from "../../CustomTypes/Arn";
import type { CloudFormationTags } from "../common";
import type { CloudFormationValue } from "../IntrinsicFunctions";
export interface ParameterGroupProperties {
    Description: string;
    Family: string;
    Parameters: Record<string, string>;
    Tags?: CloudFormationTags;
}
export interface DBRole {
    FeatureName: string;
    RoleArn: CloudFormationValue<Arn>;
}
