interface LoadBalancerReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.ElasticLoadBalancing.LoadBalancerReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awselasticloadbalancing#LoadBalancerReference |
Java | software.amazon.awscdk.interfaces.elasticloadbalancing.LoadBalancerReference |
Python | aws_cdk.interfaces.aws_elasticloadbalancing.LoadBalancerReference |
TypeScript | aws-cdk-lib » interfaces » aws_elasticloadbalancing » 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_elasticloadbalancing as interfaces_aws_elasticloadbalancing } from 'aws-cdk-lib/interfaces';
const loadBalancerReference: interfaces_aws_elasticloadbalancing.LoadBalancerReference = {
loadBalancerId: 'loadBalancerId',
};
Properties
| Name | Type | Description |
|---|---|---|
| load | string | The Id of the LoadBalancer resource. |
loadBalancerId
Type:
string
The Id of the LoadBalancer resource.

.NET
Go
Java
Python
TypeScript