Show / Hide Table of Contents

Class LoadBalancerReference

A reference to a LoadBalancer resource.

Inheritance
object
LoadBalancerReference
Implements
ILoadBalancerReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Interfaces.Lightsail
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class LoadBalancerReference : ILoadBalancerReference
Syntax (vb)
Public Class LoadBalancerReference Implements ILoadBalancerReference
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.Interfaces.Lightsail;

            var loadBalancerReference = new LoadBalancerReference {
                LoadBalancerArn = "loadBalancerArn",
                LoadBalancerName = "loadBalancerName"
            };

Synopsis

Constructors

LoadBalancerReference()

A reference to a LoadBalancer resource.

Properties

LoadBalancerArn

The ARN of the LoadBalancer resource.

LoadBalancerName

The LoadBalancerName of the LoadBalancer resource.

Constructors

LoadBalancerReference()

A reference to a LoadBalancer resource.

public LoadBalancerReference()
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.Interfaces.Lightsail;

            var loadBalancerReference = new LoadBalancerReference {
                LoadBalancerArn = "loadBalancerArn",
                LoadBalancerName = "loadBalancerName"
            };

Properties

LoadBalancerArn

The ARN of the LoadBalancer resource.

public string LoadBalancerArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

LoadBalancerName

The LoadBalancerName of the LoadBalancer resource.

public string LoadBalancerName { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

ILoadBalancerReference
Back to top Generated by DocFX