Class: Aws::CloudFormation::Types::DescribeAccountLimitsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::DescribeAccountLimitsOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudformation/types.rb
Overview
The output for the DescribeAccountLimits action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#account_limits ⇒ Array<Types::AccountLimit>
An account limit structure that contain a list of CloudFormation account limits and their values.
-
#next_token ⇒ String
If the output exceeds 1 MB in size, a string that identifies the next page of limits.
Instance Attribute Details
#account_limits ⇒ Array<Types::AccountLimit>
An account limit structure that contain a list of CloudFormation account limits and their values.
2257 2258 2259 2260 2261 2262 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 2257 class DescribeAccountLimitsOutput < Struct.new( :account_limits, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If the output exceeds 1 MB in size, a string that identifies the next page of limits. If no additional page exists, this value is null.
2257 2258 2259 2260 2261 2262 |
# File 'lib/aws-sdk-cloudformation/types.rb', line 2257 class DescribeAccountLimitsOutput < Struct.new( :account_limits, :next_token) SENSITIVE = [] include Aws::Structure end |