Interface ILoadBalancerListenerContextQuery
Query input for looking up a load balancer listener.
Inherited Members
Namespace: Amazon.CDK.CloudAssemblySchema
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ILoadBalancerListenerContextQuery : ILoadBalancerFilter, IContextLookupRoleOptions
Syntax (vb)
Public Interface ILoadBalancerListenerContextQuery
Inherits ILoadBalancerFilter, IContextLookupRoleOptions
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.Cloud_assembly_schema;
var assumeRoleAdditionalOptions;
var loadBalancerListenerContextQuery = new LoadBalancerListenerContextQuery {
Account = "account",
LoadBalancerType = LoadBalancerType.NETWORK,
Region = "region",
// the properties below are optional
AssumeRoleAdditionalOptions = new Dictionary<string, object> {
{ "assumeRoleAdditionalOptionsKey", assumeRoleAdditionalOptions }
},
ListenerArn = "listenerArn",
ListenerPort = 123,
ListenerProtocol = LoadBalancerListenerProtocol.HTTP,
LoadBalancerArn = "loadBalancerArn",
LoadBalancerTags = new [] { new Tag {
Key = "key",
Value = "value"
} },
LookupRoleArn = "lookupRoleArn",
LookupRoleExternalId = "lookupRoleExternalId"
};
Synopsis
Properties
Listener |
Find by listener's arn. |
Listener |
Filter listeners by listener port. |
Listener |
Filter by listener protocol. |
Properties
ListenerArn
Find by listener's arn.
virtual string ListenerArn { get; }
Property Value
System.
Remarks
Default: - does not find by listener arn
ListenerPort
Filter listeners by listener port.
virtual Nullable<double> ListenerPort { get; }
Property Value
System.
Remarks
Default: - does not filter by a listener port
ListenerProtocol
Filter by listener protocol.
virtual Nullable<LoadBalancerListenerProtocol> ListenerProtocol { get; }
Property Value
System.
Remarks
Default: - does not filter by listener protocol