interface CfnGatewayMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins.CfnGatewayMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconnect/mixins#CfnGatewayMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.CfnGatewayMixinProps |
Python | aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnGatewayMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconnect » mixins » CfnGatewayMixinProps |
Properties for CfnGatewayPropsMixin.
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 { mixins as mediaconnect_mixins } from '@aws-cdk/mixins-preview/aws-mediaconnect';
const cfnGatewayMixinProps: mediaconnect_mixins.CfnGatewayMixinProps = {
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 gateway. |
| networks? | IResolvable | (IResolvable | Gateway)[] | The list of networks in the gateway. |
egressCidrBlocks?
Type:
string[]
(optional)
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
(optional)
The name of the gateway.
This name can not be modified after the gateway is created.
networks?
Type:
IResolvable | (IResolvable | Gateway)[]
(optional)
The list of networks in the gateway.

.NET
Go
Java
Python
TypeScript