Interface CallAnalyticsEntity.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CallAnalyticsEntity.Builder,CallAnalyticsEntity>,SdkBuilder<CallAnalyticsEntity.Builder,CallAnalyticsEntity>,SdkPojo
- Enclosing class:
- CallAnalyticsEntity
@Mutable @NotThreadSafe public static interface CallAnalyticsEntity.Builder extends SdkPojo, CopyableBuilder<CallAnalyticsEntity.Builder,CallAnalyticsEntity>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CallAnalyticsEntity.BuilderbeginOffsetMillis(Long beginOffsetMillis)The time, in milliseconds, from the beginning of the audio stream to the start of the identified entity.CallAnalyticsEntity.Buildercategory(String category)The category of information identified.CallAnalyticsEntity.Builderconfidence(Double confidence)The confidence score associated with the identification of an entity in your transcript.CallAnalyticsEntity.Buildercontent(String content)The word or words that represent the identified entity.CallAnalyticsEntity.BuilderendOffsetMillis(Long endOffsetMillis)The time, in milliseconds, from the beginning of the audio stream to the end of the identified entity.CallAnalyticsEntity.Buildertype(String type)The type of PII identified.-
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
-
beginOffsetMillis
CallAnalyticsEntity.Builder beginOffsetMillis(Long beginOffsetMillis)
The time, in milliseconds, from the beginning of the audio stream to the start of the identified entity.
- Parameters:
beginOffsetMillis- The time, in milliseconds, from the beginning of the audio stream to the start of the identified entity.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endOffsetMillis
CallAnalyticsEntity.Builder endOffsetMillis(Long endOffsetMillis)
The time, in milliseconds, from the beginning of the audio stream to the end of the identified entity.
- Parameters:
endOffsetMillis- The time, in milliseconds, from the beginning of the audio stream to the end of the identified entity.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
category
CallAnalyticsEntity.Builder category(String category)
The category of information identified. For example,
PII.- Parameters:
category- The category of information identified. For example,PII.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
CallAnalyticsEntity.Builder type(String type)
The type of PII identified. For example,
NAMEorCREDIT_DEBIT_NUMBER.- Parameters:
type- The type of PII identified. For example,NAMEorCREDIT_DEBIT_NUMBER.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
content
CallAnalyticsEntity.Builder content(String content)
The word or words that represent the identified entity.
- Parameters:
content- The word or words that represent the identified entity.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
confidence
CallAnalyticsEntity.Builder confidence(Double confidence)
The confidence score associated with the identification of an entity in your transcript.
Confidence scores are values between 0 and 1. A larger value indicates a higher probability that the identified entity correctly matches the entity spoken in your media.
- Parameters:
confidence- The confidence score associated with the identification of an entity in your transcript.Confidence scores are values between 0 and 1. A larger value indicates a higher probability that the identified entity correctly matches the entity spoken in your media.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-