Delete Experiment Template
fis_delete_experiment_template | R Documentation |
Deletes the specified experiment template¶
Description¶
Deletes the specified experiment template.
Usage¶
Arguments¶
id
[required] The ID of the experiment template.
Value¶
A list with the following syntax:
list(
experimentTemplate = list(
id = "string",
arn = "string",
description = "string",
targets = list(
list(
resourceType = "string",
resourceArns = list(
"string"
),
resourceTags = list(
"string"
),
filters = list(
list(
path = "string",
values = list(
"string"
)
)
),
selectionMode = "string",
parameters = list(
"string"
)
)
),
actions = list(
list(
actionId = "string",
description = "string",
parameters = list(
"string"
),
targets = list(
"string"
),
startAfter = list(
"string"
)
)
),
stopConditions = list(
list(
source = "string",
value = "string"
)
),
creationTime = as.POSIXct(
"2015-01-01"
),
lastUpdateTime = as.POSIXct(
"2015-01-01"
),
roleArn = "string",
tags = list(
"string"
),
logConfiguration = list(
cloudWatchLogsConfiguration = list(
logGroupArn = "string"
),
s3Configuration = list(
bucketName = "string",
prefix = "string"
),
logSchemaVersion = 123
),
experimentOptions = list(
accountTargeting = "single-account"|"multi-account",
emptyTargetResolutionMode = "fail"|"skip"
),
targetAccountConfigurationsCount = 123
)
)