pub struct DeliveryStreamEncryptionConfiguration {
pub failure_description: Option<FailureDescription>,
pub key_arn: Option<String>,
pub key_type: Option<String>,
pub status: Option<String>,
}Expand description
Contains information about the server-side encryption (SSE) status for the delivery stream, the type customer master key (CMK) in use, if any, and the ARN of the CMK. You can get DeliveryStreamEncryptionConfiguration by invoking the DescribeDeliveryStream operation.
Fields§
§failure_description: Option<FailureDescription>Provides details in case one of the following operations fails due to an error related to KMS: CreateDeliveryStream, DeleteDeliveryStream, StartDeliveryStreamEncryption, StopDeliveryStreamEncryption.
key_arn: Option<String>If KeyType is CUSTOMER_MANAGED_CMK, this field contains the ARN of the customer managed CMK. If KeyType is AWS_OWNED_CMK, DeliveryStreamEncryptionConfiguration doesn't contain a value for KeyARN.
key_type: Option<String>Indicates the type of customer master key (CMK) that is used for encryption. The default setting is AWS_OWNED_CMK. For more information about CMKs, see Customer Master Keys (CMKs).
status: Option<String>This is the server-side encryption (SSE) status for the delivery stream. For a full description of the different values of this status, see StartDeliveryStreamEncryption and StopDeliveryStreamEncryption. If this status is ENABLING_FAILED or DISABLING_FAILED, it is the status of the most recent attempt to enable or disable SSE, respectively.
Trait Implementations§
Source§impl Clone for DeliveryStreamEncryptionConfiguration
impl Clone for DeliveryStreamEncryptionConfiguration
Source§fn clone(&self) -> DeliveryStreamEncryptionConfiguration
fn clone(&self) -> DeliveryStreamEncryptionConfiguration
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for DeliveryStreamEncryptionConfiguration
impl Default for DeliveryStreamEncryptionConfiguration
Source§fn default() -> DeliveryStreamEncryptionConfiguration
fn default() -> DeliveryStreamEncryptionConfiguration
Source§impl<'de> Deserialize<'de> for DeliveryStreamEncryptionConfiguration
impl<'de> Deserialize<'de> for DeliveryStreamEncryptionConfiguration
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>,
Source§impl PartialEq for DeliveryStreamEncryptionConfiguration
impl PartialEq for DeliveryStreamEncryptionConfiguration
Source§fn eq(&self, other: &DeliveryStreamEncryptionConfiguration) -> bool
fn eq(&self, other: &DeliveryStreamEncryptionConfiguration) -> bool
self and other values to be equal, and is used by ==.