Class LoadBalancerReference
A reference to a LoadBalancer resource.
Implements
Inherited Members
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
Remarks
ExampleMetadata: fixture=_generated
LoadBalancerName
The LoadBalancerName of the LoadBalancer resource.
public string LoadBalancerName { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated