aws-cdk-lib.aws_elasticloadbalancingv2.CfnListenerRule.HostHeaderConfigProperty

interface HostHeaderConfigProperty

LanguageType name
.NETAmazon.CDK.AWS.ElasticLoadBalancingV2.CfnListenerRule.HostHeaderConfigProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awselasticloadbalancingv2#CfnListenerRule_HostHeaderConfigProperty
Javasoftware.amazon.awscdk.services.elasticloadbalancingv2.CfnListenerRule.HostHeaderConfigProperty
Pythonaws_cdk.aws_elasticloadbalancingv2.CfnListenerRule.HostHeaderConfigProperty
TypeScript aws-cdk-lib » aws_elasticloadbalancingv2 » CfnListenerRule » HostHeaderConfigProperty

Information about a host header condition.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_elasticloadbalancingv2 as elbv2 } from 'aws-cdk-lib';
const hostHeaderConfigProperty: elbv2.CfnListenerRule.HostHeaderConfigProperty = {
  values: ['values'],
};

Properties

NameTypeDescription
values?string[]The host names.

values?

Type: string[] (optional)

The host names.

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.