Class: Aws::SimSpaceWeaver::Types::SimulationAppEndpointInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::SimSpaceWeaver::Types::SimulationAppEndpointInfo
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-simspaceweaver/types.rb
Overview
Information about the network endpoint that you can use to connect to your custom or service app. For more information about SimSpace Weaver apps, see [Key concepts: Apps] in the *SimSpace Weaver User Guide*..
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#address ⇒ String
The IP address of the app.
-
#ingress_port_mappings ⇒ Array<Types::SimulationAppPortMapping>
The inbound TCP/UDP port numbers of the app.
Instance Attribute Details
#address ⇒ String
The IP address of the app. SimSpace Weaver dynamically assigns this IP address when the app starts.
717 718 719 720 721 722 |
# File 'lib/aws-sdk-simspaceweaver/types.rb', line 717 class SimulationAppEndpointInfo < Struct.new( :address, :ingress_port_mappings) SENSITIVE = [] include Aws::Structure end |
#ingress_port_mappings ⇒ Array<Types::SimulationAppPortMapping>
The inbound TCP/UDP port numbers of the app. The combination of an IP address and a port number form a network endpoint.
717 718 719 720 721 722 |
# File 'lib/aws-sdk-simspaceweaver/types.rb', line 717 class SimulationAppEndpointInfo < Struct.new( :address, :ingress_port_mappings) SENSITIVE = [] include Aws::Structure end |