Struct aws_sdk_sagemaker::input::ListDevicesInput [−][src]
#[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
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
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListDevices, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListDevices, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListDevices
>
Creates a new builder-style object to manufacture ListDevicesInput
The response from the last list when returning a list large enough to need tokening.
Maximum number of results to select.
Select fleets where the job was updated after X
A filter that searches devices that contains this name in any of their models.
Filter for fleets containing this name in their device fleet name.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ListDevicesInput
impl Send for ListDevicesInput
impl Sync for ListDevicesInput
impl Unpin for ListDevicesInput
impl UnwindSafe for ListDevicesInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more