interface CfnGatewayProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.MediaConnect.CfnGatewayProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnGatewayProps |
Java | software.amazon.awscdk.services.mediaconnect.CfnGatewayProps |
Python | aws_cdk.aws_mediaconnect.CfnGatewayProps |
TypeScript | aws-cdk-lib » aws_mediaconnect » CfnGatewayProps |
Properties for defining a CfnGateway
.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-gateway.html
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
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. |
name | string | The name of the network. |
networks | IResolvable | IResolvable | Gateway [] | 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 network.
This name is used to reference the network and must be unique among networks in this gateway.
networks
Type:
IResolvable
|
IResolvable
|
Gateway
[]
The list of networks that you want to add.