Skip to content

List Component Outputs

proton_list_component_outputs R Documentation

Get a list of component Infrastructure as Code (IaC) outputs

Description

Get a list of component Infrastructure as Code (IaC) outputs.

For more information about components, see Proton components in the Proton User Guide.

Usage

proton_list_component_outputs(componentName, deploymentId, nextToken)

Arguments

componentName

[required] The name of the component whose outputs you want.

deploymentId

The ID of the deployment whose outputs you want.

nextToken

A token that indicates the location of the next output in the array of outputs, after the list of outputs that was previously requested.

Value

A list with the following syntax:

list(
  nextToken = "string",
  outputs = list(
    list(
      key = "string",
      valueString = "string"
    )
  )
)

Request syntax

svc$list_component_outputs(
  componentName = "string",
  deploymentId = "string",
  nextToken = "string"
)