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

pub struct AliasProperties {
    pub description: Option<Value<String>>,
    pub function_name: Value<String>,
    pub function_version: Value<String>,
    pub name: Value<String>,
    pub routing_config: Option<Value<AliasRoutingConfiguration>>,
}

Properties for the Alias resource.

Fields

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.

Property FunctionVersion.

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

Property Name.

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

Property RoutingConfig.

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

Trait Implementations

impl Debug for AliasProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for AliasProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<AliasProperties> for Alias
[src]

[src]

Performs the conversion.

Auto Trait Implementations