Interface EnvironmentLanguage.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<EnvironmentLanguage.Builder,
,EnvironmentLanguage> SdkBuilder<EnvironmentLanguage.Builder,
,EnvironmentLanguage> SdkPojo
- Enclosing class:
EnvironmentLanguage
public static interface EnvironmentLanguage.Builder
extends SdkPojo, CopyableBuilder<EnvironmentLanguage.Builder,EnvironmentLanguage>
-
Method Summary
Modifier and TypeMethodDescriptionimages
(Collection<EnvironmentImage> images) The list of Docker images that are related by the specified programming language.images
(Consumer<EnvironmentImage.Builder>... images) The list of Docker images that are related by the specified programming language.images
(EnvironmentImage... images) The list of Docker images that are related by the specified programming language.The programming language for the Docker images.language
(LanguageType language) The programming language for the Docker images.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 Details
-
language
The programming language for the Docker images.
- Parameters:
language
- The programming language for the Docker images.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
language
The programming language for the Docker images.
- Parameters:
language
- The programming language for the Docker images.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
images
The list of Docker images that are related by the specified programming language.
- Parameters:
images
- The list of Docker images that are related by the specified programming language.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
images
The list of Docker images that are related by the specified programming language.
- Parameters:
images
- The list of Docker images that are related by the specified programming language.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
images
The list of Docker images that are related by the specified programming language.
This is a convenience method that creates an instance of theEnvironmentImage.Builder
avoiding the need to create one manually viaEnvironmentImage.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toimages(List<EnvironmentImage>)
.- Parameters:
images
- a consumer that will call methods onEnvironmentImage.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-