pub struct SSEDescription {
pub status: Option<SseStatus>,
pub sse_type: Option<SseType>,
pub kms_master_key_id: Option<String>,
pub inaccessible_encryption_date_time: Option<f64>,
}Expand description
SSE description (output from DescribeTable).
Describes the current encryption state of a table.
Fields§
§status: Option<SseStatus>The current status of server-side encryption.
sse_type: Option<SseType>The encryption type.
kms_master_key_id: Option<String>The KMS key ARN used for encryption.
inaccessible_encryption_date_time: Option<f64>The date and time (epoch seconds) when the KMS key became inaccessible.
Trait Implementations§
Source§impl Clone for SSEDescription
impl Clone for SSEDescription
Source§fn clone(&self) -> SSEDescription
fn clone(&self) -> SSEDescription
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 SSEDescription
impl Debug for SSEDescription
Source§impl Default for SSEDescription
impl Default for SSEDescription
Source§fn default() -> SSEDescription
fn default() -> SSEDescription
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SSEDescription
impl<'de> Deserialize<'de> for SSEDescription
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 SSEDescription
impl RefUnwindSafe for SSEDescription
impl Send for SSEDescription
impl Sync for SSEDescription
impl Unpin for SSEDescription
impl UnsafeUnpin for SSEDescription
impl UnwindSafe for SSEDescription
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