IBM COS SDK for JavaScript V2 - v1.0.0
    Preparing search index...

    Interface ListBucketsCommandOutput

    The output of ListBucketsCommand.

    interface ListBucketsCommandOutput {
        Buckets?: Bucket[];
        Owner?: Owner;
        ContinuationToken?: string;
        Prefix?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Buckets?: Bucket[]

    The list of buckets owned by the requester.

    Owner?: Owner

    The owner of the buckets listed.

    ContinuationToken?: string

    ContinuationToken is included in the response when there are more buckets that can be listed with pagination. The next ListBuckets request to Amazon S3 can be continued with this ContinuationToken. ContinuationToken is obfuscated and is not a real bucket.

    Prefix?: string

    If Prefix was sent with the request, it is included in the response.

    All bucket names in the response begin with the specified bucket name prefix.