[][src]Struct rusoto_lambda::PublishLayerVersionRequest

pub struct PublishLayerVersionRequest {
    pub compatible_runtimes: Option<Vec<String>>,
    pub content: LayerVersionContentInput,
    pub description: Option<String>,
    pub layer_name: String,
    pub license_info: Option<String>,
}

Fields

compatible_runtimes: Option<Vec<String>>

A list of compatible function runtimes. Used for filtering with ListLayers and ListLayerVersions.

content: LayerVersionContentInput

The function layer archive.

description: Option<String>

The description of the version.

layer_name: String

The name or Amazon Resource Name (ARN) of the layer.

license_info: Option<String>

The layer's software license. It can be any of the following:

  • An SPDX license identifier. For example, MIT.

  • The URL of a license hosted on the internet. For example, https://opensource.org/licenses/MIT.

  • The full text of the license.

Trait Implementations

impl Clone for PublishLayerVersionRequest[src]

impl Debug for PublishLayerVersionRequest[src]

impl Default for PublishLayerVersionRequest[src]

impl PartialEq<PublishLayerVersionRequest> for PublishLayerVersionRequest[src]

impl Serialize for PublishLayerVersionRequest[src]

impl StructuralPartialEq for PublishLayerVersionRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.