Interface InferenceEventSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<InferenceEventSummary.Builder,InferenceEventSummary>,SdkBuilder<InferenceEventSummary.Builder,InferenceEventSummary>,SdkPojo
- Enclosing class:
- InferenceEventSummary
public static interface InferenceEventSummary.Builder extends SdkPojo, CopyableBuilder<InferenceEventSummary.Builder,InferenceEventSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InferenceEventSummary.Builderdiagnostics(String diagnostics)An array which specifies the names and values of all sensors contributing to an inference event.InferenceEventSummary.BuildereventDurationInSeconds(Long eventDurationInSeconds)Indicates the size of an inference event in seconds.InferenceEventSummary.BuildereventEndTime(Instant eventEndTime)Indicates the ending time of an inference event.InferenceEventSummary.BuildereventStartTime(Instant eventStartTime)Indicates the starting time of an inference event.InferenceEventSummary.BuilderinferenceSchedulerArn(String inferenceSchedulerArn)The Amazon Resource Name (ARN) of the inference scheduler being used for the inference event.InferenceEventSummary.BuilderinferenceSchedulerName(String inferenceSchedulerName)The name of the inference scheduler being used for the inference events.-
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, sdkFields
-
-
-
-
Method Detail
-
inferenceSchedulerArn
InferenceEventSummary.Builder inferenceSchedulerArn(String inferenceSchedulerArn)
The Amazon Resource Name (ARN) of the inference scheduler being used for the inference event.
- Parameters:
inferenceSchedulerArn- The Amazon Resource Name (ARN) of the inference scheduler being used for the inference event.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inferenceSchedulerName
InferenceEventSummary.Builder inferenceSchedulerName(String inferenceSchedulerName)
The name of the inference scheduler being used for the inference events.
- Parameters:
inferenceSchedulerName- The name of the inference scheduler being used for the inference events.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventStartTime
InferenceEventSummary.Builder eventStartTime(Instant eventStartTime)
Indicates the starting time of an inference event.
- Parameters:
eventStartTime- Indicates the starting time of an inference event.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventEndTime
InferenceEventSummary.Builder eventEndTime(Instant eventEndTime)
Indicates the ending time of an inference event.
- Parameters:
eventEndTime- Indicates the ending time of an inference event.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
diagnostics
InferenceEventSummary.Builder diagnostics(String diagnostics)
An array which specifies the names and values of all sensors contributing to an inference event.
- Parameters:
diagnostics- An array which specifies the names and values of all sensors contributing to an inference event.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventDurationInSeconds
InferenceEventSummary.Builder eventDurationInSeconds(Long eventDurationInSeconds)
Indicates the size of an inference event in seconds.
- Parameters:
eventDurationInSeconds- Indicates the size of an inference event in seconds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-