Class: Aws::FMS::Types::App
- Inherits:
-
Struct
- Object
- Struct
- Aws::FMS::Types::App
- Defined in:
- gems/aws-sdk-fms/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 'gems/aws-sdk-fms/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 'gems/aws-sdk-fms/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.
197 198 199 200 201 202 203 |
# File 'gems/aws-sdk-fms/lib/aws-sdk-fms/types.rb', line 197 class App < Struct.new( :app_name, :protocol, :port) SENSITIVE = [] include Aws::Structure end |