Show / Hide Table of Contents

Class CfnListenerRule.HostHeaderConfigProperty

Information about a host header condition.

Inheritance
object
CfnListenerRule.HostHeaderConfigProperty
Implements
CfnListenerRule.IHostHeaderConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-hostheaderconfig.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-hostheaderconfig.html

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-hostheaderconfig.html#cfn-elasticloadbalancingv2-listenerrule-hostheaderconfig-values

Implements

CfnListenerRule.IHostHeaderConfigProperty
Back to top Generated by DocFX