interface CfnFirewallPolicyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.NetworkFirewall.Mixins.CfnFirewallPolicyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsnetworkfirewall/mixins#CfnFirewallPolicyMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.networkfirewall.mixins.CfnFirewallPolicyMixinProps |
Python | aws_cdk.mixins_preview.aws_networkfirewall.mixins.CfnFirewallPolicyMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_networkfirewall » mixins » CfnFirewallPolicyMixinProps |
Properties for CfnFirewallPolicyPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as networkfirewall_mixins } from '@aws-cdk/mixins-preview/aws-networkfirewall';
const cfnFirewallPolicyMixinProps: networkfirewall_mixins.CfnFirewallPolicyMixinProps = {
description: 'description',
firewallPolicy: {
enableTlsSessionHolding: false,
policyVariables: {
ruleVariables: {
ruleVariablesKey: {
definition: ['definition'],
},
},
},
statefulDefaultActions: ['statefulDefaultActions'],
statefulEngineOptions: {
flowTimeouts: {
tcpIdleTimeoutSeconds: 123,
},
ruleOrder: 'ruleOrder',
streamExceptionPolicy: 'streamExceptionPolicy',
},
statefulRuleGroupReferences: [{
deepThreatInspection: false,
override: {
action: 'action',
},
priority: 123,
resourceArn: 'resourceArn',
}],
statelessCustomActions: [{
actionDefinition: {
publishMetricAction: {
dimensions: [{
value: 'value',
}],
},
},
actionName: 'actionName',
}],
statelessDefaultActions: ['statelessDefaultActions'],
statelessFragmentDefaultActions: ['statelessFragmentDefaultActions'],
statelessRuleGroupReferences: [{
priority: 123,
resourceArn: 'resourceArn',
}],
tlsInspectionConfigurationArn: 'tlsInspectionConfigurationArn',
},
firewallPolicyName: 'firewallPolicyName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A description of the firewall policy. |
| firewall | IResolvable | Firewall | The traffic filtering behavior of a firewall policy, defined in a collection of stateless and stateful rule groups and other settings. |
| firewall | string | The descriptive name of the firewall policy. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
description?
Type:
string
(optional)
A description of the firewall policy.
firewallPolicy?
Type:
IResolvable | Firewall
(optional)
The traffic filtering behavior of a firewall policy, defined in a collection of stateless and stateful rule groups and other settings.
firewallPolicyName?
Type:
string
(optional)
The descriptive name of the firewall policy.
You can't change the name of a firewall policy after you create it.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .

.NET
Go
Java
Python
TypeScript