Class: Aws::MediaLive::Types::ClusterNetworkSettingsCreateRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaLive::Types::ClusterNetworkSettingsCreateRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-medialive/types.rb
Overview
Used in a CreateClusterRequest.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#default_route ⇒ String
Specify one network interface as the default route for traffic to and from the Node.
-
#interface_mappings ⇒ Array<Types::InterfaceMappingCreateRequest>
An array of interfaceMapping objects for this Cluster.
Instance Attribute Details
#default_route ⇒ String
Specify one network interface as the default route for traffic to and from the Node. MediaLive Anywhere uses this default when the destination for the traffic isn’t covered by the route table for any of the networks. Specify the value of the appropriate logicalInterfaceName parameter that you create in the interfaceMappings.
18066 18067 18068 18069 18070 18071 |
# File 'lib/aws-sdk-medialive/types.rb', line 18066 class ClusterNetworkSettingsCreateRequest < Struct.new( :default_route, :interface_mappings) SENSITIVE = [] include Aws::Structure end |
#interface_mappings ⇒ Array<Types::InterfaceMappingCreateRequest>
An array of interfaceMapping objects for this Cluster. You must create a mapping for node interfaces that you plan to use for encoding traffic. You typically don’t create a mapping for the management interface. You define this mapping in the Cluster so that the mapping can be used by all the Nodes. Each mapping logically connects one interface on the nodes with one Network. Each mapping consists of a pair of parameters. The logicalInterfaceName parameter creates a logical name for the Node interface that handles a specific type of traffic. For example, my-Inputs-Interface. The networkID parameter refers to the ID of the network. When you create the Nodes in this Cluster, you will associate the logicalInterfaceName with the appropriate physical interface.
18066 18067 18068 18069 18070 18071 |
# File 'lib/aws-sdk-medialive/types.rb', line 18066 class ClusterNetworkSettingsCreateRequest < Struct.new( :default_route, :interface_mappings) SENSITIVE = [] include Aws::Structure end |