MCPcopy Create free account
hub / github.com/aws/constructs / MetadataEntry

Interface MetadataEntry

src/metadata.ts:4–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2 * An entry in the construct metadata table.
3 */
4export interface MetadataEntry {
5 /**
6 * The metadata entry type.
7 */
8 readonly type: string;
9
10 /**
11 * The data.
12 */
13 readonly data: any;
14
15 /**
16 * Stack trace at the point of adding the metadata.
17 *
18 * Only available if `addMetadata()` is called with `stackTrace: true`.
19 *
20 * @default - no trace information
21 */
22 readonly trace?: string[];
23}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…