Struct aws_sdk_greengrassv2::client::fluent_builders::GetCoreDevice
source · [−]pub struct GetCoreDevice { /* private fields */ }
Expand description
Fluent builder constructing a request to GetCoreDevice
.
Retrieves metadata for a Greengrass core device.
IoT Greengrass relies on individual devices to send status updates to the Amazon Web Services Cloud. If the IoT Greengrass Core software isn't running on the device, or if device isn't connected to the Amazon Web Services Cloud, then the reported status of that device might not reflect its current status. The status timestamp indicates when the device status was last updated.
Core devices send status updates at the following times:
-
When the IoT Greengrass Core software starts
-
When the core device receives a deployment from the Amazon Web Services Cloud
-
When the status of any component on the core device becomes
BROKEN
-
At a regular interval that you can configure, which defaults to 24 hours
Implementations
sourceimpl GetCoreDevice
impl GetCoreDevice
sourcepub async fn send(
self
) -> Result<GetCoreDeviceOutput, SdkError<GetCoreDeviceError>>
pub async fn send(
self
) -> Result<GetCoreDeviceOutput, SdkError<GetCoreDeviceError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn core_device_thing_name(self, input: impl Into<String>) -> Self
pub fn core_device_thing_name(self, input: impl Into<String>) -> Self
The name of the core device. This is also the name of the IoT thing.
sourcepub fn set_core_device_thing_name(self, input: Option<String>) -> Self
pub fn set_core_device_thing_name(self, input: Option<String>) -> Self
The name of the core device. This is also the name of the IoT thing.
Trait Implementations
sourceimpl Clone for GetCoreDevice
impl Clone for GetCoreDevice
sourcefn clone(&self) -> GetCoreDevice
fn clone(&self) -> GetCoreDevice
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
Auto Trait Implementations
impl !RefUnwindSafe for GetCoreDevice
impl Send for GetCoreDevice
impl Sync for GetCoreDevice
impl Unpin for GetCoreDevice
impl !UnwindSafe for GetCoreDevice
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