FIS / Client / list_experiment_target_account_configurations

list_experiment_target_account_configurations#

FIS.Client.list_experiment_target_account_configurations(**kwargs)#

Lists the target account configurations of the specified experiment.

See also: AWS API Documentation

Request Syntax

response = client.list_experiment_target_account_configurations(
    experimentId='string',
    nextToken='string'
)
Parameters:
  • experimentId (string) –

    [REQUIRED]

    The ID of the experiment.

  • nextToken (string) – The token for the next page of results.

Return type:

dict

Returns:

Response Syntax

{
    'targetAccountConfigurations': [
        {
            'roleArn': 'string',
            'accountId': 'string',
            'description': 'string'
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) –

    • targetAccountConfigurations (list) –

      The target account configurations.

      • (dict) –

        Provides a summary of a target account configuration.

        • roleArn (string) –

          The Amazon Resource Name (ARN) of an IAM role for the target account.

        • accountId (string) –

          The Amazon Web Services account ID of the target account.

        • description (string) –

          The description of the target account.

    • nextToken (string) –

      The token to use to retrieve the next page of results. This value is null when there are no more results to return.

Exceptions