Interface CfnLoggingConfiguration.JsonBodyProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLoggingConfiguration.JsonBodyProperty.Jsii$Proxy
- Enclosing class:
CfnLoggingConfiguration
@Stability(Stable)
public static interface CfnLoggingConfiguration.JsonBodyProperty
extends software.amazon.jsii.JsiiSerializable
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.wafv2.*;
Object all;
JsonBodyProperty jsonBodyProperty = JsonBodyProperty.builder()
.matchPattern(MatchPatternProperty.builder()
.all(all)
.includedPaths(List.of("includedPaths"))
.build())
.matchScope("matchScope")
// the properties below are optional
.invalidFallbackBehavior("invalidFallbackBehavior")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLoggingConfiguration.JsonBodyPropertystatic final classAn implementation forCfnLoggingConfiguration.JsonBodyProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringReturns union: eitherIResolvableorCfnLoggingConfiguration.MatchPatternPropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMatchPattern
Returns union: eitherIResolvableorCfnLoggingConfiguration.MatchPatternProperty- See Also:
-
getMatchScope
- See Also:
-
getInvalidFallbackBehavior
- See Also:
-
builder
-