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

RetentionPeriod

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

How many days your data is kept in the hot tier. By default, your data is kept indefinitely in the hot tier.

interface RetentionPeriod {
numberOfDays?: number | null;
unlimited?: boolean | null;
}

§Properties

§
numberOfDays?: number | null
[src]

The number of days that your data is kept.

Note: If you specified a value for this parameter, the unlimited parameter must be false.

§
unlimited?: boolean | null
[src]

If true, your data is kept indefinitely.

Note: If configured to true, you must not specify a value for the numberOfDays parameter.