Skip to main content

experiment_resolved_targets

Creates, updates, deletes, gets or lists an experiment_resolved_targets resource.

Overview

Nameexperiment_resolved_targets
TypeResource
Idaws.fis.experiment_resolved_targets

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
resource_typestringThe resource type of the target. (pattern: <code>[\S]+</code>)
target_informationobjectInformation about the target.
target_namestringThe name of the target. (pattern: <code>[\S]+</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_experiment_resolved_targetsselectid, regionmaxResults, nextToken, targetNameLists the resolved targets information of the specified experiment.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
idstringThe ID of the experiment.
regionstringAWS region (default: us-east-1)
maxResultsintegerThe maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.
nextTokenstringThe token for the next page of results.
targetNamestringThe name of the target.

SELECT examples

Lists the resolved targets information of the specified experiment.

SELECT
resource_type,
target_information,
target_name
FROM aws.fis.experiment_resolved_targets
WHERE id = '{{ id }}' -- required
AND region = '{{ region }}' -- required
AND maxResults = '{{ maxResults }}'
AND nextToken = '{{ nextToken }}'
AND targetName = '{{ targetName }}'
;