Skip to content

Update Code Security Integration

inspector2_update_code_security_integration R Documentation

Updates an existing code security integration

Description

Updates an existing code security integration.

After calling the create_code_security_integration operation, you complete authentication and authorization with your provider. Next you call the update_code_security_integration operation to provide the details to complete the integration setup

Usage

inspector2_update_code_security_integration(integrationArn, details)

Arguments

integrationArn

[required] The Amazon Resource Name (ARN) of the code security integration to update.

details

[required] The updated integration details specific to the repository provider type.

Value

A list with the following syntax:

list(
  integrationArn = "string",
  status = "PENDING"|"IN_PROGRESS"|"ACTIVE"|"INACTIVE"|"DISABLING"
)

Request syntax

svc$update_code_security_integration(
  integrationArn = "string",
  details = list(
    gitlabSelfManaged = list(
      authCode = "string"
    ),
    github = list(
      code = "string",
      installationId = "string"
    )
  )
)