pub struct ListMLTransformsRequest {
pub filter: Option<TransformFilterCriteria>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub sort: Option<TransformSortCriteria>,
pub tags: Option<HashMap<String, String>>,
}
Fields§
§filter: Option<TransformFilterCriteria>
A TransformFilterCriteria
used to filter the machine learning transforms.
max_results: Option<i64>
The maximum size of a list to return.
next_token: Option<String>
A continuation token, if this is a continuation request.
sort: Option<TransformSortCriteria>
A TransformSortCriteria
used to sort the machine learning transforms.
Specifies to return only these tagged resources.
Trait Implementations§
Source§impl Clone for ListMLTransformsRequest
impl Clone for ListMLTransformsRequest
Source§fn clone(&self) -> ListMLTransformsRequest
fn clone(&self) -> ListMLTransformsRequest
Returns a duplicate 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 ListMLTransformsRequest
impl Debug for ListMLTransformsRequest
Source§impl Default for ListMLTransformsRequest
impl Default for ListMLTransformsRequest
Source§fn default() -> ListMLTransformsRequest
fn default() -> ListMLTransformsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListMLTransformsRequest
impl PartialEq for ListMLTransformsRequest
Source§impl Serialize for ListMLTransformsRequest
impl Serialize for ListMLTransformsRequest
impl StructuralPartialEq for ListMLTransformsRequest
Auto Trait Implementations§
impl Freeze for ListMLTransformsRequest
impl RefUnwindSafe for ListMLTransformsRequest
impl Send for ListMLTransformsRequest
impl Sync for ListMLTransformsRequest
impl Unpin for ListMLTransformsRequest
impl UnwindSafe for ListMLTransformsRequest
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