[][src]Struct rusoto_glacier::Encryption

pub struct Encryption {
    pub encryption_type: Option<String>,
    pub kms_context: Option<String>,
    pub kms_key_id: Option<String>,
}

Contains information about the encryption used to store the job results in Amazon S3.

Fields

encryption_type: Option<String>

The server-side encryption algorithm used when storing job results in Amazon S3, for example AES256 or aws:kms.

kms_context: Option<String>

Optional. If the encryption type is aws:kms, you can use this value to specify the encryption context for the job results.

kms_key_id: Option<String>

The AWS KMS key ID to use for object encryption. All GET and PUT requests for an object protected by AWS KMS fail if not made by using Secure Sockets Layer (SSL) or Signature Version 4.

Trait Implementations

impl Clone for Encryption[src]

impl Debug for Encryption[src]

impl Default for Encryption[src]

impl<'de> Deserialize<'de> for Encryption[src]

impl PartialEq<Encryption> for Encryption[src]

impl Serialize for Encryption[src]

impl StructuralPartialEq for Encryption[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.