Class: Aws::MediaConnect::Types::CreateGatewayRequest

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#egress_cidr_blocksArray<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.

Returns:

  • (Array<String>)


1055
1056
1057
1058
1059
1060
1061
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 1055

class CreateGatewayRequest < Struct.new(
  :egress_cidr_blocks,
  :name,
  :networks)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the gateway. This name can not be modified after the gateway is created.

Returns:

  • (String)


1055
1056
1057
1058
1059
1060
1061
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 1055

class CreateGatewayRequest < Struct.new(
  :egress_cidr_blocks,
  :name,
  :networks)
  SENSITIVE = []
  include Aws::Structure
end

#networksArray<Types::GatewayNetwork>

The list of networks that you want to add.

Returns:



1055
1056
1057
1058
1059
1060
1061
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 1055

class CreateGatewayRequest < Struct.new(
  :egress_cidr_blocks,
  :name,
  :networks)
  SENSITIVE = []
  include Aws::Structure
end