Interface CallAnalyticsJobDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CallAnalyticsJobDetails.Builder,CallAnalyticsJobDetails>,SdkBuilder<CallAnalyticsJobDetails.Builder,CallAnalyticsJobDetails>,SdkPojo
- Enclosing class:
- CallAnalyticsJobDetails
public static interface CallAnalyticsJobDetails.Builder extends SdkPojo, CopyableBuilder<CallAnalyticsJobDetails.Builder,CallAnalyticsJobDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CallAnalyticsJobDetails.Builderskipped(Collection<CallAnalyticsSkippedFeature> skipped)Contains information about any skipped analytics features during the analysis of a call analytics job.CallAnalyticsJobDetails.Builderskipped(Consumer<CallAnalyticsSkippedFeature.Builder>... skipped)Contains information about any skipped analytics features during the analysis of a call analytics job.CallAnalyticsJobDetails.Builderskipped(CallAnalyticsSkippedFeature... skipped)Contains information about any skipped analytics features during the analysis of a call analytics job.-
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
-
skipped
CallAnalyticsJobDetails.Builder skipped(Collection<CallAnalyticsSkippedFeature> skipped)
Contains information about any skipped analytics features during the analysis of a call analytics job.
This array lists all the analytics features that were skipped, along with their corresponding reason code and message.
- Parameters:
skipped- Contains information about any skipped analytics features during the analysis of a call analytics job.This array lists all the analytics features that were skipped, along with their corresponding reason code and message.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
skipped
CallAnalyticsJobDetails.Builder skipped(CallAnalyticsSkippedFeature... skipped)
Contains information about any skipped analytics features during the analysis of a call analytics job.
This array lists all the analytics features that were skipped, along with their corresponding reason code and message.
- Parameters:
skipped- Contains information about any skipped analytics features during the analysis of a call analytics job.This array lists all the analytics features that were skipped, along with their corresponding reason code and message.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
skipped
CallAnalyticsJobDetails.Builder skipped(Consumer<CallAnalyticsSkippedFeature.Builder>... skipped)
Contains information about any skipped analytics features during the analysis of a call analytics job.
This array lists all the analytics features that were skipped, along with their corresponding reason code and message.
This is a convenience method that creates an instance of theCallAnalyticsSkippedFeature.Builderavoiding the need to create one manually viaCallAnalyticsSkippedFeature.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#skipped(List.) - Parameters:
skipped- a consumer that will call methods onCallAnalyticsSkippedFeature.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#skipped(java.util.Collection)
-
-