pub struct DescribeStackResourceInput {
pub logical_resource_id: String,
pub stack_name: String,
}Expand description
The input for DescribeStackResource action.
Fields§
§logical_resource_id: StringThe logical name of the resource as specified in the template.
Default: There is no default value.
stack_name: StringThe 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 DescribeStackResourceInput
impl Clone for DescribeStackResourceInput
Source§fn clone(&self) -> DescribeStackResourceInput
fn clone(&self) -> DescribeStackResourceInput
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 DescribeStackResourceInput
impl Debug for DescribeStackResourceInput
Source§impl Default for DescribeStackResourceInput
impl Default for DescribeStackResourceInput
Source§fn default() -> DescribeStackResourceInput
fn default() -> DescribeStackResourceInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeStackResourceInput
impl PartialEq for DescribeStackResourceInput
Source§fn eq(&self, other: &DescribeStackResourceInput) -> bool
fn eq(&self, other: &DescribeStackResourceInput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeStackResourceInput
Auto Trait Implementations§
impl Freeze for DescribeStackResourceInput
impl RefUnwindSafe for DescribeStackResourceInput
impl Send for DescribeStackResourceInput
impl Sync for DescribeStackResourceInput
impl Unpin for DescribeStackResourceInput
impl UnsafeUnpin for DescribeStackResourceInput
impl UnwindSafe for DescribeStackResourceInput
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