Class: Aws::MQ::Types::ListConfigurationRevisionsOutput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-mq/types.rb

Overview

Returns a list of all revisions for the specified configuration.

Instance Attribute Summary collapse

Instance Attribute Details

#configuration_idString

The unique ID that Amazon MQ generates for the configuration.

Returns:

  • (String)


1341
1342
1343
1344
1345
1346
1347
# File 'lib/aws-sdk-mq/types.rb', line 1341

class ListConfigurationRevisionsOutput < Struct.new(
  :configuration_id,
  :max_results,
  :next_token,
  :revisions)
  include Aws::Structure
end

#max_resultsInteger

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.

Returns:

  • (Integer)


1341
1342
1343
1344
1345
1346
1347
# File 'lib/aws-sdk-mq/types.rb', line 1341

class ListConfigurationRevisionsOutput < Struct.new(
  :configuration_id,
  :max_results,
  :next_token,
  :revisions)
  include Aws::Structure
end

#next_tokenString

The token that specifies the next page of results Amazon MQ should return. To request the first page, leave nextToken empty.

Returns:

  • (String)


1341
1342
1343
1344
1345
1346
1347
# File 'lib/aws-sdk-mq/types.rb', line 1341

class ListConfigurationRevisionsOutput < Struct.new(
  :configuration_id,
  :max_results,
  :next_token,
  :revisions)
  include Aws::Structure
end

#revisionsArray<Types::ConfigurationRevision>

The list of all revisions for the specified configuration.

Returns:



1341
1342
1343
1344
1345
1346
1347
# File 'lib/aws-sdk-mq/types.rb', line 1341

class ListConfigurationRevisionsOutput < Struct.new(
  :configuration_id,
  :max_results,
  :next_token,
  :revisions)
  include Aws::Structure
end