amazonka-transcribe-2.0: Amazon Transcribe Service SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.Transcribe.ListVocabularyFilters

Description

Provides a list of custom vocabulary filters that match the specified criteria. If no criteria are specified, all custom vocabularies are returned.

To get detailed information about a specific custom vocabulary filter, use the operation.

Synopsis

Creating a Request

data ListVocabularyFilters Source #

See: newListVocabularyFilters smart constructor.

Constructors

ListVocabularyFilters' 

Fields

  • maxResults :: Maybe Natural

    The maximum number of custom vocabulary filters to return in each page of results. If there are fewer results than the value that you specify, only the actual results are returned. If you don't specify a value, a default of 5 is used.

  • nameContains :: Maybe Text

    Returns only the custom vocabulary filters that contain the specified string. The search is not case sensitive.

  • nextToken :: Maybe Text

    If your ListVocabularyFilters request returns more results than can be displayed, NextToken is displayed in the response with an associated string. To get the next page of results, copy this string and repeat your request, including NextToken with the value of the copied string. Repeat as needed to view all your results.

Instances

Instances details
ToJSON ListVocabularyFilters Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

ToHeaders ListVocabularyFilters Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

ToPath ListVocabularyFilters Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

ToQuery ListVocabularyFilters Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

AWSRequest ListVocabularyFilters Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

Associated Types

type AWSResponse ListVocabularyFilters #

Generic ListVocabularyFilters Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

Associated Types

type Rep ListVocabularyFilters :: Type -> Type #

Read ListVocabularyFilters Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

Show ListVocabularyFilters Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

NFData ListVocabularyFilters Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

Methods

rnf :: ListVocabularyFilters -> () #

Eq ListVocabularyFilters Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

Hashable ListVocabularyFilters Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

type AWSResponse ListVocabularyFilters Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

type Rep ListVocabularyFilters Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

type Rep ListVocabularyFilters = D1 ('MetaData "ListVocabularyFilters" "Amazonka.Transcribe.ListVocabularyFilters" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "ListVocabularyFilters'" 'PrefixI 'True) (S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: (S1 ('MetaSel ('Just "nameContains") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newListVocabularyFilters :: ListVocabularyFilters Source #

Create a value of ListVocabularyFilters with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:maxResults:ListVocabularyFilters', listVocabularyFilters_maxResults - The maximum number of custom vocabulary filters to return in each page of results. If there are fewer results than the value that you specify, only the actual results are returned. If you don't specify a value, a default of 5 is used.

$sel:nameContains:ListVocabularyFilters', listVocabularyFilters_nameContains - Returns only the custom vocabulary filters that contain the specified string. The search is not case sensitive.

ListVocabularyFilters, listVocabularyFilters_nextToken - If your ListVocabularyFilters request returns more results than can be displayed, NextToken is displayed in the response with an associated string. To get the next page of results, copy this string and repeat your request, including NextToken with the value of the copied string. Repeat as needed to view all your results.

Request Lenses

listVocabularyFilters_maxResults :: Lens' ListVocabularyFilters (Maybe Natural) Source #

The maximum number of custom vocabulary filters to return in each page of results. If there are fewer results than the value that you specify, only the actual results are returned. If you don't specify a value, a default of 5 is used.

listVocabularyFilters_nameContains :: Lens' ListVocabularyFilters (Maybe Text) Source #

Returns only the custom vocabulary filters that contain the specified string. The search is not case sensitive.

listVocabularyFilters_nextToken :: Lens' ListVocabularyFilters (Maybe Text) Source #

If your ListVocabularyFilters request returns more results than can be displayed, NextToken is displayed in the response with an associated string. To get the next page of results, copy this string and repeat your request, including NextToken with the value of the copied string. Repeat as needed to view all your results.

Destructuring the Response

data ListVocabularyFiltersResponse Source #

See: newListVocabularyFiltersResponse smart constructor.

Constructors

ListVocabularyFiltersResponse' 

Fields

  • nextToken :: Maybe Text

    If NextToken is present in your response, it indicates that not all results are displayed. To view the next set of results, copy the string associated with the NextToken parameter in your results output, then run your request again including NextToken with the value of the copied string. Repeat as needed to view all your results.

  • vocabularyFilters :: Maybe [VocabularyFilterInfo]

    Provides information about the custom vocabulary filters that match the criteria specified in your request.

  • httpStatus :: Int

    The response's http status code.

Instances

Instances details
Generic ListVocabularyFiltersResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

Associated Types

type Rep ListVocabularyFiltersResponse :: Type -> Type #

Read ListVocabularyFiltersResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

Show ListVocabularyFiltersResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

NFData ListVocabularyFiltersResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

Eq ListVocabularyFiltersResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

type Rep ListVocabularyFiltersResponse Source # 
Instance details

Defined in Amazonka.Transcribe.ListVocabularyFilters

type Rep ListVocabularyFiltersResponse = D1 ('MetaData "ListVocabularyFiltersResponse" "Amazonka.Transcribe.ListVocabularyFilters" "amazonka-transcribe-2.0-4BjJqzwmm0K94bsEMe1tnF" 'False) (C1 ('MetaCons "ListVocabularyFiltersResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "vocabularyFilters") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [VocabularyFilterInfo])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListVocabularyFiltersResponse Source #

Create a value of ListVocabularyFiltersResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

ListVocabularyFilters, listVocabularyFiltersResponse_nextToken - If NextToken is present in your response, it indicates that not all results are displayed. To view the next set of results, copy the string associated with the NextToken parameter in your results output, then run your request again including NextToken with the value of the copied string. Repeat as needed to view all your results.

$sel:vocabularyFilters:ListVocabularyFiltersResponse', listVocabularyFiltersResponse_vocabularyFilters - Provides information about the custom vocabulary filters that match the criteria specified in your request.

$sel:httpStatus:ListVocabularyFiltersResponse', listVocabularyFiltersResponse_httpStatus - The response's http status code.

Response Lenses

listVocabularyFiltersResponse_nextToken :: Lens' ListVocabularyFiltersResponse (Maybe Text) Source #

If NextToken is present in your response, it indicates that not all results are displayed. To view the next set of results, copy the string associated with the NextToken parameter in your results output, then run your request again including NextToken with the value of the copied string. Repeat as needed to view all your results.

listVocabularyFiltersResponse_vocabularyFilters :: Lens' ListVocabularyFiltersResponse (Maybe [VocabularyFilterInfo]) Source #

Provides information about the custom vocabulary filters that match the criteria specified in your request.