/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * Specifies the state of the schedule group. */ export type ScheduleGroupState = "ACTIVE" | "DELETING"; /** * Definition of AWS::Scheduler::ScheduleGroup Resource Type */ export interface AwsSchedulerSchedulegroup { /** * The Amazon Resource Name (ARN) of the schedule group. */ Arn?: string; /** * The time at which the schedule group was created. */ CreationDate?: string; /** * The time at which the schedule group was last modified. */ LastModificationDate?: string; Name?: string; State?: ScheduleGroupState; /** * The list of tags to associate with the schedule group. * * @minItems 0 * @maxItems 200 */ Tags?: Tag[]; } /** * Tag to associate with the resource. */ export interface Tag { /** * Key for the tag */ Key: string; /** * Value for the tag */ Value: string; }