Class: Aws::AppMesh::Types::VirtualRouterListener
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::VirtualRouterListener
- Defined in:
- gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb
Overview
Note:
When making an API call, you may pass VirtualRouterListener data as a hash:
{
port_mapping: { # required
port: 1, # required
protocol: "http", # required, accepts http, tcp, http2, grpc
},
}
An object that represents a virtual router listener.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#port_mapping ⇒ Types::PortMapping
An object that represents a port mapping.
Instance Attribute Details
#port_mapping ⇒ Types::PortMapping
An object that represents a port mapping.
9953 9954 9955 9956 9957 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 9953 class VirtualRouterListener < Struct.new( :port_mapping) SENSITIVE = [] include Aws::Structure end |