Interface IBaseListenerLookupOptions
Options for listener lookup.
Namespace: Amazon.CDK.AWS.ElasticLoadBalancingV2
Assembly: Amazon.CDK.AWS.ElasticLoadBalancingV2.dll
Syntax (csharp)
public interface IBaseListenerLookupOptions
Syntax (vb)
Public Interface IBaseListenerLookupOptions
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 baseListenerLookupOptions = new BaseListenerLookupOptions {
ListenerPort = 123,
LoadBalancerArn = "loadBalancerArn",
LoadBalancerTags = new Dictionary<string, string> {
{ "loadBalancerTagsKey", "loadBalancerTags" }
}
};
Synopsis
Properties
ListenerPort | Filter listeners by listener port. |
LoadBalancerArn | Filter listeners by associated load balancer arn. |
LoadBalancerTags | Filter listeners by associated load balancer tags. |
Properties
ListenerPort
Filter listeners by listener port.
virtual Nullable<double> ListenerPort { get; }
Property Value
System.Nullable<System.Double>
Remarks
Default: - does not filter by listener port
LoadBalancerArn
Filter listeners by associated load balancer arn.
virtual string LoadBalancerArn { get; }
Property Value
System.String
Remarks
Default: - does not filter by load balancer arn
LoadBalancerTags
Filter listeners by associated load balancer tags.
virtual IDictionary<string, string> LoadBalancerTags { get; }
Property Value
System.Collections.Generic.IDictionary<System.String, System.String>
Remarks
Default: - does not filter by load balancer tags