Skip to content

List Component Provisioned Resources

proton_list_component_provisioned_resources R Documentation

List provisioned resources for a component with details

Description

List provisioned resources for a component with details.

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

Usage

proton_list_component_provisioned_resources(componentName, nextToken)

Arguments

componentName

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

nextToken

A token that indicates the location of the next provisioned resource in the array of provisioned resources, after the list of 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_component_provisioned_resources(
  componentName = "string",
  nextToken = "string"
)