public static interface EnvironmentLanguage.Builder extends CopyableBuilder<EnvironmentLanguage.Builder,EnvironmentLanguage>
| Modifier and Type | Method and Description |
|---|---|
EnvironmentLanguage.Builder |
images(Collection<EnvironmentImage> images)
The list of Docker images that are related by the specified programming language.
|
EnvironmentLanguage.Builder |
images(Consumer<EnvironmentImage.Builder>... images)
The list of Docker images that are related by the specified programming language.
|
EnvironmentLanguage.Builder |
images(EnvironmentImage... images)
The list of Docker images that are related by the specified programming language.
|
EnvironmentLanguage.Builder |
language(LanguageType language)
The programming language for the Docker images.
|
EnvironmentLanguage.Builder |
language(String language)
The programming language for the Docker images.
|
copyapply, buildEnvironmentLanguage.Builder language(String language)
The programming language for the Docker images.
language - The programming language for the Docker images.LanguageType,
LanguageTypeEnvironmentLanguage.Builder language(LanguageType language)
The programming language for the Docker images.
language - The programming language for the Docker images.LanguageType,
LanguageTypeEnvironmentLanguage.Builder images(Collection<EnvironmentImage> images)
The list of Docker images that are related by the specified programming language.
images - The list of Docker images that are related by the specified programming language.EnvironmentLanguage.Builder images(EnvironmentImage... images)
The list of Docker images that are related by the specified programming language.
images - The list of Docker images that are related by the specified programming language.EnvironmentLanguage.Builder images(Consumer<EnvironmentImage.Builder>... images)
The list of Docker images that are related by the specified programming language.
This is a convenience that creates an instance of theList.Builder avoiding the
need to create one manually via List#builder() .
When the Consumer completes, List.Builder#build() is called immediately and
its result is passed to #images(List) .images - a consumer that will call methods on List.Builder #images(List) Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.