AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Container for the parameters to the DeleteLexicon operation. Deletes the specified pronunciation lexicon stored in an Amazon Web Services Region. A lexicon which has been deleted is not available for speech synthesis, nor is it possible to retrieve it using either the GetLexicon or ListLexicon APIs.

For more information, see Managing Lexicons.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.Polly.AmazonPollyRequest
      Amazon.Polly.Model.DeleteLexiconRequest

Namespace: Amazon.Polly.Model
Assembly: AWSSDK.Polly.dll
Version: 3.x.y.z

Syntax

C#
public class DeleteLexiconRequest : AmazonPollyRequest
         IAmazonWebServiceRequest

The DeleteLexiconRequest type exposes the following members

Constructors

NameDescription
Public Method DeleteLexiconRequest()

Properties

NameTypeDescription
Public Property Name System.String

Gets and sets the property Name.

The name of the lexicon to delete. Must be an existing lexicon in the region.

Examples

Deletes a specified pronunciation lexicon stored in an AWS Region.

To delete a lexicon


var client = new AmazonPollyClient();
var response = client.DeleteLexicon(new DeleteLexiconRequest 
{
    Name = "example"
});


            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5