[][src]Struct rusoto_athena::EncryptionConfiguration

pub struct EncryptionConfiguration {
    pub encryption_option: String,
    pub kms_key: Option<String>,
}

If query results are encrypted in Amazon S3, indicates the encryption option used (for example, SSE-KMS or CSE-KMS) and key information.

Fields

encryption_option: String

Indicates whether Amazon S3 server-side encryption with Amazon S3-managed keys (SSE-S3), server-side encryption with KMS-managed keys (SSE-KMS), or client-side encryption with KMS-managed keys (CSE-KMS) is used.

If a query runs in a workgroup and the workgroup overrides client-side settings, then the workgroup's setting for encryption is used. It specifies whether query results must be encrypted, for all queries that run in this workgroup.

kms_key: Option<String>

For SSE-KMS and CSE-KMS, this is the KMS key ARN or ID.

Trait Implementations

impl Clone for EncryptionConfiguration[src]

impl Debug for EncryptionConfiguration[src]

impl Default for EncryptionConfiguration[src]

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

impl PartialEq<EncryptionConfiguration> for EncryptionConfiguration[src]

impl Serialize for EncryptionConfiguration[src]

impl StructuralPartialEq for EncryptionConfiguration[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.