@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
16 lines (15 loc) • 569 B
TypeScript
import { ResourceBase } from "../../resource";
import { Value } from "../../data-types";
export declare class RotationRules {
AutomaticallyAfterDays?: Value<number>;
constructor(properties: RotationRules);
}
export interface RotationScheduleProperties {
SecretId: Value<string>;
RotationLambdaARN?: Value<string>;
RotationRules?: RotationRules;
}
export default class Inner_RotationSchedule extends ResourceBase<RotationScheduleProperties> {
static RotationRules: typeof RotationRules;
constructor(properties: RotationScheduleProperties);
}