@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-22T10:27:19.589Z") @Stability(value=Stable) public interface CfnLoggingConfigurationProps 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 jsonBody;
Object loggingFilter;
Object method;
Object queryString;
Object singleHeader;
Object uriPath;
CfnLoggingConfigurationProps cfnLoggingConfigurationProps = CfnLoggingConfigurationProps.builder()
.logDestinationConfigs(List.of("logDestinationConfigs"))
.resourceArn("resourceArn")
// the properties below are optional
.loggingFilter(loggingFilter)
.redactedFields(List.of(FieldToMatchProperty.builder()
.jsonBody(jsonBody)
.method(method)
.queryString(queryString)
.singleHeader(singleHeader)
.uriPath(uriPath)
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnLoggingConfigurationProps.Builder
A builder for
CfnLoggingConfigurationProps |
static class |
CfnLoggingConfigurationProps.Jsii$Proxy
An implementation for
CfnLoggingConfigurationProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnLoggingConfigurationProps.Builder |
builder() |
List<String> |
getLogDestinationConfigs()
`AWS::WAFv2::LoggingConfiguration.LogDestinationConfigs`.
|
default Object |
getLoggingFilter()
`AWS::WAFv2::LoggingConfiguration.LoggingFilter`.
|
default Object |
getRedactedFields()
`AWS::WAFv2::LoggingConfiguration.RedactedFields`.
|
String |
getResourceArn()
`AWS::WAFv2::LoggingConfiguration.ResourceArn`.
|
@Stability(value=Stable) @NotNull List<String> getLogDestinationConfigs()
@Stability(value=Stable) @Nullable default Object getLoggingFilter()
@Stability(value=Stable) @Nullable default Object getRedactedFields()
@Stability(value=Stable) @NotNull String getResourceArn()
@Stability(value=Stable) static CfnLoggingConfigurationProps.Builder builder()
Copyright © 2021. All rights reserved.