Show / Hide Table of Contents

Class CfnRule.HeaderMatchTypeProperty

Describes a header match type.

Inheritance
System.Object
CfnRule.HeaderMatchTypeProperty
Implements
CfnRule.IHeaderMatchTypeProperty
Namespace: Amazon.CDK.AWS.VpcLattice
Assembly: Amazon.CDK.AWS.VpcLattice.dll
Syntax (csharp)
public class HeaderMatchTypeProperty : Object, CfnRule.IHeaderMatchTypeProperty
Syntax (vb)
Public Class HeaderMatchTypeProperty
    Inherits Object
    Implements CfnRule.IHeaderMatchTypeProperty
Remarks

Only one can be provided.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-headermatchtype.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.VpcLattice;

var headerMatchTypeProperty = new HeaderMatchTypeProperty {
    Contains = "contains",
    Exact = "exact",
    Prefix = "prefix"
};

Synopsis

Constructors

HeaderMatchTypeProperty()

Properties

Contains

Specifies a contains type match.

Exact

Specifies an exact type match.

Prefix

Specifies a prefix type match.

Constructors

HeaderMatchTypeProperty()

public HeaderMatchTypeProperty()

Properties

Contains

Specifies a contains type match.

public string Contains { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-headermatchtype.html#cfn-vpclattice-rule-headermatchtype-contains

Exact

Specifies an exact type match.

public string Exact { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-headermatchtype.html#cfn-vpclattice-rule-headermatchtype-exact

Prefix

Specifies a prefix type match.

public string Prefix { get; set; }
Property Value

System.String

Remarks

Matches the value with the prefix.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-headermatchtype.html#cfn-vpclattice-rule-headermatchtype-prefix

Implements

CfnRule.IHeaderMatchTypeProperty
Back to top Generated by DocFX