pub struct ListTargetsRequest {
pub filters: Option<Vec<ListTargetsFilter>>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§filters: Option<Vec<ListTargetsFilter>>
The filters to use to return information by service or resource type. Valid filters include target type, target address, and target status.
A filter with the same name can appear more than once when used with OR statements. Filters with different names should be applied with AND statements.
max_results: Option<i64>
A non-negative integer used to limit the number of returned results. The maximum number of results that can be returned is 100.
next_token: Option<String>
An enumeration token that, when provided in a request, returns the next batch of the results.
Trait Implementations§
Source§impl Clone for ListTargetsRequest
impl Clone for ListTargetsRequest
Source§fn clone(&self) -> ListTargetsRequest
fn clone(&self) -> ListTargetsRequest
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 ListTargetsRequest
impl Debug for ListTargetsRequest
Source§impl Default for ListTargetsRequest
impl Default for ListTargetsRequest
Source§fn default() -> ListTargetsRequest
fn default() -> ListTargetsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListTargetsRequest
impl PartialEq for ListTargetsRequest
Source§impl Serialize for ListTargetsRequest
impl Serialize for ListTargetsRequest
impl StructuralPartialEq for ListTargetsRequest
Auto Trait Implementations§
impl Freeze for ListTargetsRequest
impl RefUnwindSafe for ListTargetsRequest
impl Send for ListTargetsRequest
impl Sync for ListTargetsRequest
impl Unpin for ListTargetsRequest
impl UnwindSafe for ListTargetsRequest
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