Skip to content

List Environment Provisioned Resources

proton_list_environment_provisioned_resources R Documentation

List the provisioned resources for your environment

Description

List the provisioned resources for your environment.

Usage

proton_list_environment_provisioned_resources(environmentName,
  nextToken)

Arguments

environmentName

[required] The environment name.

nextToken

A token that indicates the location of the next environment provisioned resource in the array of environment provisioned resources, after the list of environment provisioned resources that was previously requested.

Value

A list with the following syntax:

list(
  nextToken = "string",
  provisionedResources = list(
    list(
      identifier = "string",
      name = "string",
      provisioningEngine = "CLOUDFORMATION"|"TERRAFORM"
    )
  )
)

Request syntax

svc$list_environment_provisioned_resources(
  environmentName = "string",
  nextToken = "string"
)