{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codeguru-profiler/refs/heads/main/json-structure/amazon-codeguru-profiler-agent-orchestration-config-structure.json",
"name": "AgentOrchestrationConfig",
"description": " Specifies whether profiling is enabled or disabled for a profiling group. It is used by ConfigureAgent to enable or disable profiling for a profiling group. ",
"type": "object",
"properties": {
"profilingEnabled": {
"allOf": [
{
"$ref": "#/components/schemas/Boolean"
},
{
"description": " A Boolean that specifies whether the profiling agent collects profiling data or not. Set to true to enable profiling. "
}
]
}
},
"required": [
"profilingEnabled"
]
}