interface ProposedSegmentChangeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.NetworkManager.Mixins.CfnConnectAttachmentPropsMixin.ProposedSegmentChangeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsnetworkmanager/mixins#CfnConnectAttachmentPropsMixin_ProposedSegmentChangeProperty |
Java | software.amazon.awscdk.mixins.preview.services.networkmanager.mixins.CfnConnectAttachmentPropsMixin.ProposedSegmentChangeProperty |
Python | aws_cdk.mixins_preview.aws_networkmanager.mixins.CfnConnectAttachmentPropsMixin.ProposedSegmentChangeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_networkmanager » mixins » CfnConnectAttachmentPropsMixin » 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 { mixins as networkmanager_mixins } from '@aws-cdk/mixins-preview/aws-networkmanager';
const proposedSegmentChangeProperty: networkmanager_mixins.CfnConnectAttachmentPropsMixin.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
Go
Java
Python
TypeScript