@Generated(value="jsii-pacmak/1.46.0 (build cd08c55)", date="2021-11-25T20:11:07.368Z") @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()
`AWS::NetworkFirewall::LoggingConfiguration.FirewallArn`.
|
default String |
getFirewallName()
`AWS::NetworkFirewall::LoggingConfiguration.FirewallName`.
|
Object |
getLoggingConfiguration()
`AWS::NetworkFirewall::LoggingConfiguration.LoggingConfiguration`.
|
@Stability(value=Stable) @NotNull String getFirewallArn()
@Stability(value=Stable) @Nullable default String getFirewallName()
@Stability(value=Stable) @NotNull Object getLoggingConfiguration()
@Stability(value=Stable) static CfnLoggingConfigurationProps.Builder builder()
Copyright © 2021. All rights reserved.