Values.GoalSourceRepresents a goal with all its properties and metadata
type nonrec t = {agentSpaceArn : String_.t option;The unique identifier for the agent space containing this goal
*)goalId : String_.t option;The unique identifier for this goal
*)title : String_.t option;The title of the goal
*)content : GoalContent.t option;Content of the goal
*)status : GoalStatus.t option;Current status of the goal itself
*)goalType : GoalType.t option;Type of goal based on its origin
*)createdAt : BackLogTimestamp.t option;Timestamp when this goal was created
*)updatedAt : BackLogTimestamp.t option;Timestamp when this goal was last updated
*)lastEvaluatedAt : BackLogTimestamp.t option;Timestamp when the goal was last evaluated
*)lastTaskId : String_.t option;ID of the most recent task associated with this goal
*)lastSuccessfulTaskId : String_.t option;ID of the most recent successful task associated with this goal
*)version : Integer.t option;Version number for optimistic locking
*)evaluationSchedule : GoalSchedule.t option;Goal Schedule. Allows to schedule the goal to run periodically, as well as disable a goal temporarily
*)}