Interface CfnRule.HeaderMatchTypeProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRule.HeaderMatchTypeProperty.Jsii$Proxy
- Enclosing class:
CfnRule
@Stability(Stable)
public static interface CfnRule.HeaderMatchTypeProperty
extends software.amazon.jsii.JsiiSerializable
Describes a header match type.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.vpclattice.*;
HeaderMatchTypeProperty headerMatchTypeProperty = HeaderMatchTypeProperty.builder()
.contains("contains")
.exact("exact")
.prefix("prefix")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRule.HeaderMatchTypePropertystatic final classAn implementation forCfnRule.HeaderMatchTypeProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContains
A contains type match.- See Also:
-
getExact
An exact type match.- See Also:
-
getPrefix
A prefix type match.Matches the value with the prefix.
- See Also:
-
builder
-