Struct aws_sdk_sagemaker::operation::list_devices::ListDevicesInput
source · #[non_exhaustive]pub struct ListDevicesInput {
pub next_token: Option<String>,
pub max_results: Option<i32>,
pub latest_heartbeat_after: Option<DateTime>,
pub model_name: Option<String>,
pub device_fleet_name: Option<String>,
}
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.next_token: Option<String>
The response from the last list when returning a list large enough to need tokening.
max_results: Option<i32>
Maximum number of results to select.
latest_heartbeat_after: Option<DateTime>
Select fleets where the job was updated after X
model_name: Option<String>
A filter that searches devices that contains this name in any of their models.
device_fleet_name: Option<String>
Filter for fleets containing this name in their device fleet name.
Implementations§
source§impl ListDevicesInput
impl ListDevicesInput
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The response from the last list when returning a list large enough to need tokening.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
Maximum number of results to select.
sourcepub fn latest_heartbeat_after(&self) -> Option<&DateTime>
pub fn latest_heartbeat_after(&self) -> Option<&DateTime>
Select fleets where the job was updated after X
sourcepub fn model_name(&self) -> Option<&str>
pub fn model_name(&self) -> Option<&str>
A filter that searches devices that contains this name in any of their models.
sourcepub fn device_fleet_name(&self) -> Option<&str>
pub fn device_fleet_name(&self) -> Option<&str>
Filter for fleets containing this name in their device fleet name.
source§impl ListDevicesInput
impl ListDevicesInput
sourcepub fn builder() -> ListDevicesInputBuilder
pub fn builder() -> ListDevicesInputBuilder
Creates a new builder-style object to manufacture ListDevicesInput
.
Trait Implementations§
source§impl Clone for ListDevicesInput
impl Clone for ListDevicesInput
source§fn clone(&self) -> ListDevicesInput
fn clone(&self) -> ListDevicesInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ListDevicesInput
impl Debug for ListDevicesInput
source§impl PartialEq for ListDevicesInput
impl PartialEq for ListDevicesInput
impl StructuralPartialEq for ListDevicesInput
Auto Trait Implementations§
impl Freeze for ListDevicesInput
impl RefUnwindSafe for ListDevicesInput
impl Send for ListDevicesInput
impl Sync for ListDevicesInput
impl Unpin for ListDevicesInput
impl UnwindSafe for ListDevicesInput
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.