Interface CustomModelTransformParameters.Builder

All Superinterfaces:
Buildable, CopyableBuilder<CustomModelTransformParameters.Builder,CustomModelTransformParameters>, SdkBuilder<CustomModelTransformParameters.Builder,CustomModelTransformParameters>, SdkPojo
Enclosing class:
CustomModelTransformParameters

public static interface CustomModelTransformParameters.Builder extends SdkPojo, CopyableBuilder<CustomModelTransformParameters.Builder,CustomModelTransformParameters>
  • Method Details

    • sourceS3DirectoryPath

      CustomModelTransformParameters.Builder sourceS3DirectoryPath(String sourceS3DirectoryPath)

      The path to the Amazon S3 location where the Python module implementing your model is located. This must point to a valid existing Amazon S3 location that contains, at a minimum, a training script, a transform script, and a model-hpo-configuration.json file.

      Parameters:
      sourceS3DirectoryPath - The path to the Amazon S3 location where the Python module implementing your model is located. This must point to a valid existing Amazon S3 location that contains, at a minimum, a training script, a transform script, and a model-hpo-configuration.json file.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • transformEntryPointScript

      CustomModelTransformParameters.Builder transformEntryPointScript(String transformEntryPointScript)

      The name of the entry point in your module of a script that should be run after the best model from the hyperparameter search has been identified, to compute the model artifacts necessary for model deployment. It should be able to run with no command-line arguments. The default is transform.py.

      Parameters:
      transformEntryPointScript - The name of the entry point in your module of a script that should be run after the best model from the hyperparameter search has been identified, to compute the model artifacts necessary for model deployment. It should be able to run with no command-line arguments. The default is transform.py.
      Returns:
      Returns a reference to this object so that method calls can be chained together.