Struct aws_sdk_elasticbeanstalk::operation::validate_configuration_settings::ValidateConfigurationSettingsInput
source · #[non_exhaustive]pub struct ValidateConfigurationSettingsInput {
pub application_name: Option<String>,
pub template_name: Option<String>,
pub environment_name: Option<String>,
pub option_settings: Option<Vec<ConfigurationOptionSetting>>,
}
Expand description
A list of validation messages for a specified configuration template.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.application_name: Option<String>
The name of the application that the configuration template or environment belongs to.
template_name: Option<String>
The name of the configuration template to validate the settings against.
Condition: You cannot specify both this and an environment name.
environment_name: Option<String>
The name of the environment to validate the settings against.
Condition: You cannot specify both this and a configuration template name.
option_settings: Option<Vec<ConfigurationOptionSetting>>
A list of the options and desired values to evaluate.
Implementations§
source§impl ValidateConfigurationSettingsInput
impl ValidateConfigurationSettingsInput
sourcepub fn application_name(&self) -> Option<&str>
pub fn application_name(&self) -> Option<&str>
The name of the application that the configuration template or environment belongs to.
sourcepub fn template_name(&self) -> Option<&str>
pub fn template_name(&self) -> Option<&str>
The name of the configuration template to validate the settings against.
Condition: You cannot specify both this and an environment name.
sourcepub fn environment_name(&self) -> Option<&str>
pub fn environment_name(&self) -> Option<&str>
The name of the environment to validate the settings against.
Condition: You cannot specify both this and a configuration template name.
sourcepub fn option_settings(&self) -> &[ConfigurationOptionSetting]
pub fn option_settings(&self) -> &[ConfigurationOptionSetting]
A list of the options and desired values to evaluate.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .option_settings.is_none()
.
source§impl ValidateConfigurationSettingsInput
impl ValidateConfigurationSettingsInput
sourcepub fn builder() -> ValidateConfigurationSettingsInputBuilder
pub fn builder() -> ValidateConfigurationSettingsInputBuilder
Creates a new builder-style object to manufacture ValidateConfigurationSettingsInput
.
Trait Implementations§
source§impl Clone for ValidateConfigurationSettingsInput
impl Clone for ValidateConfigurationSettingsInput
source§fn clone(&self) -> ValidateConfigurationSettingsInput
fn clone(&self) -> ValidateConfigurationSettingsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for ValidateConfigurationSettingsInput
impl PartialEq for ValidateConfigurationSettingsInput
source§fn eq(&self, other: &ValidateConfigurationSettingsInput) -> bool
fn eq(&self, other: &ValidateConfigurationSettingsInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ValidateConfigurationSettingsInput
Auto Trait Implementations§
impl Freeze for ValidateConfigurationSettingsInput
impl RefUnwindSafe for ValidateConfigurationSettingsInput
impl Send for ValidateConfigurationSettingsInput
impl Sync for ValidateConfigurationSettingsInput
impl Unpin for ValidateConfigurationSettingsInput
impl UnwindSafe for ValidateConfigurationSettingsInput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more