@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
11 lines (10 loc) • 374 B
TypeScript
import { ResourceBase } from "../../resource";
import { Value } from "../../data-types";
export interface EventStreamProperties {
ApplicationId: Value<string>;
DestinationStreamArn: Value<string>;
RoleArn: Value<string>;
}
export default class Inner_EventStream extends ResourceBase<EventStreamProperties> {
constructor(properties: EventStreamProperties);
}