Struct rusoto_dynamodb::SSEDescription[][src]

pub struct SSEDescription {
    pub status: Option<String>,
}

The description of the server-side encryption status on the specified table.

Fields

The current state of server-side encryption:

  • ENABLING - Server-side encryption is being enabled.

  • ENABLED - Server-side encryption is enabled.

  • DISABLING - Server-side encryption is being disabled.

  • DISABLED - Server-side encryption is disabled.

Trait Implementations

impl Default for SSEDescription
[src]

Returns the "default value" for a type. Read more

impl Debug for SSEDescription
[src]

Formats the value using the given formatter. Read more

impl Clone for SSEDescription
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for SSEDescription
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations