Skip to content

List Stack Instances For Provisioned Product

servicecatalog_list_stack_instances_for_provisioned_product R Documentation

Returns summary information about stack instances that are associated with the specified CFN_STACKSET type provisioned product

Description

Returns summary information about stack instances that are associated with the specified CFN_STACKSET type provisioned product. You can filter for stack instances that are associated with a specific Amazon Web Services account name or Region.

Usage

servicecatalog_list_stack_instances_for_provisioned_product(
  AcceptLanguage, ProvisionedProductId, PageToken, PageSize)

Arguments

AcceptLanguage

The language code.

  • jp - Japanese

  • zh - Chinese

ProvisionedProductId

[required] The identifier of the provisioned product.

PageToken

The page token for the next set of results. To retrieve the first set of results, use null.

PageSize

The maximum number of items to return with this call.

Value

A list with the following syntax:

list(
  StackInstances = list(
    list(
      Account = "string",
      Region = "string",
      StackInstanceStatus = "CURRENT"|"OUTDATED"|"INOPERABLE"
    )
  ),
  NextPageToken = "string"
)

Request syntax

svc$list_stack_instances_for_provisioned_product(
  AcceptLanguage = "string",
  ProvisionedProductId = "string",
  PageToken = "string",
  PageSize = 123
)