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

UserPausedDetails

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

Provides information about when a classification job was paused. For a one-time job, this object also specifies when the job will expire and be cancelled if it isn't resumed. For a recurring job, this object also specifies when the paused job run will expire and be cancelled if it isn't resumed. This object is present only if a job's current status (jobStatus) is USER_PAUSED. The information in this object applies only to a job that was paused while it had a status of RUNNING.

interface UserPausedDetails {
jobExpiresAt?: Date | number | null;
jobImminentExpirationHealthEventArn?: string | null;
jobPausedAt?: Date | number | null;
}

§Properties

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

The date and time, in UTC and extended ISO 8601 format, when the job or job run will expire and be cancelled if you don't resume it first.

§
jobImminentExpirationHealthEventArn?: string | null
[src]

The Amazon Resource Name (ARN) of the Health event that Amazon Macie sent to notify you of the job or job run's pending expiration and cancellation. This value is null if a job has been paused for less than 23 days.

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

The date and time, in UTC and extended ISO 8601 format, when you paused the job.