pub struct GetOpsSummaryRequest {
pub aggregators: Option<Vec<OpsAggregator>>,
pub filters: Option<Vec<OpsFilter>>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub result_attributes: Option<Vec<OpsResultAttribute>>,
pub sync_name: Option<String>,
}Fields§
§aggregators: Option<Vec<OpsAggregator>>Optional aggregators that return counts of OpsItems based on one or more expressions.
filters: Option<Vec<OpsFilter>>Optional filters used to scope down the returned OpsItems.
max_results: Option<i64>The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
next_token: Option<String>A token to start the list. Use this token to get the next set of results.
result_attributes: Option<Vec<OpsResultAttribute>>The OpsItem data type to return.
sync_name: Option<String>Specify the name of a resource data sync to get.
Trait Implementations§
Source§impl Clone for GetOpsSummaryRequest
impl Clone for GetOpsSummaryRequest
Source§fn clone(&self) -> GetOpsSummaryRequest
fn clone(&self) -> GetOpsSummaryRequest
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 GetOpsSummaryRequest
impl Debug for GetOpsSummaryRequest
Source§impl Default for GetOpsSummaryRequest
impl Default for GetOpsSummaryRequest
Source§fn default() -> GetOpsSummaryRequest
fn default() -> GetOpsSummaryRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetOpsSummaryRequest
impl PartialEq for GetOpsSummaryRequest
Source§impl Serialize for GetOpsSummaryRequest
impl Serialize for GetOpsSummaryRequest
impl StructuralPartialEq for GetOpsSummaryRequest
Auto Trait Implementations§
impl Freeze for GetOpsSummaryRequest
impl RefUnwindSafe for GetOpsSummaryRequest
impl Send for GetOpsSummaryRequest
impl Sync for GetOpsSummaryRequest
impl Unpin for GetOpsSummaryRequest
impl UnwindSafe for GetOpsSummaryRequest
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