Interface ICfnCoreNetworkProps
Properties for defining a CfnCoreNetwork
.
Namespace: Amazon.CDK.AWS.NetworkManager
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnCoreNetworkProps
Syntax (vb)
Public Interface ICfnCoreNetworkProps
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.NetworkManager;
var policyDocument;
var cfnCoreNetworkProps = new CfnCoreNetworkProps {
GlobalNetworkId = "globalNetworkId",
// the properties below are optional
Description = "description",
PolicyDocument = policyDocument,
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Properties
Description | The description of a core network. |
GlobalNetworkId | The ID of the global network that your core network is a part of. |
PolicyDocument | Describes a core network policy. For more information, see Core network policies . |
Tags | The list of key-value tags associated with a core network. |
Properties
Description
The description of a core network.
virtual string Description { get; }
Property Value
System.String
Remarks
GlobalNetworkId
The ID of the global network that your core network is a part of.
string GlobalNetworkId { get; }
Property Value
System.String
Remarks
PolicyDocument
Describes a core network policy. For more information, see Core network policies .
virtual object PolicyDocument { get; }
Property Value
System.Object
Remarks
If you update the policy document, CloudFormation will apply the core network change set generated from the updated policy document, and then set it as the LIVE policy.
Tags
The list of key-value tags associated with a core network.
virtual ICfnTag[] Tags { get; }
Property Value
ICfnTag[]