import { ResourceBase, ResourceTag } from '../resource'; import { Value, List } from '../dataTypes'; export declare class AgentPermissions { Principals: List>; constructor(properties: AgentPermissions); } export declare class Channel { channelUri: Value; channelId?: Value; constructor(properties: Channel); } export interface ProfilingGroupProperties { AnomalyDetectionNotificationConfiguration?: List; AgentPermissions?: AgentPermissions; ComputePlatform?: Value; ProfilingGroupName: Value; Tags?: List; } export default class ProfilingGroup extends ResourceBase { static AgentPermissions: typeof AgentPermissions; static Channel: typeof Channel; constructor(properties: ProfilingGroupProperties); }