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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-cloudformation/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.

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 'gems/aws-sdk-cloudformation/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 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 109

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