libZSservicesZSamazonka-codeguru-reviewerZSamazonka-codeguru-reviewer
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.CodeGuruReviewer.DescribeRepositoryAssociation

Description

Returns a RepositoryAssociation object that contains information about the requested repository association.

Synopsis

Creating a Request

data DescribeRepositoryAssociation Source #

See: newDescribeRepositoryAssociation smart constructor.

Constructors

DescribeRepositoryAssociation' 

Fields

Instances

Instances details
Eq DescribeRepositoryAssociation Source # 
Instance details

Defined in Amazonka.CodeGuruReviewer.DescribeRepositoryAssociation

Read DescribeRepositoryAssociation Source # 
Instance details

Defined in Amazonka.CodeGuruReviewer.DescribeRepositoryAssociation

Show DescribeRepositoryAssociation Source # 
Instance details

Defined in Amazonka.CodeGuruReviewer.DescribeRepositoryAssociation

Generic DescribeRepositoryAssociation Source # 
Instance details

Defined in Amazonka.CodeGuruReviewer.DescribeRepositoryAssociation

Associated Types

type Rep DescribeRepositoryAssociation :: Type -> Type #

NFData DescribeRepositoryAssociation Source # 
Instance details

Defined in Amazonka.CodeGuruReviewer.DescribeRepositoryAssociation

Hashable DescribeRepositoryAssociation Source # 
Instance details

Defined in Amazonka.CodeGuruReviewer.DescribeRepositoryAssociation

AWSRequest DescribeRepositoryAssociation Source # 
Instance details

Defined in Amazonka.CodeGuruReviewer.DescribeRepositoryAssociation

ToHeaders DescribeRepositoryAssociation Source # 
Instance details

Defined in Amazonka.CodeGuruReviewer.DescribeRepositoryAssociation

ToPath DescribeRepositoryAssociation Source # 
Instance details

Defined in Amazonka.CodeGuruReviewer.DescribeRepositoryAssociation

ToQuery DescribeRepositoryAssociation Source # 
Instance details

Defined in Amazonka.CodeGuruReviewer.DescribeRepositoryAssociation

type Rep DescribeRepositoryAssociation Source # 
Instance details

Defined in Amazonka.CodeGuruReviewer.DescribeRepositoryAssociation

type Rep DescribeRepositoryAssociation = D1 ('MetaData "DescribeRepositoryAssociation" "Amazonka.CodeGuruReviewer.DescribeRepositoryAssociation" "libZSservicesZSamazonka-codeguru-reviewerZSamazonka-codeguru-reviewer" 'False) (C1 ('MetaCons "DescribeRepositoryAssociation'" 'PrefixI 'True) (S1 ('MetaSel ('Just "associationArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse DescribeRepositoryAssociation Source # 
Instance details

Defined in Amazonka.CodeGuruReviewer.DescribeRepositoryAssociation

newDescribeRepositoryAssociation Source #

Create a value of DescribeRepositoryAssociation with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:associationArn:DescribeRepositoryAssociation', describeRepositoryAssociation_associationArn - The Amazon Resource Name (ARN) of the RepositoryAssociation object. You can retrieve this ARN by calling ListRepositoryAssociations .

Request Lenses

describeRepositoryAssociation_associationArn :: Lens' DescribeRepositoryAssociation Text Source #

The Amazon Resource Name (ARN) of the RepositoryAssociation object. You can retrieve this ARN by calling ListRepositoryAssociations .

Destructuring the Response

data DescribeRepositoryAssociationResponse Source #

Constructors

DescribeRepositoryAssociationResponse' 

Fields

  • repositoryAssociation :: Maybe RepositoryAssociation

    Information about the repository association.

  • tags :: Maybe (HashMap Text Text)

    An array of key-value pairs used to tag an associated repository. A tag is a custom attribute label with two parts:

    • A tag key (for example, CostCenter, Environment, Project, or Secret). Tag keys are case sensitive.
    • An optional field known as a tag value (for example, 111122223333, Production, or a team name). Omitting the tag value is the same as using an empty string. Like tag keys, tag values are case sensitive.
  • httpStatus :: Int

    The response's http status code.

Instances

Instances details
Eq DescribeRepositoryAssociationResponse Source # 
Instance details

Defined in Amazonka.CodeGuruReviewer.DescribeRepositoryAssociation

Read DescribeRepositoryAssociationResponse Source # 
Instance details

Defined in Amazonka.CodeGuruReviewer.DescribeRepositoryAssociation

Show DescribeRepositoryAssociationResponse Source # 
Instance details

Defined in Amazonka.CodeGuruReviewer.DescribeRepositoryAssociation

Generic DescribeRepositoryAssociationResponse Source # 
Instance details

Defined in Amazonka.CodeGuruReviewer.DescribeRepositoryAssociation

NFData DescribeRepositoryAssociationResponse Source # 
Instance details

Defined in Amazonka.CodeGuruReviewer.DescribeRepositoryAssociation

type Rep DescribeRepositoryAssociationResponse Source # 
Instance details

Defined in Amazonka.CodeGuruReviewer.DescribeRepositoryAssociation

type Rep DescribeRepositoryAssociationResponse = D1 ('MetaData "DescribeRepositoryAssociationResponse" "Amazonka.CodeGuruReviewer.DescribeRepositoryAssociation" "libZSservicesZSamazonka-codeguru-reviewerZSamazonka-codeguru-reviewer" 'False) (C1 ('MetaCons "DescribeRepositoryAssociationResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "repositoryAssociation") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe RepositoryAssociation)) :*: (S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Text))) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newDescribeRepositoryAssociationResponse Source #

Create a value of DescribeRepositoryAssociationResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:repositoryAssociation:DescribeRepositoryAssociationResponse', describeRepositoryAssociationResponse_repositoryAssociation - Information about the repository association.

$sel:tags:DescribeRepositoryAssociationResponse', describeRepositoryAssociationResponse_tags - An array of key-value pairs used to tag an associated repository. A tag is a custom attribute label with two parts:

  • A tag key (for example, CostCenter, Environment, Project, or Secret). Tag keys are case sensitive.
  • An optional field known as a tag value (for example, 111122223333, Production, or a team name). Omitting the tag value is the same as using an empty string. Like tag keys, tag values are case sensitive.

$sel:httpStatus:DescribeRepositoryAssociationResponse', describeRepositoryAssociationResponse_httpStatus - The response's http status code.

Response Lenses

describeRepositoryAssociationResponse_tags :: Lens' DescribeRepositoryAssociationResponse (Maybe (HashMap Text Text)) Source #

An array of key-value pairs used to tag an associated repository. A tag is a custom attribute label with two parts:

  • A tag key (for example, CostCenter, Environment, Project, or Secret). Tag keys are case sensitive.
  • An optional field known as a tag value (for example, 111122223333, Production, or a team name). Omitting the tag value is the same as using an empty string. Like tag keys, tag values are case sensitive.