Skip to content

Start Automation Job

quicksight_start_automation_job R Documentation

Starts a new job for a specified automation

Description

Starts a new job for a specified automation. The job runs the automation with the provided input payload.

Usage

quicksight_start_automation_job(AwsAccountId, AutomationGroupId,
  AutomationId, InputPayload)

Arguments

AwsAccountId

[required] The ID of the Amazon Web Services account that contains the automation.

AutomationGroupId

[required] The ID of the automation group that contains the automation to run.

AutomationId

[required] The ID of the automation to run.

InputPayload

The input payload for the automation job, provided as a JSON string.

Value

A list with the following syntax:

list(
  Arn = "string",
  JobId = "string",
  Status = 123,
  RequestId = "string"
)

Request syntax

svc$start_automation_job(
  AwsAccountId = "string",
  AutomationGroupId = "string",
  AutomationId = "string",
  InputPayload = "string"
)