Class CfnNetworkMigrationDefinition.TargetNetworkProperty
Configuration for the target network topology and addressing.
Inherited Members
Namespace: Amazon.CDK.AWS.MGN
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnNetworkMigrationDefinition.TargetNetworkProperty : CfnNetworkMigrationDefinition.ITargetNetworkProperty
Syntax (vb)
Public Class CfnNetworkMigrationDefinition.TargetNetworkProperty Implements CfnNetworkMigrationDefinition.ITargetNetworkProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.MGN;
var targetNetworkProperty = new TargetNetworkProperty {
Topology = "topology",
// the properties below are optional
InboundCidr = "inboundCidr",
InspectionCidr = "inspectionCidr",
OutboundCidr = "outboundCidr"
};
Synopsis
Constructors
| TargetNetworkProperty() | Configuration for the target network topology and addressing. |
Properties
| InboundCidr | The CIDR block for inbound traffic in the target network. |
| InspectionCidr | The CIDR block for inspection traffic in the target network. |
| OutboundCidr | The CIDR block for outbound traffic in the target network. |
| Topology | The network topology type for the target environment. |
Constructors
TargetNetworkProperty()
Configuration for the target network topology and addressing.
public TargetNetworkProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.MGN;
var targetNetworkProperty = new TargetNetworkProperty {
Topology = "topology",
// the properties below are optional
InboundCidr = "inboundCidr",
InspectionCidr = "inspectionCidr",
OutboundCidr = "outboundCidr"
};
Properties
InboundCidr
The CIDR block for inbound traffic in the target network.
public string? InboundCidr { get; set; }
Property Value
Remarks
InspectionCidr
The CIDR block for inspection traffic in the target network.
public string? InspectionCidr { get; set; }
Property Value
Remarks
OutboundCidr
The CIDR block for outbound traffic in the target network.
public string? OutboundCidr { get; set; }
Property Value
Remarks
Topology
The network topology type for the target environment.
public string Topology { get; set; }