pub struct ListComponentsRequest {
pub filters: Option<Vec<Filter>>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub owner: Option<String>,
}
Fields§
§filters: Option<Vec<Filter>>
The filters.
max_results: Option<i64>
The maximum items to return in a request.
next_token: Option<String>
A token to specify where to start paginating. This is the NextToken from a previously truncated response.
owner: Option<String>
The owner defines which components you want to list. By default, this request will only show components owned by your account. You can use this field to specify if you want to view components owned by yourself, by Amazon, or those components that have been shared with you by other customers.
Trait Implementations§
Source§impl Clone for ListComponentsRequest
impl Clone for ListComponentsRequest
Source§fn clone(&self) -> ListComponentsRequest
fn clone(&self) -> ListComponentsRequest
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 ListComponentsRequest
impl Debug for ListComponentsRequest
Source§impl Default for ListComponentsRequest
impl Default for ListComponentsRequest
Source§fn default() -> ListComponentsRequest
fn default() -> ListComponentsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListComponentsRequest
impl PartialEq for ListComponentsRequest
Source§impl Serialize for ListComponentsRequest
impl Serialize for ListComponentsRequest
impl StructuralPartialEq for ListComponentsRequest
Auto Trait Implementations§
impl Freeze for ListComponentsRequest
impl RefUnwindSafe for ListComponentsRequest
impl Send for ListComponentsRequest
impl Sync for ListComponentsRequest
impl Unpin for ListComponentsRequest
impl UnwindSafe for ListComponentsRequest
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