pub struct DescribeStackEventsInput {
pub next_token: Option<String>,
pub stack_name: Option<String>,
}Expand description
The input for DescribeStackEvents action.
Fields§
§next_token: Option<String>A string that identifies the next page of events that you want to retrieve.
stack_name: Option<String>The name or the unique stack ID that is associated with the stack, which are not always interchangeable:
-
Running stacks: You can specify either the stack's name or its unique stack ID.
-
Deleted stacks: You must specify the unique stack ID.
Default: There is no default value.
Trait Implementations§
Source§impl Clone for DescribeStackEventsInput
impl Clone for DescribeStackEventsInput
Source§fn clone(&self) -> DescribeStackEventsInput
fn clone(&self) -> DescribeStackEventsInput
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 DescribeStackEventsInput
impl Debug for DescribeStackEventsInput
Source§impl Default for DescribeStackEventsInput
impl Default for DescribeStackEventsInput
Source§fn default() -> DescribeStackEventsInput
fn default() -> DescribeStackEventsInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeStackEventsInput
impl PartialEq for DescribeStackEventsInput
Source§fn eq(&self, other: &DescribeStackEventsInput) -> bool
fn eq(&self, other: &DescribeStackEventsInput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeStackEventsInput
Auto Trait Implementations§
impl Freeze for DescribeStackEventsInput
impl RefUnwindSafe for DescribeStackEventsInput
impl Send for DescribeStackEventsInput
impl Sync for DescribeStackEventsInput
impl Unpin for DescribeStackEventsInput
impl UnsafeUnpin for DescribeStackEventsInput
impl UnwindSafe for DescribeStackEventsInput
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