Class: Aws::AppMesh::Types::VirtualRouterSpec
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::VirtualRouterSpec
- Defined in:
- gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb
Overview
Note:
When making an API call, you may pass VirtualRouterSpec data as a hash:
{
listeners: [
{
port_mapping: { # required
port: 1, # required
protocol: "http", # required, accepts http, tcp, http2, grpc
},
},
],
}
An object that represents the specification of a virtual router.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#listeners ⇒ Array<Types::VirtualRouterListener>
The listeners that the virtual router is expected to receive inbound traffic from.
Instance Attribute Details
#listeners ⇒ Array<Types::VirtualRouterListener>
The listeners that the virtual router is expected to receive inbound traffic from. You can specify one listener.
10070 10071 10072 10073 10074 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 10070 class VirtualRouterSpec < Struct.new( :listeners) SENSITIVE = [] include Aws::Structure end |