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]

[src]

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

impl Debug for ListEventSourceMappingsResponse
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ListEventSourceMappingsResponse
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations