interface IcmpTypeCodeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.FMS.Mixins.CfnPolicyPropsMixin.IcmpTypeCodeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsfms/mixins#CfnPolicyPropsMixin_IcmpTypeCodeProperty |
Java | software.amazon.awscdk.mixins.preview.services.fms.mixins.CfnPolicyPropsMixin.IcmpTypeCodeProperty |
Python | aws_cdk.mixins_preview.aws_fms.mixins.CfnPolicyPropsMixin.IcmpTypeCodeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_fms » mixins » 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 { mixins as fms_mixins } from '@aws-cdk/mixins-preview/aws-fms';
const icmpTypeCodeProperty: fms_mixins.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