Skip to content

List Node from Template Jobs

panorama_list_node_from_template_jobs R Documentation

Returns a list of camera stream node jobs

Description

Returns a list of camera stream node jobs.

Usage

panorama_list_node_from_template_jobs(MaxResults, NextToken)

Arguments

MaxResults

The maximum number of node from template jobs to return in one page of results.

NextToken

Specify the pagination token from a previous request to retrieve the next page of results.

Value

A list with the following syntax:

list(
  NextToken = "string",
  NodeFromTemplateJobs = list(
    list(
      CreatedTime = as.POSIXct(
        "2015-01-01"
      ),
      JobId = "string",
      NodeName = "string",
      Status = "PENDING"|"SUCCEEDED"|"FAILED",
      StatusMessage = "string",
      TemplateType = "RTSP_CAMERA_STREAM"
    )
  )
)

Request syntax

svc$list_node_from_template_jobs(
  MaxResults = 123,
  NextToken = "string"
)