interface LoadBalancerReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Lightsail.LoadBalancerReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awslightsail#LoadBalancerReference |
Java | software.amazon.awscdk.interfaces.lightsail.LoadBalancerReference |
Python | aws_cdk.interfaces.aws_lightsail.LoadBalancerReference |
TypeScript | aws-cdk-lib » interfaces » aws_lightsail » LoadBalancerReference |
A reference to a LoadBalancer resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lightsail as interfaces_aws_lightsail } from 'aws-cdk-lib/interfaces';
const loadBalancerReference: interfaces_aws_lightsail.LoadBalancerReference = {
loadBalancerArn: 'loadBalancerArn',
loadBalancerName: 'loadBalancerName',
};
Properties
| Name | Type | Description |
|---|---|---|
| load | string | The ARN of the LoadBalancer resource. |
| load | string | The LoadBalancerName of the LoadBalancer resource. |
loadBalancerArn
Type:
string
The ARN of the LoadBalancer resource.
loadBalancerName
Type:
string
The LoadBalancerName of the LoadBalancer resource.

.NET
Go
Java
Python
TypeScript