PostAgentProfileRequest

The structure representing the postAgentProfileRequest.

AmazonApplication PerformanceProfilingDevOpsMachine Learning

Properties

Name Type Description
agentProfile object
View JSON Schema on GitHub

JSON Schema

amazon-codeguru-profiler-post-agent-profile-request-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-post-agent-profile-request-schema.json",
  "title": "PostAgentProfileRequest",
  "description": "The structure representing the postAgentProfileRequest.",
  "type": "object",
  "properties": {
    "agentProfile": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AgentProfile"
        },
        {
          "description": " The submitted profiling data. "
        }
      ]
    }
  },
  "required": [
    "agentProfile"
  ]
}