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

ContainerServiceRegistryLogin

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

Describes the login information for the container image registry of an Amazon Lightsail account.

interface ContainerServiceRegistryLogin {
expiresAt?: Date | number | null;
password?: string | null;
registry?: string | null;
username?: string | null;
}

§Properties

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

The timestamp of when the container image registry username and password expire.

The log in credentials expire 12 hours after they are created, at which point you will need to create a new set of log in credentials using the CreateContainerServiceRegistryLogin action.

§
password?: string | null
[src]

The container service registry password to use to push container images to the container image registry of a Lightsail account

§
registry?: string | null
[src]

The address to use to push container images to the container image registry of a Lightsail account.

§
username?: string | null
[src]

The container service registry username to use to push container images to the container image registry of a Lightsail account.