Struct aws_sdk_robomaker::output::DescribeRobotOutput
source · [−]#[non_exhaustive]pub struct DescribeRobotOutput {
pub arn: Option<String>,
pub name: Option<String>,
pub fleet_arn: Option<String>,
pub status: Option<RobotStatus>,
pub greengrass_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>,
pub tags: Option<HashMap<String, String>>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
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 fleet.
greengrass_group_id: Option<String>
The Greengrass group id.
created_at: Option<DateTime>
The time, in milliseconds since the epoch, when the robot was created.
architecture: Option<Architecture>
The target architecture of the robot application.
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 job.
The list of all tags added to the specified robot.
Implementations
sourceimpl DescribeRobotOutput
impl DescribeRobotOutput
sourcepub fn status(&self) -> Option<&RobotStatus>
pub fn status(&self) -> Option<&RobotStatus>
The status of the fleet.
sourcepub fn greengrass_group_id(&self) -> Option<&str>
pub fn greengrass_group_id(&self) -> Option<&str>
The Greengrass group id.
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 target architecture of the robot application.
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 job.
The list of all tags added to the specified robot.
sourceimpl DescribeRobotOutput
impl DescribeRobotOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeRobotOutput
Trait Implementations
sourceimpl Clone for DescribeRobotOutput
impl Clone for DescribeRobotOutput
sourcefn clone(&self) -> DescribeRobotOutput
fn clone(&self) -> DescribeRobotOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for DescribeRobotOutput
impl Debug for DescribeRobotOutput
sourceimpl PartialEq<DescribeRobotOutput> for DescribeRobotOutput
impl PartialEq<DescribeRobotOutput> for DescribeRobotOutput
sourcefn eq(&self, other: &DescribeRobotOutput) -> bool
fn eq(&self, other: &DescribeRobotOutput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DescribeRobotOutput) -> bool
fn ne(&self, other: &DescribeRobotOutput) -> bool
This method tests for !=
.
impl StructuralPartialEq for DescribeRobotOutput
Auto Trait Implementations
impl RefUnwindSafe for DescribeRobotOutput
impl Send for DescribeRobotOutput
impl Sync for DescribeRobotOutput
impl Unpin for DescribeRobotOutput
impl UnwindSafe for DescribeRobotOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more