List Repository Links
| codestarconnections_list_repository_links | R Documentation | 
Lists the repository links created for connections in your account¶
Description¶
Lists the repository links created for connections in your account.
Usage¶
codestarconnections_list_repository_links(MaxResults, NextToken)
Arguments¶
| MaxResults | A non-zero, non-negative integer used to limit the number of returned results. | 
| NextToken | An enumeration token that, when provided in a request, returns the next batch of the results. | 
Value¶
A list with the following syntax:
list(
  RepositoryLinks = list(
    list(
      ConnectionArn = "string",
      EncryptionKeyArn = "string",
      OwnerId = "string",
      ProviderType = "Bitbucket"|"GitHub"|"GitHubEnterpriseServer"|"GitLab"|"GitLabSelfManaged",
      RepositoryLinkArn = "string",
      RepositoryLinkId = "string",
      RepositoryName = "string"
    )
  ),
  NextToken = "string"
)
Request syntax¶
svc$list_repository_links(
  MaxResults = 123,
  NextToken = "string"
)