UNPKG

cdk-amazon-chime-resources

Version:

![Experimental](https://img.shields.io/badge/experimental-important.svg?style=for-the-badge)

18 lines (17 loc) 572 B
import { StreamingConfiguration } from '@aws-sdk/client-chime-sdk-messaging'; export declare enum AppInstanceDataType { CHANNEL = "Channel", CHANNELMESSAGE = "ChannelMessage" } interface StreamingConfigsProps { dataType: AppInstanceDataType; resourceArn: string; } interface DataRetentionProps { streamingConfigs?: StreamingConfigsProps[]; appInstanceArn?: string; } export declare const PutStreamingConfiguration: (props: DataRetentionProps) => Promise<{ appInstanceStreamingConfiguration: StreamingConfiguration[] | undefined; }>; export {};