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.

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the account limit. Currently, the only account limit is ‘StackLimit`.

Returns:

  • (String)


88
89
90
91
92
# File 'lib/aws-sdk-cloudformation/types.rb', line 88

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

#valueInteger

The value that is associated with the account limit name.

Returns:

  • (Integer)


88
89
90
91
92
# File 'lib/aws-sdk-cloudformation/types.rb', line 88

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