experiment_resolved_targets
Creates, updates, deletes, gets or lists an experiment_resolved_targets resource.
Overview
| Name | experiment_resolved_targets |
| Type | Resource |
| Id | aws.fis.experiment_resolved_targets |
Fields
The following fields are returned by SELECT queries:
- list_experiment_resolved_targets
| Name | Datatype | Description |
|---|---|---|
resource_type | string | The resource type of the target. (pattern: <code>[\S]+</code>) |
target_information | object | Information about the target. |
target_name | string | The name of the target. (pattern: <code>[\S]+</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_experiment_resolved_targets | select | id, region | maxResults, nextToken, targetName | Lists 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.
| Name | Datatype | Description |
|---|---|---|
id | string | The ID of the experiment. |
region | string | AWS region (default: us-east-1) |
maxResults | integer | The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value. |
nextToken | string | The token for the next page of results. |
targetName | string | The name of the target. |
SELECT examples
- list_experiment_resolved_targets
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 }}'
;