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

Condition

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

A conditional statement with which to compare a value, after a timestamp, before a timestamp, or equal to a string or integer. If multiple conditions are specified, the conditionals become an ANDed statement. If multiple values are specified for a conditional, the values are ORd.

interface Condition {
after?: Date | number | null;
before?: Date | number | null;
equals?: AttributeValueList | null;
}

§Properties

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

After the specified timestamp.

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

Before the specified timestamp

§
equals?: AttributeValueList | null
[src]

The value is equal to the provided string or integer.