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

ExperimentTemplateTarget

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

Describes a target for an experiment template.

interface ExperimentTemplateTarget {
filters?: ExperimentTemplateTargetFilter[] | null;
parameters?: {
[key: string]: string | null | undefined;
}
| null;
resourceArns?: string[] | null;
resourceTags?: {
[key: string]: string | null | undefined;
}
| null;
resourceType?: string | null;
selectionMode?: string | null;
}

§Properties

§

The filters to apply to identify target resources using specific attributes.

§
parameters?: {
[key: string]: string | null | undefined;
}
| null
[src]

The resource type parameters.

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

The Amazon Resource Names (ARNs) of the targets.

§
resourceTags?: {
[key: string]: string | null | undefined;
}
| null
[src]

The tags for the target resources.

§
resourceType?: string | null
[src]

The resource type.

§
selectionMode?: string | null
[src]

Scopes the identified resources to a specific count or percentage.