interface TargetNetworkProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MGN.CfnNetworkMigrationDefinitionPropsMixin.TargetNetworkProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmgn#CfnNetworkMigrationDefinitionPropsMixin_TargetNetworkProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mgn.CfnNetworkMigrationDefinitionPropsMixin.TargetNetworkProperty |
Python | aws_cdk.cfn_property_mixins.aws_mgn.CfnNetworkMigrationDefinitionPropsMixin.TargetNetworkProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mgn » CfnNetworkMigrationDefinitionPropsMixin » 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/cfn-property-mixins';
const targetNetworkProperty: mgn.CfnNetworkMigrationDefinitionPropsMixin.TargetNetworkProperty = {
inboundCidr: 'inboundCidr',
inspectionCidr: 'inspectionCidr',
outboundCidr: 'outboundCidr',
topology: 'topology',
};
Properties
| Name | Type | Description |
|---|---|---|
| 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? | 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.
topology?
Type:
string
(optional)
The network topology type for the target environment.

.NET
Go
Java
Python
TypeScript