Struct aws_sdk_ssm::types::OpsItemDataValue
source · #[non_exhaustive]pub struct OpsItemDataValue {
pub value: Option<String>,
pub type: Option<OpsItemDataType>,
}
Expand description
An object that defines the value of the key and its type in the OperationalData map.
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.value: Option<String>
The value of the OperationalData key.
type: Option<OpsItemDataType>
The type of key-value pair. Valid types include SearchableString
and String
.
Implementations§
source§impl OpsItemDataValue
impl OpsItemDataValue
sourcepub fn builder() -> OpsItemDataValueBuilder
pub fn builder() -> OpsItemDataValueBuilder
Creates a new builder-style object to manufacture OpsItemDataValue
.
Trait Implementations§
source§impl Clone for OpsItemDataValue
impl Clone for OpsItemDataValue
source§fn clone(&self) -> OpsItemDataValue
fn clone(&self) -> OpsItemDataValue
Returns a copy 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 OpsItemDataValue
impl Debug for OpsItemDataValue
source§impl PartialEq for OpsItemDataValue
impl PartialEq for OpsItemDataValue
source§fn eq(&self, other: &OpsItemDataValue) -> bool
fn eq(&self, other: &OpsItemDataValue) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for OpsItemDataValue
Auto Trait Implementations§
impl RefUnwindSafe for OpsItemDataValue
impl Send for OpsItemDataValue
impl Sync for OpsItemDataValue
impl Unpin for OpsItemDataValue
impl UnwindSafe for OpsItemDataValue
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