Interface Via.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Via.Builder,Via>,SdkBuilder<Via.Builder,Via>,SdkPojo
- Enclosing class:
- Via
public static interface Via.Builder extends SdkPojo, CopyableBuilder<Via.Builder,Via>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Via.BuildernetworkFunctionGroups(Collection<NetworkFunctionGroup> networkFunctionGroups)The list of network function groups associated with the service insertion action.Via.BuildernetworkFunctionGroups(Consumer<NetworkFunctionGroup.Builder>... networkFunctionGroups)The list of network function groups associated with the service insertion action.Via.BuildernetworkFunctionGroups(NetworkFunctionGroup... networkFunctionGroups)The list of network function groups associated with the service insertion action.Via.BuilderwithEdgeOverrides(Collection<EdgeOverride> withEdgeOverrides)Describes any edge overrides.Via.BuilderwithEdgeOverrides(Consumer<EdgeOverride.Builder>... withEdgeOverrides)Describes any edge overrides.Via.BuilderwithEdgeOverrides(EdgeOverride... withEdgeOverrides)Describes any edge overrides.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
networkFunctionGroups
Via.Builder networkFunctionGroups(Collection<NetworkFunctionGroup> networkFunctionGroups)
The list of network function groups associated with the service insertion action.
- Parameters:
networkFunctionGroups- The list of network function groups associated with the service insertion action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
networkFunctionGroups
Via.Builder networkFunctionGroups(NetworkFunctionGroup... networkFunctionGroups)
The list of network function groups associated with the service insertion action.
- Parameters:
networkFunctionGroups- The list of network function groups associated with the service insertion action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
networkFunctionGroups
Via.Builder networkFunctionGroups(Consumer<NetworkFunctionGroup.Builder>... networkFunctionGroups)
The list of network function groups associated with the service insertion action.
This is a convenience method that creates an instance of theNetworkFunctionGroup.Builderavoiding the need to create one manually viaNetworkFunctionGroup.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#networkFunctionGroups(List.) - Parameters:
networkFunctionGroups- a consumer that will call methods onNetworkFunctionGroup.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#networkFunctionGroups(java.util.Collection)
-
withEdgeOverrides
Via.Builder withEdgeOverrides(Collection<EdgeOverride> withEdgeOverrides)
Describes any edge overrides. An edge override is a specific edge to be used for traffic.
- Parameters:
withEdgeOverrides- Describes any edge overrides. An edge override is a specific edge to be used for traffic.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withEdgeOverrides
Via.Builder withEdgeOverrides(EdgeOverride... withEdgeOverrides)
Describes any edge overrides. An edge override is a specific edge to be used for traffic.
- Parameters:
withEdgeOverrides- Describes any edge overrides. An edge override is a specific edge to be used for traffic.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withEdgeOverrides
Via.Builder withEdgeOverrides(Consumer<EdgeOverride.Builder>... withEdgeOverrides)
Describes any edge overrides. An edge override is a specific edge to be used for traffic.
This is a convenience method that creates an instance of theEdgeOverride.Builderavoiding the need to create one manually viaEdgeOverride.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#withEdgeOverrides(List.) - Parameters:
withEdgeOverrides- a consumer that will call methods onEdgeOverride.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#withEdgeOverrides(java.util.Collection)
-
-