Class CfnLoadBalancer.LoadBalancerAttributeProperty
Specifies an attribute for an Application Load Balancer, a Network Load Balancer, or a Gateway Load Balancer.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.ElasticLoadBalancingV2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnLoadBalancer.LoadBalancerAttributeProperty : CfnLoadBalancer.ILoadBalancerAttributePropertySyntax (vb)
Public Class CfnLoadBalancer.LoadBalancerAttributeProperty Implements CfnLoadBalancer.ILoadBalancerAttributePropertyRemarks
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 loadBalancerAttributeProperty = new LoadBalancerAttributeProperty {
                 Key = "key",
                 Value = "value"
             };Synopsis
Constructors
| LoadBalancerAttributeProperty() | Specifies an attribute for an Application Load Balancer, a Network Load Balancer, or a Gateway Load Balancer. | 
Properties
| Key | The name of the attribute. | 
| Value | The value of the attribute. | 
Constructors
LoadBalancerAttributeProperty()
Specifies an attribute for an Application Load Balancer, a Network Load Balancer, or a Gateway Load Balancer.
public LoadBalancerAttributeProperty()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 loadBalancerAttributeProperty = new LoadBalancerAttributeProperty {
                 Key = "key",
                 Value = "value"
             };Properties
Key
The name of the attribute.
public string? Key { get; set; }Property Value
Remarks
The following attributes are supported by all load balancers:
The following attributes are supported by both Application Load Balancers and Network Load Balancers:
The following attributes are supported by only Application Load Balancers:
The following attributes are supported by only Network Load Balancers:
Value
The value of the attribute.
public string? Value { get; set; }