Interface CreateSlotRequest.Builder

All Superinterfaces:
AwsRequest.Builder, Buildable, CopyableBuilder<CreateSlotRequest.Builder,CreateSlotRequest>, LexModelsV2Request.Builder, SdkBuilder<CreateSlotRequest.Builder,CreateSlotRequest>, SdkPojo, SdkRequest.Builder
Enclosing class:
CreateSlotRequest

public static interface CreateSlotRequest.Builder extends LexModelsV2Request.Builder, SdkPojo, CopyableBuilder<CreateSlotRequest.Builder,CreateSlotRequest>
  • Method Details

    • slotName

      CreateSlotRequest.Builder slotName(String slotName)

      The name of the slot. Slot names must be unique within the bot that contains the slot.

      Parameters:
      slotName - The name of the slot. Slot names must be unique within the bot that contains the slot.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • description

      CreateSlotRequest.Builder description(String description)

      A description of the slot. Use this to help identify the slot in lists.

      Parameters:
      description - A description of the slot. Use this to help identify the slot in lists.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • slotTypeId

      CreateSlotRequest.Builder slotTypeId(String slotTypeId)

      The unique identifier for the slot type associated with this slot. The slot type determines the values that can be entered into the slot.

      Parameters:
      slotTypeId - The unique identifier for the slot type associated with this slot. The slot type determines the values that can be entered into the slot.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • valueElicitationSetting

      CreateSlotRequest.Builder valueElicitationSetting(SlotValueElicitationSetting valueElicitationSetting)

      Specifies prompts that Amazon Lex sends to the user to elicit a response that provides the value for the slot.

      Parameters:
      valueElicitationSetting - Specifies prompts that Amazon Lex sends to the user to elicit a response that provides the value for the slot.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • valueElicitationSetting

      default CreateSlotRequest.Builder valueElicitationSetting(Consumer<SlotValueElicitationSetting.Builder> valueElicitationSetting)

      Specifies prompts that Amazon Lex sends to the user to elicit a response that provides the value for the slot.

      This is a convenience method that creates an instance of the SlotValueElicitationSetting.Builder avoiding the need to create one manually via SlotValueElicitationSetting.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to valueElicitationSetting(SlotValueElicitationSetting).

      Parameters:
      valueElicitationSetting - a consumer that will call methods on SlotValueElicitationSetting.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • obfuscationSetting

      CreateSlotRequest.Builder obfuscationSetting(ObfuscationSetting obfuscationSetting)

      Determines how slot values are used in Amazon CloudWatch logs. If the value of the obfuscationSetting parameter is DefaultObfuscation, slot values are obfuscated in the log output. If the value is None, the actual value is present in the log output.

      The default is to obfuscate values in the CloudWatch logs.

      Parameters:
      obfuscationSetting - Determines how slot values are used in Amazon CloudWatch logs. If the value of the obfuscationSetting parameter is DefaultObfuscation, slot values are obfuscated in the log output. If the value is None, the actual value is present in the log output.

      The default is to obfuscate values in the CloudWatch logs.

      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • obfuscationSetting

      default CreateSlotRequest.Builder obfuscationSetting(Consumer<ObfuscationSetting.Builder> obfuscationSetting)

      Determines how slot values are used in Amazon CloudWatch logs. If the value of the obfuscationSetting parameter is DefaultObfuscation, slot values are obfuscated in the log output. If the value is None, the actual value is present in the log output.

      The default is to obfuscate values in the CloudWatch logs.

      This is a convenience method that creates an instance of the ObfuscationSetting.Builder avoiding the need to create one manually via ObfuscationSetting.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to obfuscationSetting(ObfuscationSetting).

      Parameters:
      obfuscationSetting - a consumer that will call methods on ObfuscationSetting.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • botId

      The identifier of the bot associated with the slot.

      Parameters:
      botId - The identifier of the bot associated with the slot.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • botVersion

      CreateSlotRequest.Builder botVersion(String botVersion)

      The version of the bot associated with the slot.

      Parameters:
      botVersion - The version of the bot associated with the slot.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • localeId

      CreateSlotRequest.Builder localeId(String localeId)

      The identifier of the language and locale that the slot will be used in. The string must match one of the supported locales. All of the bots, intents, slot types used by the slot must have the same locale. For more information, see Supported languages.

      Parameters:
      localeId - The identifier of the language and locale that the slot will be used in. The string must match one of the supported locales. All of the bots, intents, slot types used by the slot must have the same locale. For more information, see Supported languages.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • intentId

      CreateSlotRequest.Builder intentId(String intentId)

      The identifier of the intent that contains the slot.

      Parameters:
      intentId - The identifier of the intent that contains the slot.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • multipleValuesSetting

      CreateSlotRequest.Builder multipleValuesSetting(MultipleValuesSetting multipleValuesSetting)

      Indicates whether the slot returns multiple values in one response. Multi-value slots are only available in the en-US locale. If you set this value to true in any other locale, Amazon Lex throws a ValidationException.

      If the multipleValuesSetting is not set, the default value is false.

      Parameters:
      multipleValuesSetting - Indicates whether the slot returns multiple values in one response. Multi-value slots are only available in the en-US locale. If you set this value to true in any other locale, Amazon Lex throws a ValidationException.

      If the multipleValuesSetting is not set, the default value is false.

      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • multipleValuesSetting

      default CreateSlotRequest.Builder multipleValuesSetting(Consumer<MultipleValuesSetting.Builder> multipleValuesSetting)

      Indicates whether the slot returns multiple values in one response. Multi-value slots are only available in the en-US locale. If you set this value to true in any other locale, Amazon Lex throws a ValidationException.

      If the multipleValuesSetting is not set, the default value is false.

      This is a convenience method that creates an instance of the MultipleValuesSetting.Builder avoiding the need to create one manually via MultipleValuesSetting.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to multipleValuesSetting(MultipleValuesSetting).

      Parameters:
      multipleValuesSetting - a consumer that will call methods on MultipleValuesSetting.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • subSlotSetting

      CreateSlotRequest.Builder subSlotSetting(SubSlotSetting subSlotSetting)

      Specifications for the constituent sub slots and the expression for the composite slot.

      Parameters:
      subSlotSetting - Specifications for the constituent sub slots and the expression for the composite slot.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • subSlotSetting

      default CreateSlotRequest.Builder subSlotSetting(Consumer<SubSlotSetting.Builder> subSlotSetting)

      Specifications for the constituent sub slots and the expression for the composite slot.

      This is a convenience method that creates an instance of the SubSlotSetting.Builder avoiding the need to create one manually via SubSlotSetting.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to subSlotSetting(SubSlotSetting).

      Parameters:
      subSlotSetting - a consumer that will call methods on SubSlotSetting.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • overrideConfiguration

      CreateSlotRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
      Description copied from interface: AwsRequest.Builder
      Add an optional request override configuration.
      Specified by:
      overrideConfiguration in interface AwsRequest.Builder
      Parameters:
      overrideConfiguration - The override configuration.
      Returns:
      This object for method chaining.
    • overrideConfiguration

      Description copied from interface: AwsRequest.Builder
      Add an optional request override configuration.
      Specified by:
      overrideConfiguration in interface AwsRequest.Builder
      Parameters:
      builderConsumer - A Consumer to which an empty AwsRequestOverrideConfiguration.Builder will be given.
      Returns:
      This object for method chaining.