#[non_exhaustive]pub struct UpdateConfigurationTemplateInput { /* private fields */ }
Expand description
The result message containing the options for the specified solution stack.
Implementations§
source§impl UpdateConfigurationTemplateInput
impl UpdateConfigurationTemplateInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateConfigurationTemplate, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateConfigurationTemplate, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateConfigurationTemplate
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateConfigurationTemplateInput
.
source§impl UpdateConfigurationTemplateInput
impl UpdateConfigurationTemplateInput
sourcepub fn application_name(&self) -> Option<&str>
pub fn application_name(&self) -> Option<&str>
The name of the application associated with the configuration template to update.
If no application is found with this name, UpdateConfigurationTemplate
returns an InvalidParameterValue
error.
sourcepub fn template_name(&self) -> Option<&str>
pub fn template_name(&self) -> Option<&str>
The name of the configuration template to update.
If no configuration template is found with this name, UpdateConfigurationTemplate
returns an InvalidParameterValue
error.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A new description for the configuration.
sourcepub fn option_settings(&self) -> Option<&[ConfigurationOptionSetting]>
pub fn option_settings(&self) -> Option<&[ConfigurationOptionSetting]>
A list of configuration option settings to update with the new specified option value.
sourcepub fn options_to_remove(&self) -> Option<&[OptionSpecification]>
pub fn options_to_remove(&self) -> Option<&[OptionSpecification]>
A list of configuration options to remove from the configuration set.
Constraint: You can remove only UserDefined
configuration options.
Trait Implementations§
source§impl Clone for UpdateConfigurationTemplateInput
impl Clone for UpdateConfigurationTemplateInput
source§fn clone(&self) -> UpdateConfigurationTemplateInput
fn clone(&self) -> UpdateConfigurationTemplateInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<UpdateConfigurationTemplateInput> for UpdateConfigurationTemplateInput
impl PartialEq<UpdateConfigurationTemplateInput> for UpdateConfigurationTemplateInput
source§fn eq(&self, other: &UpdateConfigurationTemplateInput) -> bool
fn eq(&self, other: &UpdateConfigurationTemplateInput) -> bool
self
and other
values to be equal, and is used
by ==
.