Enum terraform_zap_ignore_lib::Ignore[][src]

pub enum Ignore {
    Exact {
        exact: Vec<String>,
    },
}

Root structure to hold the ignore method type Using #[serde(untagged)] at the moment due to issue https://github.com/alexcrichton/toml-rs/issues/225

Variants

Variant to ignore by exact string match

Fields of Exact

Array of full resource names to ignore

Trait Implementations

impl Debug for Ignore
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Ignore

impl Sync for Ignore