Skip to content

List Exports

cloudformation_list_exports R Documentation

Lists all exported output values in the account and Region in which you call this action

Description

Lists all exported output values in the account and Region in which you call this action. Use this action to see the exported output values that you can import into other stacks. To import values, use the Fn::ImportValue function.

For more information, see Get exported outputs from a deployed CloudFormation stack.

Usage

cloudformation_list_exports(NextToken)

Arguments

NextToken

The token for the next set of items to return. (You received this token from a previous call.)

Value

A list with the following syntax:

list(
  Exports = list(
    list(
      ExportingStackId = "string",
      Name = "string",
      Value = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_exports(
  NextToken = "string"
)