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

pub struct ListenerProperties {
    pub certificates: Option<ValueList<Certificate>>,
    pub default_actions: ValueList<Action>,
    pub load_balancer_arn: Value<String>,
    pub port: Value<u32>,
    pub protocol: Value<String>,
    pub ssl_policy: Option<Value<String>>,
}

Properties for the Listener resource.

Fields

Property Certificates.

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

Property DefaultActions.

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

Property LoadBalancerArn.

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

Property Port.

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

Property Protocol.

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

Property SslPolicy.

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

Trait Implementations

impl Debug for ListenerProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for ListenerProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<ListenerProperties> for Listener
[src]

[src]

Performs the conversion.

Auto Trait Implementations