@altostra/core
Version:
Core library for shared types and logic
14 lines (13 loc) • 423 B
TypeScript
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>;
}