pub fn describe(
thing_name: &str,
id: &str,
) -> Result<ArrayString<THINGNAME_MAX_LENGTH>, Error>
Expand description
Populate a topic string for a DescribeJobExecution request.
ยงExample
use aws_iot_device_sdk_embedded_rust::jobs::Topic::*;
use aws_iot_device_sdk_embedded_rust::{jobs};
let topic = jobs::describe("chloe", "$next").unwrap();
assert_eq!(&topic[..], "$aws/things/chloe/jobs/$next/get")