pub struct UpdateConfigurationTemplateMessage {
pub application_name: String,
pub description: Option<String>,
pub option_settings: Option<Vec<ConfigurationOptionSetting>>,
pub options_to_remove: Option<Vec<OptionSpecification>>,
pub template_name: String,
}
Expand description
The result message containing the options for the specified solution stack.
Fields§
§application_name: String
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.
description: Option<String>
A new description for the configuration.
option_settings: Option<Vec<ConfigurationOptionSetting>>
A list of configuration option settings to update with the new specified option value.
options_to_remove: Option<Vec<OptionSpecification>>
A list of configuration options to remove from the configuration set.
Constraint: You can remove only UserDefined
configuration options.
template_name: String
The name of the configuration template to update.
If no configuration template is found with this name, UpdateConfigurationTemplate
returns an InvalidParameterValue
error.
Trait Implementations§
Source§impl Clone for UpdateConfigurationTemplateMessage
impl Clone for UpdateConfigurationTemplateMessage
Source§fn clone(&self) -> UpdateConfigurationTemplateMessage
fn clone(&self) -> UpdateConfigurationTemplateMessage
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 Default for UpdateConfigurationTemplateMessage
impl Default for UpdateConfigurationTemplateMessage
Source§fn default() -> UpdateConfigurationTemplateMessage
fn default() -> UpdateConfigurationTemplateMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateConfigurationTemplateMessage
impl PartialEq for UpdateConfigurationTemplateMessage
Source§fn eq(&self, other: &UpdateConfigurationTemplateMessage) -> bool
fn eq(&self, other: &UpdateConfigurationTemplateMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateConfigurationTemplateMessage
Auto Trait Implementations§
impl Freeze for UpdateConfigurationTemplateMessage
impl RefUnwindSafe for UpdateConfigurationTemplateMessage
impl Send for UpdateConfigurationTemplateMessage
impl Sync for UpdateConfigurationTemplateMessage
impl Unpin for UpdateConfigurationTemplateMessage
impl UnwindSafe for UpdateConfigurationTemplateMessage
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