Interface ContainerServiceDeploymentRequest.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ContainerServiceDeploymentRequest.Builder,ContainerServiceDeploymentRequest>,SdkBuilder<ContainerServiceDeploymentRequest.Builder,ContainerServiceDeploymentRequest>,SdkPojo
- Enclosing class:
- ContainerServiceDeploymentRequest
public static interface ContainerServiceDeploymentRequest.Builder extends SdkPojo, CopyableBuilder<ContainerServiceDeploymentRequest.Builder,ContainerServiceDeploymentRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description ContainerServiceDeploymentRequest.Buildercontainers(Map<String,Container> containers)An object that describes the configuration for the containers of the deployment.default ContainerServiceDeploymentRequest.BuilderpublicEndpoint(Consumer<EndpointRequest.Builder> publicEndpoint)An object that describes the endpoint of the deployment.ContainerServiceDeploymentRequest.BuilderpublicEndpoint(EndpointRequest publicEndpoint)An object that describes the endpoint of the deployment.-
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
-
containers
ContainerServiceDeploymentRequest.Builder containers(Map<String,Container> containers)
An object that describes the configuration for the containers of the deployment.
- Parameters:
containers- An object that describes the configuration for the containers of the deployment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
publicEndpoint
ContainerServiceDeploymentRequest.Builder publicEndpoint(EndpointRequest publicEndpoint)
An object that describes the endpoint of the deployment.
- Parameters:
publicEndpoint- An object that describes the endpoint of the deployment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
publicEndpoint
default ContainerServiceDeploymentRequest.Builder publicEndpoint(Consumer<EndpointRequest.Builder> publicEndpoint)
An object that describes the endpoint of the deployment.
This is a convenience method that creates an instance of theEndpointRequest.Builderavoiding the need to create one manually viaEndpointRequest.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed topublicEndpoint(EndpointRequest).- Parameters:
publicEndpoint- a consumer that will call methods onEndpointRequest.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
publicEndpoint(EndpointRequest)
-
-