#[non_exhaustive]pub struct ConfigurationOptionSetting {
pub resource_name: Option<String>,
pub namespace: Option<String>,
pub option_name: Option<String>,
pub value: Option<String>,
}
Expand description
A specification identifying an individual configuration option along with its current value. For a list of possible namespaces and option values, see Option Values in the AWS Elastic Beanstalk Developer Guide.
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.resource_name: Option<String>
A unique resource name for the option setting. Use it for a time–based scaling configuration option.
namespace: Option<String>
A unique namespace that identifies the option's associated AWS resource.
option_name: Option<String>
The name of the configuration option.
value: Option<String>
The current value for the configuration option.
Implementations
A unique resource name for the option setting. Use it for a time–based scaling configuration option.
A unique namespace that identifies the option's associated AWS resource.
The name of the configuration option.
Creates a new builder-style object to manufacture ConfigurationOptionSetting
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ConfigurationOptionSetting
impl Send for ConfigurationOptionSetting
impl Sync for ConfigurationOptionSetting
impl Unpin for ConfigurationOptionSetting
impl UnwindSafe for ConfigurationOptionSetting
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more