#[non_exhaustive]pub struct ListBootstrapActionsOutput {
pub bootstrap_actions: Option<Vec<Command>>,
pub marker: Option<String>,
/* private fields */
}
Expand description
This output contains the bootstrap actions detail.
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_actions: Option<Vec<Command>>
The bootstrap actions associated with the cluster.
marker: Option<String>
The pagination token that indicates the next set of results to retrieve.
Implementations§
source§impl ListBootstrapActionsOutput
impl ListBootstrapActionsOutput
sourcepub fn bootstrap_actions(&self) -> &[Command]
pub fn bootstrap_actions(&self) -> &[Command]
The bootstrap actions associated with the cluster.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .bootstrap_actions.is_none()
.
source§impl ListBootstrapActionsOutput
impl ListBootstrapActionsOutput
sourcepub fn builder() -> ListBootstrapActionsOutputBuilder
pub fn builder() -> ListBootstrapActionsOutputBuilder
Creates a new builder-style object to manufacture ListBootstrapActionsOutput
.
Trait Implementations§
source§impl Clone for ListBootstrapActionsOutput
impl Clone for ListBootstrapActionsOutput
source§fn clone(&self) -> ListBootstrapActionsOutput
fn clone(&self) -> ListBootstrapActionsOutput
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 ListBootstrapActionsOutput
impl Debug for ListBootstrapActionsOutput
source§impl PartialEq for ListBootstrapActionsOutput
impl PartialEq for ListBootstrapActionsOutput
source§fn eq(&self, other: &ListBootstrapActionsOutput) -> bool
fn eq(&self, other: &ListBootstrapActionsOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for ListBootstrapActionsOutput
impl RequestId for ListBootstrapActionsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for ListBootstrapActionsOutput
Auto Trait Implementations§
impl Freeze for ListBootstrapActionsOutput
impl RefUnwindSafe for ListBootstrapActionsOutput
impl Send for ListBootstrapActionsOutput
impl Sync for ListBootstrapActionsOutput
impl Unpin for ListBootstrapActionsOutput
impl UnwindSafe for ListBootstrapActionsOutput
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.