Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

RuleMetadata

import type { RuleMetadata } from "https://aws-api.deno.dev/v0.4/services/codegurureviewer.ts?docs=full";

Metadata about a rule. Rule metadata includes an ID, a name, a list of tags, and a short and long description. CodeGuru Reviewer uses rules to analyze code. A rule's recommendation is included in analysis results if code is detected that violates the rule.

interface RuleMetadata {
LongDescription?: string | null;
RuleId?: string | null;
RuleName?: string | null;
RuleTags?: string[] | null;
ShortDescription?: string | null;
}

§Properties

§
LongDescription?: string | null
[src]

A long description of the rule.

§
RuleId?: string | null
[src]

The ID of the rule.

§
RuleName?: string | null
[src]

The name of the rule.

§
RuleTags?: string[] | null
[src]

Tags that are associated with the rule.

§
ShortDescription?: string | null
[src]

A short description of the rule.