Struct aws_sdk_mediapackage::types::MssEncryption
source · #[non_exhaustive]pub struct MssEncryption {
pub speke_key_provider: Option<SpekeKeyProvider>,
}
Expand description
A Microsoft Smooth Streaming (MSS) encryption configuration.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.speke_key_provider: Option<SpekeKeyProvider>
A configuration for accessing an external Secure Packager and Encoder Key Exchange (SPEKE) service that will provide encryption keys.
Implementations§
source§impl MssEncryption
impl MssEncryption
sourcepub fn speke_key_provider(&self) -> Option<&SpekeKeyProvider>
pub fn speke_key_provider(&self) -> Option<&SpekeKeyProvider>
A configuration for accessing an external Secure Packager and Encoder Key Exchange (SPEKE) service that will provide encryption keys.
source§impl MssEncryption
impl MssEncryption
sourcepub fn builder() -> MssEncryptionBuilder
pub fn builder() -> MssEncryptionBuilder
Creates a new builder-style object to manufacture MssEncryption
.
Trait Implementations§
source§impl Clone for MssEncryption
impl Clone for MssEncryption
source§fn clone(&self) -> MssEncryption
fn clone(&self) -> MssEncryption
Returns a copy 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 MssEncryption
impl Debug for MssEncryption
source§impl PartialEq for MssEncryption
impl PartialEq for MssEncryption
source§fn eq(&self, other: &MssEncryption) -> bool
fn eq(&self, other: &MssEncryption) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for MssEncryption
Auto Trait Implementations§
impl RefUnwindSafe for MssEncryption
impl Send for MssEncryption
impl Sync for MssEncryption
impl Unpin for MssEncryption
impl UnwindSafe for MssEncryption
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.