Class CommandExecutionEvent
- java.lang.Object
-
- software.amazon.awssdk.iot.iotcommands.model.CommandExecutionEvent
-
public class CommandExecutionEvent extends Object
Sent whenever a command execution is added for a thing or a client.
-
-
Field Summary
Fields Modifier and Type Field Description String
contentType
Data format of the payload.String
executionId
Unique ID for the specific execution of a command.byte[]
payload
Opaque data containing instructions sent from the IoT commands service.Integer
timeout
Number of seconds before the IoT commands service decides that this command execution is timed out.
-
Constructor Summary
Constructors Constructor Description CommandExecutionEvent()
-
-
-
Field Detail
-
payload
public byte[] payload
Opaque data containing instructions sent from the IoT commands service.
-
executionId
public String executionId
Unique ID for the specific execution of a command. A command can have multiple executions, each with a unique ID.
-
contentType
public String contentType
Data format of the payload. It is supposed to be a MIME type (IANA media type), but can be an arbitrary string.
-
timeout
public Integer timeout
Number of seconds before the IoT commands service decides that this command execution is timed out.
-
-