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

ExperimentTarget

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

Describes a target for an experiment.

interface ExperimentTarget {
filters?: ExperimentTargetFilter[] | 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

§
filters?: ExperimentTargetFilter[] | null
[src]

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 resources.

§
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.