Enum cfn::Expr [] [src]

pub enum Expr {
    Join {
        delimiter: String,
        values: Vec<Value<String>>,
    },
}

AWS CloudFormation provides several built-in functions that help you manage your stacks. Use intrinsic functions in your templates to assign values to properties that are not available until runtime.

Variants

Append a set of values into a single value, separated by the specified delimiter. If a delimiter is the empty string, the set of values are concatenated with no delimiter.

Fields of Join

The value you want to occur between fragments. The delimiter will occur between fragments only. It will not terminate the final value.

The list of values you want combined.

Trait Implementations

impl Debug for Expr
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Expr

impl Sync for Expr