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 [`DescribeRepositoryAssociation`](crate::operation::describe_repository_association::builders::DescribeRepositoryAssociationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`association_arn(impl Into<String>)`](crate::operation::describe_repository_association::builders::DescribeRepositoryAssociationFluentBuilder::association_arn) / [`set_association_arn(Option<String>)`](crate::operation::describe_repository_association::builders::DescribeRepositoryAssociationFluentBuilder::set_association_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the <a href="https://docs.aws.amazon.com/codeguru/latest/reviewer-api/API_RepositoryAssociation.html">RepositoryAssociation</a> object. You can retrieve this ARN by calling <a href="https://docs.aws.amazon.com/codeguru/latest/reviewer-api/API_ListRepositoryAssociations.html">ListRepositoryAssociations</a>.</p><br>
    /// - On success, responds with [`DescribeRepositoryAssociationOutput`](crate::operation::describe_repository_association::DescribeRepositoryAssociationOutput) with field(s):
    ///   - [`repository_association(Option<RepositoryAssociation>)`](crate::operation::describe_repository_association::DescribeRepositoryAssociationOutput::repository_association): <p>Information about the repository association.</p>
    ///   - [`tags(Option<HashMap::<String, String>>)`](crate::operation::describe_repository_association::DescribeRepositoryAssociationOutput::tags): <p>An array of key-value pairs used to tag an associated repository. A tag is a custom attribute label with two parts:</p> <ul>  <li>   <p>A <i>tag key</i> (for example, <code>CostCenter</code>, <code>Environment</code>, <code>Project</code>, or <code>Secret</code>). Tag keys are case sensitive.</p></li>  <li>   <p>An optional field known as a <i>tag value</i> (for example, <code>111122223333</code>, <code>Production</code>, or a team name). Omitting the tag value is the same as using an empty string. Like tag keys, tag values are case sensitive.</p></li> </ul>
    /// - On failure, responds with [`SdkError<DescribeRepositoryAssociationError>`](crate::operation::describe_repository_association::DescribeRepositoryAssociationError)
    pub fn describe_repository_association(
        &self,
    ) -> crate::operation::describe_repository_association::builders::DescribeRepositoryAssociationFluentBuilder {
        crate::operation::describe_repository_association::builders::DescribeRepositoryAssociationFluentBuilder::new(self.handle.clone())
    }
}