pub struct ListPlatformVersionsRequest {
pub filters: Option<Vec<PlatformFilter>>,
pub max_records: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§filters: Option<Vec<PlatformFilter>>
Criteria for restricting the resulting list of platform versions. The filter is interpreted as a logical conjunction (AND) of the separate PlatformFilter
terms.
max_records: Option<i64>
The maximum number of platform version values returned in one call.
next_token: Option<String>
For a paginated request. Specify a token from a previous response page to retrieve the next response page. All other parameter values must be identical to the ones specified in the initial request.
If no NextToken
is specified, the first page is retrieved.
Trait Implementations§
Source§impl Clone for ListPlatformVersionsRequest
impl Clone for ListPlatformVersionsRequest
Source§fn clone(&self) -> ListPlatformVersionsRequest
fn clone(&self) -> ListPlatformVersionsRequest
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 ListPlatformVersionsRequest
impl Debug for ListPlatformVersionsRequest
Source§impl Default for ListPlatformVersionsRequest
impl Default for ListPlatformVersionsRequest
Source§fn default() -> ListPlatformVersionsRequest
fn default() -> ListPlatformVersionsRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ListPlatformVersionsRequest
Auto Trait Implementations§
impl Freeze for ListPlatformVersionsRequest
impl RefUnwindSafe for ListPlatformVersionsRequest
impl Send for ListPlatformVersionsRequest
impl Sync for ListPlatformVersionsRequest
impl Unpin for ListPlatformVersionsRequest
impl UnwindSafe for ListPlatformVersionsRequest
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