SubmitFeedbackRequest

The structure representing the SubmitFeedbackRequest.

AmazonApplication PerformanceProfilingDevOpsMachine Learning

Properties

Name Type Description
comment object
type object
View JSON Schema on GitHub

JSON Schema

amazon-codeguru-profiler-submit-feedback-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-submit-feedback-request-schema.json",
  "title": "SubmitFeedbackRequest",
  "description": "The structure representing the SubmitFeedbackRequest.",
  "type": "object",
  "properties": {
    "comment": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "Optional feedback about this anomaly."
        }
      ]
    },
    "type": {
      "allOf": [
        {
          "$ref": "#/components/schemas/FeedbackType"
        },
        {
          "description": " The feedback tpye. Thee are two valid values, <code>Positive</code> and <code>Negative</code>. "
        }
      ]
    }
  },
  "required": [
    "type"
  ]
}