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

WarmPoolStatus

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

Status and billing information about the warm pool.

interface WarmPoolStatus {
ResourceRetainedBillableTimeInSeconds?: number | null;
ReusedByJob?: string | null;
}

§Properties

§
ResourceRetainedBillableTimeInSeconds?: number | null
[src]

The billable time in seconds used by the warm pool. Billable time refers to the absolute wall-clock time.

Multiply ResourceRetainedBillableTimeInSeconds by the number of instances (InstanceCount) in your training cluster to get the total compute time SageMaker bills you if you run warm pool training. The formula is as follows: ResourceRetainedBillableTimeInSeconds * InstanceCount.

§
ReusedByJob?: string | null
[src]

The name of the matching training job that reused the warm pool.

§

The status of the warm pool.

  • InUse: The warm pool is in use for the training job.
  • Available: The warm pool is available to reuse for a matching training job.
  • Reused: The warm pool moved to a matching training job for reuse.
  • Terminated: The warm pool is no longer available. Warm pools are unavailable if they are terminated by a user, terminated for a patch update, or terminated for exceeding the specified KeepAlivePeriodInSeconds.