Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

StartSigningJobRequest

import type { StartSigningJobRequest } from "https://aws-api.deno.dev/v0.3/services/signer.ts?docs=full";
interface StartSigningJobRequest {
clientRequestToken: string;
destination: Destination;
profileName: string;
profileOwner?: string | null;
source: Source;
}

§Properties

§
clientRequestToken: string
[src]

String that identifies the signing request. All calls after the first that use this token return the same response as the first call.

§
destination: Destination
[src]

The S3 bucket in which to save your signed object. The destination contains the name of your bucket and an optional prefix.

§
profileName: string
[src]

The name of the signing profile.

§
profileOwner?: string | null
[src]

The AWS account ID of the signing profile owner.

§
source: Source
[src]

The S3 bucket that contains the object to sign or a BLOB that contains your raw code.