UNPKG

@taimos/cdk-controltower

Version:

[![npm version](https://badge.fury.io/js/@taimos%2Fcdk-controltower.svg)](https://badge.fury.io/js/@taimos%2Fcdk-controltower)

11 lines (10 loc) 438 B
import { Stage, StageProps } from 'aws-cdk-lib'; import { Construct } from 'constructs'; import { AccountInfo, OrgPrincipalAware } from '../aws-org'; export interface LogArchiveConfig { readonly logArchiveAccount: AccountInfo; } export type LogArchiveStageProps = OrgPrincipalAware & LogArchiveConfig & StageProps; export declare class LogArchiveStage extends Stage { constructor(scope: Construct, props: LogArchiveStageProps); }