interface TargetNetworkProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MGN.CfnNetworkMigrationDefinition.TargetNetworkProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmgn#CfnNetworkMigrationDefinition_TargetNetworkProperty |
Java | software.amazon.awscdk.services.mgn.CfnNetworkMigrationDefinition.TargetNetworkProperty |
Python | aws_cdk.aws_mgn.CfnNetworkMigrationDefinition.TargetNetworkProperty |
TypeScript | aws-cdk-lib » aws_mgn » CfnNetworkMigrationDefinition » TargetNetworkProperty |
Configuration for the target network topology and addressing.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mgn as mgn } from 'aws-cdk-lib';
const targetNetworkProperty: mgn.CfnNetworkMigrationDefinition.TargetNetworkProperty = {
topology: 'topology',
// the properties below are optional
inboundCidr: 'inboundCidr',
inspectionCidr: 'inspectionCidr',
outboundCidr: 'outboundCidr',
};
Properties
| Name | Type | Description |
|---|---|---|
| topology | string | The network topology type for the target environment. |
| inbound | string | The CIDR block for inbound traffic in the target network. |
| inspection | string | The CIDR block for inspection traffic in the target network. |
| outbound | string | The CIDR block for outbound traffic in the target network. |
topology
Type:
string
The network topology type for the target environment.
inboundCidr?
Type:
string
(optional)
The CIDR block for inbound traffic in the target network.
inspectionCidr?
Type:
string
(optional)
The CIDR block for inspection traffic in the target network.
outboundCidr?
Type:
string
(optional)
The CIDR block for outbound traffic in the target network.

.NET
Go
Java
Python
TypeScript