Skip to content

Describe Account Limits

cloudformation_describe_account_limits R Documentation

Retrieves your account's CloudFormation limits, such as the maximum number of stacks that you can create in your account

Description

Retrieves your account's CloudFormation limits, such as the maximum number of stacks that you can create in your account. For more information about account limits, see Understand CloudFormation quotas in the CloudFormation User Guide.

Usage

cloudformation_describe_account_limits(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(
  AccountLimits = list(
    list(
      Name = "string",
      Value = 123
    )
  ),
  NextToken = "string"
)

Request syntax

svc$describe_account_limits(
  NextToken = "string"
)