Class: Aws::MediaConnect::Types::CreateGatewayRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConnect::Types::CreateGatewayRequest
- Defined in:
- gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb
Overview
Creates a new gateway. The request must include one network (up to 4).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#egress_cidr_blocks ⇒ Array<String>
The range of IP addresses that are allowed to contribute content or initiate output requests for flows communicating with this gateway.
-
#name ⇒ String
The name of the gateway.
-
#networks ⇒ Array<Types::GatewayNetwork>
The list of networks that you want to add.
Instance Attribute Details
#egress_cidr_blocks ⇒ Array<String>
The range of IP addresses that are allowed to contribute content or initiate output requests for flows communicating with this gateway. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.
1067 1068 1069 1070 1071 1072 1073 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 1067 class CreateGatewayRequest < Struct.new( :egress_cidr_blocks, :name, :networks) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the gateway. This name can not be modified after the gateway is created.
1067 1068 1069 1070 1071 1072 1073 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 1067 class CreateGatewayRequest < Struct.new( :egress_cidr_blocks, :name, :networks) SENSITIVE = [] include Aws::Structure end |
#networks ⇒ Array<Types::GatewayNetwork>
The list of networks that you want to add.
1067 1068 1069 1070 1071 1072 1073 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 1067 class CreateGatewayRequest < Struct.new( :egress_cidr_blocks, :name, :networks) SENSITIVE = [] include Aws::Structure end |