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

pub struct TargetGroupProperties {
    pub health_check_interval_seconds: Option<Value<u32>>,
    pub health_check_path: Option<Value<String>>,
    pub health_check_port: Option<Value<String>>,
    pub health_check_protocol: Option<Value<String>>,
    pub health_check_timeout_seconds: Option<Value<u32>>,
    pub healthy_threshold_count: Option<Value<u32>>,
    pub matcher: Option<Value<Matcher>>,
    pub name: Option<Value<String>>,
    pub port: Value<u32>,
    pub protocol: Value<String>,
    pub tags: Option<ValueList<Tag>>,
    pub target_group_attributes: Option<ValueList<TargetGroupAttribute>>,
    pub target_type: Option<Value<String>>,
    pub targets: Option<ValueList<TargetDescription>>,
    pub unhealthy_threshold_count: Option<Value<u32>>,
    pub vpc_id: Value<String>,
}

Properties for the TargetGroup resource.

Fields

Property HealthCheckIntervalSeconds.

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

Property HealthCheckPath.

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

Property HealthCheckPort.

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

Property HealthCheckProtocol.

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

Property HealthCheckTimeoutSeconds.

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

Property HealthyThresholdCount.

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

Property Matcher.

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 Port.

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

Property Protocol.

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

Property Tags.

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

Property TargetGroupAttributes.

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

Property TargetType.

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

Property Targets.

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

Property UnhealthyThresholdCount.

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

Property VpcId.

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

Trait Implementations

impl Debug for TargetGroupProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for TargetGroupProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<TargetGroupProperties> for TargetGroup
[src]

[src]

Performs the conversion.

Auto Trait Implementations