AWS devopsagent documentation change
Summary
Adjusted code indentation in Datadog integration examples without changing functionality
Security assessment
Purely cosmetic formatting changes in API request examples. Authorization header structure remains unchanged ('Bearer <Token>'), indicating no security enhancements or vulnerability fixes.
Diff
diff --git a/devopsagent/latest/userguide/configuring-capabilities-for-aws-devops-agent-connecting-telemetry-sources-connecting-datadog.md b/devopsagent/latest/userguide/configuring-capabilities-for-aws-devops-agent-connecting-telemetry-sources-connecting-datadog.md index e7fc2e38b..4f69e25d2 100644 --- a//devopsagent/latest/userguide/configuring-capabilities-for-aws-devops-agent-connecting-telemetry-sources-connecting-datadog.md +++ b//devopsagent/latest/userguide/configuring-capabilities-for-aws-devops-agent-connecting-telemetry-sources-connecting-datadog.md @@ -94,6 +94,6 @@ Set the method and the headers - method: "POST", - headers: { - "Content-Type": "application/json", - "Authorization": "Bearer <Token>", - }, - + method: "POST", + headers: { + "Content-Type": "application/json", + "Authorization": "Bearer <Token>", + }, + @@ -105,10 +105,10 @@ Send the body as a JSON string. - eventType: 'incident'; - incidentId: string; - action: 'created' | 'updated' | 'closed' | 'resolved'; - priority: "CRITICAL" | "HIGH" | "MEDIUM" | "LOW" | "MINIMAL"; - title: string; - description?: string; - timestamp?: string; - service?: string; - // The original event generated by service is attached here. - data?: object; + eventType: 'incident'; + incidentId: string; + action: 'created' | 'updated' | 'closed' | 'resolved'; + priority: "CRITICAL" | "HIGH" | "MEDIUM" | "LOW" | "MINIMAL"; + title: string; + description?: string; + timestamp?: string; + service?: string; + // The original event generated by service is attached here. + data?: object;