Interface ContainerConfig.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<ContainerConfig.Builder,ContainerConfig>
,SdkBuilder<ContainerConfig.Builder,ContainerConfig>
,SdkPojo
- Enclosing class:
- ContainerConfig
public static interface ContainerConfig.Builder extends SdkPojo, CopyableBuilder<ContainerConfig.Builder,ContainerConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ContainerConfig.Builder
containerArguments(String... containerArguments)
The arguments for the container when you're running the application.ContainerConfig.Builder
containerArguments(Collection<String> containerArguments)
The arguments for the container when you're running the application.ContainerConfig.Builder
containerEntrypoint(String... containerEntrypoint)
The entrypoint used to run the application in the container.ContainerConfig.Builder
containerEntrypoint(Collection<String> containerEntrypoint)
The entrypoint used to run the application in the container.ContainerConfig.Builder
containerEnvironmentVariables(Map<String,String> containerEnvironmentVariables)
The environment variables to set in the container-
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
-
containerArguments
ContainerConfig.Builder containerArguments(Collection<String> containerArguments)
The arguments for the container when you're running the application.
- Parameters:
containerArguments
- The arguments for the container when you're running the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
containerArguments
ContainerConfig.Builder containerArguments(String... containerArguments)
The arguments for the container when you're running the application.
- Parameters:
containerArguments
- The arguments for the container when you're running the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
containerEntrypoint
ContainerConfig.Builder containerEntrypoint(Collection<String> containerEntrypoint)
The entrypoint used to run the application in the container.
- Parameters:
containerEntrypoint
- The entrypoint used to run the application in the container.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
containerEntrypoint
ContainerConfig.Builder containerEntrypoint(String... containerEntrypoint)
The entrypoint used to run the application in the container.
- Parameters:
containerEntrypoint
- The entrypoint used to run the application in the container.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
containerEnvironmentVariables
ContainerConfig.Builder containerEnvironmentVariables(Map<String,String> containerEnvironmentVariables)
The environment variables to set in the container
- Parameters:
containerEnvironmentVariables
- The environment variables to set in the container- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-