interface BucketCreateInfo {
    description?: string | void;
    name: string;
    tags?: TagsObj[];
    visible?: boolean;
}

Hierarchy (view full)

Properties

description?: string | void

Description for the bucket.

name: string

A name for the bucket.

tags?: TagsObj[]

An array of tags.

visible?: boolean

Set if the bucket will be visible or not. Default True.