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

AuthorizationData

import type { AuthorizationData } from "https://aws-api.deno.dev/v0.4/services/ecrpublic.ts?docs=full";

An authorization token data object that corresponds to a public registry.

interface AuthorizationData {
authorizationToken?: string | null;
expiresAt?: Date | number | null;
}

§Properties

§
authorizationToken?: string | null
[src]

A base64-encoded string that contains authorization data for a public Amazon ECR registry. When the string is decoded, it's presented in the format user:password for public registry authentication using docker login.

§
expiresAt?: Date | number | null
[src]

The Unix time in seconds and milliseconds when the authorization token expires. Authorization tokens are valid for 12 hours.