aws_sdk_ecr/client/
list_pull_time_update_exclusions.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`ListPullTimeUpdateExclusions`](crate::operation::list_pull_time_update_exclusions::builders::ListPullTimeUpdateExclusionsFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`max_results(i32)`](crate::operation::list_pull_time_update_exclusions::builders::ListPullTimeUpdateExclusionsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_pull_time_update_exclusions::builders::ListPullTimeUpdateExclusionsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of pull time update exclusion results returned by <code>ListPullTimeUpdateExclusions</code> in paginated output. When this parameter is used, <code>ListPullTimeUpdateExclusions</code> only returns <code>maxResults</code> results in a single page along with a <code>nextToken</code> response element. The remaining results of the initial request can be seen by sending another <code>ListPullTimeUpdateExclusions</code> request with the returned <code>nextToken</code> value. This value can be between 1 and 1000. If this parameter is not used, then <code>ListPullTimeUpdateExclusions</code> returns up to 100 results and a <code>nextToken</code> value, if applicable.</p><br>
7    ///   - [`next_token(impl Into<String>)`](crate::operation::list_pull_time_update_exclusions::builders::ListPullTimeUpdateExclusionsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_pull_time_update_exclusions::builders::ListPullTimeUpdateExclusionsFluentBuilder::set_next_token):<br>required: **false**<br><p>The <code>nextToken</code> value returned from a previous paginated <code>ListPullTimeUpdateExclusions</code> request where <code>maxResults</code> was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the <code>nextToken</code> value. This value is <code>null</code> when there are no more results to return.</p><note>  <p>This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.</p> </note><br>
8    /// - On success, responds with [`ListPullTimeUpdateExclusionsOutput`](crate::operation::list_pull_time_update_exclusions::ListPullTimeUpdateExclusionsOutput) with field(s):
9    ///   - [`pull_time_update_exclusions(Option<Vec::<String>>)`](crate::operation::list_pull_time_update_exclusions::ListPullTimeUpdateExclusionsOutput::pull_time_update_exclusions): <p>The list of IAM principal ARNs that are excluded from having their image pull times recorded.</p>
10    ///   - [`next_token(Option<String>)`](crate::operation::list_pull_time_update_exclusions::ListPullTimeUpdateExclusionsOutput::next_token): <p>The <code>nextToken</code> value to include in a future <code>ListPullTimeUpdateExclusions</code> request. When the results of a <code>ListPullTimeUpdateExclusions</code> request exceed <code>maxResults</code>, this value can be used to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
11    /// - On failure, responds with [`SdkError<ListPullTimeUpdateExclusionsError>`](crate::operation::list_pull_time_update_exclusions::ListPullTimeUpdateExclusionsError)
12    pub fn list_pull_time_update_exclusions(
13        &self,
14    ) -> crate::operation::list_pull_time_update_exclusions::builders::ListPullTimeUpdateExclusionsFluentBuilder {
15        crate::operation::list_pull_time_update_exclusions::builders::ListPullTimeUpdateExclusionsFluentBuilder::new(self.handle.clone())
16    }
17}