Class: Aws::MQ::Types::BrokerInstanceOptionsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::MQ::Types::BrokerInstanceOptionsOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mq/types.rb
Overview
Returns a list of broker instance options.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#broker_instance_options ⇒ Array<Types::BrokerInstanceOption>
List of available broker instance options.
-
#max_results ⇒ Integer
Required.
-
#next_token ⇒ String
The token that specifies the next page of results Amazon MQ should return.
Instance Attribute Details
#broker_instance_options ⇒ Array<Types::BrokerInstanceOption>
List of available broker instance options.
193 194 195 196 197 198 199 |
# File 'lib/aws-sdk-mq/types.rb', line 193 class BrokerInstanceOptionsOutput < Struct.new( :broker_instance_options, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
Required. The maximum number of instance options that can be returned per page (20 by default). This value must be an integer from 5 to 100.
193 194 195 196 197 198 199 |
# File 'lib/aws-sdk-mq/types.rb', line 193 class BrokerInstanceOptionsOutput < Struct.new( :broker_instance_options, :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.
193 194 195 196 197 198 199 |
# File 'lib/aws-sdk-mq/types.rb', line 193 class BrokerInstanceOptionsOutput < Struct.new( :broker_instance_options, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |