Struct rusoto_lambda::ListEventSourceMappingsResponse[][src]

pub struct ListEventSourceMappingsResponse {
    pub event_source_mappings: Option<Vec<EventSourceMappingConfiguration>>,
    pub next_marker: Option<String>,
}

Contains a list of event sources (see EventSourceMappingConfiguration)

Fields

An array of EventSourceMappingConfiguration objects.

A string, present if there are more event source mappings.

Trait Implementations

impl Default for ListEventSourceMappingsResponse
[src]

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

impl Debug for ListEventSourceMappingsResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for ListEventSourceMappingsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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