import * as __aws_sdk_types from "@aws-sdk/types"; /** * DescribeSnapshotScheduleOutput shape */ export interface DescribeSnapshotScheduleOutput extends __aws_sdk_types.MetadataBearer { /** *
The Amazon Resource Name (ARN) of the volume that was specified in the request.
*/ VolumeARN?: string; /** *The hour of the day at which the snapshot schedule begins represented as hh, where hh is the hour (0 to 23). The hour of the day is in the time zone of the gateway.
*/ StartAt?: number; /** *The number of hours between snapshots.
*/ RecurrenceInHours?: number; /** *The snapshot description.
*/ Description?: string; /** *A value that indicates the time zone of the gateway.
*/ Timezone?: string; /** * Metadata about the response received, including the HTTP status code, HTTP headers, and any request identifiers recognized by the SDK. */ $metadata: __aws_sdk_types.ResponseMetadata; }