interface ProposedSegmentChangeProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.NetworkManager.CfnTransitGatewayRouteTableAttachment.ProposedSegmentChangeProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsnetworkmanager#CfnTransitGatewayRouteTableAttachment_ProposedSegmentChangeProperty |
Java | software.amazon.awscdk.services.networkmanager.CfnTransitGatewayRouteTableAttachment.ProposedSegmentChangeProperty |
Python | aws_cdk.aws_networkmanager.CfnTransitGatewayRouteTableAttachment.ProposedSegmentChangeProperty |
TypeScript | aws-cdk-lib » aws_networkmanager » CfnTransitGatewayRouteTableAttachment » 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 { aws_networkmanager as networkmanager } from 'aws-cdk-lib';
const proposedSegmentChangeProperty: networkmanager.CfnTransitGatewayRouteTableAttachment.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.