Skip to content

Create Sbom Export

inspector2_create_sbom_export R Documentation

Creates a software bill of materials (SBOM) report

Description

Creates a software bill of materials (SBOM) report.

Usage

inspector2_create_sbom_export(reportFormat, resourceFilterCriteria,
  s3Destination)

Arguments

reportFormat

[required] The output format for the software bill of materials (SBOM) report.

resourceFilterCriteria

The resource filter criteria for the software bill of materials (SBOM) report.

s3Destination

[required]

Value

A list with the following syntax:

list(
  reportId = "string"
)

Request syntax

svc$create_sbom_export(
  reportFormat = "CYCLONEDX_1_4"|"SPDX_2_3",
  resourceFilterCriteria = list(
    accountId = list(
      list(
        comparison = "EQUALS"|"NOT_EQUALS",
        value = "string"
      )
    ),
    ec2InstanceTags = list(
      list(
        comparison = "EQUALS",
        key = "string",
        value = "string"
      )
    ),
    ecrImageTags = list(
      list(
        comparison = "EQUALS"|"NOT_EQUALS",
        value = "string"
      )
    ),
    ecrRepositoryName = list(
      list(
        comparison = "EQUALS"|"NOT_EQUALS",
        value = "string"
      )
    ),
    lambdaFunctionName = list(
      list(
        comparison = "EQUALS"|"NOT_EQUALS",
        value = "string"
      )
    ),
    lambdaFunctionTags = list(
      list(
        comparison = "EQUALS",
        key = "string",
        value = "string"
      )
    ),
    resourceId = list(
      list(
        comparison = "EQUALS"|"NOT_EQUALS",
        value = "string"
      )
    ),
    resourceType = list(
      list(
        comparison = "EQUALS"|"NOT_EQUALS",
        value = "string"
      )
    )
  ),
  s3Destination = list(
    bucketName = "string",
    keyPrefix = "string",
    kmsKeyArn = "string"
  )
)