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

GetCalendarStateResponse

import type { GetCalendarStateResponse } from "https://aws-api.deno.dev/v0.3/services/ssm.ts?docs=full";
interface GetCalendarStateResponse {
AtTime?: string | null;
NextTransitionTime?: string | null;
State?: CalendarState | null;
}

§Properties

§
AtTime?: string | null
[src]

The time, as an ISO 8601 string, that you specified in your command. If you don't specify a time, GetCalendarState uses the current time.

§
NextTransitionTime?: string | null
[src]

The time, as an ISO 8601 string, that the calendar state will change. If the current calendar state is OPEN, NextTransitionTime indicates when the calendar state changes to CLOSED, and vice-versa.

§
State?: CalendarState | null
[src]

The state of the calendar. An OPEN calendar indicates that actions are allowed to proceed, and a CLOSED calendar indicates that actions aren't allowed to proceed.