Class: Aws::FMS::Types::App
- Inherits:
-
Struct
- Object
- Struct
- Aws::FMS::Types::App
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-fms/types.rb
Overview
An individual Firewall Manager application.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#app_name ⇒ String
The application’s name.
-
#port ⇒ Integer
The application’s port number, for example ‘80`.
-
#protocol ⇒ String
The IP protocol name or number.
Instance Attribute Details
#app_name ⇒ String
The application’s name.
197 198 199 200 201 202 203 |
# File 'lib/aws-sdk-fms/types.rb', line 197 class App < Struct.new( :app_name, :protocol, :port) SENSITIVE = [] include Aws::Structure end |
#port ⇒ Integer
The application’s port number, for example ‘80`.
197 198 199 200 201 202 203 |
# File 'lib/aws-sdk-fms/types.rb', line 197 class App < Struct.new( :app_name, :protocol, :port) SENSITIVE = [] include Aws::Structure end |
#protocol ⇒ String
The IP protocol name or number. The name can be one of ‘tcp`, `udp`, or `icmp`. For information on possible numbers, see [Protocol Numbers].
[1]: www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml
197 198 199 200 201 202 203 |
# File 'lib/aws-sdk-fms/types.rb', line 197 class App < Struct.new( :app_name, :protocol, :port) SENSITIVE = [] include Aws::Structure end |