aliyunoss-cli
    Preparing search index...

    Interface ImageClientOptions

    interface ImageClientOptions {
        accessKeyId: string;
        accessKeySecret: string;
        bucket: string;
        imageHost: string;
        internal?: boolean;
        region?: string;
        timeout?: string | number;
    }
    Index
    accessKeyId: string

    access key you create on aliyun console website

    accessKeySecret: string

    access secret you create

    bucket: string

    the default bucket you want to access If you don't have any bucket, please use putBucket() create one first.

    imageHost: string

    your image service domain that binding to a OSS bucket

    internal?: boolean

    access OSS with aliyun internal network or not, default is false If your servers are running on aliyun too, you can set true to save lot of money.

    region?: string

    the bucket data region location, please see Data Regions, default is oss-cn-hangzhou

    timeout?: string | number

    instance level timeout for all operations, default is 60s