Struct rusoto_servicecatalog::ResourceTargetDefinition[][src]

pub struct ResourceTargetDefinition {
    pub attribute: Option<String>,
    pub name: Option<String>,
    pub requires_recreation: Option<String>,
}

Information about a change to a resource attribute.

Fields

The attribute to be changed.

If the attribute is Properties, the value is the name of the property. Otherwise, the value is null.

If the attribute is Properties, indicates whether a change to this property causes the resource to be re-created.

Trait Implementations

impl Default for ResourceTargetDefinition
[src]

Returns the "default value" for a type. Read more

impl Debug for ResourceTargetDefinition
[src]

Formats the value using the given formatter. Read more

impl Clone for ResourceTargetDefinition
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ResourceTargetDefinition
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations