pub struct SsmParameterVersion {
pub value: String,
pub version: i64,
pub last_modified: DateTime<Utc>,
pub param_type: String,
pub description: Option<String>,
pub key_id: Option<String>,
pub labels: Vec<String>,
}Fields§
§value: String§version: i64§last_modified: DateTime<Utc>§param_type: String§description: Option<String>§key_id: Option<String>§labels: Vec<String>Trait Implementations§
Source§impl Clone for SsmParameterVersion
impl Clone for SsmParameterVersion
Source§fn clone(&self) -> SsmParameterVersion
fn clone(&self) -> SsmParameterVersion
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 moreAuto Trait Implementations§
impl Freeze for SsmParameterVersion
impl RefUnwindSafe for SsmParameterVersion
impl Send for SsmParameterVersion
impl Sync for SsmParameterVersion
impl Unpin for SsmParameterVersion
impl UnsafeUnpin for SsmParameterVersion
impl UnwindSafe for SsmParameterVersion
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