pub struct DescribeStackEventsOutput {
pub next_token: Option<String>,
pub stack_events: Option<Vec<StackEvent>>,
}Expand description
The output for a DescribeStackEvents action.
Fields§
§next_token: Option<String>If the output exceeds 1 MB in size, a string that identifies the next page of events. If no additional page exists, this value is null.
stack_events: Option<Vec<StackEvent>>A list of StackEvents structures.
Trait Implementations§
Source§impl Clone for DescribeStackEventsOutput
impl Clone for DescribeStackEventsOutput
Source§fn clone(&self) -> DescribeStackEventsOutput
fn clone(&self) -> DescribeStackEventsOutput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DescribeStackEventsOutput
impl Debug for DescribeStackEventsOutput
Source§impl Default for DescribeStackEventsOutput
impl Default for DescribeStackEventsOutput
Source§fn default() -> DescribeStackEventsOutput
fn default() -> DescribeStackEventsOutput
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeStackEventsOutput
impl PartialEq for DescribeStackEventsOutput
Source§fn eq(&self, other: &DescribeStackEventsOutput) -> bool
fn eq(&self, other: &DescribeStackEventsOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeStackEventsOutput
Auto Trait Implementations§
impl Freeze for DescribeStackEventsOutput
impl RefUnwindSafe for DescribeStackEventsOutput
impl Send for DescribeStackEventsOutput
impl Sync for DescribeStackEventsOutput
impl Unpin for DescribeStackEventsOutput
impl UnsafeUnpin for DescribeStackEventsOutput
impl UnwindSafe for DescribeStackEventsOutput
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