Struct aws_sdk_robomaker::types::Robot
source · #[non_exhaustive]pub struct Robot {
pub arn: Option<String>,
pub name: Option<String>,
pub fleet_arn: Option<String>,
pub status: Option<RobotStatus>,
pub green_grass_group_id: Option<String>,
pub created_at: Option<DateTime>,
pub architecture: Option<Architecture>,
pub last_deployment_job: Option<String>,
pub last_deployment_time: Option<DateTime>,
}
Expand description
Information about a robot.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.arn: Option<String>
The Amazon Resource Name (ARN) of the robot.
name: Option<String>
The name of the robot.
fleet_arn: Option<String>
The Amazon Resource Name (ARN) of the fleet.
status: Option<RobotStatus>
The status of the robot.
green_grass_group_id: Option<String>
The Greengrass group associated with the robot.
created_at: Option<DateTime>
The time, in milliseconds since the epoch, when the robot was created.
architecture: Option<Architecture>
The architecture of the robot.
last_deployment_job: Option<String>
The Amazon Resource Name (ARN) of the last deployment job.
last_deployment_time: Option<DateTime>
The time of the last deployment.
Implementations§
source§impl Robot
impl Robot
sourcepub fn status(&self) -> Option<&RobotStatus>
pub fn status(&self) -> Option<&RobotStatus>
The status of the robot.
sourcepub fn green_grass_group_id(&self) -> Option<&str>
pub fn green_grass_group_id(&self) -> Option<&str>
The Greengrass group associated with the robot.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
The time, in milliseconds since the epoch, when the robot was created.
sourcepub fn architecture(&self) -> Option<&Architecture>
pub fn architecture(&self) -> Option<&Architecture>
The architecture of the robot.
sourcepub fn last_deployment_job(&self) -> Option<&str>
pub fn last_deployment_job(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the last deployment job.
sourcepub fn last_deployment_time(&self) -> Option<&DateTime>
pub fn last_deployment_time(&self) -> Option<&DateTime>
The time of the last deployment.
Trait Implementations§
source§impl PartialEq for Robot
impl PartialEq for Robot
impl StructuralPartialEq for Robot
Auto Trait Implementations§
impl RefUnwindSafe for Robot
impl Send for Robot
impl Sync for Robot
impl Unpin for Robot
impl UnwindSafe for Robot
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.