#[non_exhaustive]pub struct GetOpsSummaryInputBuilder { /* private fields */ }
Expand description
A builder for GetOpsSummaryInput
.
Implementations§
source§impl GetOpsSummaryInputBuilder
impl GetOpsSummaryInputBuilder
sourcepub fn sync_name(self, input: impl Into<String>) -> Self
pub fn sync_name(self, input: impl Into<String>) -> Self
Specify the name of a resource data sync to get.
sourcepub fn set_sync_name(self, input: Option<String>) -> Self
pub fn set_sync_name(self, input: Option<String>) -> Self
Specify the name of a resource data sync to get.
sourcepub fn get_sync_name(&self) -> &Option<String>
pub fn get_sync_name(&self) -> &Option<String>
Specify the name of a resource data sync to get.
sourcepub fn filters(self, input: OpsFilter) -> Self
pub fn filters(self, input: OpsFilter) -> Self
Appends an item to filters
.
To override the contents of this collection use set_filters
.
Optional filters used to scope down the returned OpsData.
sourcepub fn set_filters(self, input: Option<Vec<OpsFilter>>) -> Self
pub fn set_filters(self, input: Option<Vec<OpsFilter>>) -> Self
Optional filters used to scope down the returned OpsData.
sourcepub fn get_filters(&self) -> &Option<Vec<OpsFilter>>
pub fn get_filters(&self) -> &Option<Vec<OpsFilter>>
Optional filters used to scope down the returned OpsData.
sourcepub fn aggregators(self, input: OpsAggregator) -> Self
pub fn aggregators(self, input: OpsAggregator) -> Self
Appends an item to aggregators
.
To override the contents of this collection use set_aggregators
.
Optional aggregators that return counts of OpsData based on one or more expressions.
sourcepub fn set_aggregators(self, input: Option<Vec<OpsAggregator>>) -> Self
pub fn set_aggregators(self, input: Option<Vec<OpsAggregator>>) -> Self
Optional aggregators that return counts of OpsData based on one or more expressions.
sourcepub fn get_aggregators(&self) -> &Option<Vec<OpsAggregator>>
pub fn get_aggregators(&self) -> &Option<Vec<OpsAggregator>>
Optional aggregators that return counts of OpsData based on one or more expressions.
sourcepub fn result_attributes(self, input: OpsResultAttribute) -> Self
pub fn result_attributes(self, input: OpsResultAttribute) -> Self
Appends an item to result_attributes
.
To override the contents of this collection use set_result_attributes
.
The OpsData data type to return.
sourcepub fn set_result_attributes(
self,
input: Option<Vec<OpsResultAttribute>>
) -> Self
pub fn set_result_attributes( self, input: Option<Vec<OpsResultAttribute>> ) -> Self
The OpsData data type to return.
sourcepub fn get_result_attributes(&self) -> &Option<Vec<OpsResultAttribute>>
pub fn get_result_attributes(&self) -> &Option<Vec<OpsResultAttribute>>
The OpsData data type to return.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A token to start the list. Use this token to get the next set of results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A token to start the list. Use this token to get the next set of results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A token to start the list. Use this token to get the next set of results.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
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.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
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.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_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.
sourcepub fn build(self) -> Result<GetOpsSummaryInput, BuildError>
pub fn build(self) -> Result<GetOpsSummaryInput, BuildError>
Consumes the builder and constructs a GetOpsSummaryInput
.
source§impl GetOpsSummaryInputBuilder
impl GetOpsSummaryInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<GetOpsSummaryOutput, SdkError<GetOpsSummaryError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<GetOpsSummaryOutput, SdkError<GetOpsSummaryError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetOpsSummaryInputBuilder
impl Clone for GetOpsSummaryInputBuilder
source§fn clone(&self) -> GetOpsSummaryInputBuilder
fn clone(&self) -> GetOpsSummaryInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetOpsSummaryInputBuilder
impl Debug for GetOpsSummaryInputBuilder
source§impl Default for GetOpsSummaryInputBuilder
impl Default for GetOpsSummaryInputBuilder
source§fn default() -> GetOpsSummaryInputBuilder
fn default() -> GetOpsSummaryInputBuilder
source§impl PartialEq for GetOpsSummaryInputBuilder
impl PartialEq for GetOpsSummaryInputBuilder
source§fn eq(&self, other: &GetOpsSummaryInputBuilder) -> bool
fn eq(&self, other: &GetOpsSummaryInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.