Interface CfnCoreNetwork.ICoreNetworkSegmentProperty
Describes a core network segment, which are dedicated routes.
Namespace: Amazon.CDK.AWS.NetworkManager
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICoreNetworkSegmentProperty
Syntax (vb)
Public Interface ICoreNetworkSegmentProperty
Remarks
Only attachments within this segment can communicate with each other.
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.NetworkManager;
var coreNetworkSegmentProperty = new CoreNetworkSegmentProperty {
EdgeLocations = new [] { "edgeLocations" },
Name = "name",
SharedSegments = new [] { "sharedSegments" }
};
Synopsis
Properties
EdgeLocations | The Regions where the edges are located. |
Name | The name of a core network segment. |
SharedSegments | The shared segments of a core network. |
Properties
EdgeLocations
The Regions where the edges are located.
virtual string[] EdgeLocations { get; }
Property Value
System.String[]
Remarks
Name
The name of a core network segment.
virtual string Name { get; }
Property Value
System.String
Remarks
SharedSegments
The shared segments of a core network.
virtual string[] SharedSegments { get; }
Property Value
System.String[]