You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::LexModelBuildingService::Types::GetBuiltinSlotTypesRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing GetBuiltinSlotTypesRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  locale: "de-DE", # accepts de-DE, en-AU, en-GB, en-US, es-ES, es-US, fr-FR, fr-CA, it-IT
  signature_contains: "String",
  next_token: "NextToken",
  max_results: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#localeString

A list of locales that the slot type supports.

Possible values:

  • de-DE
  • en-AU
  • en-GB
  • en-US
  • es-ES
  • es-US
  • fr-FR
  • fr-CA
  • it-IT

Returns:

  • (String)

    A list of locales that the slot type supports.

#max_resultsInteger

The maximum number of slot types to return in the response. The default is 10.

Returns:

  • (Integer)

    The maximum number of slot types to return in the response.

#next_tokenString

A pagination token that fetches the next page of slot types. If the response to this API call is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of slot types, specify the pagination token in the next request.

Returns:

  • (String)

    A pagination token that fetches the next page of slot types.

#signature_containsString

Substring to match in built-in slot type signatures. A slot type will be returned if any part of its signature matches the substring. For example, \"xyz\" matches both \"xyzabc\" and \"abcxyz.\"

Returns:

  • (String)

    Substring to match in built-in slot type signatures.