Interface NetworkPathComponent.Builder
- All Superinterfaces:
- Buildable,- CopyableBuilder<NetworkPathComponent.Builder,,- NetworkPathComponent> - SdkBuilder<NetworkPathComponent.Builder,,- NetworkPathComponent> - SdkPojo
- Enclosing class:
- NetworkPathComponent
- 
Method SummaryModifier and TypeMethodDescriptioncomponentId(String componentId) The identifier of a component in the network path.componentType(String componentType) The type of component.default NetworkPathComponent.Builderegress(Consumer<NetworkHeader.Builder> egress) Information about the component that comes after the current component in the network path.egress(NetworkHeader egress) Information about the component that comes after the current component in the network path.default NetworkPathComponent.Builderingress(Consumer<NetworkHeader.Builder> ingress) Information about the component that comes before the current node in the network path.ingress(NetworkHeader ingress) Information about the component that comes before the current node in the network path.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuildercopyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilderapplyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojoequalsBySdkFields, sdkFieldNameToField, sdkFields
- 
Method Details- 
componentIdThe identifier of a component in the network path. Length Constraints: Minimum of 1. Maximum of 32. - Parameters:
- componentId- The identifier of a component in the network path.- Length Constraints: Minimum of 1. Maximum of 32. 
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
- 
componentTypeThe type of component. Length Constraints: Minimum of 1. Maximum of 32. - Parameters:
- componentType- The type of component.- Length Constraints: Minimum of 1. Maximum of 32. 
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
- 
egressInformation about the component that comes after the current component in the network path. - Parameters:
- egress- Information about the component that comes after the current component in the network path.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
- 
egressInformation about the component that comes after the current component in the network path. This is a convenience method that creates an instance of theNetworkHeader.Builderavoiding the need to create one manually viaNetworkHeader.builder().When the Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toegress(NetworkHeader).- Parameters:
- egress- a consumer that will call methods on- NetworkHeader.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
 
- 
ingressInformation about the component that comes before the current node in the network path. - Parameters:
- ingress- Information about the component that comes before the current node in the network path.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
- 
ingressInformation about the component that comes before the current node in the network path. This is a convenience method that creates an instance of theNetworkHeader.Builderavoiding the need to create one manually viaNetworkHeader.builder().When the Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toingress(NetworkHeader).- Parameters:
- ingress- a consumer that will call methods on- NetworkHeader.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
 
 
-