pub struct ListReportsForReportGroup { /* private fields */ }
Expand description
Fluent builder constructing a request to ListReportsForReportGroup
.
Returns a list of ARNs for the reports that belong to a ReportGroup
.
Implementations
sourceimpl ListReportsForReportGroup
impl ListReportsForReportGroup
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<ListReportsForReportGroup, AwsResponseRetryClassifier>, SdkError<ListReportsForReportGroupError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<ListReportsForReportGroup, AwsResponseRetryClassifier>, SdkError<ListReportsForReportGroupError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<ListReportsForReportGroupOutput, SdkError<ListReportsForReportGroupError>>
pub async fn send(
self
) -> Result<ListReportsForReportGroupOutput, SdkError<ListReportsForReportGroupError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn into_paginator(self) -> ListReportsForReportGroupPaginator
pub fn into_paginator(self) -> ListReportsForReportGroupPaginator
Create a paginator for this request
Paginators are used by calling send().await
which returns a Stream
.
sourcepub fn report_group_arn(self, input: impl Into<String>) -> Self
pub fn report_group_arn(self, input: impl Into<String>) -> Self
The ARN of the report group for which you want to return report ARNs.
sourcepub fn set_report_group_arn(self, input: Option<String>) -> Self
pub fn set_report_group_arn(self, input: Option<String>) -> Self
The ARN of the report group for which you want to return report ARNs.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
During a previous call, the maximum number of items that can be returned is the value specified in maxResults
. If there more items in the list, then a unique string called a nextToken is returned. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
During a previous call, the maximum number of items that can be returned is the value specified in maxResults
. If there more items in the list, then a unique string called a nextToken is returned. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.
sourcepub fn sort_order(self, input: SortOrderType) -> Self
pub fn sort_order(self, input: SortOrderType) -> Self
Use to specify whether the results are returned in ascending or descending order.
sourcepub fn set_sort_order(self, input: Option<SortOrderType>) -> Self
pub fn set_sort_order(self, input: Option<SortOrderType>) -> Self
Use to specify whether the results are returned in ascending or descending order.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of paginated reports in this report group returned per response. Use nextToken
to iterate pages in the list of returned Report
objects. The default value is 100.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of paginated reports in this report group returned per response. Use nextToken
to iterate pages in the list of returned Report
objects. The default value is 100.
sourcepub fn filter(self, input: ReportFilter) -> Self
pub fn filter(self, input: ReportFilter) -> Self
A ReportFilter
object used to filter the returned reports.
sourcepub fn set_filter(self, input: Option<ReportFilter>) -> Self
pub fn set_filter(self, input: Option<ReportFilter>) -> Self
A ReportFilter
object used to filter the returned reports.
Trait Implementations
sourceimpl Clone for ListReportsForReportGroup
impl Clone for ListReportsForReportGroup
sourcefn clone(&self) -> ListReportsForReportGroup
fn clone(&self) -> ListReportsForReportGroup
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more