RRSetRoutingPolicyWrrPolicyWrrPolicyItemArgs

data class RRSetRoutingPolicyWrrPolicyWrrPolicyItemArgs(val healthCheckedTargets: Output<RRSetRoutingPolicyHealthCheckTargetsArgs>? = null, val kind: Output<String>? = null, val rrdatas: Output<List<String>>? = null, val signatureRrdatas: Output<List<String>>? = null, val weight: Output<Double>? = null) : ConvertibleToJava<RRSetRoutingPolicyWrrPolicyWrrPolicyItemArgs>

A routing block which contains the routing information for one WRR item.

Constructors

fun RRSetRoutingPolicyWrrPolicyWrrPolicyItemArgs(healthCheckedTargets: Output<RRSetRoutingPolicyHealthCheckTargetsArgs>? = null, kind: Output<String>? = null, rrdatas: Output<List<String>>? = null, signatureRrdatas: Output<List<String>>? = null, weight: Output<Double>? = null)

Functions

Link copied to clipboard
open override fun toJava(): RRSetRoutingPolicyWrrPolicyWrrPolicyItemArgs

Properties

Link copied to clipboard

endpoints that need to be health checked before making the routing decision. The unhealthy endpoints will be omitted from the result. If all endpoints within a buckete are unhealthy, we'll choose a different bucket (sampled w.r.t. its weight) for responding. Note that if DNSSEC is enabled for this zone, only one of rrdata or health_checked_targets can be set.

Link copied to clipboard
val kind: Output<String>? = null
Link copied to clipboard
val rrdatas: Output<List<String>>? = null
Link copied to clipboard
val signatureRrdatas: Output<List<String>>? = null

DNSSEC generated signatures for all the rrdata within this item. Note that if health checked targets are provided for DNSSEC enabled zones, there's a restriction of 1 ip per item. .

Link copied to clipboard
val weight: Output<Double>? = null

The weight corresponding to this subset of rrdata. When multiple WeightedRoundRobinPolicyItems are configured, the probability of returning an rrset is proportional to its weight relative to the sum of weights configured for all items. This weight should be non-negative.