Class: Aws::MQ::Types::ListConfigurationRevisionsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::MQ::Types::ListConfigurationRevisionsOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mq/types.rb
Overview
Returns a list of all revisions for the specified configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#configuration_id ⇒ String
The unique ID that Amazon MQ generates for the configuration.
-
#max_results ⇒ Integer
The maximum number of configuration revisions that can be returned per page (20 by default).
-
#next_token ⇒ String
The token that specifies the next page of results Amazon MQ should return.
-
#revisions ⇒ Array<Types::ConfigurationRevision>
The list of all revisions for the specified configuration.
Instance Attribute Details
#configuration_id ⇒ String
The unique ID that Amazon MQ generates for the configuration.
2138 2139 2140 2141 2142 2143 2144 2145 |
# File 'lib/aws-sdk-mq/types.rb', line 2138 class ListConfigurationRevisionsOutput < Struct.new( :configuration_id, :max_results, :next_token, :revisions) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of configuration revisions that can be returned per page (20 by default). This value must be an integer from 5 to 100.
2138 2139 2140 2141 2142 2143 2144 2145 |
# File 'lib/aws-sdk-mq/types.rb', line 2138 class ListConfigurationRevisionsOutput < Struct.new( :configuration_id, :max_results, :next_token, :revisions) 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.
2138 2139 2140 2141 2142 2143 2144 2145 |
# File 'lib/aws-sdk-mq/types.rb', line 2138 class ListConfigurationRevisionsOutput < Struct.new( :configuration_id, :max_results, :next_token, :revisions) SENSITIVE = [] include Aws::Structure end |
#revisions ⇒ Array<Types::ConfigurationRevision>
The list of all revisions for the specified configuration.
2138 2139 2140 2141 2142 2143 2144 2145 |
# File 'lib/aws-sdk-mq/types.rb', line 2138 class ListConfigurationRevisionsOutput < Struct.new( :configuration_id, :max_results, :next_token, :revisions) SENSITIVE = [] include Aws::Structure end |