Interface ProfilerConfigForUpdate.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<ProfilerConfigForUpdate.Builder,ProfilerConfigForUpdate>
,SdkBuilder<ProfilerConfigForUpdate.Builder,ProfilerConfigForUpdate>
,SdkPojo
- Enclosing class:
- ProfilerConfigForUpdate
public static interface ProfilerConfigForUpdate.Builder extends SdkPojo, CopyableBuilder<ProfilerConfigForUpdate.Builder,ProfilerConfigForUpdate>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProfilerConfigForUpdate.Builder
disableProfiler(Boolean disableProfiler)
To turn off Amazon SageMaker Debugger monitoring and profiling while a training job is in progress, set toTrue
.ProfilerConfigForUpdate.Builder
profilingIntervalInMilliseconds(Long profilingIntervalInMilliseconds)
A time interval for capturing system metrics in milliseconds.ProfilerConfigForUpdate.Builder
profilingParameters(Map<String,String> profilingParameters)
Configuration information for capturing framework metrics.ProfilerConfigForUpdate.Builder
s3OutputPath(String s3OutputPath)
Path to Amazon S3 storage location for system and framework metrics.-
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
-
s3OutputPath
ProfilerConfigForUpdate.Builder s3OutputPath(String s3OutputPath)
Path to Amazon S3 storage location for system and framework metrics.
- Parameters:
s3OutputPath
- Path to Amazon S3 storage location for system and framework metrics.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
profilingIntervalInMilliseconds
ProfilerConfigForUpdate.Builder profilingIntervalInMilliseconds(Long profilingIntervalInMilliseconds)
A time interval for capturing system metrics in milliseconds. Available values are 100, 200, 500, 1000 (1 second), 5000 (5 seconds), and 60000 (1 minute) milliseconds. The default value is 500 milliseconds.
- Parameters:
profilingIntervalInMilliseconds
- A time interval for capturing system metrics in milliseconds. Available values are 100, 200, 500, 1000 (1 second), 5000 (5 seconds), and 60000 (1 minute) milliseconds. The default value is 500 milliseconds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
profilingParameters
ProfilerConfigForUpdate.Builder profilingParameters(Map<String,String> profilingParameters)
Configuration information for capturing framework metrics. Available key strings for different profiling options are
DetailedProfilingConfig
,PythonProfilingConfig
, andDataLoaderProfilingConfig
. The following codes are configuration structures for theProfilingParameters
parameter. To learn more about how to configure theProfilingParameters
parameter, see Use the SageMaker and Debugger Configuration API Operations to Create, Update, and Debug Your Training Job.- Parameters:
profilingParameters
- Configuration information for capturing framework metrics. Available key strings for different profiling options areDetailedProfilingConfig
,PythonProfilingConfig
, andDataLoaderProfilingConfig
. The following codes are configuration structures for theProfilingParameters
parameter. To learn more about how to configure theProfilingParameters
parameter, see Use the SageMaker and Debugger Configuration API Operations to Create, Update, and Debug Your Training Job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
disableProfiler
ProfilerConfigForUpdate.Builder disableProfiler(Boolean disableProfiler)
To turn off Amazon SageMaker Debugger monitoring and profiling while a training job is in progress, set to
True
.- Parameters:
disableProfiler
- To turn off Amazon SageMaker Debugger monitoring and profiling while a training job is in progress, set toTrue
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-