Interface CfnPolicy.PolicyOptionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPolicy.PolicyOptionProperty.Jsii$Proxy
Enclosing class:
CfnPolicy

@Stability(Stable) public static interface CfnPolicy.PolicyOptionProperty extends software.amazon.jsii.JsiiSerializable
Contains the AWS Network Firewall firewall policy options to configure the policy's deployment model and third-party firewall policy settings.

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.fms.*;
 PolicyOptionProperty policyOptionProperty = PolicyOptionProperty.builder()
         .networkFirewallPolicy(NetworkFirewallPolicyProperty.builder()
                 .firewallDeploymentModel("firewallDeploymentModel")
                 .build())
         .thirdPartyFirewallPolicy(ThirdPartyFirewallPolicyProperty.builder()
                 .firewallDeploymentModel("firewallDeploymentModel")
                 .build())
         .build();