UNPKG

@nolanrigo/cloudformation

Version:

TypeScript-based imperative way to define AWS CloudFormation templates

19 lines (18 loc) 671 B
import { ResourceBase, ResourceTag as Inner_ResourceTag } from "../../resource"; import { Value, List } from "../../data-types"; export declare class StreamEncryption { EncryptionType: Value<string>; KeyId: Value<string>; constructor(properties: StreamEncryption); } export interface StreamProperties { Name?: Value<string>; RetentionPeriodHours?: Value<number>; ShardCount: Value<number>; StreamEncryption?: StreamEncryption; Tags?: List<Inner_ResourceTag>; } export default class Inner_Stream extends ResourceBase<StreamProperties> { static StreamEncryption: typeof StreamEncryption; constructor(properties: StreamProperties); }