Struct aws_sdk_emr::types::BootstrapActionDetail
source · #[non_exhaustive]pub struct BootstrapActionDetail {
pub bootstrap_action_config: Option<BootstrapActionConfig>,
}Expand description
Reports the configuration of a bootstrap action in a cluster (job flow).
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.bootstrap_action_config: Option<BootstrapActionConfig>A description of the bootstrap action.
Implementations§
source§impl BootstrapActionDetail
impl BootstrapActionDetail
sourcepub fn bootstrap_action_config(&self) -> Option<&BootstrapActionConfig>
pub fn bootstrap_action_config(&self) -> Option<&BootstrapActionConfig>
A description of the bootstrap action.
source§impl BootstrapActionDetail
impl BootstrapActionDetail
sourcepub fn builder() -> BootstrapActionDetailBuilder
pub fn builder() -> BootstrapActionDetailBuilder
Creates a new builder-style object to manufacture BootstrapActionDetail.
Trait Implementations§
source§impl Clone for BootstrapActionDetail
impl Clone for BootstrapActionDetail
source§fn clone(&self) -> BootstrapActionDetail
fn clone(&self) -> BootstrapActionDetail
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 BootstrapActionDetail
impl Debug for BootstrapActionDetail
source§impl PartialEq for BootstrapActionDetail
impl PartialEq for BootstrapActionDetail
source§fn eq(&self, other: &BootstrapActionDetail) -> bool
fn eq(&self, other: &BootstrapActionDetail) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BootstrapActionDetail
Auto Trait Implementations§
impl Freeze for BootstrapActionDetail
impl RefUnwindSafe for BootstrapActionDetail
impl Send for BootstrapActionDetail
impl Sync for BootstrapActionDetail
impl Unpin for BootstrapActionDetail
impl UnwindSafe for BootstrapActionDetail
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.