Skip to content

List Code Security Integrations

inspector2_list_code_security_integrations R Documentation

Lists all code security integrations in your account

Description

Lists all code security integrations in your account.

Usage

inspector2_list_code_security_integrations(nextToken, maxResults)

Arguments

nextToken

A token to use for paginating results that are returned in the response. Set the value of this parameter to null for the first request. For subsequent calls, use the NextToken value returned from the previous request to continue listing results after the first page.

maxResults

The maximum number of results to return in a single call.

Value

A list with the following syntax:

list(
  integrations = list(
    list(
      integrationArn = "string",
      name = "string",
      type = "GITLAB_SELF_MANAGED"|"GITHUB",
      status = "PENDING"|"IN_PROGRESS"|"ACTIVE"|"INACTIVE"|"DISABLING",
      statusReason = "string",
      createdOn = as.POSIXct(
        "2015-01-01"
      ),
      lastUpdateOn = as.POSIXct(
        "2015-01-01"
      ),
      tags = list(
        "string"
      )
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_code_security_integrations(
  nextToken = "string",
  maxResults = 123
)