Class: Aws::MediaLive::Types::ClusterNetworkSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaLive::Types::ClusterNetworkSettings
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-medialive/types.rb
Overview
Used in DescribeClusterResult, DescribeClusterSummary, UpdateClusterResult.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#default_route ⇒ String
The network interface that is the default route for traffic to and from the node.
-
#interface_mappings ⇒ Array<Types::InterfaceMapping>
An array of interfaceMapping objects for this Cluster.
Instance Attribute Details
#default_route ⇒ String
The network interface that is 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.
18198 18199 18200 18201 18202 18203 |
# File 'lib/aws-sdk-medialive/types.rb', line 18198 class ClusterNetworkSettings < Struct.new( :default_route, :interface_mappings) SENSITIVE = [] include Aws::Structure end |
#interface_mappings ⇒ Array<Types::InterfaceMapping>
An array of interfaceMapping objects for this Cluster. Each mapping logically connects one interface on the nodes with one Network. You need only one mapping for each interface because all the Nodes share the mapping.
18198 18199 18200 18201 18202 18203 |
# File 'lib/aws-sdk-medialive/types.rb', line 18198 class ClusterNetworkSettings < Struct.new( :default_route, :interface_mappings) SENSITIVE = [] include Aws::Structure end |