Learn R Programming

paws.security.identity (version 0.1.12)

cognitoidentityprovider_get_device: Gets the device

Description

Gets the device.

Usage

cognitoidentityprovider_get_device(DeviceKey, AccessToken)

Value

A list with the following syntax:

list(
  Device = list(
    DeviceKey = "string",
    DeviceAttributes = list(
      list(
        Name = "string",
        Value = "string"
      )
    ),
    DeviceCreateDate = as.POSIXct(
      "2015-01-01"
    ),
    DeviceLastModifiedDate = as.POSIXct(
      "2015-01-01"
    ),
    DeviceLastAuthenticatedDate = as.POSIXct(
      "2015-01-01"
    )
  )
)

Arguments

DeviceKey

[required] The device key.

AccessToken

The access token.

Request syntax

svc$get_device(
  DeviceKey = "string",
  AccessToken = "string"
)