[][src]Struct rusoto_cloudformation::ResourceToImport

pub struct ResourceToImport {
    pub logical_resource_id: String,
    pub resource_identifier: HashMap<String, String>,
    pub resource_type: String,
}

Describes the target resource of an import operation.

Fields

logical_resource_id: String

The logical ID of the target resource as specified in the template.

resource_identifier: HashMap<String, String>

A key-value pair that identifies the target resource. The key is an identifier property (for example, BucketName for AWS::S3::Bucket resources) and the value is the actual property value (for example, MyS3Bucket).

resource_type: String

The type of resource to import into your stack, such as AWS::S3::Bucket. For a list of supported resource types, see Resources that support import operations in the AWS CloudFormation User Guide.

Trait Implementations

impl Clone for ResourceToImport[src]

impl Debug for ResourceToImport[src]

impl Default for ResourceToImport[src]

impl PartialEq<ResourceToImport> for ResourceToImport[src]

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