Documentation - v0.0.0
    Preparing search index...
    interface S3BucketStepProps {
        action: "copy" | "sync";
        destination: string | S3ObjectRef;
        env?: Record<string, string>;
        postSteps?: JobStep[];
        preSteps?: JobStep[];
        scopeS3Uris?: boolean;
        source: string | S3ObjectRef;
        stepProps?: Partial<JobStep>;
    }
    Index

    Properties

    action: "copy" | "sync"

    The action to perform.

    destination: string | S3ObjectRef

    Destination path or remote s3 reference.

    env?: Record<string, string>
    postSteps?: JobStep[]
    preSteps?: JobStep[]
    scopeS3Uris?: boolean

    Add a prefix to any s3 object refs of -/

    source: string | S3ObjectRef

    Source path or remote s3 reference.

    stepProps?: Partial<JobStep>