import { ResourceBase, ResourceTag } from '../resource'; import { Value, List } from '../dataTypes'; export interface LocationObjectStorageProperties { ServerCertificate?: Value; SecretKey?: Value; BucketName?: Value; Subdirectory?: Value; ServerHostname?: Value; AccessKey?: Value; ServerProtocol?: Value; AgentArns: List>; ServerPort?: Value; Tags?: List; } export default class LocationObjectStorage extends ResourceBase { constructor(properties: LocationObjectStorageProperties); }