Struct rusoto_lambda::FunctionCodeLocation[][src]

pub struct FunctionCodeLocation {
    pub location: Option<String>,
    pub repository_type: Option<String>,
}

The object for the Lambda function location.

Fields

The presigned URL you can use to download the function's .zip file that you previously uploaded. The URL is valid for up to 10 minutes.

The repository from which you can download the function.

Trait Implementations

impl Default for FunctionCodeLocation
[src]

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

impl Debug for FunctionCodeLocation
[src]

Formats the value using the given formatter. Read more

impl Clone for FunctionCodeLocation
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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