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

PathElement

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

A single element in a path through the JSON representation of a policy.

interface PathElement {
index?: number | null;
key?: string | null;
substring?: Substring | null;
value?: string | null;
}

§Properties

§
index?: number | null
[src]

Refers to an index in a JSON array.

§
key?: string | null
[src]

Refers to a key in a JSON object.

§
substring?: Substring | null
[src]

Refers to a substring of a literal string in a JSON object.

§
value?: string | null
[src]

Refers to the value associated with a given key in a JSON object.