Interface EnvironmentPlatform.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<EnvironmentPlatform.Builder,
,EnvironmentPlatform> SdkBuilder<EnvironmentPlatform.Builder,
,EnvironmentPlatform> SdkPojo
- Enclosing class:
EnvironmentPlatform
public static interface EnvironmentPlatform.Builder
extends SdkPojo, CopyableBuilder<EnvironmentPlatform.Builder,EnvironmentPlatform>
-
Method Summary
Modifier and TypeMethodDescriptionlanguages
(Collection<EnvironmentLanguage> languages) The list of programming languages that are available for the specified platform.languages
(Consumer<EnvironmentLanguage.Builder>... languages) The list of programming languages that are available for the specified platform.languages
(EnvironmentLanguage... languages) The list of programming languages that are available for the specified platform.The platform's name.platform
(PlatformType platform) The platform's name.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
-
platform
The platform's name.
- Parameters:
platform
- The platform's name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
platform
The platform's name.
- Parameters:
platform
- The platform's name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
languages
The list of programming languages that are available for the specified platform.
- Parameters:
languages
- The list of programming languages that are available for the specified platform.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
languages
The list of programming languages that are available for the specified platform.
- Parameters:
languages
- The list of programming languages that are available for the specified platform.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
languages
The list of programming languages that are available for the specified platform.
This is a convenience method that creates an instance of theEnvironmentLanguage.Builder
avoiding the need to create one manually viaEnvironmentLanguage.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tolanguages(List<EnvironmentLanguage>)
.- Parameters:
languages
- a consumer that will call methods onEnvironmentLanguage.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-