@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
15 lines (14 loc) • 507 B
TypeScript
import { ResourceBase } from "../../resource";
import { Value } from "../../data-types";
export interface FlowLogProperties {
DeliverLogsPermissionArn?: Value<string>;
LogDestination?: Value<string>;
LogDestinationType?: Value<string>;
LogGroupName?: Value<string>;
ResourceId: Value<string>;
ResourceType: Value<string>;
TrafficType: Value<string>;
}
export default class Inner_FlowLog extends ResourceBase<FlowLogProperties> {
constructor(properties: FlowLogProperties);
}