Skip to main content

experiment_target_account_configurations

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

Overview

Nameexperiment_target_account_configurations
TypeResource
Idaws.fis.experiment_target_account_configurations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
account_idstringThe Amazon Web Services account ID of the target account. (pattern: <code>[\S]+</code>)
descriptionstringThe description of the target account. (pattern: <code>[\s\S]*</code>)
role_arnstringThe Amazon Resource Name (ARN) of an IAM role for the target account. (pattern: <code>[\S]+</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_experiment_target_account_configurationselectid, account_id, regionGets information about the specified target account configuration of the experiment.
list_experiment_target_account_configurationsselectid, regionnextTokenLists the target account configurations 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
account_idstringThe Amazon Web Services account ID of the target account.
idstringThe ID of the experiment.
regionstringAWS region (default: us-east-1)
nextTokenstringThe token for the next page of results.

SELECT examples

Gets information about the specified target account configuration of the experiment.

SELECT
account_id,
description,
role_arn
FROM aws.fis.experiment_target_account_configurations
WHERE id = '{{ id }}' -- required
AND account_id = '{{ account_id }}' -- required
AND region = '{{ region }}' -- required
;