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
source§fn eq(&self, other: &GetOpsSummaryInput) -> bool
fn eq(&self, other: &GetOpsSummaryInput) -> bool
self
and other
values to be equal, and is used
by ==
.