Class: Aws::SecurityHub::Types::IcmpTypeCode
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::IcmpTypeCode
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
An Internet Control Message Protocol (ICMP) type and code.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#code ⇒ Integer
The ICMP code for which to deny or allow access.
-
#type ⇒ Integer
The ICMP type for which to deny or allow access.
Instance Attribute Details
#code ⇒ Integer
The ICMP code for which to deny or allow access. To deny or allow
all codes, use the value -1
.
26005 26006 26007 26008 26009 26010 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 26005 class IcmpTypeCode < Struct.new( :code, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ Integer
The ICMP type for which to deny or allow access. To deny or allow
all types, use the value -1
.
26005 26006 26007 26008 26009 26010 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 26005 class IcmpTypeCode < Struct.new( :code, :type) SENSITIVE = [] include Aws::Structure end |