Class: Aws::MediaConnect::Types::GatewayNetwork

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb

Overview

The network settings for a gateway.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#cidr_blockString

A unique IP address range to use for this network. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.

Returns:

  • (String)


2030
2031
2032
2033
2034
2035
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 2030

class GatewayNetwork < Struct.new(
  :cidr_block,
  :name)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the network. This name is used to reference the network and must be unique among networks in this gateway.

Returns:

  • (String)


2030
2031
2032
2033
2034
2035
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 2030

class GatewayNetwork < Struct.new(
  :cidr_block,
  :name)
  SENSITIVE = []
  include Aws::Structure
end