Class: Aws::CloudFormation::Types::AccountLimit

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cloudformation/types.rb

Overview

The AccountLimit data type.

CloudFormation has the following limits per account:

  • Number of concurrent resources

  • Number of stacks

  • Number of stack outputs

For more information about these account limits, and other CloudFormation limits, see [AWS CloudFormation Limits] in the *AWS CloudFormation User Guide*.

[1]: docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the account limit.

Values: ‘ConcurrentResourcesLimit` | `StackLimit` | `StackOutputsLimit`

Returns:

  • (String)


106
107
108
109
110
# File 'lib/aws-sdk-cloudformation/types.rb', line 106

class AccountLimit < Struct.new(
  :name,
  :value)
  include Aws::Structure
end

#valueInteger

The value that is associated with the account limit name.

Returns:

  • (Integer)


106
107
108
109
110
# File 'lib/aws-sdk-cloudformation/types.rb', line 106

class AccountLimit < Struct.new(
  :name,
  :value)
  include Aws::Structure
end