pub struct OptionSpecification {
pub namespace: Option<String>,
pub option_name: Option<String>,
pub resource_name: Option<String>,
}
Expand description
A specification identifying an individual configuration option.
Fields§
§namespace: Option<String>
A unique namespace identifying the option's associated AWS resource.
option_name: Option<String>
The name of the configuration option.
resource_name: Option<String>
A unique resource name for a time-based scaling configuration option.
Trait Implementations§
Source§impl Clone for OptionSpecification
impl Clone for OptionSpecification
Source§fn clone(&self) -> OptionSpecification
fn clone(&self) -> OptionSpecification
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 Debug for OptionSpecification
impl Debug for OptionSpecification
Source§impl Default for OptionSpecification
impl Default for OptionSpecification
Source§fn default() -> OptionSpecification
fn default() -> OptionSpecification
Returns the “default value” for a type. Read more
Source§impl PartialEq for OptionSpecification
impl PartialEq for OptionSpecification
impl StructuralPartialEq for OptionSpecification
Auto Trait Implementations§
impl Freeze for OptionSpecification
impl RefUnwindSafe for OptionSpecification
impl Send for OptionSpecification
impl Sync for OptionSpecification
impl Unpin for OptionSpecification
impl UnwindSafe for OptionSpecification
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