aws-cdk-lib.aws_mediaconnect.CfnGatewayProps

interface CfnGatewayProps

LanguageType name
.NETAmazon.CDK.AWS.MediaConnect.CfnGatewayProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnGatewayProps
Javasoftware.amazon.awscdk.services.mediaconnect.CfnGatewayProps
Pythonaws_cdk.aws_mediaconnect.CfnGatewayProps
TypeScript aws-cdk-lib » aws_mediaconnect » CfnGatewayProps

Properties for defining a CfnGateway.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediaconnect as mediaconnect } from 'aws-cdk-lib';
const cfnGatewayProps: mediaconnect.CfnGatewayProps = {
  egressCidrBlocks: ['egressCidrBlocks'],
  name: 'name',
  networks: [{
    cidrBlock: 'cidrBlock',
    name: 'name',
  }],
};

Properties

NameTypeDescription
egressCidrBlocksstring[]The range of IP addresses that are allowed to contribute content or initiate output requests for flows communicating with this gateway.
namestringThe name of the gateway.
networksIResolvable | IResolvable | GatewayNetworkProperty[]The list of networks that you want to add.

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.


name

Type: string

The name of the gateway.

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


networks

Type: IResolvable | IResolvable | GatewayNetworkProperty[]

The list of networks that you want to add.