Struct rusoto_events::InputTransformer[][src]

pub struct InputTransformer {
    pub input_paths_map: Option<HashMap<String, String>>,
    pub input_template: String,
}

Contains the parameters needed for you to provide custom input to a target based on one or more pieces of data extracted from the event.

Fields

Map of JSON paths to be extracted from the event. These are key-value pairs, where each value is a JSON path. You must use JSON dot notation, not bracket notation.

Input template where you can use the values of the keys from InputPathsMap to customize the data sent to the target.

Trait Implementations

impl Default for InputTransformer
[src]

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

impl Debug for InputTransformer
[src]

Formats the value using the given formatter. Read more

impl Clone for InputTransformer
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for InputTransformer
[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