interface IcmpTypeCodeProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.FMS.CfnPolicy.IcmpTypeCodeProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsfms#CfnPolicy_IcmpTypeCodeProperty | 
  Java | software.amazon.awscdk.services.fms.CfnPolicy.IcmpTypeCodeProperty | 
  Python | aws_cdk.aws_fms.CfnPolicy.IcmpTypeCodeProperty | 
  TypeScript  | aws-cdk-lib » aws_fms » CfnPolicy » 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-lib';
const icmpTypeCodeProperty: fms.CfnPolicy.IcmpTypeCodeProperty = {
  code: 123,
  type: 123,
};
Properties
| Name | Type | Description | 
|---|---|---|
| code | number | ICMP code. | 
| type | number | ICMP type. | 
code
Type:
number
ICMP code.
type
Type:
number
ICMP type.

 .NET
 Go
 Java
 Python
 TypeScript