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::jobs::Topic::*;
use aws_iot_device_sdk_embedded::{jobs};
let topic = jobs::describe("chloe", "$next").unwrap();
assert_eq!(&topic[..], "$aws/things/chloe/jobs/$next/get")