pub struct GetKeyRotationStatusResponse {
pub key_id: Option<String>,
pub key_rotation_enabled: Option<bool>,
pub next_rotation_date: Option<DateTime<Utc>>,
pub on_demand_rotation_start_date: Option<DateTime<Utc>>,
pub rotation_period_in_days: Option<i32>,
}Expand description
KMS GetKeyRotationStatusResponse.
Fields§
§key_id: Option<String>§key_rotation_enabled: Option<bool>§next_rotation_date: Option<DateTime<Utc>>§on_demand_rotation_start_date: Option<DateTime<Utc>>§rotation_period_in_days: Option<i32>Trait Implementations§
Source§impl Clone for GetKeyRotationStatusResponse
impl Clone for GetKeyRotationStatusResponse
Source§fn clone(&self) -> GetKeyRotationStatusResponse
fn clone(&self) -> GetKeyRotationStatusResponse
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 GetKeyRotationStatusResponse
impl Debug for GetKeyRotationStatusResponse
Source§impl Default for GetKeyRotationStatusResponse
impl Default for GetKeyRotationStatusResponse
Source§fn default() -> GetKeyRotationStatusResponse
fn default() -> GetKeyRotationStatusResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetKeyRotationStatusResponse
impl<'de> Deserialize<'de> for GetKeyRotationStatusResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GetKeyRotationStatusResponse
impl RefUnwindSafe for GetKeyRotationStatusResponse
impl Send for GetKeyRotationStatusResponse
impl Sync for GetKeyRotationStatusResponse
impl Unpin for GetKeyRotationStatusResponse
impl UnsafeUnpin for GetKeyRotationStatusResponse
impl UnwindSafe for GetKeyRotationStatusResponse
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