Struct aws_sdk_imagebuilder::model::ComponentParameter [−][src]
#[non_exhaustive]pub struct ComponentParameter {
pub name: Option<String>,
pub value: Option<Vec<String>>,
}
Expand description
Contains a key/value pair that sets the named component parameter.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: Option<String>
The name of the component parameter to set.
value: Option<Vec<String>>
Sets the value for the named component parameter.
Implementations
Creates a new builder-style object to manufacture ComponentParameter
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 ComponentParameter
impl Send for ComponentParameter
impl Sync for ComponentParameter
impl Unpin for ComponentParameter
impl UnwindSafe for ComponentParameter
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