Skip to content

List Service Instance Outputs

proton_list_service_instance_outputs R Documentation

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

Description

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

Usage

proton_list_service_instance_outputs(deploymentId, nextToken,
  serviceInstanceName, serviceName)

Arguments

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.

serviceInstanceName

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

serviceName

[required] The name of the service that serviceInstanceName is associated to.

Value

A list with the following syntax:

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

Request syntax

svc$list_service_instance_outputs(
  deploymentId = "string",
  nextToken = "string",
  serviceInstanceName = "string",
  serviceName = "string"
)