Struct aws_sdk_mq::input::CreateConfigurationInput
source · [−]#[non_exhaustive]pub struct CreateConfigurationInput { /* private fields */ }
Expand description
Creates a new configuration for the specified configuration name. Amazon MQ uses the default configuration (the engine type and version).
Implementations
sourceimpl CreateConfigurationInput
impl CreateConfigurationInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateConfiguration, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateConfiguration, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateConfiguration
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateConfigurationInput
.
sourceimpl CreateConfigurationInput
impl CreateConfigurationInput
sourcepub fn authentication_strategy(&self) -> Option<&AuthenticationStrategy>
pub fn authentication_strategy(&self) -> Option<&AuthenticationStrategy>
Optional. The authentication strategy associated with the configuration. The default is SIMPLE.
sourcepub fn engine_type(&self) -> Option<&EngineType>
pub fn engine_type(&self) -> Option<&EngineType>
Required. The type of broker engine. Currently, Amazon MQ supports ACTIVEMQ and RABBITMQ.
sourcepub fn engine_version(&self) -> Option<&str>
pub fn engine_version(&self) -> Option<&str>
Required. The broker engine's version. For a list of supported engine versions, see Supported engines.
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
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
sourceimpl Clone for CreateConfigurationInput
impl Clone for CreateConfigurationInput
sourcefn clone(&self) -> CreateConfigurationInput
fn clone(&self) -> CreateConfigurationInput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more