Interface ILoadBalancerTargetProps
Result of attaching a target to load balancer.
Namespace: Amazon.CDK.AWS.ElasticLoadBalancingV2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ILoadBalancerTargetProps
Syntax (vb)
Public Interface ILoadBalancerTargetProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.ElasticLoadBalancingV2;
var targetJson;
var loadBalancerTargetProps = new LoadBalancerTargetProps {
TargetType = TargetType.INSTANCE,
// the properties below are optional
TargetJson = targetJson
};
Synopsis
Properties
TargetJson | JSON representing the target's direct addition to the TargetGroup list. |
TargetType | What kind of target this is. |
Properties
TargetJson
JSON representing the target's direct addition to the TargetGroup list.
virtual object TargetJson { get; }
Property Value
System.Object
Remarks
May be omitted if the target is going to register itself later.