Struct aws_sdk_ssm::input::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
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetOpsSummary, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetOpsSummary, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<GetOpsSummary
>
Creates a new builder-style object to manufacture GetOpsSummaryInput
Optional filters used to scope down the returned OpsData.
Optional aggregators that return counts of OpsData based on one or more expressions.
The OpsData data type to return.
A token to start the list. Use this token to get the next set of results.
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.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for GetOpsSummaryInput
impl Send for GetOpsSummaryInput
impl Sync for GetOpsSummaryInput
impl Unpin for GetOpsSummaryInput
impl UnwindSafe for GetOpsSummaryInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more