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

    Describes an Amazon S3 location that will receive the results of the restore request.

    interface S3Location {
        BucketName: string | undefined;
        Prefix: string | undefined;
        Encryption?: Encryption;
        CannedACL?: ObjectCannedACL;
        AccessControlList?: Grant[];
        Tagging?: Tagging;
        UserMetadata?: MetadataEntry[];
        StorageClass?: StorageClass;
    }
    Index

    Properties

    BucketName: string | undefined

    The name of the bucket where the restore results will be placed.

    Prefix: string | undefined

    The prefix that is prepended to the restore results for this request.

    Encryption?: Encryption

    Contains the type of server-side encryption used.

    CannedACL?: ObjectCannedACL

    The canned ACL to apply to the restore results.

    AccessControlList?: Grant[]

    A list of grants that control access to the staged results.

    Tagging?: Tagging

    The tag-set that is applied to the restore results.

    UserMetadata?: MetadataEntry[]

    A list of metadata to store with the restore results in S3.

    StorageClass?: StorageClass

    The class of storage used to store the restore results.