Create Monitor
forecastservice_create_monitor | R Documentation |
Creates a predictor monitor resource for an existing auto predictor¶
Description¶
Creates a predictor monitor resource for an existing auto predictor. Predictor monitoring allows you to see how your predictor's performance changes over time. For more information, see Predictor Monitoring.
Usage¶
forecastservice_create_monitor(MonitorName, ResourceArn, Tags)
Arguments¶
MonitorName |
[required] The name of the monitor resource. |
ResourceArn |
[required] The Amazon Resource Name (ARN) of the predictor to monitor. |
Tags |
A list of tags to apply to the monitor resource. |
Value¶
A list with the following syntax:
list(
MonitorArn = "string"
)
Request syntax¶
svc$create_monitor(
MonitorName = "string",
ResourceArn = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)