Interface ContainerInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ContainerInfo.Builder,ContainerInfo>,SdkBuilder<ContainerInfo.Builder,ContainerInfo>,SdkPojo
- Enclosing class:
- ContainerInfo
public static interface ContainerInfo.Builder extends SdkPojo, CopyableBuilder<ContainerInfo.Builder,ContainerInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ContainerInfo.BuildereksInfo(Consumer<EksInfo.Builder> eksInfo)The information about the Amazon EKS cluster.ContainerInfo.BuildereksInfo(EksInfo eksInfo)The information about the Amazon EKS cluster.-
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
-
eksInfo
ContainerInfo.Builder eksInfo(EksInfo eksInfo)
The information about the Amazon EKS cluster.
- Parameters:
eksInfo- The information about the Amazon EKS cluster.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eksInfo
default ContainerInfo.Builder eksInfo(Consumer<EksInfo.Builder> eksInfo)
The information about the Amazon EKS cluster.
This is a convenience method that creates an instance of theEksInfo.Builderavoiding the need to create one manually viaEksInfo.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toeksInfo(EksInfo).- Parameters:
eksInfo- a consumer that will call methods onEksInfo.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
eksInfo(EksInfo)
-
-