/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Subslot specifications.See Also:
AWS
* API Reference
The unique identifier assigned to the slot type.
*/ inline const Aws::String& GetSlotTypeId() const{ return m_slotTypeId; } /** *The unique identifier assigned to the slot type.
*/ inline bool SlotTypeIdHasBeenSet() const { return m_slotTypeIdHasBeenSet; } /** *The unique identifier assigned to the slot type.
*/ inline void SetSlotTypeId(const Aws::String& value) { m_slotTypeIdHasBeenSet = true; m_slotTypeId = value; } /** *The unique identifier assigned to the slot type.
*/ inline void SetSlotTypeId(Aws::String&& value) { m_slotTypeIdHasBeenSet = true; m_slotTypeId = std::move(value); } /** *The unique identifier assigned to the slot type.
*/ inline void SetSlotTypeId(const char* value) { m_slotTypeIdHasBeenSet = true; m_slotTypeId.assign(value); } /** *The unique identifier assigned to the slot type.
*/ inline Specifications& WithSlotTypeId(const Aws::String& value) { SetSlotTypeId(value); return *this;} /** *The unique identifier assigned to the slot type.
*/ inline Specifications& WithSlotTypeId(Aws::String&& value) { SetSlotTypeId(std::move(value)); return *this;} /** *The unique identifier assigned to the slot type.
*/ inline Specifications& WithSlotTypeId(const char* value) { SetSlotTypeId(value); return *this;} /** *Specifies the elicitation setting details for constituent sub slots of a * composite slot.
*/ inline const SubSlotValueElicitationSetting& GetValueElicitationSetting() const{ return m_valueElicitationSetting; } /** *Specifies the elicitation setting details for constituent sub slots of a * composite slot.
*/ inline bool ValueElicitationSettingHasBeenSet() const { return m_valueElicitationSettingHasBeenSet; } /** *Specifies the elicitation setting details for constituent sub slots of a * composite slot.
*/ inline void SetValueElicitationSetting(const SubSlotValueElicitationSetting& value) { m_valueElicitationSettingHasBeenSet = true; m_valueElicitationSetting = value; } /** *Specifies the elicitation setting details for constituent sub slots of a * composite slot.
*/ inline void SetValueElicitationSetting(SubSlotValueElicitationSetting&& value) { m_valueElicitationSettingHasBeenSet = true; m_valueElicitationSetting = std::move(value); } /** *Specifies the elicitation setting details for constituent sub slots of a * composite slot.
*/ inline Specifications& WithValueElicitationSetting(const SubSlotValueElicitationSetting& value) { SetValueElicitationSetting(value); return *this;} /** *Specifies the elicitation setting details for constituent sub slots of a * composite slot.
*/ inline Specifications& WithValueElicitationSetting(SubSlotValueElicitationSetting&& value) { SetValueElicitationSetting(std::move(value)); return *this;} private: Aws::String m_slotTypeId; bool m_slotTypeIdHasBeenSet = false; SubSlotValueElicitationSetting m_valueElicitationSetting; bool m_valueElicitationSettingHasBeenSet = false; }; } // namespace Model } // namespace LexModelsV2 } // namespace Aws