Class: Aws::MediaConnect::Types::GatewayNetwork
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConnect::Types::GatewayNetwork
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mediaconnect/types.rb
Overview
The network settings for a gateway.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cidr_block ⇒ String
A unique IP address range to use for this network.
-
#name ⇒ String
The name of the network.
Instance Attribute Details
#cidr_block ⇒ String
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.
2073 2074 2075 2076 2077 2078 |
# File 'lib/aws-sdk-mediaconnect/types.rb', line 2073 class GatewayNetwork < Struct.new( :cidr_block, :name) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the network. This name is used to reference the network and must be unique among networks in this gateway.
2073 2074 2075 2076 2077 2078 |
# File 'lib/aws-sdk-mediaconnect/types.rb', line 2073 class GatewayNetwork < Struct.new( :cidr_block, :name) SENSITIVE = [] include Aws::Structure end |