Skip to content

Update Target Account Configuration

fis_update_target_account_configuration R Documentation

Updates the target account configuration for the specified experiment template

Description

Updates the target account configuration for the specified experiment template.

Usage

fis_update_target_account_configuration(experimentTemplateId, accountId,
  roleArn, description)

Arguments

experimentTemplateId

[required] The ID of the experiment template.

accountId

[required] The Amazon Web Services account ID of the target account.

roleArn

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

description

The description of the target account.

Value

A list with the following syntax:

list(
  targetAccountConfiguration = list(
    roleArn = "string",
    accountId = "string",
    description = "string"
  )
)

Request syntax

svc$update_target_account_configuration(
  experimentTemplateId = "string",
  accountId = "string",
  roleArn = "string",
  description = "string"
)