Class ProfilerConfigForUpdate
- java.lang.Object
-
- software.amazon.awssdk.services.sagemaker.model.ProfilerConfigForUpdate
-
- All Implemented Interfaces:
Serializable
,SdkPojo
,ToCopyableBuilder<ProfilerConfigForUpdate.Builder,ProfilerConfigForUpdate>
@Generated("software.amazon.awssdk:codegen") public final class ProfilerConfigForUpdate extends Object implements SdkPojo, Serializable, ToCopyableBuilder<ProfilerConfigForUpdate.Builder,ProfilerConfigForUpdate>
Configuration information for updating the Amazon SageMaker Debugger profile parameters, system and framework metrics configurations, and storage paths.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
ProfilerConfigForUpdate.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ProfilerConfigForUpdate.Builder
builder()
Boolean
disableProfiler()
To turn off Amazon SageMaker Debugger monitoring and profiling while a training job is in progress, set toTrue
.boolean
equals(Object obj)
boolean
equalsBySdkFields(Object obj)
<T> Optional<T>
getValueForField(String fieldName, Class<T> clazz)
int
hashCode()
boolean
hasProfilingParameters()
For responses, this returns true if the service returned a value for the ProfilingParameters property.Long
profilingIntervalInMilliseconds()
A time interval for capturing system metrics in milliseconds.Map<String,String>
profilingParameters()
Configuration information for capturing framework metrics.String
s3OutputPath()
Path to Amazon S3 storage location for system and framework metrics.List<SdkField<?>>
sdkFields()
static Class<? extends ProfilerConfigForUpdate.Builder>
serializableBuilderClass()
ProfilerConfigForUpdate.Builder
toBuilder()
String
toString()
Returns a string representation of this object.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
s3OutputPath
public final String s3OutputPath()
Path to Amazon S3 storage location for system and framework metrics.
- Returns:
- Path to Amazon S3 storage location for system and framework metrics.
-
profilingIntervalInMilliseconds
public final 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.
- Returns:
- 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.
-
hasProfilingParameters
public final boolean hasProfilingParameters()
For responses, this returns true if the service returned a value for the ProfilingParameters property. This DOES NOT check that the value is non-empty (for which, you should check theisEmpty()
method on the property). This is useful because the SDK will never return a null collection or map, but you may need to differentiate between the service returning nothing (or null) and the service returning an empty collection or map. For requests, this returns true if a value for the property was specified in the request builder, and false if a value was not specified.
-
profilingParameters
public final 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.Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that you can differentiate between null and empty), you can use the
hasProfilingParameters()
method.- Returns:
- 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.
-
disableProfiler
public final Boolean disableProfiler()
To turn off Amazon SageMaker Debugger monitoring and profiling while a training job is in progress, set to
True
.- Returns:
- To turn off Amazon SageMaker Debugger monitoring and profiling while a training job is in progress, set
to
True
.
-
toBuilder
public ProfilerConfigForUpdate.Builder toBuilder()
- Specified by:
toBuilder
in interfaceToCopyableBuilder<ProfilerConfigForUpdate.Builder,ProfilerConfigForUpdate>
-
builder
public static ProfilerConfigForUpdate.Builder builder()
-
serializableBuilderClass
public static Class<? extends ProfilerConfigForUpdate.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFields
in interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
-