Documentation ¶
Index ¶
- func LexIntent_GenerateConfigForImport(scope constructs.Construct, importToId *string, importFromId *string, ...) cdktf.ImportableResource
- func LexIntent_IsConstruct(x interface{}) *bool
- func LexIntent_IsTerraformElement(x interface{}) *bool
- func LexIntent_IsTerraformResource(x interface{}) *bool
- func LexIntent_TfResourceType() *string
- func NewLexIntentConclusionStatementMessageList_Override(l LexIntentConclusionStatementMessageList, ...)
- func NewLexIntentConclusionStatementMessageOutputReference_Override(l LexIntentConclusionStatementMessageOutputReference, ...)
- func NewLexIntentConclusionStatementOutputReference_Override(l LexIntentConclusionStatementOutputReference, ...)
- func NewLexIntentConfirmationPromptMessageList_Override(l LexIntentConfirmationPromptMessageList, ...)
- func NewLexIntentConfirmationPromptMessageOutputReference_Override(l LexIntentConfirmationPromptMessageOutputReference, ...)
- func NewLexIntentConfirmationPromptOutputReference_Override(l LexIntentConfirmationPromptOutputReference, ...)
- func NewLexIntentDialogCodeHookOutputReference_Override(l LexIntentDialogCodeHookOutputReference, ...)
- func NewLexIntentFollowUpPromptOutputReference_Override(l LexIntentFollowUpPromptOutputReference, ...)
- func NewLexIntentFollowUpPromptPromptMessageList_Override(l LexIntentFollowUpPromptPromptMessageList, ...)
- func NewLexIntentFollowUpPromptPromptMessageOutputReference_Override(l LexIntentFollowUpPromptPromptMessageOutputReference, ...)
- func NewLexIntentFollowUpPromptPromptOutputReference_Override(l LexIntentFollowUpPromptPromptOutputReference, ...)
- func NewLexIntentFollowUpPromptRejectionStatementMessageList_Override(l LexIntentFollowUpPromptRejectionStatementMessageList, ...)
- func NewLexIntentFollowUpPromptRejectionStatementMessageOutputReference_Override(l LexIntentFollowUpPromptRejectionStatementMessageOutputReference, ...)
- func NewLexIntentFollowUpPromptRejectionStatementOutputReference_Override(l LexIntentFollowUpPromptRejectionStatementOutputReference, ...)
- func NewLexIntentFulfillmentActivityCodeHookOutputReference_Override(l LexIntentFulfillmentActivityCodeHookOutputReference, ...)
- func NewLexIntentFulfillmentActivityOutputReference_Override(l LexIntentFulfillmentActivityOutputReference, ...)
- func NewLexIntentRejectionStatementMessageList_Override(l LexIntentRejectionStatementMessageList, ...)
- func NewLexIntentRejectionStatementMessageOutputReference_Override(l LexIntentRejectionStatementMessageOutputReference, ...)
- func NewLexIntentRejectionStatementOutputReference_Override(l LexIntentRejectionStatementOutputReference, ...)
- func NewLexIntentSlotList_Override(l LexIntentSlotList, terraformResource cdktf.IInterpolatingParent, ...)
- func NewLexIntentSlotOutputReference_Override(l LexIntentSlotOutputReference, terraformResource cdktf.IInterpolatingParent, ...)
- func NewLexIntentSlotValueElicitationPromptMessageList_Override(l LexIntentSlotValueElicitationPromptMessageList, ...)
- func NewLexIntentSlotValueElicitationPromptMessageOutputReference_Override(l LexIntentSlotValueElicitationPromptMessageOutputReference, ...)
- func NewLexIntentSlotValueElicitationPromptOutputReference_Override(l LexIntentSlotValueElicitationPromptOutputReference, ...)
- func NewLexIntentTimeoutsOutputReference_Override(l LexIntentTimeoutsOutputReference, ...)
- func NewLexIntent_Override(l LexIntent, scope constructs.Construct, id *string, config *LexIntentConfig)
- type LexIntent
- type LexIntentConclusionStatement
- type LexIntentConclusionStatementMessage
- type LexIntentConclusionStatementMessageList
- type LexIntentConclusionStatementMessageOutputReference
- type LexIntentConclusionStatementOutputReference
- type LexIntentConfig
- type LexIntentConfirmationPrompt
- type LexIntentConfirmationPromptMessage
- type LexIntentConfirmationPromptMessageList
- type LexIntentConfirmationPromptMessageOutputReference
- type LexIntentConfirmationPromptOutputReference
- type LexIntentDialogCodeHook
- type LexIntentDialogCodeHookOutputReference
- type LexIntentFollowUpPrompt
- type LexIntentFollowUpPromptOutputReference
- type LexIntentFollowUpPromptPrompt
- type LexIntentFollowUpPromptPromptMessage
- type LexIntentFollowUpPromptPromptMessageList
- type LexIntentFollowUpPromptPromptMessageOutputReference
- type LexIntentFollowUpPromptPromptOutputReference
- type LexIntentFollowUpPromptRejectionStatement
- type LexIntentFollowUpPromptRejectionStatementMessage
- type LexIntentFollowUpPromptRejectionStatementMessageList
- type LexIntentFollowUpPromptRejectionStatementMessageOutputReference
- type LexIntentFollowUpPromptRejectionStatementOutputReference
- type LexIntentFulfillmentActivity
- type LexIntentFulfillmentActivityCodeHook
- type LexIntentFulfillmentActivityCodeHookOutputReference
- type LexIntentFulfillmentActivityOutputReference
- type LexIntentRejectionStatement
- type LexIntentRejectionStatementMessage
- type LexIntentRejectionStatementMessageList
- type LexIntentRejectionStatementMessageOutputReference
- type LexIntentRejectionStatementOutputReference
- type LexIntentSlot
- type LexIntentSlotList
- type LexIntentSlotOutputReference
- type LexIntentSlotValueElicitationPrompt
- type LexIntentSlotValueElicitationPromptMessage
- type LexIntentSlotValueElicitationPromptMessageList
- type LexIntentSlotValueElicitationPromptMessageOutputReference
- type LexIntentSlotValueElicitationPromptOutputReference
- type LexIntentTimeouts
- type LexIntentTimeoutsOutputReference
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func LexIntent_GenerateConfigForImport ¶
func LexIntent_GenerateConfigForImport(scope constructs.Construct, importToId *string, importFromId *string, provider cdktf.TerraformProvider) cdktf.ImportableResource
Generates CDKTF code for importing a LexIntent resource upon running "cdktf plan <stack-name>".
func LexIntent_IsConstruct ¶
func LexIntent_IsConstruct(x interface{}) *bool
Checks if `x` is a construct.
Use this method instead of `instanceof` to properly detect `Construct` instances, even when the construct library is symlinked.
Explanation: in JavaScript, multiple copies of the `constructs` library on disk are seen as independent, completely different libraries. As a consequence, the class `Construct` in each copy of the `constructs` library is seen as a different class, and an instance of one class will not test as `instanceof` the other class. `npm install` will not create installations like this, but users may manually symlink construct libraries together or use a monorepo tool: in those cases, multiple copies of the `constructs` library can be accidentally installed, and `instanceof` will behave unpredictably. It is safest to avoid using `instanceof`, and using this type-testing method instead.
Returns: true if `x` is an object created from a class which extends `Construct`.
func LexIntent_IsTerraformElement ¶
func LexIntent_IsTerraformElement(x interface{}) *bool
Experimental.
func LexIntent_IsTerraformResource ¶
func LexIntent_IsTerraformResource(x interface{}) *bool
Experimental.
func LexIntent_TfResourceType ¶
func LexIntent_TfResourceType() *string
func NewLexIntentConclusionStatementMessageList_Override ¶
func NewLexIntentConclusionStatementMessageList_Override(l LexIntentConclusionStatementMessageList, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool)
func NewLexIntentConclusionStatementMessageOutputReference_Override ¶
func NewLexIntentConclusionStatementMessageOutputReference_Override(l LexIntentConclusionStatementMessageOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool)
func NewLexIntentConclusionStatementOutputReference_Override ¶
func NewLexIntentConclusionStatementOutputReference_Override(l LexIntentConclusionStatementOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string)
func NewLexIntentConfirmationPromptMessageList_Override ¶
func NewLexIntentConfirmationPromptMessageList_Override(l LexIntentConfirmationPromptMessageList, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool)
func NewLexIntentConfirmationPromptMessageOutputReference_Override ¶
func NewLexIntentConfirmationPromptMessageOutputReference_Override(l LexIntentConfirmationPromptMessageOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool)
func NewLexIntentConfirmationPromptOutputReference_Override ¶
func NewLexIntentConfirmationPromptOutputReference_Override(l LexIntentConfirmationPromptOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string)
func NewLexIntentDialogCodeHookOutputReference_Override ¶
func NewLexIntentDialogCodeHookOutputReference_Override(l LexIntentDialogCodeHookOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string)
func NewLexIntentFollowUpPromptOutputReference_Override ¶
func NewLexIntentFollowUpPromptOutputReference_Override(l LexIntentFollowUpPromptOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string)
func NewLexIntentFollowUpPromptPromptMessageList_Override ¶
func NewLexIntentFollowUpPromptPromptMessageList_Override(l LexIntentFollowUpPromptPromptMessageList, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool)
func NewLexIntentFollowUpPromptPromptMessageOutputReference_Override ¶
func NewLexIntentFollowUpPromptPromptMessageOutputReference_Override(l LexIntentFollowUpPromptPromptMessageOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool)
func NewLexIntentFollowUpPromptPromptOutputReference_Override ¶
func NewLexIntentFollowUpPromptPromptOutputReference_Override(l LexIntentFollowUpPromptPromptOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string)
func NewLexIntentFollowUpPromptRejectionStatementMessageList_Override ¶
func NewLexIntentFollowUpPromptRejectionStatementMessageList_Override(l LexIntentFollowUpPromptRejectionStatementMessageList, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool)
func NewLexIntentFollowUpPromptRejectionStatementMessageOutputReference_Override ¶
func NewLexIntentFollowUpPromptRejectionStatementMessageOutputReference_Override(l LexIntentFollowUpPromptRejectionStatementMessageOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool)
func NewLexIntentFollowUpPromptRejectionStatementOutputReference_Override ¶
func NewLexIntentFollowUpPromptRejectionStatementOutputReference_Override(l LexIntentFollowUpPromptRejectionStatementOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string)
func NewLexIntentFulfillmentActivityCodeHookOutputReference_Override ¶
func NewLexIntentFulfillmentActivityCodeHookOutputReference_Override(l LexIntentFulfillmentActivityCodeHookOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string)
func NewLexIntentFulfillmentActivityOutputReference_Override ¶
func NewLexIntentFulfillmentActivityOutputReference_Override(l LexIntentFulfillmentActivityOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string)
func NewLexIntentRejectionStatementMessageList_Override ¶
func NewLexIntentRejectionStatementMessageList_Override(l LexIntentRejectionStatementMessageList, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool)
func NewLexIntentRejectionStatementMessageOutputReference_Override ¶
func NewLexIntentRejectionStatementMessageOutputReference_Override(l LexIntentRejectionStatementMessageOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool)
func NewLexIntentRejectionStatementOutputReference_Override ¶
func NewLexIntentRejectionStatementOutputReference_Override(l LexIntentRejectionStatementOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string)
func NewLexIntentSlotList_Override ¶
func NewLexIntentSlotList_Override(l LexIntentSlotList, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool)
func NewLexIntentSlotOutputReference_Override ¶
func NewLexIntentSlotOutputReference_Override(l LexIntentSlotOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool)
func NewLexIntentSlotValueElicitationPromptMessageList_Override ¶
func NewLexIntentSlotValueElicitationPromptMessageList_Override(l LexIntentSlotValueElicitationPromptMessageList, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool)
func NewLexIntentSlotValueElicitationPromptMessageOutputReference_Override ¶
func NewLexIntentSlotValueElicitationPromptMessageOutputReference_Override(l LexIntentSlotValueElicitationPromptMessageOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool)
func NewLexIntentSlotValueElicitationPromptOutputReference_Override ¶
func NewLexIntentSlotValueElicitationPromptOutputReference_Override(l LexIntentSlotValueElicitationPromptOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string)
func NewLexIntentTimeoutsOutputReference_Override ¶
func NewLexIntentTimeoutsOutputReference_Override(l LexIntentTimeoutsOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string)
func NewLexIntent_Override ¶
func NewLexIntent_Override(l LexIntent, scope constructs.Construct, id *string, config *LexIntentConfig)
Create a new {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent aws_lex_intent} Resource.
Types ¶
type LexIntent ¶
type LexIntent interface { cdktf.TerraformResource Arn() *string // Experimental. CdktfStack() cdktf.TerraformStack Checksum() *string ConclusionStatement() LexIntentConclusionStatementOutputReference ConclusionStatementInput() *LexIntentConclusionStatement ConfirmationPrompt() LexIntentConfirmationPromptOutputReference ConfirmationPromptInput() *LexIntentConfirmationPrompt // Experimental. Connection() interface{} // Experimental. SetConnection(val interface{}) // Experimental. ConstructNodeMetadata() *map[string]interface{} // Experimental. Count() interface{} // Experimental. SetCount(val interface{}) CreatedDate() *string CreateVersion() interface{} SetCreateVersion(val interface{}) CreateVersionInput() interface{} // Experimental. DependsOn() *[]*string // Experimental. SetDependsOn(val *[]*string) Description() *string SetDescription(val *string) DescriptionInput() *string DialogCodeHook() LexIntentDialogCodeHookOutputReference DialogCodeHookInput() *LexIntentDialogCodeHook FollowUpPrompt() LexIntentFollowUpPromptOutputReference FollowUpPromptInput() *LexIntentFollowUpPrompt // Experimental. ForEach() cdktf.ITerraformIterator // Experimental. SetForEach(val cdktf.ITerraformIterator) // Experimental. Fqn() *string // Experimental. FriendlyUniqueId() *string FulfillmentActivity() LexIntentFulfillmentActivityOutputReference FulfillmentActivityInput() *LexIntentFulfillmentActivity Id() *string SetId(val *string) IdInput() *string LastUpdatedDate() *string // Experimental. Lifecycle() *cdktf.TerraformResourceLifecycle // Experimental. SetLifecycle(val *cdktf.TerraformResourceLifecycle) Name() *string SetName(val *string) NameInput() *string // The tree node. Node() constructs.Node ParentIntentSignature() *string SetParentIntentSignature(val *string) ParentIntentSignatureInput() *string // Experimental. Provider() cdktf.TerraformProvider // Experimental. SetProvider(val cdktf.TerraformProvider) // Experimental. Provisioners() *[]interface{} // Experimental. SetProvisioners(val *[]interface{}) // Experimental. RawOverrides() interface{} RejectionStatement() LexIntentRejectionStatementOutputReference RejectionStatementInput() *LexIntentRejectionStatement SampleUtterances() *[]*string SetSampleUtterances(val *[]*string) SampleUtterancesInput() *[]*string Slot() LexIntentSlotList SlotInput() interface{} // Experimental. TerraformGeneratorMetadata() *cdktf.TerraformProviderGeneratorMetadata // Experimental. TerraformMetaArguments() *map[string]interface{} // Experimental. TerraformResourceType() *string Timeouts() LexIntentTimeoutsOutputReference TimeoutsInput() interface{} Version() *string // Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. // Experimental. AddMoveTarget(moveTarget *string) // Experimental. AddOverride(path *string, value interface{}) // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. HasResourceMove() interface{} // Experimental. ImportFrom(id *string, provider cdktf.TerraformProvider) // Experimental. InterpolationForAttribute(terraformAttribute *string) cdktf.IResolvable // Move the resource corresponding to "id" to this resource. // // Note that the resource being moved from must be marked as moved using it's instance function. // Experimental. MoveFromId(id *string) // Moves this resource to the target resource given by moveTarget. // Experimental. MoveTo(moveTarget *string, index interface{}) // Moves this resource to the resource corresponding to "id". // Experimental. MoveToId(id *string) // Overrides the auto-generated logical ID with a specific ID. // Experimental. OverrideLogicalId(newLogicalId *string) PutConclusionStatement(value *LexIntentConclusionStatement) PutConfirmationPrompt(value *LexIntentConfirmationPrompt) PutDialogCodeHook(value *LexIntentDialogCodeHook) PutFollowUpPrompt(value *LexIntentFollowUpPrompt) PutFulfillmentActivity(value *LexIntentFulfillmentActivity) PutRejectionStatement(value *LexIntentRejectionStatement) PutSlot(value interface{}) PutTimeouts(value *LexIntentTimeouts) ResetConclusionStatement() ResetConfirmationPrompt() ResetCreateVersion() ResetDescription() ResetDialogCodeHook() ResetFollowUpPrompt() ResetId() // Resets a previously passed logical Id to use the auto-generated logical id again. // Experimental. ResetOverrideLogicalId() ResetParentIntentSignature() ResetRejectionStatement() ResetSampleUtterances() ResetSlot() ResetTimeouts() SynthesizeAttributes() *map[string]interface{} SynthesizeHclAttributes() *map[string]interface{} // Experimental. ToHclTerraform() interface{} // Experimental. ToMetadata() interface{} // Returns a string representation of this construct. ToString() *string // Adds this resource to the terraform JSON output. // Experimental. ToTerraform() interface{} }
Represents a {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent aws_lex_intent}.
func NewLexIntent ¶
func NewLexIntent(scope constructs.Construct, id *string, config *LexIntentConfig) LexIntent
Create a new {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent aws_lex_intent} Resource.
type LexIntentConclusionStatement ¶
type LexIntentConclusionStatement struct { // message block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#message LexIntent#message} Message interface{} `field:"required" json:"message" yaml:"message"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#response_card LexIntent#response_card}. ResponseCard *string `field:"optional" json:"responseCard" yaml:"responseCard"` }
type LexIntentConclusionStatementMessage ¶
type LexIntentConclusionStatementMessage struct { // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#content LexIntent#content}. Content *string `field:"required" json:"content" yaml:"content"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#content_type LexIntent#content_type}. ContentType *string `field:"required" json:"contentType" yaml:"contentType"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#group_number LexIntent#group_number}. GroupNumber *float64 `field:"optional" json:"groupNumber" yaml:"groupNumber"` }
type LexIntentConclusionStatementMessageList ¶
type LexIntentConclusionStatementMessageList interface { cdktf.ComplexList // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() interface{} SetInternalValue(val interface{}) // The attribute on the parent resource this class is referencing. TerraformAttribute() *string SetTerraformAttribute(val *string) // The parent resource. TerraformResource() cdktf.IInterpolatingParent SetTerraformResource(val cdktf.IInterpolatingParent) // whether the list is wrapping a set (will add tolist() to be able to access an item via an index). WrapsSet() *bool SetWrapsSet(val *bool) // Creating an iterator for this complex list. // // The list will be converted into a map with the mapKeyAttributeName as the key. // Experimental. AllWithMapKey(mapKeyAttributeName *string) cdktf.DynamicListTerraformIterator // Experimental. ComputeFqn() *string Get(index *float64) LexIntentConclusionStatementMessageOutputReference // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewLexIntentConclusionStatementMessageList ¶
func NewLexIntentConclusionStatementMessageList(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) LexIntentConclusionStatementMessageList
type LexIntentConclusionStatementMessageOutputReference ¶
type LexIntentConclusionStatementMessageOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) Content() *string SetContent(val *string) ContentInput() *string ContentType() *string SetContentType(val *string) ContentTypeInput() *string // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string GroupNumber() *float64 SetGroupNumber(val *float64) GroupNumberInput() *float64 InternalValue() interface{} SetInternalValue(val interface{}) // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable ResetGroupNumber() // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewLexIntentConclusionStatementMessageOutputReference ¶
func NewLexIntentConclusionStatementMessageOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool) LexIntentConclusionStatementMessageOutputReference
type LexIntentConclusionStatementOutputReference ¶
type LexIntentConclusionStatementOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() *LexIntentConclusionStatement SetInternalValue(val *LexIntentConclusionStatement) Message() LexIntentConclusionStatementMessageList MessageInput() interface{} ResponseCard() *string SetResponseCard(val *string) ResponseCardInput() *string // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable PutMessage(value interface{}) ResetResponseCard() // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewLexIntentConclusionStatementOutputReference ¶
func NewLexIntentConclusionStatementOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string) LexIntentConclusionStatementOutputReference
type LexIntentConfig ¶
type LexIntentConfig struct { // Experimental. Connection interface{} `field:"optional" json:"connection" yaml:"connection"` // Experimental. Count interface{} `field:"optional" json:"count" yaml:"count"` // Experimental. DependsOn *[]cdktf.ITerraformDependable `field:"optional" json:"dependsOn" yaml:"dependsOn"` // Experimental. ForEach cdktf.ITerraformIterator `field:"optional" json:"forEach" yaml:"forEach"` // Experimental. Lifecycle *cdktf.TerraformResourceLifecycle `field:"optional" json:"lifecycle" yaml:"lifecycle"` // Experimental. Provider cdktf.TerraformProvider `field:"optional" json:"provider" yaml:"provider"` // Experimental. Provisioners *[]interface{} `field:"optional" json:"provisioners" yaml:"provisioners"` // fulfillment_activity block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#fulfillment_activity LexIntent#fulfillment_activity} FulfillmentActivity *LexIntentFulfillmentActivity `field:"required" json:"fulfillmentActivity" yaml:"fulfillmentActivity"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#name LexIntent#name}. Name *string `field:"required" json:"name" yaml:"name"` // conclusion_statement block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#conclusion_statement LexIntent#conclusion_statement} ConclusionStatement *LexIntentConclusionStatement `field:"optional" json:"conclusionStatement" yaml:"conclusionStatement"` // confirmation_prompt block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#confirmation_prompt LexIntent#confirmation_prompt} ConfirmationPrompt *LexIntentConfirmationPrompt `field:"optional" json:"confirmationPrompt" yaml:"confirmationPrompt"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#create_version LexIntent#create_version}. CreateVersion interface{} `field:"optional" json:"createVersion" yaml:"createVersion"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#description LexIntent#description}. Description *string `field:"optional" json:"description" yaml:"description"` // dialog_code_hook block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#dialog_code_hook LexIntent#dialog_code_hook} DialogCodeHook *LexIntentDialogCodeHook `field:"optional" json:"dialogCodeHook" yaml:"dialogCodeHook"` // follow_up_prompt block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#follow_up_prompt LexIntent#follow_up_prompt} FollowUpPrompt *LexIntentFollowUpPrompt `field:"optional" json:"followUpPrompt" yaml:"followUpPrompt"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#id LexIntent#id}. // // Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. // If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable. Id *string `field:"optional" json:"id" yaml:"id"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#parent_intent_signature LexIntent#parent_intent_signature}. ParentIntentSignature *string `field:"optional" json:"parentIntentSignature" yaml:"parentIntentSignature"` // rejection_statement block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#rejection_statement LexIntent#rejection_statement} RejectionStatement *LexIntentRejectionStatement `field:"optional" json:"rejectionStatement" yaml:"rejectionStatement"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#sample_utterances LexIntent#sample_utterances}. SampleUtterances *[]*string `field:"optional" json:"sampleUtterances" yaml:"sampleUtterances"` // slot block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#slot LexIntent#slot} Slot interface{} `field:"optional" json:"slot" yaml:"slot"` // timeouts block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#timeouts LexIntent#timeouts} Timeouts *LexIntentTimeouts `field:"optional" json:"timeouts" yaml:"timeouts"` }
type LexIntentConfirmationPrompt ¶
type LexIntentConfirmationPrompt struct { // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#max_attempts LexIntent#max_attempts}. MaxAttempts *float64 `field:"required" json:"maxAttempts" yaml:"maxAttempts"` // message block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#message LexIntent#message} Message interface{} `field:"required" json:"message" yaml:"message"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#response_card LexIntent#response_card}. ResponseCard *string `field:"optional" json:"responseCard" yaml:"responseCard"` }
type LexIntentConfirmationPromptMessage ¶
type LexIntentConfirmationPromptMessage struct { // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#content LexIntent#content}. Content *string `field:"required" json:"content" yaml:"content"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#content_type LexIntent#content_type}. ContentType *string `field:"required" json:"contentType" yaml:"contentType"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#group_number LexIntent#group_number}. GroupNumber *float64 `field:"optional" json:"groupNumber" yaml:"groupNumber"` }
type LexIntentConfirmationPromptMessageList ¶
type LexIntentConfirmationPromptMessageList interface { cdktf.ComplexList // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() interface{} SetInternalValue(val interface{}) // The attribute on the parent resource this class is referencing. TerraformAttribute() *string SetTerraformAttribute(val *string) // The parent resource. TerraformResource() cdktf.IInterpolatingParent SetTerraformResource(val cdktf.IInterpolatingParent) // whether the list is wrapping a set (will add tolist() to be able to access an item via an index). WrapsSet() *bool SetWrapsSet(val *bool) // Creating an iterator for this complex list. // // The list will be converted into a map with the mapKeyAttributeName as the key. // Experimental. AllWithMapKey(mapKeyAttributeName *string) cdktf.DynamicListTerraformIterator // Experimental. ComputeFqn() *string Get(index *float64) LexIntentConfirmationPromptMessageOutputReference // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewLexIntentConfirmationPromptMessageList ¶
func NewLexIntentConfirmationPromptMessageList(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) LexIntentConfirmationPromptMessageList
type LexIntentConfirmationPromptMessageOutputReference ¶
type LexIntentConfirmationPromptMessageOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) Content() *string SetContent(val *string) ContentInput() *string ContentType() *string SetContentType(val *string) ContentTypeInput() *string // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string GroupNumber() *float64 SetGroupNumber(val *float64) GroupNumberInput() *float64 InternalValue() interface{} SetInternalValue(val interface{}) // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable ResetGroupNumber() // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewLexIntentConfirmationPromptMessageOutputReference ¶
func NewLexIntentConfirmationPromptMessageOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool) LexIntentConfirmationPromptMessageOutputReference
type LexIntentConfirmationPromptOutputReference ¶
type LexIntentConfirmationPromptOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() *LexIntentConfirmationPrompt SetInternalValue(val *LexIntentConfirmationPrompt) MaxAttempts() *float64 SetMaxAttempts(val *float64) MaxAttemptsInput() *float64 Message() LexIntentConfirmationPromptMessageList MessageInput() interface{} ResponseCard() *string SetResponseCard(val *string) ResponseCardInput() *string // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable PutMessage(value interface{}) ResetResponseCard() // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewLexIntentConfirmationPromptOutputReference ¶
func NewLexIntentConfirmationPromptOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string) LexIntentConfirmationPromptOutputReference
type LexIntentDialogCodeHook ¶
type LexIntentDialogCodeHook struct { // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#message_version LexIntent#message_version}. MessageVersion *string `field:"required" json:"messageVersion" yaml:"messageVersion"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#uri LexIntent#uri}. Uri *string `field:"required" json:"uri" yaml:"uri"` }
type LexIntentDialogCodeHookOutputReference ¶
type LexIntentDialogCodeHookOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() *LexIntentDialogCodeHook SetInternalValue(val *LexIntentDialogCodeHook) MessageVersion() *string SetMessageVersion(val *string) MessageVersionInput() *string // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) Uri() *string SetUri(val *string) UriInput() *string // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewLexIntentDialogCodeHookOutputReference ¶
func NewLexIntentDialogCodeHookOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string) LexIntentDialogCodeHookOutputReference
type LexIntentFollowUpPrompt ¶
type LexIntentFollowUpPrompt struct { // prompt block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#prompt LexIntent#prompt} Prompt *LexIntentFollowUpPromptPrompt `field:"required" json:"prompt" yaml:"prompt"` // rejection_statement block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#rejection_statement LexIntent#rejection_statement} RejectionStatement *LexIntentFollowUpPromptRejectionStatement `field:"required" json:"rejectionStatement" yaml:"rejectionStatement"` }
type LexIntentFollowUpPromptOutputReference ¶
type LexIntentFollowUpPromptOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() *LexIntentFollowUpPrompt SetInternalValue(val *LexIntentFollowUpPrompt) Prompt() LexIntentFollowUpPromptPromptOutputReference PromptInput() *LexIntentFollowUpPromptPrompt RejectionStatement() LexIntentFollowUpPromptRejectionStatementOutputReference RejectionStatementInput() *LexIntentFollowUpPromptRejectionStatement // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable PutPrompt(value *LexIntentFollowUpPromptPrompt) PutRejectionStatement(value *LexIntentFollowUpPromptRejectionStatement) // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewLexIntentFollowUpPromptOutputReference ¶
func NewLexIntentFollowUpPromptOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string) LexIntentFollowUpPromptOutputReference
type LexIntentFollowUpPromptPrompt ¶
type LexIntentFollowUpPromptPrompt struct { // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#max_attempts LexIntent#max_attempts}. MaxAttempts *float64 `field:"required" json:"maxAttempts" yaml:"maxAttempts"` // message block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#message LexIntent#message} Message interface{} `field:"required" json:"message" yaml:"message"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#response_card LexIntent#response_card}. ResponseCard *string `field:"optional" json:"responseCard" yaml:"responseCard"` }
type LexIntentFollowUpPromptPromptMessage ¶
type LexIntentFollowUpPromptPromptMessage struct { // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#content LexIntent#content}. Content *string `field:"required" json:"content" yaml:"content"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#content_type LexIntent#content_type}. ContentType *string `field:"required" json:"contentType" yaml:"contentType"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#group_number LexIntent#group_number}. GroupNumber *float64 `field:"optional" json:"groupNumber" yaml:"groupNumber"` }
type LexIntentFollowUpPromptPromptMessageList ¶
type LexIntentFollowUpPromptPromptMessageList interface { cdktf.ComplexList // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() interface{} SetInternalValue(val interface{}) // The attribute on the parent resource this class is referencing. TerraformAttribute() *string SetTerraformAttribute(val *string) // The parent resource. TerraformResource() cdktf.IInterpolatingParent SetTerraformResource(val cdktf.IInterpolatingParent) // whether the list is wrapping a set (will add tolist() to be able to access an item via an index). WrapsSet() *bool SetWrapsSet(val *bool) // Creating an iterator for this complex list. // // The list will be converted into a map with the mapKeyAttributeName as the key. // Experimental. AllWithMapKey(mapKeyAttributeName *string) cdktf.DynamicListTerraformIterator // Experimental. ComputeFqn() *string Get(index *float64) LexIntentFollowUpPromptPromptMessageOutputReference // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewLexIntentFollowUpPromptPromptMessageList ¶
func NewLexIntentFollowUpPromptPromptMessageList(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) LexIntentFollowUpPromptPromptMessageList
type LexIntentFollowUpPromptPromptMessageOutputReference ¶
type LexIntentFollowUpPromptPromptMessageOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) Content() *string SetContent(val *string) ContentInput() *string ContentType() *string SetContentType(val *string) ContentTypeInput() *string // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string GroupNumber() *float64 SetGroupNumber(val *float64) GroupNumberInput() *float64 InternalValue() interface{} SetInternalValue(val interface{}) // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable ResetGroupNumber() // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewLexIntentFollowUpPromptPromptMessageOutputReference ¶
func NewLexIntentFollowUpPromptPromptMessageOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool) LexIntentFollowUpPromptPromptMessageOutputReference
type LexIntentFollowUpPromptPromptOutputReference ¶
type LexIntentFollowUpPromptPromptOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() *LexIntentFollowUpPromptPrompt SetInternalValue(val *LexIntentFollowUpPromptPrompt) MaxAttempts() *float64 SetMaxAttempts(val *float64) MaxAttemptsInput() *float64 Message() LexIntentFollowUpPromptPromptMessageList MessageInput() interface{} ResponseCard() *string SetResponseCard(val *string) ResponseCardInput() *string // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable PutMessage(value interface{}) ResetResponseCard() // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewLexIntentFollowUpPromptPromptOutputReference ¶
func NewLexIntentFollowUpPromptPromptOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string) LexIntentFollowUpPromptPromptOutputReference
type LexIntentFollowUpPromptRejectionStatement ¶
type LexIntentFollowUpPromptRejectionStatement struct { // message block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#message LexIntent#message} Message interface{} `field:"required" json:"message" yaml:"message"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#response_card LexIntent#response_card}. ResponseCard *string `field:"optional" json:"responseCard" yaml:"responseCard"` }
type LexIntentFollowUpPromptRejectionStatementMessage ¶
type LexIntentFollowUpPromptRejectionStatementMessage struct { // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#content LexIntent#content}. Content *string `field:"required" json:"content" yaml:"content"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#content_type LexIntent#content_type}. ContentType *string `field:"required" json:"contentType" yaml:"contentType"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#group_number LexIntent#group_number}. GroupNumber *float64 `field:"optional" json:"groupNumber" yaml:"groupNumber"` }
type LexIntentFollowUpPromptRejectionStatementMessageList ¶
type LexIntentFollowUpPromptRejectionStatementMessageList interface { cdktf.ComplexList // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() interface{} SetInternalValue(val interface{}) // The attribute on the parent resource this class is referencing. TerraformAttribute() *string SetTerraformAttribute(val *string) // The parent resource. TerraformResource() cdktf.IInterpolatingParent SetTerraformResource(val cdktf.IInterpolatingParent) // whether the list is wrapping a set (will add tolist() to be able to access an item via an index). WrapsSet() *bool SetWrapsSet(val *bool) // Creating an iterator for this complex list. // // The list will be converted into a map with the mapKeyAttributeName as the key. // Experimental. AllWithMapKey(mapKeyAttributeName *string) cdktf.DynamicListTerraformIterator // Experimental. ComputeFqn() *string Get(index *float64) LexIntentFollowUpPromptRejectionStatementMessageOutputReference // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewLexIntentFollowUpPromptRejectionStatementMessageList ¶
func NewLexIntentFollowUpPromptRejectionStatementMessageList(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) LexIntentFollowUpPromptRejectionStatementMessageList
type LexIntentFollowUpPromptRejectionStatementMessageOutputReference ¶
type LexIntentFollowUpPromptRejectionStatementMessageOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) Content() *string SetContent(val *string) ContentInput() *string ContentType() *string SetContentType(val *string) ContentTypeInput() *string // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string GroupNumber() *float64 SetGroupNumber(val *float64) GroupNumberInput() *float64 InternalValue() interface{} SetInternalValue(val interface{}) // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable ResetGroupNumber() // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewLexIntentFollowUpPromptRejectionStatementMessageOutputReference ¶
func NewLexIntentFollowUpPromptRejectionStatementMessageOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool) LexIntentFollowUpPromptRejectionStatementMessageOutputReference
type LexIntentFollowUpPromptRejectionStatementOutputReference ¶
type LexIntentFollowUpPromptRejectionStatementOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() *LexIntentFollowUpPromptRejectionStatement SetInternalValue(val *LexIntentFollowUpPromptRejectionStatement) Message() LexIntentFollowUpPromptRejectionStatementMessageList MessageInput() interface{} ResponseCard() *string SetResponseCard(val *string) ResponseCardInput() *string // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable PutMessage(value interface{}) ResetResponseCard() // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewLexIntentFollowUpPromptRejectionStatementOutputReference ¶
func NewLexIntentFollowUpPromptRejectionStatementOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string) LexIntentFollowUpPromptRejectionStatementOutputReference
type LexIntentFulfillmentActivity ¶
type LexIntentFulfillmentActivity struct { // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#type LexIntent#type}. Type *string `field:"required" json:"type" yaml:"type"` // code_hook block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#code_hook LexIntent#code_hook} CodeHook *LexIntentFulfillmentActivityCodeHook `field:"optional" json:"codeHook" yaml:"codeHook"` }
type LexIntentFulfillmentActivityCodeHook ¶
type LexIntentFulfillmentActivityCodeHook struct { // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#message_version LexIntent#message_version}. MessageVersion *string `field:"required" json:"messageVersion" yaml:"messageVersion"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#uri LexIntent#uri}. Uri *string `field:"required" json:"uri" yaml:"uri"` }
type LexIntentFulfillmentActivityCodeHookOutputReference ¶
type LexIntentFulfillmentActivityCodeHookOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() *LexIntentFulfillmentActivityCodeHook SetInternalValue(val *LexIntentFulfillmentActivityCodeHook) MessageVersion() *string SetMessageVersion(val *string) MessageVersionInput() *string // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) Uri() *string SetUri(val *string) UriInput() *string // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewLexIntentFulfillmentActivityCodeHookOutputReference ¶
func NewLexIntentFulfillmentActivityCodeHookOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string) LexIntentFulfillmentActivityCodeHookOutputReference
type LexIntentFulfillmentActivityOutputReference ¶
type LexIntentFulfillmentActivityOutputReference interface { cdktf.ComplexObject CodeHook() LexIntentFulfillmentActivityCodeHookOutputReference CodeHookInput() *LexIntentFulfillmentActivityCodeHook // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() *LexIntentFulfillmentActivity SetInternalValue(val *LexIntentFulfillmentActivity) // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) Type() *string SetType(val *string) TypeInput() *string // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable PutCodeHook(value *LexIntentFulfillmentActivityCodeHook) ResetCodeHook() // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewLexIntentFulfillmentActivityOutputReference ¶
func NewLexIntentFulfillmentActivityOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string) LexIntentFulfillmentActivityOutputReference
type LexIntentRejectionStatement ¶
type LexIntentRejectionStatement struct { // message block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#message LexIntent#message} Message interface{} `field:"required" json:"message" yaml:"message"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#response_card LexIntent#response_card}. ResponseCard *string `field:"optional" json:"responseCard" yaml:"responseCard"` }
type LexIntentRejectionStatementMessage ¶
type LexIntentRejectionStatementMessage struct { // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#content LexIntent#content}. Content *string `field:"required" json:"content" yaml:"content"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#content_type LexIntent#content_type}. ContentType *string `field:"required" json:"contentType" yaml:"contentType"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#group_number LexIntent#group_number}. GroupNumber *float64 `field:"optional" json:"groupNumber" yaml:"groupNumber"` }
type LexIntentRejectionStatementMessageList ¶
type LexIntentRejectionStatementMessageList interface { cdktf.ComplexList // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() interface{} SetInternalValue(val interface{}) // The attribute on the parent resource this class is referencing. TerraformAttribute() *string SetTerraformAttribute(val *string) // The parent resource. TerraformResource() cdktf.IInterpolatingParent SetTerraformResource(val cdktf.IInterpolatingParent) // whether the list is wrapping a set (will add tolist() to be able to access an item via an index). WrapsSet() *bool SetWrapsSet(val *bool) // Creating an iterator for this complex list. // // The list will be converted into a map with the mapKeyAttributeName as the key. // Experimental. AllWithMapKey(mapKeyAttributeName *string) cdktf.DynamicListTerraformIterator // Experimental. ComputeFqn() *string Get(index *float64) LexIntentRejectionStatementMessageOutputReference // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewLexIntentRejectionStatementMessageList ¶
func NewLexIntentRejectionStatementMessageList(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) LexIntentRejectionStatementMessageList
type LexIntentRejectionStatementMessageOutputReference ¶
type LexIntentRejectionStatementMessageOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) Content() *string SetContent(val *string) ContentInput() *string ContentType() *string SetContentType(val *string) ContentTypeInput() *string // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string GroupNumber() *float64 SetGroupNumber(val *float64) GroupNumberInput() *float64 InternalValue() interface{} SetInternalValue(val interface{}) // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable ResetGroupNumber() // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewLexIntentRejectionStatementMessageOutputReference ¶
func NewLexIntentRejectionStatementMessageOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool) LexIntentRejectionStatementMessageOutputReference
type LexIntentRejectionStatementOutputReference ¶
type LexIntentRejectionStatementOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() *LexIntentRejectionStatement SetInternalValue(val *LexIntentRejectionStatement) Message() LexIntentRejectionStatementMessageList MessageInput() interface{} ResponseCard() *string SetResponseCard(val *string) ResponseCardInput() *string // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable PutMessage(value interface{}) ResetResponseCard() // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewLexIntentRejectionStatementOutputReference ¶
func NewLexIntentRejectionStatementOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string) LexIntentRejectionStatementOutputReference
type LexIntentSlot ¶
type LexIntentSlot struct { // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#name LexIntent#name}. Name *string `field:"required" json:"name" yaml:"name"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#slot_constraint LexIntent#slot_constraint}. SlotConstraint *string `field:"required" json:"slotConstraint" yaml:"slotConstraint"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#slot_type LexIntent#slot_type}. SlotType *string `field:"required" json:"slotType" yaml:"slotType"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#description LexIntent#description}. Description *string `field:"optional" json:"description" yaml:"description"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#priority LexIntent#priority}. Priority *float64 `field:"optional" json:"priority" yaml:"priority"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#response_card LexIntent#response_card}. ResponseCard *string `field:"optional" json:"responseCard" yaml:"responseCard"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#sample_utterances LexIntent#sample_utterances}. SampleUtterances *[]*string `field:"optional" json:"sampleUtterances" yaml:"sampleUtterances"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#slot_type_version LexIntent#slot_type_version}. SlotTypeVersion *string `field:"optional" json:"slotTypeVersion" yaml:"slotTypeVersion"` // value_elicitation_prompt block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#value_elicitation_prompt LexIntent#value_elicitation_prompt} ValueElicitationPrompt *LexIntentSlotValueElicitationPrompt `field:"optional" json:"valueElicitationPrompt" yaml:"valueElicitationPrompt"` }
type LexIntentSlotList ¶
type LexIntentSlotList interface { cdktf.ComplexList // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() interface{} SetInternalValue(val interface{}) // The attribute on the parent resource this class is referencing. TerraformAttribute() *string SetTerraformAttribute(val *string) // The parent resource. TerraformResource() cdktf.IInterpolatingParent SetTerraformResource(val cdktf.IInterpolatingParent) // whether the list is wrapping a set (will add tolist() to be able to access an item via an index). WrapsSet() *bool SetWrapsSet(val *bool) // Creating an iterator for this complex list. // // The list will be converted into a map with the mapKeyAttributeName as the key. // Experimental. AllWithMapKey(mapKeyAttributeName *string) cdktf.DynamicListTerraformIterator // Experimental. ComputeFqn() *string Get(index *float64) LexIntentSlotOutputReference // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewLexIntentSlotList ¶
func NewLexIntentSlotList(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) LexIntentSlotList
type LexIntentSlotOutputReference ¶
type LexIntentSlotOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string Description() *string SetDescription(val *string) DescriptionInput() *string // Experimental. Fqn() *string InternalValue() interface{} SetInternalValue(val interface{}) Name() *string SetName(val *string) NameInput() *string Priority() *float64 SetPriority(val *float64) PriorityInput() *float64 ResponseCard() *string SetResponseCard(val *string) ResponseCardInput() *string SampleUtterances() *[]*string SetSampleUtterances(val *[]*string) SampleUtterancesInput() *[]*string SlotConstraint() *string SetSlotConstraint(val *string) SlotConstraintInput() *string SlotType() *string SetSlotType(val *string) SlotTypeInput() *string SlotTypeVersion() *string SetSlotTypeVersion(val *string) SlotTypeVersionInput() *string // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) ValueElicitationPrompt() LexIntentSlotValueElicitationPromptOutputReference ValueElicitationPromptInput() *LexIntentSlotValueElicitationPrompt // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable PutValueElicitationPrompt(value *LexIntentSlotValueElicitationPrompt) ResetDescription() ResetPriority() ResetResponseCard() ResetSampleUtterances() ResetSlotTypeVersion() ResetValueElicitationPrompt() // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewLexIntentSlotOutputReference ¶
func NewLexIntentSlotOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool) LexIntentSlotOutputReference
type LexIntentSlotValueElicitationPrompt ¶
type LexIntentSlotValueElicitationPrompt struct { // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#max_attempts LexIntent#max_attempts}. MaxAttempts *float64 `field:"required" json:"maxAttempts" yaml:"maxAttempts"` // message block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#message LexIntent#message} Message interface{} `field:"required" json:"message" yaml:"message"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#response_card LexIntent#response_card}. ResponseCard *string `field:"optional" json:"responseCard" yaml:"responseCard"` }
type LexIntentSlotValueElicitationPromptMessage ¶
type LexIntentSlotValueElicitationPromptMessage struct { // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#content LexIntent#content}. Content *string `field:"required" json:"content" yaml:"content"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#content_type LexIntent#content_type}. ContentType *string `field:"required" json:"contentType" yaml:"contentType"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#group_number LexIntent#group_number}. GroupNumber *float64 `field:"optional" json:"groupNumber" yaml:"groupNumber"` }
type LexIntentSlotValueElicitationPromptMessageList ¶
type LexIntentSlotValueElicitationPromptMessageList interface { cdktf.ComplexList // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() interface{} SetInternalValue(val interface{}) // The attribute on the parent resource this class is referencing. TerraformAttribute() *string SetTerraformAttribute(val *string) // The parent resource. TerraformResource() cdktf.IInterpolatingParent SetTerraformResource(val cdktf.IInterpolatingParent) // whether the list is wrapping a set (will add tolist() to be able to access an item via an index). WrapsSet() *bool SetWrapsSet(val *bool) // Creating an iterator for this complex list. // // The list will be converted into a map with the mapKeyAttributeName as the key. // Experimental. AllWithMapKey(mapKeyAttributeName *string) cdktf.DynamicListTerraformIterator // Experimental. ComputeFqn() *string Get(index *float64) LexIntentSlotValueElicitationPromptMessageOutputReference // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewLexIntentSlotValueElicitationPromptMessageList ¶
func NewLexIntentSlotValueElicitationPromptMessageList(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) LexIntentSlotValueElicitationPromptMessageList
type LexIntentSlotValueElicitationPromptMessageOutputReference ¶
type LexIntentSlotValueElicitationPromptMessageOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) Content() *string SetContent(val *string) ContentInput() *string ContentType() *string SetContentType(val *string) ContentTypeInput() *string // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string GroupNumber() *float64 SetGroupNumber(val *float64) GroupNumberInput() *float64 InternalValue() interface{} SetInternalValue(val interface{}) // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable ResetGroupNumber() // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewLexIntentSlotValueElicitationPromptMessageOutputReference ¶
func NewLexIntentSlotValueElicitationPromptMessageOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool) LexIntentSlotValueElicitationPromptMessageOutputReference
type LexIntentSlotValueElicitationPromptOutputReference ¶
type LexIntentSlotValueElicitationPromptOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() *LexIntentSlotValueElicitationPrompt SetInternalValue(val *LexIntentSlotValueElicitationPrompt) MaxAttempts() *float64 SetMaxAttempts(val *float64) MaxAttemptsInput() *float64 Message() LexIntentSlotValueElicitationPromptMessageList MessageInput() interface{} ResponseCard() *string SetResponseCard(val *string) ResponseCardInput() *string // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable PutMessage(value interface{}) ResetResponseCard() // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewLexIntentSlotValueElicitationPromptOutputReference ¶
func NewLexIntentSlotValueElicitationPromptOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string) LexIntentSlotValueElicitationPromptOutputReference
type LexIntentTimeouts ¶
type LexIntentTimeouts struct { // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#create LexIntent#create}. Create *string `field:"optional" json:"create" yaml:"create"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#delete LexIntent#delete}. Delete *string `field:"optional" json:"delete" yaml:"delete"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/5.39.0/docs/resources/lex_intent#update LexIntent#update}. Update *string `field:"optional" json:"update" yaml:"update"` }
type LexIntentTimeoutsOutputReference ¶
type LexIntentTimeoutsOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) Create() *string SetCreate(val *string) CreateInput() *string // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string Delete() *string SetDelete(val *string) DeleteInput() *string // Experimental. Fqn() *string InternalValue() interface{} SetInternalValue(val interface{}) // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) Update() *string SetUpdate(val *string) UpdateInput() *string // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable ResetCreate() ResetDelete() ResetUpdate() // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewLexIntentTimeoutsOutputReference ¶
func NewLexIntentTimeoutsOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string) LexIntentTimeoutsOutputReference
Source Files ¶
- LexIntent.go
- LexIntentConclusionStatement.go
- LexIntentConclusionStatementMessage.go
- LexIntentConclusionStatementMessageList.go
- LexIntentConclusionStatementMessageList__checks.go
- LexIntentConclusionStatementMessageOutputReference.go
- LexIntentConclusionStatementMessageOutputReference__checks.go
- LexIntentConclusionStatementOutputReference.go
- LexIntentConclusionStatementOutputReference__checks.go
- LexIntentConfig.go
- LexIntentConfirmationPrompt.go
- LexIntentConfirmationPromptMessage.go
- LexIntentConfirmationPromptMessageList.go
- LexIntentConfirmationPromptMessageList__checks.go
- LexIntentConfirmationPromptMessageOutputReference.go
- LexIntentConfirmationPromptMessageOutputReference__checks.go
- LexIntentConfirmationPromptOutputReference.go
- LexIntentConfirmationPromptOutputReference__checks.go
- LexIntentDialogCodeHook.go
- LexIntentDialogCodeHookOutputReference.go
- LexIntentDialogCodeHookOutputReference__checks.go
- LexIntentFollowUpPrompt.go
- LexIntentFollowUpPromptOutputReference.go
- LexIntentFollowUpPromptOutputReference__checks.go
- LexIntentFollowUpPromptPrompt.go
- LexIntentFollowUpPromptPromptMessage.go
- LexIntentFollowUpPromptPromptMessageList.go
- LexIntentFollowUpPromptPromptMessageList__checks.go
- LexIntentFollowUpPromptPromptMessageOutputReference.go
- LexIntentFollowUpPromptPromptMessageOutputReference__checks.go
- LexIntentFollowUpPromptPromptOutputReference.go
- LexIntentFollowUpPromptPromptOutputReference__checks.go
- LexIntentFollowUpPromptRejectionStatement.go
- LexIntentFollowUpPromptRejectionStatementMessage.go
- LexIntentFollowUpPromptRejectionStatementMessageList.go
- LexIntentFollowUpPromptRejectionStatementMessageList__checks.go
- LexIntentFollowUpPromptRejectionStatementMessageOutputReference.go
- LexIntentFollowUpPromptRejectionStatementMessageOutputReference__checks.go
- LexIntentFollowUpPromptRejectionStatementOutputReference.go
- LexIntentFollowUpPromptRejectionStatementOutputReference__checks.go
- LexIntentFulfillmentActivity.go
- LexIntentFulfillmentActivityCodeHook.go
- LexIntentFulfillmentActivityCodeHookOutputReference.go
- LexIntentFulfillmentActivityCodeHookOutputReference__checks.go
- LexIntentFulfillmentActivityOutputReference.go
- LexIntentFulfillmentActivityOutputReference__checks.go
- LexIntentRejectionStatement.go
- LexIntentRejectionStatementMessage.go
- LexIntentRejectionStatementMessageList.go
- LexIntentRejectionStatementMessageList__checks.go
- LexIntentRejectionStatementMessageOutputReference.go
- LexIntentRejectionStatementMessageOutputReference__checks.go
- LexIntentRejectionStatementOutputReference.go
- LexIntentRejectionStatementOutputReference__checks.go
- LexIntentSlot.go
- LexIntentSlotList.go
- LexIntentSlotList__checks.go
- LexIntentSlotOutputReference.go
- LexIntentSlotOutputReference__checks.go
- LexIntentSlotValueElicitationPrompt.go
- LexIntentSlotValueElicitationPromptMessage.go
- LexIntentSlotValueElicitationPromptMessageList.go
- LexIntentSlotValueElicitationPromptMessageList__checks.go
- LexIntentSlotValueElicitationPromptMessageOutputReference.go
- LexIntentSlotValueElicitationPromptMessageOutputReference__checks.go
- LexIntentSlotValueElicitationPromptOutputReference.go
- LexIntentSlotValueElicitationPromptOutputReference__checks.go
- LexIntentTimeouts.go
- LexIntentTimeoutsOutputReference.go
- LexIntentTimeoutsOutputReference__checks.go
- LexIntent__checks.go
- main.go