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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPolicy.PolicyOptionProperty
static final class
An implementation forCfnPolicy.PolicyOptionProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getNetworkFirewallPolicy
Defines the deployment model to use for the firewall policy. -
getThirdPartyFirewallPolicy
Defines the policy options for a third-party firewall policy. -
builder
-