Class: Aws::MQ::Types::CreateConfigurationInput

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

Overview

Creates a new configuration for the specified configuration name. Amazon MQ uses the default configuration (the engine type and version).

Instance Attribute Summary collapse

Instance Attribute Details

#engine_typeString

Required. The type of broker engine. Note: Currently, Amazon MQ supports only ACTIVEMQ.

Returns:

  • (String)


491
492
493
494
495
496
497
# File 'lib/aws-sdk-mq/types.rb', line 491

class CreateConfigurationInput < Struct.new(
  :engine_type,
  :engine_version,
  :name,
  :tags)
  include Aws::Structure
end

#engine_versionString

Required. The version of the broker engine. For a list of supported engine versions, see docs.aws.amazon.com/amazon-mq/latest/developer-guide/broker-engine.html

Returns:

  • (String)


491
492
493
494
495
496
497
# File 'lib/aws-sdk-mq/types.rb', line 491

class CreateConfigurationInput < Struct.new(
  :engine_type,
  :engine_version,
  :name,
  :tags)
  include Aws::Structure
end

#nameString

Required. The name of the configuration. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 1-150 characters long.

Returns:

  • (String)


491
492
493
494
495
496
497
# File 'lib/aws-sdk-mq/types.rb', line 491

class CreateConfigurationInput < Struct.new(
  :engine_type,
  :engine_version,
  :name,
  :tags)
  include Aws::Structure
end

#tagsHash<String,String>

Create tags when creating the configuration.

Returns:

  • (Hash<String,String>)


491
492
493
494
495
496
497
# File 'lib/aws-sdk-mq/types.rb', line 491

class CreateConfigurationInput < Struct.new(
  :engine_type,
  :engine_version,
  :name,
  :tags)
  include Aws::Structure
end