Show / Hide Table of Contents

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.

object? TargetJson { get; }
Property Value

object

Remarks

May be omitted if the target is going to register itself later.

TargetType

What kind of target this is.

TargetType TargetType { get; }
Property Value

TargetType

Remarks

ExampleMetadata: fixture=_generated

Back to top Generated by DocFX