Struct cfn::aws::elasticloadbalancingv2::ListenerRuleProperties [] [src]

pub struct ListenerRuleProperties {
    pub actions: ValueList<Action>,
    pub conditions: ValueList<RuleCondition>,
    pub listener_arn: Value<String>,
    pub priority: Value<u32>,
}

Properties for the ListenerRule resource.

Fields

Property Actions.

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

Property Conditions.

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

Property ListenerArn.

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

Property Priority.

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

Trait Implementations

impl Debug for ListenerRuleProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for ListenerRuleProperties
[src]

[src]

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

impl Serialize for ListenerRuleProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<ListenerRuleProperties> for ListenerRule
[src]

[src]

Performs the conversion.

Auto Trait Implementations