Struct aws_sdk_sagemaker::input::ListDeviceFleetsInput [−][src]
#[non_exhaustive]pub struct ListDeviceFleetsInput {
pub next_token: Option<String>,
pub max_results: Option<i32>,
pub creation_time_after: Option<Instant>,
pub creation_time_before: Option<Instant>,
pub last_modified_time_after: Option<Instant>,
pub last_modified_time_before: Option<Instant>,
pub name_contains: Option<String>,
pub sort_by: Option<ListDeviceFleetsSortBy>,
pub sort_order: Option<SortOrder>,
}
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>
The maximum number of results to select.
creation_time_after: Option<Instant>
Filter fleets where packaging job was created after specified time.
creation_time_before: Option<Instant>
Filter fleets where the edge packaging job was created before specified time.
last_modified_time_after: Option<Instant>
Select fleets where the job was updated after X
last_modified_time_before: Option<Instant>
Select fleets where the job was updated before X
name_contains: Option<String>
Filter for fleets containing this name in their fleet device name.
sort_by: Option<ListDeviceFleetsSortBy>
The column to sort by.
sort_order: Option<SortOrder>
What direction to sort in.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListDeviceFleets, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListDeviceFleets, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListDeviceFleets
>
Creates a new builder-style object to manufacture ListDeviceFleetsInput
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 ListDeviceFleetsInput
impl Send for ListDeviceFleetsInput
impl Sync for ListDeviceFleetsInput
impl Unpin for ListDeviceFleetsInput
impl UnwindSafe for ListDeviceFleetsInput
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