Skip to content

List Environment Outputs

proton_list_environment_outputs R Documentation

List the infrastructure as code outputs for your environment

Description

List the infrastructure as code outputs for your environment.

Usage

proton_list_environment_outputs(deploymentId, environmentName,
  nextToken)

Arguments

deploymentId

The ID of the deployment whose outputs you want.

environmentName

[required] The environment name.

nextToken

A token that indicates the location of the next environment output in the array of environment outputs, after the list of environment 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_environment_outputs(
  deploymentId = "string",
  environmentName = "string",
  nextToken = "string"
)