Interface TensorBoardOutputConfig.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<TensorBoardOutputConfig.Builder,TensorBoardOutputConfig>
,SdkBuilder<TensorBoardOutputConfig.Builder,TensorBoardOutputConfig>
,SdkPojo
- Enclosing class:
- TensorBoardOutputConfig
public static interface TensorBoardOutputConfig.Builder extends SdkPojo, CopyableBuilder<TensorBoardOutputConfig.Builder,TensorBoardOutputConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TensorBoardOutputConfig.Builder
localPath(String localPath)
Path to local storage location for tensorBoard output.TensorBoardOutputConfig.Builder
s3OutputPath(String s3OutputPath)
Path to Amazon S3 storage location for TensorBoard output.-
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
-
localPath
TensorBoardOutputConfig.Builder localPath(String localPath)
Path to local storage location for tensorBoard output. Defaults to
/opt/ml/output/tensorboard
.- Parameters:
localPath
- Path to local storage location for tensorBoard output. Defaults to/opt/ml/output/tensorboard
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3OutputPath
TensorBoardOutputConfig.Builder s3OutputPath(String s3OutputPath)
Path to Amazon S3 storage location for TensorBoard output.
- Parameters:
s3OutputPath
- Path to Amazon S3 storage location for TensorBoard output.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-