Struct aws_sdk_devopsguru::input::list_insights_input::Builder
source · [−]pub struct Builder { /* private fields */ }
Expand description
A builder for ListInsightsInput
.
Implementations
sourceimpl Builder
impl Builder
sourcepub fn status_filter(self, input: ListInsightsStatusFilter) -> Self
pub fn status_filter(self, input: ListInsightsStatusFilter) -> Self
A filter used to filter the returned insights by their status. You can specify one status filter.
sourcepub fn set_status_filter(self, input: Option<ListInsightsStatusFilter>) -> Self
pub fn set_status_filter(self, input: Option<ListInsightsStatusFilter>) -> Self
A filter used to filter the returned insights by their status. You can specify one status filter.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken
value.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken
value.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.
sourcepub fn build(self) -> Result<ListInsightsInput, BuildError>
pub fn build(self) -> Result<ListInsightsInput, BuildError>
Consumes the builder and constructs a ListInsightsInput
.