interface ProposedSegmentChangeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.NetworkManager.CfnVpcAttachment.ProposedSegmentChangeProperty |
Java | software.amazon.awscdk.services.networkmanager.CfnVpcAttachment.ProposedSegmentChangeProperty |
Python | aws_cdk.aws_networkmanager.CfnVpcAttachment.ProposedSegmentChangeProperty |
TypeScript | @aws-cdk/aws-networkmanager » CfnVpcAttachment » ProposedSegmentChangeProperty |
Describes a proposed segment change.
In some cases, the segment change must first be evaluated and accepted.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as networkmanager from '@aws-cdk/aws-networkmanager';
const proposedSegmentChangeProperty: networkmanager.CfnVpcAttachment.ProposedSegmentChangeProperty = {
attachmentPolicyRuleNumber: 123,
segmentName: 'segmentName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| attachment | number | The rule number in the policy document that applies to this change. |
| segment | string | The name of the segment to change. |
| tags? | Cfn[] | The list of key-value tags that changed for the segment. |
attachmentPolicyRuleNumber?
Type:
number
(optional)
The rule number in the policy document that applies to this change.
segmentName?
Type:
string
(optional)
The name of the segment to change.
tags?
Type:
Cfn[]
(optional)
The list of key-value tags that changed for the segment.

.NET
Java
Python
TypeScript