@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.030Z") @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.networkfirewall.*;
CfnLoggingConfigurationProps cfnLoggingConfigurationProps = CfnLoggingConfigurationProps.builder()
.firewallArn("firewallArn")
.loggingConfiguration(LoggingConfigurationProperty.builder()
.logDestinationConfigs(List.of(LogDestinationConfigProperty.builder()
.logDestination(Map.of(
"logDestinationKey", "logDestination"))
.logDestinationType("logDestinationType")
.logType("logType")
.build()))
.build())
// the properties below are optional
.firewallName("firewallName")
.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() |
String |
getFirewallArn()
The Amazon Resource Name (ARN) of the `Firewall` that the logging configuration is associated with.
|
default String |
getFirewallName()
The name of the firewall that the logging configuration is associated with.
|
Object |
getLoggingConfiguration()
Defines how AWS Network Firewall performs logging for a `Firewall` .
|
@Stability(value=Stable) @NotNull String getFirewallArn()
You can't change the firewall specification after you create the logging configuration.
@Stability(value=Stable) @NotNull Object getLoggingConfiguration()
@Stability(value=Stable) @Nullable default String getFirewallName()
You can't change the firewall specification after you create the logging configuration.
@Stability(value=Stable) static CfnLoggingConfigurationProps.Builder builder()
Copyright © 2022. All rights reserved.