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

GetSigningProfileResponse

import type { GetSigningProfileResponse } from "https://aws-api.deno.dev/v0.3/services/signer.ts?docs=full";
interface GetSigningProfileResponse {
arn?: string | null;
overrides?: SigningPlatformOverrides | null;
platformDisplayName?: string | null;
platformId?: string | null;
profileName?: string | null;
profileVersion?: string | null;
profileVersionArn?: string | null;
revocationRecord?: SigningProfileRevocationRecord | null;
signatureValidityPeriod?: SignatureValidityPeriod | null;
signingMaterial?: SigningMaterial | null;
signingParameters?: {
[key: string]: string | null | undefined;
}
| null;
status?: SigningProfileStatus | null;
statusReason?: string | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
arn?: string | null
[src]

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

§

A list of overrides applied by the target signing profile for signing operations.

§
platformDisplayName?: string | null
[src]

A human-readable name for the signing platform associated with the signing profile.

§
platformId?: string | null
[src]

The ID of the platform that is used by the target signing profile.

§
profileName?: string | null
[src]

The name of the target signing profile.

§
profileVersion?: string | null
[src]

The current version of the signing profile.

§
profileVersionArn?: string | null
[src]

The signing profile ARN, including the profile version.

§
revocationRecord?: SigningProfileRevocationRecord | null
[src]
§
signatureValidityPeriod?: SignatureValidityPeriod | null
[src]
§
signingMaterial?: SigningMaterial | null
[src]

The ARN of the certificate that the target profile uses for signing operations.

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

A map of key-value pairs for signing operations that is attached to the target signing profile.

§

The status of the target signing profile.

§
statusReason?: string | null
[src]

Reason for the status of the target signing profile.

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

A list of tags associated with the signing profile.