Class: Aws::MediaLive::Types::DescribeNetworkResult
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::MediaLive::Types::DescribeNetworkResult
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-medialive/types.rb
 
Overview
Contains the response for CreateNetwork, DescribeNetwork, DeleteNetwork, UpdateNetwork.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ARN of this Network.
 - #associated_cluster_ids ⇒ Array<String>
 - 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the Network.
 - 
  
    
      #ip_pools  ⇒ Array<Types::IpPool> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An array of IpPools in your organization’s network that identify a collection of IP addresses in this network that are reserved for use in MediaLive Anywhere.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name that you specified for the Network.
 - 
  
    
      #routes  ⇒ Array<Types::Route> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An array of routes that MediaLive Anywhere needs to know about in order to route encoding traffic.
 - 
  
    
      #state  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The current state of the Network.
 
Instance Attribute Details
#arn ⇒ String
The ARN of this Network. It is automatically assigned when the Network is created.
      19173 19174 19175 19176 19177 19178 19179 19180 19181 19182 19183  | 
    
      # File 'lib/aws-sdk-medialive/types.rb', line 19173 class DescribeNetworkResult < Struct.new( :arn, :associated_cluster_ids, :id, :ip_pools, :name, :routes, :state) SENSITIVE = [] include Aws::Structure end  | 
  
#associated_cluster_ids ⇒ Array<String>
      19173 19174 19175 19176 19177 19178 19179 19180 19181 19182 19183  | 
    
      # File 'lib/aws-sdk-medialive/types.rb', line 19173 class DescribeNetworkResult < Struct.new( :arn, :associated_cluster_ids, :id, :ip_pools, :name, :routes, :state) SENSITIVE = [] include Aws::Structure end  | 
  
#id ⇒ String
The ID of the Network. Unique in the AWS account. The ID is the resource-id portion of the ARN.
      19173 19174 19175 19176 19177 19178 19179 19180 19181 19182 19183  | 
    
      # File 'lib/aws-sdk-medialive/types.rb', line 19173 class DescribeNetworkResult < Struct.new( :arn, :associated_cluster_ids, :id, :ip_pools, :name, :routes, :state) SENSITIVE = [] include Aws::Structure end  | 
  
#ip_pools ⇒ Array<Types::IpPool>
An array of IpPools in your organization’s network that identify a collection of IP addresses in this network that are reserved for use in MediaLive Anywhere. MediaLive Anywhere uses these IP addresses for Push inputs (in both Bridge and NAT networks) and for output destinations (only in Bridge networks). Each IpPool specifies one CIDR block.
      19173 19174 19175 19176 19177 19178 19179 19180 19181 19182 19183  | 
    
      # File 'lib/aws-sdk-medialive/types.rb', line 19173 class DescribeNetworkResult < Struct.new( :arn, :associated_cluster_ids, :id, :ip_pools, :name, :routes, :state) SENSITIVE = [] include Aws::Structure end  | 
  
#name ⇒ String
The name that you specified for the Network.
      19173 19174 19175 19176 19177 19178 19179 19180 19181 19182 19183  | 
    
      # File 'lib/aws-sdk-medialive/types.rb', line 19173 class DescribeNetworkResult < Struct.new( :arn, :associated_cluster_ids, :id, :ip_pools, :name, :routes, :state) SENSITIVE = [] include Aws::Structure end  | 
  
#routes ⇒ Array<Types::Route>
An array of routes that MediaLive Anywhere needs to know about in order to route encoding traffic.
      19173 19174 19175 19176 19177 19178 19179 19180 19181 19182 19183  | 
    
      # File 'lib/aws-sdk-medialive/types.rb', line 19173 class DescribeNetworkResult < Struct.new( :arn, :associated_cluster_ids, :id, :ip_pools, :name, :routes, :state) SENSITIVE = [] include Aws::Structure end  | 
  
#state ⇒ String
The current state of the Network. Only MediaLive Anywhere can change the state.
      19173 19174 19175 19176 19177 19178 19179 19180 19181 19182 19183  | 
    
      # File 'lib/aws-sdk-medialive/types.rb', line 19173 class DescribeNetworkResult < Struct.new( :arn, :associated_cluster_ids, :id, :ip_pools, :name, :routes, :state) SENSITIVE = [] include Aws::Structure end  |