Struct cfn::aws::lambda::VersionProperties [] [src]

pub struct VersionProperties {
    pub code_sha256: Option<Value<String>>,
    pub description: Option<Value<String>>,
    pub function_name: Value<String>,
}

Properties for the Version resource.

Fields

Property CodeSha256.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Description.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property FunctionName.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Trait Implementations

impl Debug for VersionProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for VersionProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl<'de> Deserialize<'de> for VersionProperties
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<VersionProperties> for Version
[src]

[src]

Performs the conversion.

Auto Trait Implementations