Struct aws_sdk_elasticbeanstalk::operation::describe_environment_managed_actions::DescribeEnvironmentManagedActionsOutput
source · #[non_exhaustive]pub struct DescribeEnvironmentManagedActionsOutput {
pub managed_actions: Option<Vec<ManagedAction>>,
/* private fields */
}
Expand description
The result message containing a list of managed actions.
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.managed_actions: Option<Vec<ManagedAction>>
A list of upcoming and in-progress managed actions.
Implementations§
source§impl DescribeEnvironmentManagedActionsOutput
impl DescribeEnvironmentManagedActionsOutput
sourcepub fn managed_actions(&self) -> Option<&[ManagedAction]>
pub fn managed_actions(&self) -> Option<&[ManagedAction]>
A list of upcoming and in-progress managed actions.
source§impl DescribeEnvironmentManagedActionsOutput
impl DescribeEnvironmentManagedActionsOutput
sourcepub fn builder() -> DescribeEnvironmentManagedActionsOutputBuilder
pub fn builder() -> DescribeEnvironmentManagedActionsOutputBuilder
Creates a new builder-style object to manufacture DescribeEnvironmentManagedActionsOutput
.
Trait Implementations§
source§impl Clone for DescribeEnvironmentManagedActionsOutput
impl Clone for DescribeEnvironmentManagedActionsOutput
source§fn clone(&self) -> DescribeEnvironmentManagedActionsOutput
fn clone(&self) -> DescribeEnvironmentManagedActionsOutput
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<DescribeEnvironmentManagedActionsOutput> for DescribeEnvironmentManagedActionsOutput
impl PartialEq<DescribeEnvironmentManagedActionsOutput> for DescribeEnvironmentManagedActionsOutput
source§fn eq(&self, other: &DescribeEnvironmentManagedActionsOutput) -> bool
fn eq(&self, other: &DescribeEnvironmentManagedActionsOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeEnvironmentManagedActionsOutput
impl RequestId for DescribeEnvironmentManagedActionsOutput
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 DescribeEnvironmentManagedActionsOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeEnvironmentManagedActionsOutput
impl Send for DescribeEnvironmentManagedActionsOutput
impl Sync for DescribeEnvironmentManagedActionsOutput
impl Unpin for DescribeEnvironmentManagedActionsOutput
impl UnwindSafe for DescribeEnvironmentManagedActionsOutput
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