interface CfnGlobalNetworkMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.NetworkManager.Mixins.CfnGlobalNetworkMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsnetworkmanager/mixins#CfnGlobalNetworkMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.networkmanager.mixins.CfnGlobalNetworkMixinProps |
Python | aws_cdk.mixins_preview.aws_networkmanager.mixins.CfnGlobalNetworkMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_networkmanager » mixins » CfnGlobalNetworkMixinProps |
Properties for CfnGlobalNetworkPropsMixin.
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';
const cfnGlobalNetworkMixinProps: networkmanager_mixins.CfnGlobalNetworkMixinProps = {
createdAt: 'createdAt',
description: 'description',
state: 'state',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| created | string | The date and time that the global network was created. |
| description? | string | A description of the global network. |
| state? | string | The state of the global network. |
| tags? | Cfn[] | The tags for the global network. |
createdAt?
Type:
string
(optional)
The date and time that the global network was created.
description?
Type:
string
(optional)
A description of the global network.
Constraints: Maximum length of 256 characters.
state?
Type:
string
(optional)
The state of the global network.
tags?
Type:
Cfn[]
(optional)
The tags for the global network.

.NET
Go
Java
Python
TypeScript