interface IcmpTypeCodeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.FMS.CfnPolicyPropsMixin.IcmpTypeCodeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsfms#CfnPolicyPropsMixin_IcmpTypeCodeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.fms.CfnPolicyPropsMixin.IcmpTypeCodeProperty |
Python | aws_cdk.cfn_property_mixins.aws_fms.CfnPolicyPropsMixin.IcmpTypeCodeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_fms » CfnPolicyPropsMixin » IcmpTypeCodeProperty |
ICMP protocol: The ICMP type and code.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_fms as fms } from '@aws-cdk/cfn-property-mixins';
const icmpTypeCodeProperty: fms.CfnPolicyPropsMixin.IcmpTypeCodeProperty = {
code: 123,
type: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| code? | number | ICMP code. |
| type? | number | ICMP type. |
code?
Type:
number
(optional)
ICMP code.
type?
Type:
number
(optional)
ICMP type.

.NET
Go
Java
Python
TypeScript