Interface CfnListenerRule.IHostHeaderConfigProperty
Information about a host header condition.
Namespace: Amazon.CDK.AWS.ElasticLoadBalancingV2
Assembly: Amazon.CDK.AWS.ElasticLoadBalancingV2.dll
Syntax (csharp)
public interface IHostHeaderConfigProperty
Syntax (vb)
Public Interface IHostHeaderConfigProperty
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 hostHeaderConfigProperty = new HostHeaderConfigProperty {
Values = new [] { "values" }
};
Synopsis
Properties
Values | The host names. |
Properties
Values
The host names.
virtual string[] Values { get; }
Property Value
System.String[]
Remarks
The maximum size of each name is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character).
If you specify multiple strings, the condition is satisfied if one of the strings matches the host name.