// Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
/// The strongly typed that contains general information about the microVM.
#[derive(Debug)]pubstructInstanceInfo{/// The ID of the microVM.
pubid: String,
/// Whether the microVM has been started.
pubstarted:bool,
/// The version of the VMM that runs the microVM.
pubvmm_version: String,
/// The name of the application that runs the microVM.
pubapp_name: String,
}