schema: format: openapi: "3.0.0" service_input_type: "ScheduledECSEC2TaskInput" pipeline_input_type: "PipelineInputs" types: ScheduledECSEC2TaskInput: type: object description: "Input properties for Scheduled ECSEC2 Task" properties: desired_count: title: "Desired count" type: number description: "The default number of ECS tasks you want running" default: 1 minimum: 1 task_size: title: "Task size" type: string description: "The size of the task you want to run" enum: ["x-small", "small", "medium", "large", "x-large"] default: "x-small" image: title: "Image" type: string description: "The name/url of the container image" default: "public.ecr.aws/nginx/nginx:1.21" minLength: 1 maxLength: 200 schedule_expression: title: "Schedule expression" type: string description: "The schedule or rate (frequency) for CloudWatch Events" default: "rate(5 minutes)" minLength: 1 maxLength: 200 PipelineInputs: type: object description: "Pipeline input properties" properties: service_dir: title: "Application Code Directory" type: string description: "Source directory for the service" default: "ecs-ping-sns" minLength: 1 maxLength: 100 dockerfile: title: "Dockerfile" type: string description: "The location of the Dockerfile to build" default: "Dockerfile" minLength: 1 maxLength: 100 unit_test_command: title: "Unit test command" type: string description: "The command to run to unit test the application code" default: "echo 'add your unit test command here'" minLength: 1 maxLength: 200