#[non_exhaustive]pub struct LaunchTemplateEnclaveOptionsRequest {
pub enabled: Option<bool>,
}
Expand description
Indicates whether the instance is enabled for Amazon Web Services Nitro Enclaves. For more information, see What is Amazon Web Services Nitro Enclaves? in the Amazon Web Services Nitro Enclaves User Guide.
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.enabled: Option<bool>
To enable the instance for Amazon Web Services Nitro Enclaves, set this parameter to true
.
Implementations§
source§impl LaunchTemplateEnclaveOptionsRequest
impl LaunchTemplateEnclaveOptionsRequest
sourcepub fn builder() -> LaunchTemplateEnclaveOptionsRequestBuilder
pub fn builder() -> LaunchTemplateEnclaveOptionsRequestBuilder
Creates a new builder-style object to manufacture LaunchTemplateEnclaveOptionsRequest
.
Trait Implementations§
source§impl Clone for LaunchTemplateEnclaveOptionsRequest
impl Clone for LaunchTemplateEnclaveOptionsRequest
source§fn clone(&self) -> LaunchTemplateEnclaveOptionsRequest
fn clone(&self) -> LaunchTemplateEnclaveOptionsRequest
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 PartialEq<LaunchTemplateEnclaveOptionsRequest> for LaunchTemplateEnclaveOptionsRequest
impl PartialEq<LaunchTemplateEnclaveOptionsRequest> for LaunchTemplateEnclaveOptionsRequest
source§fn eq(&self, other: &LaunchTemplateEnclaveOptionsRequest) -> bool
fn eq(&self, other: &LaunchTemplateEnclaveOptionsRequest) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for LaunchTemplateEnclaveOptionsRequest
Auto Trait Implementations§
impl RefUnwindSafe for LaunchTemplateEnclaveOptionsRequest
impl Send for LaunchTemplateEnclaveOptionsRequest
impl Sync for LaunchTemplateEnclaveOptionsRequest
impl Unpin for LaunchTemplateEnclaveOptionsRequest
impl UnwindSafe for LaunchTemplateEnclaveOptionsRequest
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