NAME
Paws::CodeGuruReviewer::ListRepositoryAssociations - Arguments for method ListRepositoryAssociations on Paws::CodeGuruReviewer
DESCRIPTION
This class represents the parameters used for calling the method ListRepositoryAssociations on the Amazon CodeGuru Reviewer service. Use the attributes of this class as arguments to method ListRepositoryAssociations.
You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ListRepositoryAssociations.
SYNOPSIS
my $codeguru-reviewer = Paws->service('CodeGuruReviewer');
my $ListRepositoryAssociationsResponse =
$codeguru -reviewer->ListRepositoryAssociations(
MaxResults => 1, # OPTIONAL
Names => [
'MyName', ... # min: 1, max: 100
], # OPTIONAL
NextToken => 'MyNextToken', # OPTIONAL
Owners => [
'MyOwner', ... # min: 1, max: 100
], # OPTIONAL
ProviderTypes => [
'CodeCommit', ... # values: CodeCommit, GitHub
], # OPTIONAL
States => [
'Associated',
... # values: Associated, Associating, Failed, Disassociating
], # OPTIONAL
);
# Results:
my $NextToken = $ListRepositoryAssociationsResponse->NextToken;
my $RepositoryAssociationSummaries =
$ListRepositoryAssociationsResponse->RepositoryAssociationSummaries;
# Returns a Paws::CodeGuruReviewer::ListRepositoryAssociationsResponse object.
Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see https://docs.aws.amazon.com/goto/WebAPI/codeguru-reviewer/ListRepositoryAssociations
ATTRIBUTES
MaxResults => Int
The maximum number of repository association results returned by ListRepositoryAssociations in paginated output. When this parameter is used, ListRepositoryAssociations only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another ListRepositoryAssociations request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then ListRepositoryAssociations returns up to 100 results and a nextToken value if applicable.
Names => ArrayRef[Str|Undef]
List of names to use as a filter.
NextToken => Str
The nextToken value returned from a previous paginated ListRepositoryAssociations request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value.
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.
Owners => ArrayRef[Str|Undef]
List of owners to use as a filter. For AWS CodeCommit, the owner is the AWS account id. For GitHub, it is the GitHub account name.
ProviderTypes => ArrayRef[Str|Undef]
List of provider types to use as a filter.
States => ArrayRef[Str|Undef]
List of states to use as a filter.
SEE ALSO
This class forms part of Paws, documenting arguments for method ListRepositoryAssociations in Paws::CodeGuruReviewer
BUGS and CONTRIBUTIONS
The source code is located here: https://github.com/pplu/aws-sdk-perl
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues