import { ResourceBase, ResourceTag } from '../resource'; import { Value, List } from '../dataTypes'; export declare class ServerConfiguration { ServerHostname: Value; ServerPort?: Value; constructor(properties: ServerConfiguration); } export declare class ServerCredentials { Username: Value; Password: Value; constructor(properties: ServerCredentials); } export interface StorageSystemProperties { ServerCredentials?: ServerCredentials; ServerConfiguration: ServerConfiguration; CloudWatchLogGroupArn?: Value; SystemType: Value; AgentArns: List>; Tags?: List; Name?: Value; } export default class StorageSystem extends ResourceBase { static ServerConfiguration: typeof ServerConfiguration; static ServerCredentials: typeof ServerCredentials; constructor(properties: StorageSystemProperties); }