Trait cfn::Resource [] [src]

pub trait Resource: Sized + Sealed {
    type Properties: Properties<Self>;

    const TYPE: &'static str;

    fn properties(&self) -> &Self::Properties;
fn properties_mut(&mut self) -> &mut Self::Properties; }

Trait for stack resources, such as an Amazon Elastic Compute Cloud instance or an Amazon Simple Storage Service bucket.

Associated Types

Type that represents the set of properties the resource can be configured with.

Associated Constants

Uniquely identifies the resource type.

Required Methods

Get a reference to the properties on the resource.

Get a mutable reference to the properties on the resource.

Implementors