Describe Device
sagemaker_describe_device | R Documentation |
Describes the device¶
Description¶
Describes the device.
Usage¶
sagemaker_describe_device(NextToken, DeviceName, DeviceFleetName)
Arguments¶
NextToken |
Next token of device description. |
DeviceName |
[required] The unique ID of the device. |
DeviceFleetName |
[required] The name of the fleet the devices belong to. |
Value¶
A list with the following syntax:
list(
DeviceArn = "string",
DeviceName = "string",
Description = "string",
DeviceFleetName = "string",
IotThingName = "string",
RegistrationTime = as.POSIXct(
"2015-01-01"
),
LatestHeartbeat = as.POSIXct(
"2015-01-01"
),
Models = list(
list(
ModelName = "string",
ModelVersion = "string",
LatestSampleTime = as.POSIXct(
"2015-01-01"
),
LatestInference = as.POSIXct(
"2015-01-01"
)
)
),
MaxModels = 123,
NextToken = "string",
AgentVersion = "string"
)
Request syntax¶
svc$describe_device(
NextToken = "string",
DeviceName = "string",
DeviceFleetName = "string"
)