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

    Class PutBucketReplicationReattemptCommand

    Triggers a reattempt of replication for a bucket.

    Use a bare-bones client and the command you need to make an API call.

    import { S3Client, PutBucketReplicationReattemptCommand } from "ibm-cos-sdk-v2"; // ES Modules import
    // const { S3Client, PutBucketReplicationReattemptCommand } = require("ibm-cos-sdk-v2"); // CommonJS import
    // import type { S3ClientConfig } from "ibm-cos-sdk-v2";
    const config = {}; // type is S3ClientConfig
    const client = new S3Client(config);
    const input = { // PutBucketReplicationReattemptInput
    Bucket: "STRING_VALUE", // required
    };
    const command = new PutBucketReplicationReattemptCommand(input);
    const response = await client.send(command);
    // {};

    PutBucketReplicationReattemptCommandInput

    S3ServiceException

    Base exception class for all service exceptions from S3 service.

    Hierarchy

    Index

    Constructors

    Constructors

    • Returns PutBucketReplicationReattemptCommand

    • Parameters

      Returns PutBucketReplicationReattemptCommand