cdk-amazon-chime-resources
Version:

18 lines (17 loc) • 591 B
TypeScript
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 {};