Interface AppSpecification.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AppSpecification.Builder,AppSpecification>,SdkBuilder<AppSpecification.Builder,AppSpecification>,SdkPojo
- Enclosing class:
- AppSpecification
public static interface AppSpecification.Builder extends SdkPojo, CopyableBuilder<AppSpecification.Builder,AppSpecification>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AppSpecification.BuildercontainerArguments(String... containerArguments)The arguments for a container used to run a processing job.AppSpecification.BuildercontainerArguments(Collection<String> containerArguments)The arguments for a container used to run a processing job.AppSpecification.BuildercontainerEntrypoint(String... containerEntrypoint)The entrypoint for a container used to run a processing job.AppSpecification.BuildercontainerEntrypoint(Collection<String> containerEntrypoint)The entrypoint for a container used to run a processing job.AppSpecification.BuilderimageUri(String imageUri)The container image to be run by the processing job.-
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
-
imageUri
AppSpecification.Builder imageUri(String imageUri)
The container image to be run by the processing job.
- Parameters:
imageUri- The container image to be run by the processing job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
containerEntrypoint
AppSpecification.Builder containerEntrypoint(Collection<String> containerEntrypoint)
The entrypoint for a container used to run a processing job.
- Parameters:
containerEntrypoint- The entrypoint for a container used to run a processing job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
containerEntrypoint
AppSpecification.Builder containerEntrypoint(String... containerEntrypoint)
The entrypoint for a container used to run a processing job.
- Parameters:
containerEntrypoint- The entrypoint for a container used to run a processing job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
containerArguments
AppSpecification.Builder containerArguments(Collection<String> containerArguments)
The arguments for a container used to run a processing job.
- Parameters:
containerArguments- The arguments for a container used to run a processing job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
containerArguments
AppSpecification.Builder containerArguments(String... containerArguments)
The arguments for a container used to run a processing job.
- Parameters:
containerArguments- The arguments for a container used to run a processing job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-