Class: Aws::MQ::Types::ListConfigurationsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::MQ::Types::ListConfigurationsOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mq/types.rb
Overview
Returns a list of all configurations.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#configurations ⇒ Array<Types::Configuration>
The list of all revisions for the specified configuration.
-
#max_results ⇒ Integer
The maximum number of configurations that Amazon MQ can return per page (20 by default).
-
#next_token ⇒ String
The token that specifies the next page of results Amazon MQ should return.
Instance Attribute Details
#configurations ⇒ Array<Types::Configuration>
The list of all revisions for the specified configuration.
2207 2208 2209 2210 2211 2212 2213 |
# File 'lib/aws-sdk-mq/types.rb', line 2207 class ListConfigurationsOutput < Struct.new( :configurations, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of configurations that Amazon MQ can return per page (20 by default). This value must be an integer from 5 to 100.
2207 2208 2209 2210 2211 2212 2213 |
# File 'lib/aws-sdk-mq/types.rb', line 2207 class ListConfigurationsOutput < Struct.new( :configurations, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token that specifies the next page of results Amazon MQ should return. To request the first page, leave nextToken empty.
2207 2208 2209 2210 2211 2212 2213 |
# File 'lib/aws-sdk-mq/types.rb', line 2207 class ListConfigurationsOutput < Struct.new( :configurations, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |