Struct aws_sdk_ssm::operation::get_ops_summary::GetOpsSummaryInput
source · #[non_exhaustive]pub struct GetOpsSummaryInput {
pub sync_name: Option<String>,
pub filters: Option<Vec<OpsFilter>>,
pub aggregators: Option<Vec<OpsAggregator>>,
pub result_attributes: Option<Vec<OpsResultAttribute>>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.sync_name: Option<String>
Specify the name of a resource data sync to get.
filters: Option<Vec<OpsFilter>>
Optional filters used to scope down the returned OpsData.
aggregators: Option<Vec<OpsAggregator>>
Optional aggregators that return counts of OpsData based on one or more expressions.
result_attributes: Option<Vec<OpsResultAttribute>>
The OpsData data type to return.
next_token: Option<String>
A token to start the list. Use this token to get the next set of results.
max_results: Option<i32>
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.
Implementations§
source§impl GetOpsSummaryInput
impl GetOpsSummaryInput
sourcepub fn filters(&self) -> &[OpsFilter]
pub fn filters(&self) -> &[OpsFilter]
Optional filters used to scope down the returned OpsData.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .filters.is_none()
.
sourcepub fn aggregators(&self) -> &[OpsAggregator]
pub fn aggregators(&self) -> &[OpsAggregator]
Optional aggregators that return counts of OpsData based on one or more expressions.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .aggregators.is_none()
.
sourcepub fn result_attributes(&self) -> &[OpsResultAttribute]
pub fn result_attributes(&self) -> &[OpsResultAttribute]
The OpsData data type to return.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .result_attributes.is_none()
.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A token to start the list. Use this token to get the next set of results.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
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.
source§impl GetOpsSummaryInput
impl GetOpsSummaryInput
sourcepub fn builder() -> GetOpsSummaryInputBuilder
pub fn builder() -> GetOpsSummaryInputBuilder
Creates a new builder-style object to manufacture GetOpsSummaryInput
.
Trait Implementations§
source§impl Clone for GetOpsSummaryInput
impl Clone for GetOpsSummaryInput
source§fn clone(&self) -> GetOpsSummaryInput
fn clone(&self) -> GetOpsSummaryInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetOpsSummaryInput
impl Debug for GetOpsSummaryInput
source§impl PartialEq for GetOpsSummaryInput
impl PartialEq for GetOpsSummaryInput
impl StructuralPartialEq for GetOpsSummaryInput
Auto Trait Implementations§
impl Freeze for GetOpsSummaryInput
impl RefUnwindSafe for GetOpsSummaryInput
impl Send for GetOpsSummaryInput
impl Sync for GetOpsSummaryInput
impl Unpin for GetOpsSummaryInput
impl UnwindSafe for GetOpsSummaryInput
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more