[][src]Struct rusoto_cloudformation::ResourceIdentifierSummary

pub struct ResourceIdentifierSummary {
    pub logical_resource_ids: Option<Vec<String>>,
    pub resource_identifiers: Option<Vec<String>>,
    pub resource_type: Option<String>,
}

Describes the target resources of a specific type in your import template (for example, all AWS::S3::Bucket resources) and the properties you can provide during the import to identify resources of that type.

Fields

logical_resource_ids: Option<Vec<String>>

The logical IDs of the target resources of the specified ResourceType, as defined in the import template.

resource_identifiers: Option<Vec<String>>

The resource properties you can provide during the import to identify your target resources. For example, BucketName is a possible identifier property for AWS::S3::Bucket resources.

resource_type: Option<String>

The template resource type of the target resources, such as AWS::S3::Bucket.

Trait Implementations

impl Clone for ResourceIdentifierSummary[src]

impl Debug for ResourceIdentifierSummary[src]

impl Default for ResourceIdentifierSummary[src]

impl PartialEq<ResourceIdentifierSummary> for ResourceIdentifierSummary[src]

impl StructuralPartialEq for ResourceIdentifierSummary[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.