AgentOrchestrationConfig

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.

AmazonApplication PerformanceProfilingDevOpsMachine Learning

Properties

Name Type Description
profilingEnabled object
View JSON Schema on GitHub

JSON Schema

amazon-codeguru-profiler-agent-orchestration-config-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codeguru-profiler/refs/heads/main/json-schema/amazon-codeguru-profiler-agent-orchestration-config-schema.json",
  "title": "AgentOrchestrationConfig",
  "description": " Specifies whether profiling is enabled or disabled for a profiling group. It is used by <a href=\"https://docs.aws.amazon.com/codeguru/latest/profiler-api/API_ConfigureAgent.html\"> <code>ConfigureAgent</code> </a> to enable or disable profiling for a profiling group. ",
  "type": "object",
  "properties": {
    "profilingEnabled": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Boolean"
        },
        {
          "description": " A <code>Boolean</code> that specifies whether the profiling agent collects profiling data or not. Set to <code>true</code> to enable profiling. "
        }
      ]
    }
  },
  "required": [
    "profilingEnabled"
  ]
}