Skip to content

Post Time Series Data Points

datazone_post_time_series_data_points R Documentation

Posts time series data points to Amazon DataZone for the specified asset

Description

Posts time series data points to Amazon DataZone for the specified asset.

Usage

datazone_post_time_series_data_points(clientToken, domainIdentifier,
  entityIdentifier, entityType, forms)

Arguments

clientToken

A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.

domainIdentifier

[required] The ID of the Amazon DataZone domain in which you want to post time series data points.

entityIdentifier

[required] The ID of the asset for which you want to post time series data points.

entityType

[required] The type of the asset for which you want to post data points.

forms

[required] The forms that contain the data points that you want to post.

Value

A list with the following syntax:

list(
  domainId = "string",
  entityId = "string",
  entityType = "ASSET"|"LISTING",
  forms = list(
    list(
      content = "string",
      formName = "string",
      id = "string",
      timestamp = as.POSIXct(
        "2015-01-01"
      ),
      typeIdentifier = "string",
      typeRevision = "string"
    )
  )
)

Request syntax

svc$post_time_series_data_points(
  clientToken = "string",
  domainIdentifier = "string",
  entityIdentifier = "string",
  entityType = "ASSET"|"LISTING",
  forms = list(
    list(
      content = "string",
      formName = "string",
      timestamp = as.POSIXct(
        "2015-01-01"
      ),
      typeIdentifier = "string",
      typeRevision = "string"
    )
  )
)