Class: Aws::MediaLive::Types::ClusterNetworkSettingsUpdateRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaLive::Types::ClusterNetworkSettingsUpdateRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-medialive/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#default_route ⇒ String
Include this parameter only if you want to change the default route for the Cluster.
-
#interface_mappings ⇒ Array<Types::InterfaceMappingUpdateRequest>
An array of interfaceMapping objects for this Cluster.
Instance Attribute Details
#default_route ⇒ String
Include this parameter only if you want to change the default route for the Cluster. 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.
18101 18102 18103 18104 18105 18106 |
# File 'lib/aws-sdk-medialive/types.rb', line 18101 class ClusterNetworkSettingsUpdateRequest < Struct.new( :default_route, :interface_mappings) SENSITIVE = [] include Aws::Structure end |
#interface_mappings ⇒ Array<Types::InterfaceMappingUpdateRequest>
An array of interfaceMapping objects for this Cluster. Include this parameter only if you want to change the interface mappings for the Cluster. Typically, you change the interface mappings only to fix an error you made when creating the mapping. In an update request, make sure that you enter the entire set of mappings again, not just the mappings that you want to add or change. You define this mapping 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.
18101 18102 18103 18104 18105 18106 |
# File 'lib/aws-sdk-medialive/types.rb', line 18101 class ClusterNetworkSettingsUpdateRequest < Struct.new( :default_route, :interface_mappings) SENSITIVE = [] include Aws::Structure end |