Interface CfnVpcAttachment.ProposedNetworkFunctionGroupChangeProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVpcAttachment.ProposedNetworkFunctionGroupChangeProperty.Jsii$Proxy
- Enclosing class:
CfnVpcAttachment
@Stability(Stable)
public static interface CfnVpcAttachment.ProposedNetworkFunctionGroupChangeProperty
extends software.amazon.jsii.JsiiSerializable
Describes proposed changes to a network function group.
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.*; ProposedNetworkFunctionGroupChangeProperty proposedNetworkFunctionGroupChangeProperty = ProposedNetworkFunctionGroupChangeProperty.builder() .attachmentPolicyRuleNumber(123) .networkFunctionGroupName("networkFunctionGroupName") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnVpcAttachment.ProposedNetworkFunctionGroupChangeProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Number
The proposed new attachment policy rule number for the network function group.default String
The proposed name change for the network function group name.getTags()
The list of proposed changes to the key-value tags associated with the network function group.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAttachmentPolicyRuleNumber
The proposed new attachment policy rule number for the network function group.- See Also:
-
getNetworkFunctionGroupName
The proposed name change for the network function group name.- See Also:
-
getTags
The list of proposed changes to the key-value tags associated with the network function group.- See Also:
-
builder
@Stability(Stable) static CfnVpcAttachment.ProposedNetworkFunctionGroupChangeProperty.Builder builder()
-