Class: Aws::SecurityHub::Types::IcmpTypeCode
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::IcmpTypeCode
- Includes:
- Aws::Structure
- Defined in:
- 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`.
25835 25836 25837 25838 25839 25840 |
# File 'lib/aws-sdk-securityhub/types.rb', line 25835 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`.
25835 25836 25837 25838 25839 25840 |
# File 'lib/aws-sdk-securityhub/types.rb', line 25835 class IcmpTypeCode < Struct.new( :code, :type) SENSITIVE = [] include Aws::Structure end |