Struct rusoto_stepfunctions::LambdaFunctionScheduledEventDetails[][src]

pub struct LambdaFunctionScheduledEventDetails {
    pub input: Option<String>,
    pub resource: String,
    pub timeout_in_seconds: Option<i64>,
}

Contains details about a lambda function scheduled during an execution.

Fields

The JSON data input to the lambda function.

The Amazon Resource Name (ARN) of the scheduled lambda function.

The maximum allowed duration of the lambda function.

Trait Implementations

impl Default for LambdaFunctionScheduledEventDetails
[src]

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

impl Debug for LambdaFunctionScheduledEventDetails
[src]

Formats the value using the given formatter. Read more

impl Clone for LambdaFunctionScheduledEventDetails
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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