Interface VoiceProfile.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<VoiceProfile.Builder,VoiceProfile>,SdkBuilder<VoiceProfile.Builder,VoiceProfile>,SdkPojo
- Enclosing class:
- VoiceProfile
public static interface VoiceProfile.Builder extends SdkPojo, CopyableBuilder<VoiceProfile.Builder,VoiceProfile>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VoiceProfile.BuildercreatedTimestamp(Instant createdTimestamp)The time at which the voice profile was created and enrolled.VoiceProfile.BuilderexpirationTimestamp(Instant expirationTimestamp)The time at which a voice profile expires unless you re-enroll the caller via theUpdateVoiceProfileAPI.VoiceProfile.BuilderupdatedTimestamp(Instant updatedTimestamp)The time at which the voice profile was last updated.VoiceProfile.BuildervoiceProfileArn(String voiceProfileArn)The ARN of the voice profile.VoiceProfile.BuildervoiceProfileDomainId(String voiceProfileDomainId)The ID of the domain that contains the voice profile.VoiceProfile.BuildervoiceProfileId(String voiceProfileId)The ID of the voice profile.-
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
-
voiceProfileId
VoiceProfile.Builder voiceProfileId(String voiceProfileId)
The ID of the voice profile.
- Parameters:
voiceProfileId- The ID of the voice profile.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
voiceProfileArn
VoiceProfile.Builder voiceProfileArn(String voiceProfileArn)
The ARN of the voice profile.
- Parameters:
voiceProfileArn- The ARN of the voice profile.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
voiceProfileDomainId
VoiceProfile.Builder voiceProfileDomainId(String voiceProfileDomainId)
The ID of the domain that contains the voice profile.
- Parameters:
voiceProfileDomainId- The ID of the domain that contains the voice profile.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdTimestamp
VoiceProfile.Builder createdTimestamp(Instant createdTimestamp)
The time at which the voice profile was created and enrolled.
- Parameters:
createdTimestamp- The time at which the voice profile was created and enrolled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
updatedTimestamp
VoiceProfile.Builder updatedTimestamp(Instant updatedTimestamp)
The time at which the voice profile was last updated.
- Parameters:
updatedTimestamp- The time at which the voice profile was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
expirationTimestamp
VoiceProfile.Builder expirationTimestamp(Instant expirationTimestamp)
The time at which a voice profile expires unless you re-enroll the caller via the
UpdateVoiceProfileAPI.- Parameters:
expirationTimestamp- The time at which a voice profile expires unless you re-enroll the caller via theUpdateVoiceProfileAPI.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-