Skip to content

List Service Pipeline Outputs

proton_list_service_pipeline_outputs R Documentation

Get a list of service pipeline Infrastructure as Code (IaC) outputs

Description

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

Usage

proton_list_service_pipeline_outputs(deploymentId, nextToken,
  serviceName)

Arguments

deploymentId

The ID of the deployment you want the outputs for.

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.

serviceName

[required] The name of the service whose pipeline's outputs you want.

Value

A list with the following syntax:

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

Request syntax

svc$list_service_pipeline_outputs(
  deploymentId = "string",
  nextToken = "string",
  serviceName = "string"
)