interface CfnCoreNetworkMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.NetworkManager.Mixins.CfnCoreNetworkMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsnetworkmanager/mixins#CfnCoreNetworkMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.networkmanager.mixins.CfnCoreNetworkMixinProps |
Python | aws_cdk.mixins_preview.aws_networkmanager.mixins.CfnCoreNetworkMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_networkmanager » mixins » CfnCoreNetworkMixinProps |
Properties for CfnCoreNetworkPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as networkmanager_mixins } from '@aws-cdk/mixins-preview/aws-networkmanager';
declare const policyDocument: any;
const cfnCoreNetworkMixinProps: networkmanager_mixins.CfnCoreNetworkMixinProps = {
description: 'description',
globalNetworkId: 'globalNetworkId',
policyDocument: policyDocument,
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of a core network. |
| global | string | The ID of the global network that your core network is a part of. |
| 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. |
description?
Type:
string
(optional)
The description of a core network.
globalNetworkId?
Type:
string
(optional)
The ID of the global network that your core network is a part of.
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.

.NET
Go
Java
Python
TypeScript