Class CfnRule.HeaderMatchTypeProperty
Describes a header match type.
Inheritance
System.Object
CfnRule.HeaderMatchTypeProperty
Implements
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.
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
Exact
Specifies an exact type match.
public string Exact { get; set; }
Property Value
System.String
Remarks
Prefix
Specifies a prefix type match.
public string Prefix { get; set; }
Property Value
System.String
Remarks
Matches the value with the prefix.