Interface Application.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Application.Builder,Application>,SdkBuilder<Application.Builder,Application>,SdkPojo
- Enclosing class:
- Application
public static interface Application.Builder extends SdkPojo, CopyableBuilder<Application.Builder,Application>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Application.BuilderadditionalInfo(Map<String,String> additionalInfo)This option is for advanced users only.Application.Builderargs(String... args)Arguments for Amazon EMR to pass to the application.Application.Builderargs(Collection<String> args)Arguments for Amazon EMR to pass to the application.Application.Buildername(String name)The name of the application.Application.Builderversion(String version)The version of the application.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
name
Application.Builder name(String name)
The name of the application.
- Parameters:
name- The name of the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
version
Application.Builder version(String version)
The version of the application.
- Parameters:
version- The version of the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
args
Application.Builder args(Collection<String> args)
Arguments for Amazon EMR to pass to the application.
- Parameters:
args- Arguments for Amazon EMR to pass to the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
args
Application.Builder args(String... args)
Arguments for Amazon EMR to pass to the application.
- Parameters:
args- Arguments for Amazon EMR to pass to the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
additionalInfo
Application.Builder additionalInfo(Map<String,String> additionalInfo)
This option is for advanced users only. This is meta information about third-party applications that third-party vendors use for testing purposes.
- Parameters:
additionalInfo- This option is for advanced users only. This is meta information about third-party applications that third-party vendors use for testing purposes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-