Class CfnListenerRule.HostHeaderConfigProperty
Information about a host header condition.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.ElasticLoadBalancingV2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnListenerRule.HostHeaderConfigProperty : CfnListenerRule.IHostHeaderConfigProperty
Syntax (vb)
Public Class CfnListenerRule.HostHeaderConfigProperty Implements CfnListenerRule.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
Constructors
HostHeaderConfigProperty() | Information about a host header condition. |
Properties
Values | The host names. |
Constructors
HostHeaderConfigProperty()
Information about a host header condition.
public HostHeaderConfigProperty()
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" }
};
Properties
Values
The host names.
public string[]? Values { get; set; }
Property Value
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). You must include at least one "." character. You can include only alphabetical characters after the final "." character.
If you specify multiple strings, the condition is satisfied if one of the strings matches the host name.