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 [CloudFormation quotas] in the *CloudFormation User Guide*.

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the account limit.

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

Returns:

  • (String)


109
110
111
112
113
114
# File 'lib/aws-sdk-cloudformation/types.rb', line 109

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

#valueInteger

The value that’s associated with the account limit name.

Returns:

  • (Integer)


109
110
111
112
113
114
# File 'lib/aws-sdk-cloudformation/types.rb', line 109

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