import { ResourceBase, ResourceTag } from '../resource'; import { Value, List } from '../dataTypes'; export declare class StreamEncryption { EncryptionType: Value; KeyId: Value; constructor(properties: StreamEncryption); } export interface StreamProperties { Name?: Value; RetentionPeriodHours?: Value; ShardCount: Value; StreamEncryption?: StreamEncryption; Tags?: List; } export default class Stream extends ResourceBase { static StreamEncryption: typeof StreamEncryption; constructor(properties: StreamProperties); }