Skip to content

Start Human Loop

augmentedairuntime_start_human_loop R Documentation

Starts a human loop, provided that at least one activation condition is met

Description

Starts a human loop, provided that at least one activation condition is met.

Usage

augmentedairuntime_start_human_loop(HumanLoopName, FlowDefinitionArn,
  HumanLoopInput, DataAttributes)

Arguments

HumanLoopName

[required] The name of the human loop.

FlowDefinitionArn

[required] The Amazon Resource Name (ARN) of the flow definition associated with this human loop.

HumanLoopInput

[required] An object that contains information about the human loop.

DataAttributes

Attributes of the specified data. Use DataAttributes to specify if your data is free of personally identifiable information and/or free of adult content.

Value

A list with the following syntax:

list(
  HumanLoopArn = "string"
)

Request syntax

svc$start_human_loop(
  HumanLoopName = "string",
  FlowDefinitionArn = "string",
  HumanLoopInput = list(
    InputContent = "string"
  ),
  DataAttributes = list(
    ContentClassifiers = list(
      "FreeOfPersonallyIdentifiableInformation"|"FreeOfAdultContent"
    )
  )
)