[][src]Struct rusoto_robomaker::DescribeRobotResponse

pub struct DescribeRobotResponse {
    pub architecture: Option<String>,
    pub arn: Option<String>,
    pub created_at: Option<f64>,
    pub fleet_arn: Option<String>,
    pub greengrass_group_id: Option<String>,
    pub last_deployment_job: Option<String>,
    pub last_deployment_time: Option<f64>,
    pub name: Option<String>,
    pub status: Option<String>,
    pub tags: Option<HashMap<String, String>>,
}

Fields

architecture: Option<String>

The target architecture of the robot application.

arn: Option<String>

The Amazon Resource Name (ARN) of the robot.

created_at: Option<f64>

The time, in milliseconds since the epoch, when the robot was created.

fleet_arn: Option<String>

The Amazon Resource Name (ARN) of the fleet.

greengrass_group_id: Option<String>

The Greengrass group id.

last_deployment_job: Option<String>

The Amazon Resource Name (ARN) of the last deployment job.

last_deployment_time: Option<f64>

The time of the last deployment job.

name: Option<String>

The name of the robot.

status: Option<String>

The status of the fleet.

tags: Option<HashMap<String, String>>

The list of all tags added to the specified robot.

Trait Implementations

impl Clone for DescribeRobotResponse[src]

impl Debug for DescribeRobotResponse[src]

impl Default for DescribeRobotResponse[src]

impl<'de> Deserialize<'de> for DescribeRobotResponse[src]

impl PartialEq<DescribeRobotResponse> for DescribeRobotResponse[src]

impl StructuralPartialEq for DescribeRobotResponse[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.