[][src]Struct rusoto_cloudformation::StackResourceDetail

pub struct StackResourceDetail {
    pub description: Option<String>,
    pub drift_information: Option<StackResourceDriftInformation>,
    pub last_updated_timestamp: String,
    pub logical_resource_id: String,
    pub metadata: Option<String>,
    pub physical_resource_id: Option<String>,
    pub resource_status: String,
    pub resource_status_reason: Option<String>,
    pub resource_type: String,
    pub stack_id: Option<String>,
    pub stack_name: Option<String>,
}

Contains detailed information about the specified stack resource.

Fields

description: Option<String>

User defined description associated with the resource.

drift_information: Option<StackResourceDriftInformation>

Information about whether the resource's actual configuration differs, or has drifted, from its expected configuration, as defined in the stack template and any values specified as template parameters. For more information, see Detecting Unregulated Configuration Changes to Stacks and Resources.

last_updated_timestamp: String

Time the status was updated.

logical_resource_id: String

The logical name of the resource specified in the template.

metadata: Option<String>

The content of the Metadata attribute declared for the resource. For more information, see Metadata Attribute in the AWS CloudFormation User Guide.

physical_resource_id: Option<String>

The name or unique identifier that corresponds to a physical instance ID of a resource supported by AWS CloudFormation.

resource_status: String

Current status of the resource.

resource_status_reason: Option<String>

Success/failure message associated with the resource.

resource_type: String

Type of resource. ((For more information, go to AWS Resource Types Reference in the AWS CloudFormation User Guide.)

stack_id: Option<String>

Unique identifier of the stack.

stack_name: Option<String>

The name associated with the stack.

Trait Implementations

impl Clone for StackResourceDetail[src]

impl Debug for StackResourceDetail[src]

impl Default for StackResourceDetail[src]

impl PartialEq<StackResourceDetail> for StackResourceDetail[src]

impl StructuralPartialEq for StackResourceDetail[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.