Class: Aws::FMS::Types::App

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#app_nameString

The application's name.

Returns:

  • (String)


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

#portInteger

The application's port number, for example 80.

Returns:

  • (Integer)


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

#protocolString

The IP protocol name or number. The name can be one of tcp, udp, or icmp. For information on possible numbers, see Protocol Numbers.

Returns:

  • (String)


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