interface ProposedNetworkFunctionGroupChangeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.NetworkManager.CfnDirectConnectGatewayAttachment.ProposedNetworkFunctionGroupChangeProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsnetworkmanager#CfnDirectConnectGatewayAttachment_ProposedNetworkFunctionGroupChangeProperty |
Java | software.amazon.awscdk.services.networkmanager.CfnDirectConnectGatewayAttachment.ProposedNetworkFunctionGroupChangeProperty |
Python | aws_cdk.aws_networkmanager.CfnDirectConnectGatewayAttachment.ProposedNetworkFunctionGroupChangeProperty |
TypeScript | aws-cdk-lib » aws_networkmanager » CfnDirectConnectGatewayAttachment » ProposedNetworkFunctionGroupChangeProperty |
Describes proposed changes to a network function group.
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';
const proposedNetworkFunctionGroupChangeProperty: networkmanager.CfnDirectConnectGatewayAttachment.ProposedNetworkFunctionGroupChangeProperty = {
attachmentPolicyRuleNumber: 123,
networkFunctionGroupName: 'networkFunctionGroupName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| attachment | number | The proposed new attachment policy rule number for the network function group. |
| network | string | The proposed name change for the network function group name. |
| tags? | Cfn[] | The list of proposed changes to the key-value tags associated with the network function group. |
attachmentPolicyRuleNumber?
Type:
number
(optional)
The proposed new attachment policy rule number for the network function group.
networkFunctionGroupName?
Type:
string
(optional)
The proposed name change for the network function group name.
tags?
Type:
Cfn[]
(optional)
The list of proposed changes to the key-value tags associated with the network function group.

.NET
Go
Java
Python
TypeScript