interface GatewayProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.GatewayProps |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#GatewayProps |
Java | software.amazon.awscdk.services.mediaconnect.alpha.GatewayProps |
Python | aws_cdk.aws_mediaconnect_alpha.GatewayProps |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป GatewayProps |
Properties for the MediaConnect Gateway.
Example
declare const stack: Stack;
const productionNetwork = GatewayNetwork.define({
cidrBlock: '192.168.1.0/24',
name: 'production-network',
});
const gateway = new Gateway(stack, 'MyGateway', {
gatewayName: 'my-gateway',
egressCidrBlocks: ['10.0.0.0/16'],
networks: [productionNetwork],
});
Properties
| Name | Type | Description |
|---|---|---|
| egress | string[] | The range of IP addresses that are allowed to contribute content or initiate output requests for flows communicating with this gateway. |
| networks | Gateway[] | The list of networks in the gateway. |
| gateway | string | The name of the gateway. |
egressCidrBlocks
Type:
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.
networks
Type:
Gateway[]
The list of networks in the gateway.
A gateway must have between 1 and 4 networks.
Provide the initial set here; use addNetwork() to add more (up to 4 total).
gatewayName?
Type:
string
(optional, default: autogenerated)
The name of the gateway.
This name can not be modified after the gateway is created.

.NET
Go
Java
Python
TypeScript (