Class: Aws::CloudFormation::Types::AccountLimit
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::AccountLimit
- Defined in:
- gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb
Overview
Describes the current CloudFormation limits for your account.
CloudFormation has the following limits per account:
Number of concurrent resources
Number of stacks
Number of stack outputs
For more information, see Understand CloudFormation quotas in the CloudFormation User Guide.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the account limit.
-
#value ⇒ Integer
The value that's associated with the account limit name.
Instance Attribute Details
#name ⇒ String
The name of the account limit.
Values: ConcurrentResourcesLimit
| StackLimit
|
StackOutputsLimit
109 110 111 112 113 114 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 109 class AccountLimit < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Integer
The value that's associated with the account limit name.
109 110 111 112 113 114 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 109 class AccountLimit < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |