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

SigningProfile

import type { SigningProfile } from "https://aws-api.deno.dev/v0.3/services/signer.ts?docs=full";

Contains information about the ACM certificates and code signing configuration parameters that can be used by a given code signing user.

interface SigningProfile {
arn?: string | null;
platformDisplayName?: string | null;
platformId?: string | null;
profileName?: string | null;
profileVersion?: string | null;
profileVersionArn?: string | null;
signatureValidityPeriod?: SignatureValidityPeriod | null;
signingMaterial?: SigningMaterial | null;
signingParameters?: {
[key: string]: string | null | undefined;
}
| null;
status?: SigningProfileStatus | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
arn?: string | null
[src]

The Amazon Resource Name (ARN) for the signing profile.

§
platformDisplayName?: string | null
[src]

The name of the signing platform.

§
platformId?: string | null
[src]

The ID of a platform that is available for use by a signing profile.

§
profileName?: string | null
[src]

The name of the signing profile.

§
profileVersion?: string | null
[src]

The version of a signing profile.

§
profileVersionArn?: string | null
[src]

The ARN of a signing profile, including the profile version.

§
signatureValidityPeriod?: SignatureValidityPeriod | null
[src]

The validity period for a signing job created using this signing profile.

§
signingMaterial?: SigningMaterial | null
[src]

The ACM certificate that is available for use by a signing profile.

§
signingParameters?: {
[key: string]: string | null | undefined;
}
| null
[src]

The parameters that are available for use by a code signing user.

§

The status of a code signing profile.

§
tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

A list of tags associated with the signing profile.