Interface AutoMLContainerDefinition.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AutoMLContainerDefinition.Builder,AutoMLContainerDefinition>,SdkBuilder<AutoMLContainerDefinition.Builder,AutoMLContainerDefinition>,SdkPojo
- Enclosing class:
- AutoMLContainerDefinition
public static interface AutoMLContainerDefinition.Builder extends SdkPojo, CopyableBuilder<AutoMLContainerDefinition.Builder,AutoMLContainerDefinition>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AutoMLContainerDefinition.Builderenvironment(Map<String,String> environment)The environment variables to set in the container.AutoMLContainerDefinition.Builderimage(String image)The Amazon Elastic Container Registry (Amazon ECR) path of the container.AutoMLContainerDefinition.BuildermodelDataUrl(String modelDataUrl)The location of the model artifacts.-
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
-
image
AutoMLContainerDefinition.Builder image(String image)
The Amazon Elastic Container Registry (Amazon ECR) path of the container. For more information, see ContainerDefinition.
- Parameters:
image- The Amazon Elastic Container Registry (Amazon ECR) path of the container. For more information, see ContainerDefinition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
modelDataUrl
AutoMLContainerDefinition.Builder modelDataUrl(String modelDataUrl)
The location of the model artifacts. For more information, see ContainerDefinition.
- Parameters:
modelDataUrl- The location of the model artifacts. For more information, see ContainerDefinition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
environment
AutoMLContainerDefinition.Builder environment(Map<String,String> environment)
The environment variables to set in the container. For more information, see ContainerDefinition.
- Parameters:
environment- The environment variables to set in the container. For more information, see ContainerDefinition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-