aws_sdk_codeconnections/client/list_repository_links.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 [`ListRepositoryLinks`](crate::operation::list_repository_links::builders::ListRepositoryLinksFluentBuilder) operation.
4 /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_repository_links::builders::ListRepositoryLinksFluentBuilder::into_paginator).
5 ///
6 /// - The fluent builder is configurable:
7 /// - [`max_results(i32)`](crate::operation::list_repository_links::builders::ListRepositoryLinksFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_repository_links::builders::ListRepositoryLinksFluentBuilder::set_max_results):<br>required: **false**<br><p>A non-zero, non-negative integer used to limit the number of returned results.</p><br>
8 /// - [`next_token(impl Into<String>)`](crate::operation::list_repository_links::builders::ListRepositoryLinksFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_repository_links::builders::ListRepositoryLinksFluentBuilder::set_next_token):<br>required: **false**<br><p>An enumeration token that, when provided in a request, returns the next batch of the results.</p><br>
9 /// - On success, responds with [`ListRepositoryLinksOutput`](crate::operation::list_repository_links::ListRepositoryLinksOutput) with field(s):
10 /// - [`repository_links(Vec::<RepositoryLinkInfo>)`](crate::operation::list_repository_links::ListRepositoryLinksOutput::repository_links): <p>Lists the repository links called by the list repository links operation.</p>
11 /// - [`next_token(Option<String>)`](crate::operation::list_repository_links::ListRepositoryLinksOutput::next_token): <p>An enumeration token that allows the operation to batch the results of the operation.</p>
12 /// - On failure, responds with [`SdkError<ListRepositoryLinksError>`](crate::operation::list_repository_links::ListRepositoryLinksError)
13 pub fn list_repository_links(&self) -> crate::operation::list_repository_links::builders::ListRepositoryLinksFluentBuilder {
14 crate::operation::list_repository_links::builders::ListRepositoryLinksFluentBuilder::new(self.handle.clone())
15 }
16}