Interface CfnDirectConnectGatewayAttachmentMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDirectConnectGatewayAttachmentMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:01.857Z")
@Stability(Stable)
public interface CfnDirectConnectGatewayAttachmentMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnDirectConnectGatewayAttachmentPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.networkmanager.*;
CfnDirectConnectGatewayAttachmentMixinProps cfnDirectConnectGatewayAttachmentMixinProps = CfnDirectConnectGatewayAttachmentMixinProps.builder()
.coreNetworkId("coreNetworkId")
.directConnectGatewayArn("directConnectGatewayArn")
.edgeLocations(List.of("edgeLocations"))
.proposedNetworkFunctionGroupChange(ProposedNetworkFunctionGroupChangeProperty.builder()
.attachmentPolicyRuleNumber(123)
.networkFunctionGroupName("networkFunctionGroupName")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build())
.proposedSegmentChange(ProposedSegmentChangeProperty.builder()
.attachmentPolicyRuleNumber(123)
.segmentName("segmentName")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build())
.routingPolicyLabel("routingPolicyLabel")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDirectConnectGatewayAttachmentMixinPropsstatic final classAn implementation forCfnDirectConnectGatewayAttachmentMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe ID of a core network for the Direct Connect Gateway attachment.default StringThe Direct Connect gateway attachment ARN.The Regions where the edges are located.default ObjectDescribes proposed changes to a network function group.default ObjectDescribes a proposed segment change.default StringRouting policy label.getTags()Tags for the attachment.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCoreNetworkId
The ID of a core network for the Direct Connect Gateway attachment.- See Also:
-
getDirectConnectGatewayArn
The Direct Connect gateway attachment ARN.- See Also:
-
getEdgeLocations
The Regions where the edges are located.- See Also:
-
getProposedNetworkFunctionGroupChange
Describes proposed changes to a network function group.Returns union: either
IResolvableorCfnDirectConnectGatewayAttachmentPropsMixin.ProposedNetworkFunctionGroupChangeProperty- See Also:
-
getProposedSegmentChange
Describes a proposed segment change.In some cases, the segment change must first be evaluated and accepted.
Returns union: either
IResolvableorCfnDirectConnectGatewayAttachmentPropsMixin.ProposedSegmentChangeProperty- See Also:
-
getRoutingPolicyLabel
Routing policy label.- See Also:
-
getTags
Tags for the attachment.- See Also:
-
builder
-