aws_sdk_codestarconnections/client/
list_repository_links.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListRepositoryLinks`](crate::operation::list_repository_links::builders::ListRepositoryLinksFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_repository_links::builders::ListRepositoryLinksFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    ///   - [`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>
    /// - On success, responds with [`ListRepositoryLinksOutput`](crate::operation::list_repository_links::ListRepositoryLinksOutput) with field(s):
    ///   - [`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>
    ///   - [`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>
    /// - On failure, responds with [`SdkError<ListRepositoryLinksError>`](crate::operation::list_repository_links::ListRepositoryLinksError)
    pub fn list_repository_links(&self) -> crate::operation::list_repository_links::builders::ListRepositoryLinksFluentBuilder {
        crate::operation::list_repository_links::builders::ListRepositoryLinksFluentBuilder::new(self.handle.clone())
    }
}