interface ConnectivityInfoProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EVS.Mixins.CfnEnvironmentPropsMixin.ConnectivityInfoProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsevs/mixins#CfnEnvironmentPropsMixin_ConnectivityInfoProperty |
Java | software.amazon.awscdk.mixins.preview.services.evs.mixins.CfnEnvironmentPropsMixin.ConnectivityInfoProperty |
Python | aws_cdk.mixins_preview.aws_evs.mixins.CfnEnvironmentPropsMixin.ConnectivityInfoProperty |
TypeScript | @aws-cdk/mixins-preview » aws_evs » mixins » CfnEnvironmentPropsMixin » ConnectivityInfoProperty |
The connectivity configuration for the environment.
Amazon EVS requires that you specify two route server peer IDs. During environment creation, the route server endpoints peer with the NSX uplink VLAN for connectivity to the NSX overlay network.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as evs_mixins } from '@aws-cdk/mixins-preview/aws-evs';
const connectivityInfoProperty: evs_mixins.CfnEnvironmentPropsMixin.ConnectivityInfoProperty = {
privateRouteServerPeerings: ['privateRouteServerPeerings'],
};
Properties
| Name | Type | Description |
|---|---|---|
| private | string[] | The unique IDs for private route server peers. |
privateRouteServerPeerings?
Type:
string[]
(optional)
The unique IDs for private route server peers.

.NET
Go
Java
Python
TypeScript