Interface CfnConnectAttachment.ProposedSegmentChangeProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnectAttachment.ProposedSegmentChangeProperty.Jsii$Proxy
- Enclosing class:
CfnConnectAttachment
@Stability(Stable)
public static interface CfnConnectAttachment.ProposedSegmentChangeProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.networkmanager.*; ProposedSegmentChangeProperty proposedSegmentChangeProperty = ProposedSegmentChangeProperty.builder() .attachmentPolicyRuleNumber(123) .segmentName("segmentName") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnConnectAttachment.ProposedSegmentChangeProperty
static final class
An implementation forCfnConnectAttachment.ProposedSegmentChangeProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAttachmentPolicyRuleNumber
The rule number in the policy document that applies to this change. -
getSegmentName
The name of the segment to change. -
getTags
The list of key-value tags that changed for the segment. -
builder
-