aws-cdk-lib.aws_networkmanager.CfnCoreNetworkProps

interface CfnCoreNetworkProps

LanguageType name
.NETAmazon.CDK.AWS.NetworkManager.CfnCoreNetworkProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsnetworkmanager#CfnCoreNetworkProps
Javasoftware.amazon.awscdk.services.networkmanager.CfnCoreNetworkProps
Pythonaws_cdk.aws_networkmanager.CfnCoreNetworkProps
TypeScript aws-cdk-lib » 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 { aws_networkmanager as networkmanager } from 'aws-cdk-lib';

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

NameTypeDescription
globalNetworkIdstringThe ID of the global network that your core network is a part of.
description?stringThe description of a core network.
policyDocument?anyDescribes a core network policy. For more information, see Core network policies .
tags?CfnTag[]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: CfnTag[] (optional)

The list of key-value tags associated with a core network.