interface ProposedNetworkFunctionGroupChangeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.NetworkManager.CfnConnectAttachmentPropsMixin.ProposedNetworkFunctionGroupChangeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsnetworkmanager#CfnConnectAttachmentPropsMixin_ProposedNetworkFunctionGroupChangeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.networkmanager.CfnConnectAttachmentPropsMixin.ProposedNetworkFunctionGroupChangeProperty |
Python | aws_cdk.cfn_property_mixins.aws_networkmanager.CfnConnectAttachmentPropsMixin.ProposedNetworkFunctionGroupChangeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_networkmanager » CfnConnectAttachmentPropsMixin » 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/cfn-property-mixins';
const proposedNetworkFunctionGroupChangeProperty: networkmanager.CfnConnectAttachmentPropsMixin.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