pub struct AwsElasticBeanstalkEnvironmentOptionSetting {
pub namespace: Option<String>,
pub option_name: Option<String>,
pub resource_name: Option<String>,
pub value: Option<String>,
}Expand description
A configuration option setting for the environment.
Fields§
§namespace: Option<String>The type of resource that the configuration option is associated with.
option_name: Option<String>The name of the option.
resource_name: Option<String>The name of the resource.
value: Option<String>The value of the configuration setting.
Trait Implementations§
Source§impl Clone for AwsElasticBeanstalkEnvironmentOptionSetting
impl Clone for AwsElasticBeanstalkEnvironmentOptionSetting
Source§fn clone(&self) -> AwsElasticBeanstalkEnvironmentOptionSetting
fn clone(&self) -> AwsElasticBeanstalkEnvironmentOptionSetting
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 AwsElasticBeanstalkEnvironmentOptionSetting
impl Default for AwsElasticBeanstalkEnvironmentOptionSetting
Source§fn default() -> AwsElasticBeanstalkEnvironmentOptionSetting
fn default() -> AwsElasticBeanstalkEnvironmentOptionSetting
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AwsElasticBeanstalkEnvironmentOptionSetting
impl<'de> Deserialize<'de> for AwsElasticBeanstalkEnvironmentOptionSetting
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AwsElasticBeanstalkEnvironmentOptionSetting
impl PartialEq for AwsElasticBeanstalkEnvironmentOptionSetting
Source§fn eq(&self, other: &AwsElasticBeanstalkEnvironmentOptionSetting) -> bool
fn eq(&self, other: &AwsElasticBeanstalkEnvironmentOptionSetting) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AwsElasticBeanstalkEnvironmentOptionSetting
Auto Trait Implementations§
impl Freeze for AwsElasticBeanstalkEnvironmentOptionSetting
impl RefUnwindSafe for AwsElasticBeanstalkEnvironmentOptionSetting
impl Send for AwsElasticBeanstalkEnvironmentOptionSetting
impl Sync for AwsElasticBeanstalkEnvironmentOptionSetting
impl Unpin for AwsElasticBeanstalkEnvironmentOptionSetting
impl UnwindSafe for AwsElasticBeanstalkEnvironmentOptionSetting
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