interface CfnCoreNetworkProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.NetworkManager.CfnCoreNetworkProps | 
|  Java | software.amazon.awscdk.services.networkmanager.CfnCoreNetworkProps | 
|  Python | aws_cdk.aws_networkmanager.CfnCoreNetworkProps | 
|  TypeScript | @aws-cdk/aws-networkmanager»CfnCoreNetworkProps | 
Properties for defining a CfnCoreNetwork.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as networkmanager from '@aws-cdk/aws-networkmanager';
declare const policyDocument: any;
const cfnCoreNetworkProps: networkmanager.CfnCoreNetworkProps = {
  globalNetworkId: 'globalNetworkId',
  // the properties below are optional
  description: 'description',
  policyDocument: policyDocument,
  tags: [{
    key: 'key',
    value: 'value',
  }],
};
Properties
| Name | Type | Description | 
|---|---|---|
| global | string | The ID of the global network that your core network is a part of. | 
| description? | string | The description of a core network. | 
| policy | any | Describes a core network policy. For more information, see Core network policies . | 
| tags? | Cfn[] | The list of key-value tags associated with a core network. | 
globalNetworkId
Type:
string
The ID of the global network that your core network is a part of.
description?
Type:
string
(optional)
The description of a core network.
policyDocument?
Type:
any
(optional)
Describes a core network policy. For more information, see Core network policies .
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?
Type:
Cfn[]
(optional)
The list of key-value tags associated with a core network.
