pub struct CreateConfigurationRequest {
pub engine_type: Option<String>,
pub engine_version: Option<String>,
pub name: Option<String>,
pub tags: Option<HashMap<String, String>>,
}
Expand description
Creates a new configuration for the specified configuration name. Amazon MQ uses the default configuration (the engine type and version).
Fields§
§engine_type: Option<String>
Required. The type of broker engine. Note: Currently, Amazon MQ supports only ACTIVEMQ.
engine_version: Option<String>
Required. The version of the broker engine. For a list of supported engine versions, see https://docs.aws.amazon.com/amazon-mq/latest/developer-guide/broker-engine.html
name: Option<String>
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.
Create tags when creating the configuration.
Trait Implementations§
Source§impl Clone for CreateConfigurationRequest
impl Clone for CreateConfigurationRequest
Source§fn clone(&self) -> CreateConfigurationRequest
fn clone(&self) -> CreateConfigurationRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CreateConfigurationRequest
impl Debug for CreateConfigurationRequest
Source§impl Default for CreateConfigurationRequest
impl Default for CreateConfigurationRequest
Source§fn default() -> CreateConfigurationRequest
fn default() -> CreateConfigurationRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for CreateConfigurationRequest
Auto Trait Implementations§
impl Freeze for CreateConfigurationRequest
impl RefUnwindSafe for CreateConfigurationRequest
impl Send for CreateConfigurationRequest
impl Sync for CreateConfigurationRequest
impl Unpin for CreateConfigurationRequest
impl UnwindSafe for CreateConfigurationRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more