Class LexiconService
Inheritance
LexiconService
Assembly: Glitch9.AIDevKit.Provider.AmazonAws.dll
Syntax
public sealed class LexiconService : CrudServiceBase<AwsClient>, ICrudService
Constructors
|
Edit this page
View Source
LexiconService(AwsClient)
Declaration
public LexiconService(AwsClient client)
Parameters
Methods
|
Edit this page
View Source
DeleteAsync(string, RequestOptions)
Declaration
public UniTask<bool> DeleteAsync(string lexiconName, RequestOptions options = null)
Parameters
Returns
| Type |
Description |
| UniTask<bool> |
|
|
Edit this page
View Source
GetAsync(string, RequestOptions)
Declaration
public UniTask<LexiconDetails> GetAsync(string lexiconName, RequestOptions options = null)
Parameters
Returns
|
Edit this page
View Source
ListAsync(PollyQuery, RequestOptions)
Declaration
public UniTask<LexiconDescriptionList> ListAsync(PollyQuery query = null, RequestOptions options = null)
Parameters
Returns
|
Edit this page
View Source
PutAsync(LexiconCreationRequest, RequestOptions)
Stores a pronunciation lexicon in an AWS Region.
If a lexicon with the same name already exists in the region,
it is overwritten by the new lexicon. Lexicon operations have eventual consistency,
therefore, it might take some time before the lexicon is available to the SynthesizeSpeech operation.
Declaration
public UniTask<bool> PutAsync(LexiconCreationRequest request, RequestOptions options = null)
Parameters
Returns
| Type |
Description |
| UniTask<bool> |
|
Implements
Extension Methods