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 CloudFormation Quotas in the CloudFormation User Guide.

Usage

cloudformation_describe_account_limits(NextToken)

Arguments

NextToken

A string that identifies the next page of limits that you want to retrieve.

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"
)