UNPKG

cdk-amazon-chime-resources

Version:

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

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