Interface ImageConfig.Builder
- 
- All Superinterfaces:
- Buildable,- CopyableBuilder<ImageConfig.Builder,ImageConfig>,- SdkBuilder<ImageConfig.Builder,ImageConfig>,- SdkPojo
 - Enclosing class:
- ImageConfig
 
 @Mutable @NotThreadSafe public static interface ImageConfig.Builder extends SdkPojo, CopyableBuilder<ImageConfig.Builder,ImageConfig> 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description ImageConfig.Buildercommand(String... command)Specifies parameters that you want to pass in with ENTRYPOINT.ImageConfig.Buildercommand(Collection<String> command)Specifies parameters that you want to pass in with ENTRYPOINT.ImageConfig.BuilderentryPoint(String... entryPoint)Specifies the entry point to their application, which is typically the location of the runtime executable.ImageConfig.BuilderentryPoint(Collection<String> entryPoint)Specifies the entry point to their application, which is typically the location of the runtime executable.ImageConfig.BuilderworkingDirectory(String workingDirectory)Specifies the working directory.- 
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuildercopy
 - 
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilderapplyMutation, build
 - 
Methods inherited from interface software.amazon.awssdk.core.SdkPojoequalsBySdkFields, sdkFieldNameToField, sdkFields
 
- 
 
- 
- 
- 
Method Detail- 
entryPointImageConfig.Builder entryPoint(Collection<String> entryPoint) Specifies the entry point to their application, which is typically the location of the runtime executable. - Parameters:
- entryPoint- Specifies the entry point to their application, which is typically the location of the runtime executable.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
 - 
entryPointImageConfig.Builder entryPoint(String... entryPoint) Specifies the entry point to their application, which is typically the location of the runtime executable. - Parameters:
- entryPoint- Specifies the entry point to their application, which is typically the location of the runtime executable.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
 - 
commandImageConfig.Builder command(Collection<String> command) Specifies parameters that you want to pass in with ENTRYPOINT. - Parameters:
- command- Specifies parameters that you want to pass in with ENTRYPOINT.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
 - 
commandImageConfig.Builder command(String... command) Specifies parameters that you want to pass in with ENTRYPOINT. - Parameters:
- command- Specifies parameters that you want to pass in with ENTRYPOINT.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
 - 
workingDirectoryImageConfig.Builder workingDirectory(String workingDirectory) Specifies the working directory. - Parameters:
- workingDirectory- Specifies the working directory.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
 
- 
 
-