lexmodelbuildingservice - ActiveState ActiveGo 1.8
...

Package lexmodelbuildingservice

import "github.com/aws/aws-sdk-go/service/lexmodelbuildingservice"
Overview
Index
Examples
Subdirectories

Overview ▾

Package lexmodelbuildingservice provides the client and types for making API requests to Amazon Lex Model Building Service.

Amazon Lex is an AWS service for building conversational voice and text interfaces. Use these actions to create, update, and delete conversational bots for new and existing client applications.

See https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19 for more information on this service.

See lexmodelbuildingservice package documentation for more information. https://docs.aws.amazon.com/sdk-for-go/api/service/lexmodelbuildingservice/

Using the Client

To use the client for Amazon Lex Model Building Service you will first need to create a new instance of it.

When creating a client for an AWS service you'll first need to have a Session already created. The Session provides configuration that can be shared between multiple service clients. Additional configuration can be applied to the Session and service's client when they are constructed. The aws package's Config type contains several fields such as Region for the AWS Region the client should make API requests too. The optional Config value can be provided as the variadic argument for Sessions and client creation.

Once the service's client is created you can use it to make API requests the AWS service. These clients are safe to use concurrently.

// Create a session to share configuration, and load external configuration.
sess := session.Must(session.NewSession())

// Create the service's client with the session.
svc := lexmodelbuildingservice.New(sess)

See the SDK's documentation for more information on how to use service clients. https://docs.aws.amazon.com/sdk-for-go/api/

See aws package's Config type for more information on configuration options. https://docs.aws.amazon.com/sdk-for-go/api/aws/#Config

See the Amazon Lex Model Building Service client LexModelBuildingService for more information on creating the service's client. https://docs.aws.amazon.com/sdk-for-go/api/service/lexmodelbuildingservice/#New

Once the client is created you can make an API request to the service. Each API method takes a input parameter, and returns the service response and an error.

The API method will document which error codes the service can be returned by the operation if the service models the API operation's errors. These errors will also be available as const strings prefixed with "ErrCode".

result, err := svc.CreateBotVersion(params)
if err != nil {
    // Cast err to awserr.Error to handle specific error codes.
    aerr, ok := err.(awserr.Error)
    if ok && aerr.Code() == <error code to check for> {
        // Specific error code handling
    }
    return err
}

fmt.Println("CreateBotVersion result:")
fmt.Println(result)

Using the Client with Context

The service's client also provides methods to make API requests with a Context value. This allows you to control the timeout, and cancellation of pending requests. These methods also take request Option as variadic parameter to apply additional configuration to the API request.

ctx := context.Background()

result, err := svc.CreateBotVersionWithContext(ctx, params)

See the request package documentation for more information on using Context pattern with the SDK. https://docs.aws.amazon.com/sdk-for-go/api/aws/request/

Index ▾

Constants
type BotAliasMetadata
    func (s BotAliasMetadata) GoString() string
    func (s *BotAliasMetadata) SetBotName(v string) *BotAliasMetadata
    func (s *BotAliasMetadata) SetBotVersion(v string) *BotAliasMetadata
    func (s *BotAliasMetadata) SetChecksum(v string) *BotAliasMetadata
    func (s *BotAliasMetadata) SetCreatedDate(v time.Time) *BotAliasMetadata
    func (s *BotAliasMetadata) SetDescription(v string) *BotAliasMetadata
    func (s *BotAliasMetadata) SetLastUpdatedDate(v time.Time) *BotAliasMetadata
    func (s *BotAliasMetadata) SetName(v string) *BotAliasMetadata
    func (s BotAliasMetadata) String() string
type BotChannelAssociation
    func (s BotChannelAssociation) GoString() string
    func (s *BotChannelAssociation) SetBotAlias(v string) *BotChannelAssociation
    func (s *BotChannelAssociation) SetBotConfiguration(v map[string]*string) *BotChannelAssociation
    func (s *BotChannelAssociation) SetBotName(v string) *BotChannelAssociation
    func (s *BotChannelAssociation) SetCreatedDate(v time.Time) *BotChannelAssociation
    func (s *BotChannelAssociation) SetDescription(v string) *BotChannelAssociation
    func (s *BotChannelAssociation) SetName(v string) *BotChannelAssociation
    func (s *BotChannelAssociation) SetType(v string) *BotChannelAssociation
    func (s BotChannelAssociation) String() string
type BotMetadata
    func (s BotMetadata) GoString() string
    func (s *BotMetadata) SetCreatedDate(v time.Time) *BotMetadata
    func (s *BotMetadata) SetDescription(v string) *BotMetadata
    func (s *BotMetadata) SetLastUpdatedDate(v time.Time) *BotMetadata
    func (s *BotMetadata) SetName(v string) *BotMetadata
    func (s *BotMetadata) SetStatus(v string) *BotMetadata
    func (s *BotMetadata) SetVersion(v string) *BotMetadata
    func (s BotMetadata) String() string
type BuiltinIntentMetadata
    func (s BuiltinIntentMetadata) GoString() string
    func (s *BuiltinIntentMetadata) SetSignature(v string) *BuiltinIntentMetadata
    func (s *BuiltinIntentMetadata) SetSupportedLocales(v []*string) *BuiltinIntentMetadata
    func (s BuiltinIntentMetadata) String() string
type BuiltinIntentSlot
    func (s BuiltinIntentSlot) GoString() string
    func (s *BuiltinIntentSlot) SetName(v string) *BuiltinIntentSlot
    func (s BuiltinIntentSlot) String() string
type BuiltinSlotTypeMetadata
    func (s BuiltinSlotTypeMetadata) GoString() string
    func (s *BuiltinSlotTypeMetadata) SetSignature(v string) *BuiltinSlotTypeMetadata
    func (s *BuiltinSlotTypeMetadata) SetSupportedLocales(v []*string) *BuiltinSlotTypeMetadata
    func (s BuiltinSlotTypeMetadata) String() string
type CodeHook
    func (s CodeHook) GoString() string
    func (s *CodeHook) SetMessageVersion(v string) *CodeHook
    func (s *CodeHook) SetUri(v string) *CodeHook
    func (s CodeHook) String() string
    func (s *CodeHook) Validate() error
type CreateBotVersionInput
    func (s CreateBotVersionInput) GoString() string
    func (s *CreateBotVersionInput) SetChecksum(v string) *CreateBotVersionInput
    func (s *CreateBotVersionInput) SetName(v string) *CreateBotVersionInput
    func (s CreateBotVersionInput) String() string
    func (s *CreateBotVersionInput) Validate() error
type CreateBotVersionOutput
    func (s CreateBotVersionOutput) GoString() string
    func (s *CreateBotVersionOutput) SetAbortStatement(v *Statement) *CreateBotVersionOutput
    func (s *CreateBotVersionOutput) SetChecksum(v string) *CreateBotVersionOutput
    func (s *CreateBotVersionOutput) SetChildDirected(v bool) *CreateBotVersionOutput
    func (s *CreateBotVersionOutput) SetClarificationPrompt(v *Prompt) *CreateBotVersionOutput
    func (s *CreateBotVersionOutput) SetCreatedDate(v time.Time) *CreateBotVersionOutput
    func (s *CreateBotVersionOutput) SetDescription(v string) *CreateBotVersionOutput
    func (s *CreateBotVersionOutput) SetFailureReason(v string) *CreateBotVersionOutput
    func (s *CreateBotVersionOutput) SetIdleSessionTTLInSeconds(v int64) *CreateBotVersionOutput
    func (s *CreateBotVersionOutput) SetIntents(v []*Intent) *CreateBotVersionOutput
    func (s *CreateBotVersionOutput) SetLastUpdatedDate(v time.Time) *CreateBotVersionOutput
    func (s *CreateBotVersionOutput) SetLocale(v string) *CreateBotVersionOutput
    func (s *CreateBotVersionOutput) SetName(v string) *CreateBotVersionOutput
    func (s *CreateBotVersionOutput) SetStatus(v string) *CreateBotVersionOutput
    func (s *CreateBotVersionOutput) SetVersion(v string) *CreateBotVersionOutput
    func (s *CreateBotVersionOutput) SetVoiceId(v string) *CreateBotVersionOutput
    func (s CreateBotVersionOutput) String() string
type CreateIntentVersionInput
    func (s CreateIntentVersionInput) GoString() string
    func (s *CreateIntentVersionInput) SetChecksum(v string) *CreateIntentVersionInput
    func (s *CreateIntentVersionInput) SetName(v string) *CreateIntentVersionInput
    func (s CreateIntentVersionInput) String() string
    func (s *CreateIntentVersionInput) Validate() error
type CreateIntentVersionOutput
    func (s CreateIntentVersionOutput) GoString() string
    func (s *CreateIntentVersionOutput) SetChecksum(v string) *CreateIntentVersionOutput
    func (s *CreateIntentVersionOutput) SetConclusionStatement(v *Statement) *CreateIntentVersionOutput
    func (s *CreateIntentVersionOutput) SetConfirmationPrompt(v *Prompt) *CreateIntentVersionOutput
    func (s *CreateIntentVersionOutput) SetCreatedDate(v time.Time) *CreateIntentVersionOutput
    func (s *CreateIntentVersionOutput) SetDescription(v string) *CreateIntentVersionOutput
    func (s *CreateIntentVersionOutput) SetDialogCodeHook(v *CodeHook) *CreateIntentVersionOutput
    func (s *CreateIntentVersionOutput) SetFollowUpPrompt(v *FollowUpPrompt) *CreateIntentVersionOutput
    func (s *CreateIntentVersionOutput) SetFulfillmentActivity(v *FulfillmentActivity) *CreateIntentVersionOutput
    func (s *CreateIntentVersionOutput) SetLastUpdatedDate(v time.Time) *CreateIntentVersionOutput
    func (s *CreateIntentVersionOutput) SetName(v string) *CreateIntentVersionOutput
    func (s *CreateIntentVersionOutput) SetParentIntentSignature(v string) *CreateIntentVersionOutput
    func (s *CreateIntentVersionOutput) SetRejectionStatement(v *Statement) *CreateIntentVersionOutput
    func (s *CreateIntentVersionOutput) SetSampleUtterances(v []*string) *CreateIntentVersionOutput
    func (s *CreateIntentVersionOutput) SetSlots(v []*Slot) *CreateIntentVersionOutput
    func (s *CreateIntentVersionOutput) SetVersion(v string) *CreateIntentVersionOutput
    func (s CreateIntentVersionOutput) String() string
type CreateSlotTypeVersionInput
    func (s CreateSlotTypeVersionInput) GoString() string
    func (s *CreateSlotTypeVersionInput) SetChecksum(v string) *CreateSlotTypeVersionInput
    func (s *CreateSlotTypeVersionInput) SetName(v string) *CreateSlotTypeVersionInput
    func (s CreateSlotTypeVersionInput) String() string
    func (s *CreateSlotTypeVersionInput) Validate() error
type CreateSlotTypeVersionOutput
    func (s CreateSlotTypeVersionOutput) GoString() string
    func (s *CreateSlotTypeVersionOutput) SetChecksum(v string) *CreateSlotTypeVersionOutput
    func (s *CreateSlotTypeVersionOutput) SetCreatedDate(v time.Time) *CreateSlotTypeVersionOutput
    func (s *CreateSlotTypeVersionOutput) SetDescription(v string) *CreateSlotTypeVersionOutput
    func (s *CreateSlotTypeVersionOutput) SetEnumerationValues(v []*EnumerationValue) *CreateSlotTypeVersionOutput
    func (s *CreateSlotTypeVersionOutput) SetLastUpdatedDate(v time.Time) *CreateSlotTypeVersionOutput
    func (s *CreateSlotTypeVersionOutput) SetName(v string) *CreateSlotTypeVersionOutput
    func (s *CreateSlotTypeVersionOutput) SetVersion(v string) *CreateSlotTypeVersionOutput
    func (s CreateSlotTypeVersionOutput) String() string
type DeleteBotAliasInput
    func (s DeleteBotAliasInput) GoString() string
    func (s *DeleteBotAliasInput) SetBotName(v string) *DeleteBotAliasInput
    func (s *DeleteBotAliasInput) SetName(v string) *DeleteBotAliasInput
    func (s DeleteBotAliasInput) String() string
    func (s *DeleteBotAliasInput) Validate() error
type DeleteBotAliasOutput
    func (s DeleteBotAliasOutput) GoString() string
    func (s DeleteBotAliasOutput) String() string
type DeleteBotChannelAssociationInput
    func (s DeleteBotChannelAssociationInput) GoString() string
    func (s *DeleteBotChannelAssociationInput) SetBotAlias(v string) *DeleteBotChannelAssociationInput
    func (s *DeleteBotChannelAssociationInput) SetBotName(v string) *DeleteBotChannelAssociationInput
    func (s *DeleteBotChannelAssociationInput) SetName(v string) *DeleteBotChannelAssociationInput
    func (s DeleteBotChannelAssociationInput) String() string
    func (s *DeleteBotChannelAssociationInput) Validate() error
type DeleteBotChannelAssociationOutput
    func (s DeleteBotChannelAssociationOutput) GoString() string
    func (s DeleteBotChannelAssociationOutput) String() string
type DeleteBotInput
    func (s DeleteBotInput) GoString() string
    func (s *DeleteBotInput) SetName(v string) *DeleteBotInput
    func (s DeleteBotInput) String() string
    func (s *DeleteBotInput) Validate() error
type DeleteBotOutput
    func (s DeleteBotOutput) GoString() string
    func (s DeleteBotOutput) String() string
type DeleteBotVersionInput
    func (s DeleteBotVersionInput) GoString() string
    func (s *DeleteBotVersionInput) SetName(v string) *DeleteBotVersionInput
    func (s *DeleteBotVersionInput) SetVersion(v string) *DeleteBotVersionInput
    func (s DeleteBotVersionInput) String() string
    func (s *DeleteBotVersionInput) Validate() error
type DeleteBotVersionOutput
    func (s DeleteBotVersionOutput) GoString() string
    func (s DeleteBotVersionOutput) String() string
type DeleteIntentInput
    func (s DeleteIntentInput) GoString() string
    func (s *DeleteIntentInput) SetName(v string) *DeleteIntentInput
    func (s DeleteIntentInput) String() string
    func (s *DeleteIntentInput) Validate() error
type DeleteIntentOutput
    func (s DeleteIntentOutput) GoString() string
    func (s DeleteIntentOutput) String() string
type DeleteIntentVersionInput
    func (s DeleteIntentVersionInput) GoString() string
    func (s *DeleteIntentVersionInput) SetName(v string) *DeleteIntentVersionInput
    func (s *DeleteIntentVersionInput) SetVersion(v string) *DeleteIntentVersionInput
    func (s DeleteIntentVersionInput) String() string
    func (s *DeleteIntentVersionInput) Validate() error
type DeleteIntentVersionOutput
    func (s DeleteIntentVersionOutput) GoString() string
    func (s DeleteIntentVersionOutput) String() string
type DeleteSlotTypeInput
    func (s DeleteSlotTypeInput) GoString() string
    func (s *DeleteSlotTypeInput) SetName(v string) *DeleteSlotTypeInput
    func (s DeleteSlotTypeInput) String() string
    func (s *DeleteSlotTypeInput) Validate() error
type DeleteSlotTypeOutput
    func (s DeleteSlotTypeOutput) GoString() string
    func (s DeleteSlotTypeOutput) String() string
type DeleteSlotTypeVersionInput
    func (s DeleteSlotTypeVersionInput) GoString() string
    func (s *DeleteSlotTypeVersionInput) SetName(v string) *DeleteSlotTypeVersionInput
    func (s *DeleteSlotTypeVersionInput) SetVersion(v string) *DeleteSlotTypeVersionInput
    func (s DeleteSlotTypeVersionInput) String() string
    func (s *DeleteSlotTypeVersionInput) Validate() error
type DeleteSlotTypeVersionOutput
    func (s DeleteSlotTypeVersionOutput) GoString() string
    func (s DeleteSlotTypeVersionOutput) String() string
type DeleteUtterancesInput
    func (s DeleteUtterancesInput) GoString() string
    func (s *DeleteUtterancesInput) SetBotName(v string) *DeleteUtterancesInput
    func (s *DeleteUtterancesInput) SetUserId(v string) *DeleteUtterancesInput
    func (s DeleteUtterancesInput) String() string
    func (s *DeleteUtterancesInput) Validate() error
type DeleteUtterancesOutput
    func (s DeleteUtterancesOutput) GoString() string
    func (s DeleteUtterancesOutput) String() string
type EnumerationValue
    func (s EnumerationValue) GoString() string
    func (s *EnumerationValue) SetValue(v string) *EnumerationValue
    func (s EnumerationValue) String() string
    func (s *EnumerationValue) Validate() error
type FollowUpPrompt
    func (s FollowUpPrompt) GoString() string
    func (s *FollowUpPrompt) SetPrompt(v *Prompt) *FollowUpPrompt
    func (s *FollowUpPrompt) SetRejectionStatement(v *Statement) *FollowUpPrompt
    func (s FollowUpPrompt) String() string
    func (s *FollowUpPrompt) Validate() error
type FulfillmentActivity
    func (s FulfillmentActivity) GoString() string
    func (s *FulfillmentActivity) SetCodeHook(v *CodeHook) *FulfillmentActivity
    func (s *FulfillmentActivity) SetType(v string) *FulfillmentActivity
    func (s FulfillmentActivity) String() string
    func (s *FulfillmentActivity) Validate() error
type GetBotAliasInput
    func (s GetBotAliasInput) GoString() string
    func (s *GetBotAliasInput) SetBotName(v string) *GetBotAliasInput
    func (s *GetBotAliasInput) SetName(v string) *GetBotAliasInput
    func (s GetBotAliasInput) String() string
    func (s *GetBotAliasInput) Validate() error
type GetBotAliasOutput
    func (s GetBotAliasOutput) GoString() string
    func (s *GetBotAliasOutput) SetBotName(v string) *GetBotAliasOutput
    func (s *GetBotAliasOutput) SetBotVersion(v string) *GetBotAliasOutput
    func (s *GetBotAliasOutput) SetChecksum(v string) *GetBotAliasOutput
    func (s *GetBotAliasOutput) SetCreatedDate(v time.Time) *GetBotAliasOutput
    func (s *GetBotAliasOutput) SetDescription(v string) *GetBotAliasOutput
    func (s *GetBotAliasOutput) SetLastUpdatedDate(v time.Time) *GetBotAliasOutput
    func (s *GetBotAliasOutput) SetName(v string) *GetBotAliasOutput
    func (s GetBotAliasOutput) String() string
type GetBotAliasesInput
    func (s GetBotAliasesInput) GoString() string
    func (s *GetBotAliasesInput) SetBotName(v string) *GetBotAliasesInput
    func (s *GetBotAliasesInput) SetMaxResults(v int64) *GetBotAliasesInput
    func (s *GetBotAliasesInput) SetNameContains(v string) *GetBotAliasesInput
    func (s *GetBotAliasesInput) SetNextToken(v string) *GetBotAliasesInput
    func (s GetBotAliasesInput) String() string
    func (s *GetBotAliasesInput) Validate() error
type GetBotAliasesOutput
    func (s GetBotAliasesOutput) GoString() string
    func (s *GetBotAliasesOutput) SetBotAliases(v []*BotAliasMetadata) *GetBotAliasesOutput
    func (s *GetBotAliasesOutput) SetNextToken(v string) *GetBotAliasesOutput
    func (s GetBotAliasesOutput) String() string
type GetBotChannelAssociationInput
    func (s GetBotChannelAssociationInput) GoString() string
    func (s *GetBotChannelAssociationInput) SetBotAlias(v string) *GetBotChannelAssociationInput
    func (s *GetBotChannelAssociationInput) SetBotName(v string) *GetBotChannelAssociationInput
    func (s *GetBotChannelAssociationInput) SetName(v string) *GetBotChannelAssociationInput
    func (s GetBotChannelAssociationInput) String() string
    func (s *GetBotChannelAssociationInput) Validate() error
type GetBotChannelAssociationOutput
    func (s GetBotChannelAssociationOutput) GoString() string
    func (s *GetBotChannelAssociationOutput) SetBotAlias(v string) *GetBotChannelAssociationOutput
    func (s *GetBotChannelAssociationOutput) SetBotConfiguration(v map[string]*string) *GetBotChannelAssociationOutput
    func (s *GetBotChannelAssociationOutput) SetBotName(v string) *GetBotChannelAssociationOutput
    func (s *GetBotChannelAssociationOutput) SetCreatedDate(v time.Time) *GetBotChannelAssociationOutput
    func (s *GetBotChannelAssociationOutput) SetDescription(v string) *GetBotChannelAssociationOutput
    func (s *GetBotChannelAssociationOutput) SetName(v string) *GetBotChannelAssociationOutput
    func (s *GetBotChannelAssociationOutput) SetType(v string) *GetBotChannelAssociationOutput
    func (s GetBotChannelAssociationOutput) String() string
type GetBotChannelAssociationsInput
    func (s GetBotChannelAssociationsInput) GoString() string
    func (s *GetBotChannelAssociationsInput) SetBotAlias(v string) *GetBotChannelAssociationsInput
    func (s *GetBotChannelAssociationsInput) SetBotName(v string) *GetBotChannelAssociationsInput
    func (s *GetBotChannelAssociationsInput) SetMaxResults(v int64) *GetBotChannelAssociationsInput
    func (s *GetBotChannelAssociationsInput) SetNameContains(v string) *GetBotChannelAssociationsInput
    func (s *GetBotChannelAssociationsInput) SetNextToken(v string) *GetBotChannelAssociationsInput
    func (s GetBotChannelAssociationsInput) String() string
    func (s *GetBotChannelAssociationsInput) Validate() error
type GetBotChannelAssociationsOutput
    func (s GetBotChannelAssociationsOutput) GoString() string
    func (s *GetBotChannelAssociationsOutput) SetBotChannelAssociations(v []*BotChannelAssociation) *GetBotChannelAssociationsOutput
    func (s *GetBotChannelAssociationsOutput) SetNextToken(v string) *GetBotChannelAssociationsOutput
    func (s GetBotChannelAssociationsOutput) String() string
type GetBotInput
    func (s GetBotInput) GoString() string
    func (s *GetBotInput) SetName(v string) *GetBotInput
    func (s *GetBotInput) SetVersionOrAlias(v string) *GetBotInput
    func (s GetBotInput) String() string
    func (s *GetBotInput) Validate() error
type GetBotOutput
    func (s GetBotOutput) GoString() string
    func (s *GetBotOutput) SetAbortStatement(v *Statement) *GetBotOutput
    func (s *GetBotOutput) SetChecksum(v string) *GetBotOutput
    func (s *GetBotOutput) SetChildDirected(v bool) *GetBotOutput
    func (s *GetBotOutput) SetClarificationPrompt(v *Prompt) *GetBotOutput
    func (s *GetBotOutput) SetCreatedDate(v time.Time) *GetBotOutput
    func (s *GetBotOutput) SetDescription(v string) *GetBotOutput
    func (s *GetBotOutput) SetFailureReason(v string) *GetBotOutput
    func (s *GetBotOutput) SetIdleSessionTTLInSeconds(v int64) *GetBotOutput
    func (s *GetBotOutput) SetIntents(v []*Intent) *GetBotOutput
    func (s *GetBotOutput) SetLastUpdatedDate(v time.Time) *GetBotOutput
    func (s *GetBotOutput) SetLocale(v string) *GetBotOutput
    func (s *GetBotOutput) SetName(v string) *GetBotOutput
    func (s *GetBotOutput) SetStatus(v string) *GetBotOutput
    func (s *GetBotOutput) SetVersion(v string) *GetBotOutput
    func (s *GetBotOutput) SetVoiceId(v string) *GetBotOutput
    func (s GetBotOutput) String() string
type GetBotVersionsInput
    func (s GetBotVersionsInput) GoString() string
    func (s *GetBotVersionsInput) SetMaxResults(v int64) *GetBotVersionsInput
    func (s *GetBotVersionsInput) SetName(v string) *GetBotVersionsInput
    func (s *GetBotVersionsInput) SetNextToken(v string) *GetBotVersionsInput
    func (s GetBotVersionsInput) String() string
    func (s *GetBotVersionsInput) Validate() error
type GetBotVersionsOutput
    func (s GetBotVersionsOutput) GoString() string
    func (s *GetBotVersionsOutput) SetBots(v []*BotMetadata) *GetBotVersionsOutput
    func (s *GetBotVersionsOutput) SetNextToken(v string) *GetBotVersionsOutput
    func (s GetBotVersionsOutput) String() string
type GetBotsInput
    func (s GetBotsInput) GoString() string
    func (s *GetBotsInput) SetMaxResults(v int64) *GetBotsInput
    func (s *GetBotsInput) SetNameContains(v string) *GetBotsInput
    func (s *GetBotsInput) SetNextToken(v string) *GetBotsInput
    func (s GetBotsInput) String() string
    func (s *GetBotsInput) Validate() error
type GetBotsOutput
    func (s GetBotsOutput) GoString() string
    func (s *GetBotsOutput) SetBots(v []*BotMetadata) *GetBotsOutput
    func (s *GetBotsOutput) SetNextToken(v string) *GetBotsOutput
    func (s GetBotsOutput) String() string
type GetBuiltinIntentInput
    func (s GetBuiltinIntentInput) GoString() string
    func (s *GetBuiltinIntentInput) SetSignature(v string) *GetBuiltinIntentInput
    func (s GetBuiltinIntentInput) String() string
    func (s *GetBuiltinIntentInput) Validate() error
type GetBuiltinIntentOutput
    func (s GetBuiltinIntentOutput) GoString() string
    func (s *GetBuiltinIntentOutput) SetSignature(v string) *GetBuiltinIntentOutput
    func (s *GetBuiltinIntentOutput) SetSlots(v []*BuiltinIntentSlot) *GetBuiltinIntentOutput
    func (s *GetBuiltinIntentOutput) SetSupportedLocales(v []*string) *GetBuiltinIntentOutput
    func (s GetBuiltinIntentOutput) String() string
type GetBuiltinIntentsInput
    func (s GetBuiltinIntentsInput) GoString() string
    func (s *GetBuiltinIntentsInput) SetLocale(v string) *GetBuiltinIntentsInput
    func (s *GetBuiltinIntentsInput) SetMaxResults(v int64) *GetBuiltinIntentsInput
    func (s *GetBuiltinIntentsInput) SetNextToken(v string) *GetBuiltinIntentsInput
    func (s *GetBuiltinIntentsInput) SetSignatureContains(v string) *GetBuiltinIntentsInput
    func (s GetBuiltinIntentsInput) String() string
    func (s *GetBuiltinIntentsInput) Validate() error
type GetBuiltinIntentsOutput
    func (s GetBuiltinIntentsOutput) GoString() string
    func (s *GetBuiltinIntentsOutput) SetIntents(v []*BuiltinIntentMetadata) *GetBuiltinIntentsOutput
    func (s *GetBuiltinIntentsOutput) SetNextToken(v string) *GetBuiltinIntentsOutput
    func (s GetBuiltinIntentsOutput) String() string
type GetBuiltinSlotTypesInput
    func (s GetBuiltinSlotTypesInput) GoString() string
    func (s *GetBuiltinSlotTypesInput) SetLocale(v string) *GetBuiltinSlotTypesInput
    func (s *GetBuiltinSlotTypesInput) SetMaxResults(v int64) *GetBuiltinSlotTypesInput
    func (s *GetBuiltinSlotTypesInput) SetNextToken(v string) *GetBuiltinSlotTypesInput
    func (s *GetBuiltinSlotTypesInput) SetSignatureContains(v string) *GetBuiltinSlotTypesInput
    func (s GetBuiltinSlotTypesInput) String() string
    func (s *GetBuiltinSlotTypesInput) Validate() error
type GetBuiltinSlotTypesOutput
    func (s GetBuiltinSlotTypesOutput) GoString() string
    func (s *GetBuiltinSlotTypesOutput) SetNextToken(v string) *GetBuiltinSlotTypesOutput
    func (s *GetBuiltinSlotTypesOutput) SetSlotTypes(v []*BuiltinSlotTypeMetadata) *GetBuiltinSlotTypesOutput
    func (s GetBuiltinSlotTypesOutput) String() string
type GetIntentInput
    func (s GetIntentInput) GoString() string
    func (s *GetIntentInput) SetName(v string) *GetIntentInput
    func (s *GetIntentInput) SetVersion(v string) *GetIntentInput
    func (s GetIntentInput) String() string
    func (s *GetIntentInput) Validate() error
type GetIntentOutput
    func (s GetIntentOutput) GoString() string
    func (s *GetIntentOutput) SetChecksum(v string) *GetIntentOutput
    func (s *GetIntentOutput) SetConclusionStatement(v *Statement) *GetIntentOutput
    func (s *GetIntentOutput) SetConfirmationPrompt(v *Prompt) *GetIntentOutput
    func (s *GetIntentOutput) SetCreatedDate(v time.Time) *GetIntentOutput
    func (s *GetIntentOutput) SetDescription(v string) *GetIntentOutput
    func (s *GetIntentOutput) SetDialogCodeHook(v *CodeHook) *GetIntentOutput
    func (s *GetIntentOutput) SetFollowUpPrompt(v *FollowUpPrompt) *GetIntentOutput
    func (s *GetIntentOutput) SetFulfillmentActivity(v *FulfillmentActivity) *GetIntentOutput
    func (s *GetIntentOutput) SetLastUpdatedDate(v time.Time) *GetIntentOutput
    func (s *GetIntentOutput) SetName(v string) *GetIntentOutput
    func (s *GetIntentOutput) SetParentIntentSignature(v string) *GetIntentOutput
    func (s *GetIntentOutput) SetRejectionStatement(v *Statement) *GetIntentOutput
    func (s *GetIntentOutput) SetSampleUtterances(v []*string) *GetIntentOutput
    func (s *GetIntentOutput) SetSlots(v []*Slot) *GetIntentOutput
    func (s *GetIntentOutput) SetVersion(v string) *GetIntentOutput
    func (s GetIntentOutput) String() string
type GetIntentVersionsInput
    func (s GetIntentVersionsInput) GoString() string
    func (s *GetIntentVersionsInput) SetMaxResults(v int64) *GetIntentVersionsInput
    func (s *GetIntentVersionsInput) SetName(v string) *GetIntentVersionsInput
    func (s *GetIntentVersionsInput) SetNextToken(v string) *GetIntentVersionsInput
    func (s GetIntentVersionsInput) String() string
    func (s *GetIntentVersionsInput) Validate() error
type GetIntentVersionsOutput
    func (s GetIntentVersionsOutput) GoString() string
    func (s *GetIntentVersionsOutput) SetIntents(v []*IntentMetadata) *GetIntentVersionsOutput
    func (s *GetIntentVersionsOutput) SetNextToken(v string) *GetIntentVersionsOutput
    func (s GetIntentVersionsOutput) String() string
type GetIntentsInput
    func (s GetIntentsInput) GoString() string
    func (s *GetIntentsInput) SetMaxResults(v int64) *GetIntentsInput
    func (s *GetIntentsInput) SetNameContains(v string) *GetIntentsInput
    func (s *GetIntentsInput) SetNextToken(v string) *GetIntentsInput
    func (s GetIntentsInput) String() string
    func (s *GetIntentsInput) Validate() error
type GetIntentsOutput
    func (s GetIntentsOutput) GoString() string
    func (s *GetIntentsOutput) SetIntents(v []*IntentMetadata) *GetIntentsOutput
    func (s *GetIntentsOutput) SetNextToken(v string) *GetIntentsOutput
    func (s GetIntentsOutput) String() string
type GetSlotTypeInput
    func (s GetSlotTypeInput) GoString() string
    func (s *GetSlotTypeInput) SetName(v string) *GetSlotTypeInput
    func (s *GetSlotTypeInput) SetVersion(v string) *GetSlotTypeInput
    func (s GetSlotTypeInput) String() string
    func (s *GetSlotTypeInput) Validate() error
type GetSlotTypeOutput
    func (s GetSlotTypeOutput) GoString() string
    func (s *GetSlotTypeOutput) SetChecksum(v string) *GetSlotTypeOutput
    func (s *GetSlotTypeOutput) SetCreatedDate(v time.Time) *GetSlotTypeOutput
    func (s *GetSlotTypeOutput) SetDescription(v string) *GetSlotTypeOutput
    func (s *GetSlotTypeOutput) SetEnumerationValues(v []*EnumerationValue) *GetSlotTypeOutput
    func (s *GetSlotTypeOutput) SetLastUpdatedDate(v time.Time) *GetSlotTypeOutput
    func (s *GetSlotTypeOutput) SetName(v string) *GetSlotTypeOutput
    func (s *GetSlotTypeOutput) SetVersion(v string) *GetSlotTypeOutput
    func (s GetSlotTypeOutput) String() string
type GetSlotTypeVersionsInput
    func (s GetSlotTypeVersionsInput) GoString() string
    func (s *GetSlotTypeVersionsInput) SetMaxResults(v int64) *GetSlotTypeVersionsInput
    func (s *GetSlotTypeVersionsInput) SetName(v string) *GetSlotTypeVersionsInput
    func (s *GetSlotTypeVersionsInput) SetNextToken(v string) *GetSlotTypeVersionsInput
    func (s GetSlotTypeVersionsInput) String() string
    func (s *GetSlotTypeVersionsInput) Validate() error
type GetSlotTypeVersionsOutput
    func (s GetSlotTypeVersionsOutput) GoString() string
    func (s *GetSlotTypeVersionsOutput) SetNextToken(v string) *GetSlotTypeVersionsOutput
    func (s *GetSlotTypeVersionsOutput) SetSlotTypes(v []*SlotTypeMetadata) *GetSlotTypeVersionsOutput
    func (s GetSlotTypeVersionsOutput) String() string
type GetSlotTypesInput
    func (s GetSlotTypesInput) GoString() string
    func (s *GetSlotTypesInput) SetMaxResults(v int64) *GetSlotTypesInput
    func (s *GetSlotTypesInput) SetNameContains(v string) *GetSlotTypesInput
    func (s *GetSlotTypesInput) SetNextToken(v string) *GetSlotTypesInput
    func (s GetSlotTypesInput) String() string
    func (s *GetSlotTypesInput) Validate() error
type GetSlotTypesOutput
    func (s GetSlotTypesOutput) GoString() string
    func (s *GetSlotTypesOutput) SetNextToken(v string) *GetSlotTypesOutput
    func (s *GetSlotTypesOutput) SetSlotTypes(v []*SlotTypeMetadata) *GetSlotTypesOutput
    func (s GetSlotTypesOutput) String() string
type GetUtterancesViewInput
    func (s GetUtterancesViewInput) GoString() string
    func (s *GetUtterancesViewInput) SetBotName(v string) *GetUtterancesViewInput
    func (s *GetUtterancesViewInput) SetBotVersions(v []*string) *GetUtterancesViewInput
    func (s *GetUtterancesViewInput) SetStatusType(v string) *GetUtterancesViewInput
    func (s GetUtterancesViewInput) String() string
    func (s *GetUtterancesViewInput) Validate() error
type GetUtterancesViewOutput
    func (s GetUtterancesViewOutput) GoString() string
    func (s *GetUtterancesViewOutput) SetBotName(v string) *GetUtterancesViewOutput
    func (s *GetUtterancesViewOutput) SetUtterances(v []*UtteranceList) *GetUtterancesViewOutput
    func (s GetUtterancesViewOutput) String() string
type Intent
    func (s Intent) GoString() string
    func (s *Intent) SetIntentName(v string) *Intent
    func (s *Intent) SetIntentVersion(v string) *Intent
    func (s Intent) String() string
    func (s *Intent) Validate() error
type IntentMetadata
    func (s IntentMetadata) GoString() string
    func (s *IntentMetadata) SetCreatedDate(v time.Time) *IntentMetadata
    func (s *IntentMetadata) SetDescription(v string) *IntentMetadata
    func (s *IntentMetadata) SetLastUpdatedDate(v time.Time) *IntentMetadata
    func (s *IntentMetadata) SetName(v string) *IntentMetadata
    func (s *IntentMetadata) SetVersion(v string) *IntentMetadata
    func (s IntentMetadata) String() string
type LexModelBuildingService
    func New(p client.ConfigProvider, cfgs ...*aws.Config) *LexModelBuildingService
    func (c *LexModelBuildingService) CreateBotVersion(input *CreateBotVersionInput) (*CreateBotVersionOutput, error)
    func (c *LexModelBuildingService) CreateBotVersionRequest(input *CreateBotVersionInput) (req *request.Request, output *CreateBotVersionOutput)
    func (c *LexModelBuildingService) CreateBotVersionWithContext(ctx aws.Context, input *CreateBotVersionInput, opts ...request.Option) (*CreateBotVersionOutput, error)
    func (c *LexModelBuildingService) CreateIntentVersion(input *CreateIntentVersionInput) (*CreateIntentVersionOutput, error)
    func (c *LexModelBuildingService) CreateIntentVersionRequest(input *CreateIntentVersionInput) (req *request.Request, output *CreateIntentVersionOutput)
    func (c *LexModelBuildingService) CreateIntentVersionWithContext(ctx aws.Context, input *CreateIntentVersionInput, opts ...request.Option) (*CreateIntentVersionOutput, error)
    func (c *LexModelBuildingService) CreateSlotTypeVersion(input *CreateSlotTypeVersionInput) (*CreateSlotTypeVersionOutput, error)
    func (c *LexModelBuildingService) CreateSlotTypeVersionRequest(input *CreateSlotTypeVersionInput) (req *request.Request, output *CreateSlotTypeVersionOutput)
    func (c *LexModelBuildingService) CreateSlotTypeVersionWithContext(ctx aws.Context, input *CreateSlotTypeVersionInput, opts ...request.Option) (*CreateSlotTypeVersionOutput, error)
    func (c *LexModelBuildingService) DeleteBot(input *DeleteBotInput) (*DeleteBotOutput, error)
    func (c *LexModelBuildingService) DeleteBotAlias(input *DeleteBotAliasInput) (*DeleteBotAliasOutput, error)
    func (c *LexModelBuildingService) DeleteBotAliasRequest(input *DeleteBotAliasInput) (req *request.Request, output *DeleteBotAliasOutput)
    func (c *LexModelBuildingService) DeleteBotAliasWithContext(ctx aws.Context, input *DeleteBotAliasInput, opts ...request.Option) (*DeleteBotAliasOutput, error)
    func (c *LexModelBuildingService) DeleteBotChannelAssociation(input *DeleteBotChannelAssociationInput) (*DeleteBotChannelAssociationOutput, error)
    func (c *LexModelBuildingService) DeleteBotChannelAssociationRequest(input *DeleteBotChannelAssociationInput) (req *request.Request, output *DeleteBotChannelAssociationOutput)
    func (c *LexModelBuildingService) DeleteBotChannelAssociationWithContext(ctx aws.Context, input *DeleteBotChannelAssociationInput, opts ...request.Option) (*DeleteBotChannelAssociationOutput, error)
    func (c *LexModelBuildingService) DeleteBotRequest(input *DeleteBotInput) (req *request.Request, output *DeleteBotOutput)
    func (c *LexModelBuildingService) DeleteBotVersion(input *DeleteBotVersionInput) (*DeleteBotVersionOutput, error)
    func (c *LexModelBuildingService) DeleteBotVersionRequest(input *DeleteBotVersionInput) (req *request.Request, output *DeleteBotVersionOutput)
    func (c *LexModelBuildingService) DeleteBotVersionWithContext(ctx aws.Context, input *DeleteBotVersionInput, opts ...request.Option) (*DeleteBotVersionOutput, error)
    func (c *LexModelBuildingService) DeleteBotWithContext(ctx aws.Context, input *DeleteBotInput, opts ...request.Option) (*DeleteBotOutput, error)
    func (c *LexModelBuildingService) DeleteIntent(input *DeleteIntentInput) (*DeleteIntentOutput, error)
    func (c *LexModelBuildingService) DeleteIntentRequest(input *DeleteIntentInput) (req *request.Request, output *DeleteIntentOutput)
    func (c *LexModelBuildingService) DeleteIntentVersion(input *DeleteIntentVersionInput) (*DeleteIntentVersionOutput, error)
    func (c *LexModelBuildingService) DeleteIntentVersionRequest(input *DeleteIntentVersionInput) (req *request.Request, output *DeleteIntentVersionOutput)
    func (c *LexModelBuildingService) DeleteIntentVersionWithContext(ctx aws.Context, input *DeleteIntentVersionInput, opts ...request.Option) (*DeleteIntentVersionOutput, error)
    func (c *LexModelBuildingService) DeleteIntentWithContext(ctx aws.Context, input *DeleteIntentInput, opts ...request.Option) (*DeleteIntentOutput, error)
    func (c *LexModelBuildingService) DeleteSlotType(input *DeleteSlotTypeInput) (*DeleteSlotTypeOutput, error)
    func (c *LexModelBuildingService) DeleteSlotTypeRequest(input *DeleteSlotTypeInput) (req *request.Request, output *DeleteSlotTypeOutput)
    func (c *LexModelBuildingService) DeleteSlotTypeVersion(input *DeleteSlotTypeVersionInput) (*DeleteSlotTypeVersionOutput, error)
    func (c *LexModelBuildingService) DeleteSlotTypeVersionRequest(input *DeleteSlotTypeVersionInput) (req *request.Request, output *DeleteSlotTypeVersionOutput)
    func (c *LexModelBuildingService) DeleteSlotTypeVersionWithContext(ctx aws.Context, input *DeleteSlotTypeVersionInput, opts ...request.Option) (*DeleteSlotTypeVersionOutput, error)
    func (c *LexModelBuildingService) DeleteSlotTypeWithContext(ctx aws.Context, input *DeleteSlotTypeInput, opts ...request.Option) (*DeleteSlotTypeOutput, error)
    func (c *LexModelBuildingService) DeleteUtterances(input *DeleteUtterancesInput) (*DeleteUtterancesOutput, error)
    func (c *LexModelBuildingService) DeleteUtterancesRequest(input *DeleteUtterancesInput) (req *request.Request, output *DeleteUtterancesOutput)
    func (c *LexModelBuildingService) DeleteUtterancesWithContext(ctx aws.Context, input *DeleteUtterancesInput, opts ...request.Option) (*DeleteUtterancesOutput, error)
    func (c *LexModelBuildingService) GetBot(input *GetBotInput) (*GetBotOutput, error)
    func (c *LexModelBuildingService) GetBotAlias(input *GetBotAliasInput) (*GetBotAliasOutput, error)
    func (c *LexModelBuildingService) GetBotAliasRequest(input *GetBotAliasInput) (req *request.Request, output *GetBotAliasOutput)
    func (c *LexModelBuildingService) GetBotAliasWithContext(ctx aws.Context, input *GetBotAliasInput, opts ...request.Option) (*GetBotAliasOutput, error)
    func (c *LexModelBuildingService) GetBotAliases(input *GetBotAliasesInput) (*GetBotAliasesOutput, error)
    func (c *LexModelBuildingService) GetBotAliasesPages(input *GetBotAliasesInput, fn func(*GetBotAliasesOutput, bool) bool) error
    func (c *LexModelBuildingService) GetBotAliasesPagesWithContext(ctx aws.Context, input *GetBotAliasesInput, fn func(*GetBotAliasesOutput, bool) bool, opts ...request.Option) error
    func (c *LexModelBuildingService) GetBotAliasesRequest(input *GetBotAliasesInput) (req *request.Request, output *GetBotAliasesOutput)
    func (c *LexModelBuildingService) GetBotAliasesWithContext(ctx aws.Context, input *GetBotAliasesInput, opts ...request.Option) (*GetBotAliasesOutput, error)
    func (c *LexModelBuildingService) GetBotChannelAssociation(input *GetBotChannelAssociationInput) (*GetBotChannelAssociationOutput, error)
    func (c *LexModelBuildingService) GetBotChannelAssociationRequest(input *GetBotChannelAssociationInput) (req *request.Request, output *GetBotChannelAssociationOutput)
    func (c *LexModelBuildingService) GetBotChannelAssociationWithContext(ctx aws.Context, input *GetBotChannelAssociationInput, opts ...request.Option) (*GetBotChannelAssociationOutput, error)
    func (c *LexModelBuildingService) GetBotChannelAssociations(input *GetBotChannelAssociationsInput) (*GetBotChannelAssociationsOutput, error)
    func (c *LexModelBuildingService) GetBotChannelAssociationsPages(input *GetBotChannelAssociationsInput, fn func(*GetBotChannelAssociationsOutput, bool) bool) error
    func (c *LexModelBuildingService) GetBotChannelAssociationsPagesWithContext(ctx aws.Context, input *GetBotChannelAssociationsInput, fn func(*GetBotChannelAssociationsOutput, bool) bool, opts ...request.Option) error
    func (c *LexModelBuildingService) GetBotChannelAssociationsRequest(input *GetBotChannelAssociationsInput) (req *request.Request, output *GetBotChannelAssociationsOutput)
    func (c *LexModelBuildingService) GetBotChannelAssociationsWithContext(ctx aws.Context, input *GetBotChannelAssociationsInput, opts ...request.Option) (*GetBotChannelAssociationsOutput, error)
    func (c *LexModelBuildingService) GetBotRequest(input *GetBotInput) (req *request.Request, output *GetBotOutput)
    func (c *LexModelBuildingService) GetBotVersions(input *GetBotVersionsInput) (*GetBotVersionsOutput, error)
    func (c *LexModelBuildingService) GetBotVersionsPages(input *GetBotVersionsInput, fn func(*GetBotVersionsOutput, bool) bool) error
    func (c *LexModelBuildingService) GetBotVersionsPagesWithContext(ctx aws.Context, input *GetBotVersionsInput, fn func(*GetBotVersionsOutput, bool) bool, opts ...request.Option) error
    func (c *LexModelBuildingService) GetBotVersionsRequest(input *GetBotVersionsInput) (req *request.Request, output *GetBotVersionsOutput)
    func (c *LexModelBuildingService) GetBotVersionsWithContext(ctx aws.Context, input *GetBotVersionsInput, opts ...request.Option) (*GetBotVersionsOutput, error)
    func (c *LexModelBuildingService) GetBotWithContext(ctx aws.Context, input *GetBotInput, opts ...request.Option) (*GetBotOutput, error)
    func (c *LexModelBuildingService) GetBots(input *GetBotsInput) (*GetBotsOutput, error)
    func (c *LexModelBuildingService) GetBotsPages(input *GetBotsInput, fn func(*GetBotsOutput, bool) bool) error
    func (c *LexModelBuildingService) GetBotsPagesWithContext(ctx aws.Context, input *GetBotsInput, fn func(*GetBotsOutput, bool) bool, opts ...request.Option) error
    func (c *LexModelBuildingService) GetBotsRequest(input *GetBotsInput) (req *request.Request, output *GetBotsOutput)
    func (c *LexModelBuildingService) GetBotsWithContext(ctx aws.Context, input *GetBotsInput, opts ...request.Option) (*GetBotsOutput, error)
    func (c *LexModelBuildingService) GetBuiltinIntent(input *GetBuiltinIntentInput) (*GetBuiltinIntentOutput, error)
    func (c *LexModelBuildingService) GetBuiltinIntentRequest(input *GetBuiltinIntentInput) (req *request.Request, output *GetBuiltinIntentOutput)
    func (c *LexModelBuildingService) GetBuiltinIntentWithContext(ctx aws.Context, input *GetBuiltinIntentInput, opts ...request.Option) (*GetBuiltinIntentOutput, error)
    func (c *LexModelBuildingService) GetBuiltinIntents(input *GetBuiltinIntentsInput) (*GetBuiltinIntentsOutput, error)
    func (c *LexModelBuildingService) GetBuiltinIntentsPages(input *GetBuiltinIntentsInput, fn func(*GetBuiltinIntentsOutput, bool) bool) error
    func (c *LexModelBuildingService) GetBuiltinIntentsPagesWithContext(ctx aws.Context, input *GetBuiltinIntentsInput, fn func(*GetBuiltinIntentsOutput, bool) bool, opts ...request.Option) error
    func (c *LexModelBuildingService) GetBuiltinIntentsRequest(input *GetBuiltinIntentsInput) (req *request.Request, output *GetBuiltinIntentsOutput)
    func (c *LexModelBuildingService) GetBuiltinIntentsWithContext(ctx aws.Context, input *GetBuiltinIntentsInput, opts ...request.Option) (*GetBuiltinIntentsOutput, error)
    func (c *LexModelBuildingService) GetBuiltinSlotTypes(input *GetBuiltinSlotTypesInput) (*GetBuiltinSlotTypesOutput, error)
    func (c *LexModelBuildingService) GetBuiltinSlotTypesPages(input *GetBuiltinSlotTypesInput, fn func(*GetBuiltinSlotTypesOutput, bool) bool) error
    func (c *LexModelBuildingService) GetBuiltinSlotTypesPagesWithContext(ctx aws.Context, input *GetBuiltinSlotTypesInput, fn func(*GetBuiltinSlotTypesOutput, bool) bool, opts ...request.Option) error
    func (c *LexModelBuildingService) GetBuiltinSlotTypesRequest(input *GetBuiltinSlotTypesInput) (req *request.Request, output *GetBuiltinSlotTypesOutput)
    func (c *LexModelBuildingService) GetBuiltinSlotTypesWithContext(ctx aws.Context, input *GetBuiltinSlotTypesInput, opts ...request.Option) (*GetBuiltinSlotTypesOutput, error)
    func (c *LexModelBuildingService) GetIntent(input *GetIntentInput) (*GetIntentOutput, error)
    func (c *LexModelBuildingService) GetIntentRequest(input *GetIntentInput) (req *request.Request, output *GetIntentOutput)
    func (c *LexModelBuildingService) GetIntentVersions(input *GetIntentVersionsInput) (*GetIntentVersionsOutput, error)
    func (c *LexModelBuildingService) GetIntentVersionsPages(input *GetIntentVersionsInput, fn func(*GetIntentVersionsOutput, bool) bool) error
    func (c *LexModelBuildingService) GetIntentVersionsPagesWithContext(ctx aws.Context, input *GetIntentVersionsInput, fn func(*GetIntentVersionsOutput, bool) bool, opts ...request.Option) error
    func (c *LexModelBuildingService) GetIntentVersionsRequest(input *GetIntentVersionsInput) (req *request.Request, output *GetIntentVersionsOutput)
    func (c *LexModelBuildingService) GetIntentVersionsWithContext(ctx aws.Context, input *GetIntentVersionsInput, opts ...request.Option) (*GetIntentVersionsOutput, error)
    func (c *LexModelBuildingService) GetIntentWithContext(ctx aws.Context, input *GetIntentInput, opts ...request.Option) (*GetIntentOutput, error)
    func (c *LexModelBuildingService) GetIntents(input *GetIntentsInput) (*GetIntentsOutput, error)
    func (c *LexModelBuildingService) GetIntentsPages(input *GetIntentsInput, fn func(*GetIntentsOutput, bool) bool) error
    func (c *LexModelBuildingService) GetIntentsPagesWithContext(ctx aws.Context, input *GetIntentsInput, fn func(*GetIntentsOutput, bool) bool, opts ...request.Option) error
    func (c *LexModelBuildingService) GetIntentsRequest(input *GetIntentsInput) (req *request.Request, output *GetIntentsOutput)
    func (c *LexModelBuildingService) GetIntentsWithContext(ctx aws.Context, input *GetIntentsInput, opts ...request.Option) (*GetIntentsOutput, error)
    func (c *LexModelBuildingService) GetSlotType(input *GetSlotTypeInput) (*GetSlotTypeOutput, error)
    func (c *LexModelBuildingService) GetSlotTypeRequest(input *GetSlotTypeInput) (req *request.Request, output *GetSlotTypeOutput)
    func (c *LexModelBuildingService) GetSlotTypeVersions(input *GetSlotTypeVersionsInput) (*GetSlotTypeVersionsOutput, error)
    func (c *LexModelBuildingService) GetSlotTypeVersionsPages(input *GetSlotTypeVersionsInput, fn func(*GetSlotTypeVersionsOutput, bool) bool) error
    func (c *LexModelBuildingService) GetSlotTypeVersionsPagesWithContext(ctx aws.Context, input *GetSlotTypeVersionsInput, fn func(*GetSlotTypeVersionsOutput, bool) bool, opts ...request.Option) error
    func (c *LexModelBuildingService) GetSlotTypeVersionsRequest(input *GetSlotTypeVersionsInput) (req *request.Request, output *GetSlotTypeVersionsOutput)
    func (c *LexModelBuildingService) GetSlotTypeVersionsWithContext(ctx aws.Context, input *GetSlotTypeVersionsInput, opts ...request.Option) (*GetSlotTypeVersionsOutput, error)
    func (c *LexModelBuildingService) GetSlotTypeWithContext(ctx aws.Context, input *GetSlotTypeInput, opts ...request.Option) (*GetSlotTypeOutput, error)
    func (c *LexModelBuildingService) GetSlotTypes(input *GetSlotTypesInput) (*GetSlotTypesOutput, error)
    func (c *LexModelBuildingService) GetSlotTypesPages(input *GetSlotTypesInput, fn func(*GetSlotTypesOutput, bool) bool) error
    func (c *LexModelBuildingService) GetSlotTypesPagesWithContext(ctx aws.Context, input *GetSlotTypesInput, fn func(*GetSlotTypesOutput, bool) bool, opts ...request.Option) error
    func (c *LexModelBuildingService) GetSlotTypesRequest(input *GetSlotTypesInput) (req *request.Request, output *GetSlotTypesOutput)
    func (c *LexModelBuildingService) GetSlotTypesWithContext(ctx aws.Context, input *GetSlotTypesInput, opts ...request.Option) (*GetSlotTypesOutput, error)
    func (c *LexModelBuildingService) GetUtterancesView(input *GetUtterancesViewInput) (*GetUtterancesViewOutput, error)
    func (c *LexModelBuildingService) GetUtterancesViewRequest(input *GetUtterancesViewInput) (req *request.Request, output *GetUtterancesViewOutput)
    func (c *LexModelBuildingService) GetUtterancesViewWithContext(ctx aws.Context, input *GetUtterancesViewInput, opts ...request.Option) (*GetUtterancesViewOutput, error)
    func (c *LexModelBuildingService) PutBot(input *PutBotInput) (*PutBotOutput, error)
    func (c *LexModelBuildingService) PutBotAlias(input *PutBotAliasInput) (*PutBotAliasOutput, error)
    func (c *LexModelBuildingService) PutBotAliasRequest(input *PutBotAliasInput) (req *request.Request, output *PutBotAliasOutput)
    func (c *LexModelBuildingService) PutBotAliasWithContext(ctx aws.Context, input *PutBotAliasInput, opts ...request.Option) (*PutBotAliasOutput, error)
    func (c *LexModelBuildingService) PutBotRequest(input *PutBotInput) (req *request.Request, output *PutBotOutput)
    func (c *LexModelBuildingService) PutBotWithContext(ctx aws.Context, input *PutBotInput, opts ...request.Option) (*PutBotOutput, error)
    func (c *LexModelBuildingService) PutIntent(input *PutIntentInput) (*PutIntentOutput, error)
    func (c *LexModelBuildingService) PutIntentRequest(input *PutIntentInput) (req *request.Request, output *PutIntentOutput)
    func (c *LexModelBuildingService) PutIntentWithContext(ctx aws.Context, input *PutIntentInput, opts ...request.Option) (*PutIntentOutput, error)
    func (c *LexModelBuildingService) PutSlotType(input *PutSlotTypeInput) (*PutSlotTypeOutput, error)
    func (c *LexModelBuildingService) PutSlotTypeRequest(input *PutSlotTypeInput) (req *request.Request, output *PutSlotTypeOutput)
    func (c *LexModelBuildingService) PutSlotTypeWithContext(ctx aws.Context, input *PutSlotTypeInput, opts ...request.Option) (*PutSlotTypeOutput, error)
type Message
    func (s Message) GoString() string
    func (s *Message) SetContent(v string) *Message
    func (s *Message) SetContentType(v string) *Message
    func (s Message) String() string
    func (s *Message) Validate() error
type Prompt
    func (s Prompt) GoString() string
    func (s *Prompt) SetMaxAttempts(v int64) *Prompt
    func (s *Prompt) SetMessages(v []*Message) *Prompt
    func (s *Prompt) SetResponseCard(v string) *Prompt
    func (s Prompt) String() string
    func (s *Prompt) Validate() error
type PutBotAliasInput
    func (s PutBotAliasInput) GoString() string
    func (s *PutBotAliasInput) SetBotName(v string) *PutBotAliasInput
    func (s *PutBotAliasInput) SetBotVersion(v string) *PutBotAliasInput
    func (s *PutBotAliasInput) SetChecksum(v string) *PutBotAliasInput
    func (s *PutBotAliasInput) SetDescription(v string) *PutBotAliasInput
    func (s *PutBotAliasInput) SetName(v string) *PutBotAliasInput
    func (s PutBotAliasInput) String() string
    func (s *PutBotAliasInput) Validate() error
type PutBotAliasOutput
    func (s PutBotAliasOutput) GoString() string
    func (s *PutBotAliasOutput) SetBotName(v string) *PutBotAliasOutput
    func (s *PutBotAliasOutput) SetBotVersion(v string) *PutBotAliasOutput
    func (s *PutBotAliasOutput) SetChecksum(v string) *PutBotAliasOutput
    func (s *PutBotAliasOutput) SetCreatedDate(v time.Time) *PutBotAliasOutput
    func (s *PutBotAliasOutput) SetDescription(v string) *PutBotAliasOutput
    func (s *PutBotAliasOutput) SetLastUpdatedDate(v time.Time) *PutBotAliasOutput
    func (s *PutBotAliasOutput) SetName(v string) *PutBotAliasOutput
    func (s PutBotAliasOutput) String() string
type PutBotInput
    func (s PutBotInput) GoString() string
    func (s *PutBotInput) SetAbortStatement(v *Statement) *PutBotInput
    func (s *PutBotInput) SetChecksum(v string) *PutBotInput
    func (s *PutBotInput) SetChildDirected(v bool) *PutBotInput
    func (s *PutBotInput) SetClarificationPrompt(v *Prompt) *PutBotInput
    func (s *PutBotInput) SetDescription(v string) *PutBotInput
    func (s *PutBotInput) SetIdleSessionTTLInSeconds(v int64) *PutBotInput
    func (s *PutBotInput) SetIntents(v []*Intent) *PutBotInput
    func (s *PutBotInput) SetLocale(v string) *PutBotInput
    func (s *PutBotInput) SetName(v string) *PutBotInput
    func (s *PutBotInput) SetProcessBehavior(v string) *PutBotInput
    func (s *PutBotInput) SetVoiceId(v string) *PutBotInput
    func (s PutBotInput) String() string
    func (s *PutBotInput) Validate() error
type PutBotOutput
    func (s PutBotOutput) GoString() string
    func (s *PutBotOutput) SetAbortStatement(v *Statement) *PutBotOutput
    func (s *PutBotOutput) SetChecksum(v string) *PutBotOutput
    func (s *PutBotOutput) SetChildDirected(v bool) *PutBotOutput
    func (s *PutBotOutput) SetClarificationPrompt(v *Prompt) *PutBotOutput
    func (s *PutBotOutput) SetCreatedDate(v time.Time) *PutBotOutput
    func (s *PutBotOutput) SetDescription(v string) *PutBotOutput
    func (s *PutBotOutput) SetFailureReason(v string) *PutBotOutput
    func (s *PutBotOutput) SetIdleSessionTTLInSeconds(v int64) *PutBotOutput
    func (s *PutBotOutput) SetIntents(v []*Intent) *PutBotOutput
    func (s *PutBotOutput) SetLastUpdatedDate(v time.Time) *PutBotOutput
    func (s *PutBotOutput) SetLocale(v string) *PutBotOutput
    func (s *PutBotOutput) SetName(v string) *PutBotOutput
    func (s *PutBotOutput) SetStatus(v string) *PutBotOutput
    func (s *PutBotOutput) SetVersion(v string) *PutBotOutput
    func (s *PutBotOutput) SetVoiceId(v string) *PutBotOutput
    func (s PutBotOutput) String() string
type PutIntentInput
    func (s PutIntentInput) GoString() string
    func (s *PutIntentInput) SetChecksum(v string) *PutIntentInput
    func (s *PutIntentInput) SetConclusionStatement(v *Statement) *PutIntentInput
    func (s *PutIntentInput) SetConfirmationPrompt(v *Prompt) *PutIntentInput
    func (s *PutIntentInput) SetDescription(v string) *PutIntentInput
    func (s *PutIntentInput) SetDialogCodeHook(v *CodeHook) *PutIntentInput
    func (s *PutIntentInput) SetFollowUpPrompt(v *FollowUpPrompt) *PutIntentInput
    func (s *PutIntentInput) SetFulfillmentActivity(v *FulfillmentActivity) *PutIntentInput
    func (s *PutIntentInput) SetName(v string) *PutIntentInput
    func (s *PutIntentInput) SetParentIntentSignature(v string) *PutIntentInput
    func (s *PutIntentInput) SetRejectionStatement(v *Statement) *PutIntentInput
    func (s *PutIntentInput) SetSampleUtterances(v []*string) *PutIntentInput
    func (s *PutIntentInput) SetSlots(v []*Slot) *PutIntentInput
    func (s PutIntentInput) String() string
    func (s *PutIntentInput) Validate() error
type PutIntentOutput
    func (s PutIntentOutput) GoString() string
    func (s *PutIntentOutput) SetChecksum(v string) *PutIntentOutput
    func (s *PutIntentOutput) SetConclusionStatement(v *Statement) *PutIntentOutput
    func (s *PutIntentOutput) SetConfirmationPrompt(v *Prompt) *PutIntentOutput
    func (s *PutIntentOutput) SetCreatedDate(v time.Time) *PutIntentOutput
    func (s *PutIntentOutput) SetDescription(v string) *PutIntentOutput
    func (s *PutIntentOutput) SetDialogCodeHook(v *CodeHook) *PutIntentOutput
    func (s *PutIntentOutput) SetFollowUpPrompt(v *FollowUpPrompt) *PutIntentOutput
    func (s *PutIntentOutput) SetFulfillmentActivity(v *FulfillmentActivity) *PutIntentOutput
    func (s *PutIntentOutput) SetLastUpdatedDate(v time.Time) *PutIntentOutput
    func (s *PutIntentOutput) SetName(v string) *PutIntentOutput
    func (s *PutIntentOutput) SetParentIntentSignature(v string) *PutIntentOutput
    func (s *PutIntentOutput) SetRejectionStatement(v *Statement) *PutIntentOutput
    func (s *PutIntentOutput) SetSampleUtterances(v []*string) *PutIntentOutput
    func (s *PutIntentOutput) SetSlots(v []*Slot) *PutIntentOutput
    func (s *PutIntentOutput) SetVersion(v string) *PutIntentOutput
    func (s PutIntentOutput) String() string
type PutSlotTypeInput
    func (s PutSlotTypeInput) GoString() string
    func (s *PutSlotTypeInput) SetChecksum(v string) *PutSlotTypeInput
    func (s *PutSlotTypeInput) SetDescription(v string) *PutSlotTypeInput
    func (s *PutSlotTypeInput) SetEnumerationValues(v []*EnumerationValue) *PutSlotTypeInput
    func (s *PutSlotTypeInput) SetName(v string) *PutSlotTypeInput
    func (s PutSlotTypeInput) String() string
    func (s *PutSlotTypeInput) Validate() error
type PutSlotTypeOutput
    func (s PutSlotTypeOutput) GoString() string
    func (s *PutSlotTypeOutput) SetChecksum(v string) *PutSlotTypeOutput
    func (s *PutSlotTypeOutput) SetCreatedDate(v time.Time) *PutSlotTypeOutput
    func (s *PutSlotTypeOutput) SetDescription(v string) *PutSlotTypeOutput
    func (s *PutSlotTypeOutput) SetEnumerationValues(v []*EnumerationValue) *PutSlotTypeOutput
    func (s *PutSlotTypeOutput) SetLastUpdatedDate(v time.Time) *PutSlotTypeOutput
    func (s *PutSlotTypeOutput) SetName(v string) *PutSlotTypeOutput
    func (s *PutSlotTypeOutput) SetVersion(v string) *PutSlotTypeOutput
    func (s PutSlotTypeOutput) String() string
type ResourceReference
    func (s ResourceReference) GoString() string
    func (s *ResourceReference) SetName(v string) *ResourceReference
    func (s *ResourceReference) SetVersion(v string) *ResourceReference
    func (s ResourceReference) String() string
type Slot
    func (s Slot) GoString() string
    func (s *Slot) SetDescription(v string) *Slot
    func (s *Slot) SetName(v string) *Slot
    func (s *Slot) SetPriority(v int64) *Slot
    func (s *Slot) SetResponseCard(v string) *Slot
    func (s *Slot) SetSampleUtterances(v []*string) *Slot
    func (s *Slot) SetSlotConstraint(v string) *Slot
    func (s *Slot) SetSlotType(v string) *Slot
    func (s *Slot) SetSlotTypeVersion(v string) *Slot
    func (s *Slot) SetValueElicitationPrompt(v *Prompt) *Slot
    func (s Slot) String() string
    func (s *Slot) Validate() error
type SlotTypeMetadata
    func (s SlotTypeMetadata) GoString() string
    func (s *SlotTypeMetadata) SetCreatedDate(v time.Time) *SlotTypeMetadata
    func (s *SlotTypeMetadata) SetDescription(v string) *SlotTypeMetadata
    func (s *SlotTypeMetadata) SetLastUpdatedDate(v time.Time) *SlotTypeMetadata
    func (s *SlotTypeMetadata) SetName(v string) *SlotTypeMetadata
    func (s *SlotTypeMetadata) SetVersion(v string) *SlotTypeMetadata
    func (s SlotTypeMetadata) String() string
type Statement
    func (s Statement) GoString() string
    func (s *Statement) SetMessages(v []*Message) *Statement
    func (s *Statement) SetResponseCard(v string) *Statement
    func (s Statement) String() string
    func (s *Statement) Validate() error
type UtteranceData
    func (s UtteranceData) GoString() string
    func (s *UtteranceData) SetCount(v int64) *UtteranceData
    func (s *UtteranceData) SetDistinctUsers(v int64) *UtteranceData
    func (s *UtteranceData) SetFirstUtteredDate(v time.Time) *UtteranceData
    func (s *UtteranceData) SetLastUtteredDate(v time.Time) *UtteranceData
    func (s *UtteranceData) SetUtteranceString(v string) *UtteranceData
    func (s UtteranceData) String() string
type UtteranceList
    func (s UtteranceList) GoString() string
    func (s *UtteranceList) SetBotVersion(v string) *UtteranceList
    func (s *UtteranceList) SetUtterances(v []*UtteranceData) *UtteranceList
    func (s UtteranceList) String() string

Package files

api.go doc.go errors.go service.go

Constants

const (
    // ChannelTypeFacebook is a ChannelType enum value
    ChannelTypeFacebook = "Facebook"

    // ChannelTypeSlack is a ChannelType enum value
    ChannelTypeSlack = "Slack"

    // ChannelTypeTwilioSms is a ChannelType enum value
    ChannelTypeTwilioSms = "Twilio-Sms"
)
const (
    // ContentTypePlainText is a ContentType enum value
    ContentTypePlainText = "PlainText"

    // ContentTypeSsml is a ContentType enum value
    ContentTypeSsml = "SSML"
)
const (
    // FulfillmentActivityTypeReturnIntent is a FulfillmentActivityType enum value
    FulfillmentActivityTypeReturnIntent = "ReturnIntent"

    // FulfillmentActivityTypeCodeHook is a FulfillmentActivityType enum value
    FulfillmentActivityTypeCodeHook = "CodeHook"
)
const (
    // ProcessBehaviorSave is a ProcessBehavior enum value
    ProcessBehaviorSave = "SAVE"

    // ProcessBehaviorBuild is a ProcessBehavior enum value
    ProcessBehaviorBuild = "BUILD"
)
const (
    // ReferenceTypeIntent is a ReferenceType enum value
    ReferenceTypeIntent = "Intent"

    // ReferenceTypeBot is a ReferenceType enum value
    ReferenceTypeBot = "Bot"

    // ReferenceTypeBotAlias is a ReferenceType enum value
    ReferenceTypeBotAlias = "BotAlias"

    // ReferenceTypeBotChannel is a ReferenceType enum value
    ReferenceTypeBotChannel = "BotChannel"
)
const (
    // SlotConstraintRequired is a SlotConstraint enum value
    SlotConstraintRequired = "Required"

    // SlotConstraintOptional is a SlotConstraint enum value
    SlotConstraintOptional = "Optional"
)
const (
    // StatusBuilding is a Status enum value
    StatusBuilding = "BUILDING"

    // StatusReady is a Status enum value
    StatusReady = "READY"

    // StatusFailed is a Status enum value
    StatusFailed = "FAILED"

    // StatusNotBuilt is a Status enum value
    StatusNotBuilt = "NOT_BUILT"
)
const (
    // StatusTypeDetected is a StatusType enum value
    StatusTypeDetected = "Detected"

    // StatusTypeMissed is a StatusType enum value
    StatusTypeMissed = "Missed"
)
const (

    // ErrCodeBadRequestException for service response error code
    // "BadRequestException".
    //
    // The request is not well formed. For example, a value is invalid or a required
    // field is missing. Check the field values, and try again.
    ErrCodeBadRequestException = "BadRequestException"

    // ErrCodeConflictException for service response error code
    // "ConflictException".
    //
    // There was a conflict processing the request. Try your request again.
    ErrCodeConflictException = "ConflictException"

    // ErrCodeInternalFailureException for service response error code
    // "InternalFailureException".
    //
    // An internal Amazon Lex error occurred. Try your request again.
    ErrCodeInternalFailureException = "InternalFailureException"

    // ErrCodeLimitExceededException for service response error code
    // "LimitExceededException".
    //
    // The request exceeded a limit. Try your request again.
    ErrCodeLimitExceededException = "LimitExceededException"

    // ErrCodeNotFoundException for service response error code
    // "NotFoundException".
    //
    // The resource specified in the request was not found. Check the resource and
    // try again.
    ErrCodeNotFoundException = "NotFoundException"

    // ErrCodePreconditionFailedException for service response error code
    // "PreconditionFailedException".
    //
    // The checksum of the resource that you are trying to change does not match
    // the checksum in the request. Check the resource's checksum and try again.
    ErrCodePreconditionFailedException = "PreconditionFailedException"

    // ErrCodeResourceInUseException for service response error code
    // "ResourceInUseException".
    //
    // The resource that you are attempting to delete is referred to by another
    // resource. Use this information to remove references to the resource that
    // you are trying to delete.
    //
    // The body of the exception contains a JSON object that describes the resource.
    //
    // { "resourceType": BOT | BOTALIAS | BOTCHANNEL | INTENT,
    //
    // "resourceReference": {
    //
    // "name": string, "version": string } }
    ErrCodeResourceInUseException = "ResourceInUseException"
)

Service information constants

const (
    ServiceName = "models.lex" // Service endpoint prefix API calls made to.
    EndpointsID = ServiceName  // Service ID for Regions and Endpoints metadata.
)
const (
    // LocaleEnUs is a Locale enum value
    LocaleEnUs = "en-US"
)

type BotAliasMetadata

Provides information about a bot alias. Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/BotAliasMetadata

type BotAliasMetadata struct {

    // The name of the bot to which the alias points.
    BotName *string `locationName:"botName" min:"2" type:"string"`

    // The version of the Amazon Lex bot to which the alias points.
    BotVersion *string `locationName:"botVersion" min:"1" type:"string"`

    // Checksum of the bot alias.
    Checksum *string `locationName:"checksum" type:"string"`

    // The date that the bot alias was created.
    CreatedDate *time.Time `locationName:"createdDate" type:"timestamp" timestampFormat:"unix"`

    // A description of the bot alias.
    Description *string `locationName:"description" type:"string"`

    // The date that the bot alias was updated. When you create a resource, the
    // creation date and last updated date are the same.
    LastUpdatedDate *time.Time `locationName:"lastUpdatedDate" type:"timestamp" timestampFormat:"unix"`

    // The name of the bot alias.
    Name *string `locationName:"name" min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (BotAliasMetadata) GoString

func (s BotAliasMetadata) GoString() string

GoString returns the string representation

func (*BotAliasMetadata) SetBotName

func (s *BotAliasMetadata) SetBotName(v string) *BotAliasMetadata

SetBotName sets the BotName field's value.

func (*BotAliasMetadata) SetBotVersion

func (s *BotAliasMetadata) SetBotVersion(v string) *BotAliasMetadata

SetBotVersion sets the BotVersion field's value.

func (*BotAliasMetadata) SetChecksum

func (s *BotAliasMetadata) SetChecksum(v string) *BotAliasMetadata

SetChecksum sets the Checksum field's value.

func (*BotAliasMetadata) SetCreatedDate

func (s *BotAliasMetadata) SetCreatedDate(v time.Time) *BotAliasMetadata

SetCreatedDate sets the CreatedDate field's value.

func (*BotAliasMetadata) SetDescription

func (s *BotAliasMetadata) SetDescription(v string) *BotAliasMetadata

SetDescription sets the Description field's value.

func (*BotAliasMetadata) SetLastUpdatedDate

func (s *BotAliasMetadata) SetLastUpdatedDate(v time.Time) *BotAliasMetadata

SetLastUpdatedDate sets the LastUpdatedDate field's value.

func (*BotAliasMetadata) SetName

func (s *BotAliasMetadata) SetName(v string) *BotAliasMetadata

SetName sets the Name field's value.

func (BotAliasMetadata) String

func (s BotAliasMetadata) String() string

String returns the string representation

type BotChannelAssociation

Represents an association between an Amazon Lex bot and an external messaging platform. Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/BotChannelAssociation

type BotChannelAssociation struct {

    // An alias pointing to the specific version of the Amazon Lex bot to which
    // this association is being made.
    BotAlias *string `locationName:"botAlias" min:"1" type:"string"`

    // Provides information necessary to communicate with the messaging platform.
    BotConfiguration map[string]*string `locationName:"botConfiguration" min:"1" type:"map"`

    // The name of the Amazon Lex bot to which this association is being made.
    //
    // Currently, Amazon Lex supports associations with Facebook and Slack, and
    // Twilio.
    BotName *string `locationName:"botName" min:"2" type:"string"`

    // The date that the association between the Amazon Lex bot and the channel
    // was created.
    CreatedDate *time.Time `locationName:"createdDate" type:"timestamp" timestampFormat:"unix"`

    // A text description of the association you are creating.
    Description *string `locationName:"description" type:"string"`

    // The name of the association between the bot and the channel.
    Name *string `locationName:"name" min:"1" type:"string"`

    // Specifies the type of association by indicating the type of channel being
    // established between the Amazon Lex bot and the external messaging platform.
    Type *string `locationName:"type" type:"string" enum:"ChannelType"`
    // contains filtered or unexported fields
}

func (BotChannelAssociation) GoString

func (s BotChannelAssociation) GoString() string

GoString returns the string representation

func (*BotChannelAssociation) SetBotAlias

func (s *BotChannelAssociation) SetBotAlias(v string) *BotChannelAssociation

SetBotAlias sets the BotAlias field's value.

func (*BotChannelAssociation) SetBotConfiguration

func (s *BotChannelAssociation) SetBotConfiguration(v map[string]*string) *BotChannelAssociation

SetBotConfiguration sets the BotConfiguration field's value.

func (*BotChannelAssociation) SetBotName

func (s *BotChannelAssociation) SetBotName(v string) *BotChannelAssociation

SetBotName sets the BotName field's value.

func (*BotChannelAssociation) SetCreatedDate

func (s *BotChannelAssociation) SetCreatedDate(v time.Time) *BotChannelAssociation

SetCreatedDate sets the CreatedDate field's value.

func (*BotChannelAssociation) SetDescription

func (s *BotChannelAssociation) SetDescription(v string) *BotChannelAssociation

SetDescription sets the Description field's value.

func (*BotChannelAssociation) SetName

func (s *BotChannelAssociation) SetName(v string) *BotChannelAssociation

SetName sets the Name field's value.

func (*BotChannelAssociation) SetType

func (s *BotChannelAssociation) SetType(v string) *BotChannelAssociation

SetType sets the Type field's value.

func (BotChannelAssociation) String

func (s BotChannelAssociation) String() string

String returns the string representation

type BotMetadata

Provides information about a bot. . Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/BotMetadata

type BotMetadata struct {

    // The date that the bot was created.
    CreatedDate *time.Time `locationName:"createdDate" type:"timestamp" timestampFormat:"unix"`

    // A description of the bot.
    Description *string `locationName:"description" type:"string"`

    // The date that the bot was updated. When you create a bot, the creation date
    // and last updated date are the same.
    LastUpdatedDate *time.Time `locationName:"lastUpdatedDate" type:"timestamp" timestampFormat:"unix"`

    // The name of the bot.
    Name *string `locationName:"name" min:"2" type:"string"`

    // The status of the bot.
    Status *string `locationName:"status" type:"string" enum:"Status"`

    // The version of the bot. For a new bot, the version is always $LATEST.
    Version *string `locationName:"version" min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (BotMetadata) GoString

func (s BotMetadata) GoString() string

GoString returns the string representation

func (*BotMetadata) SetCreatedDate

func (s *BotMetadata) SetCreatedDate(v time.Time) *BotMetadata

SetCreatedDate sets the CreatedDate field's value.

func (*BotMetadata) SetDescription

func (s *BotMetadata) SetDescription(v string) *BotMetadata

SetDescription sets the Description field's value.

func (*BotMetadata) SetLastUpdatedDate

func (s *BotMetadata) SetLastUpdatedDate(v time.Time) *BotMetadata

SetLastUpdatedDate sets the LastUpdatedDate field's value.

func (*BotMetadata) SetName

func (s *BotMetadata) SetName(v string) *BotMetadata

SetName sets the Name field's value.

func (*BotMetadata) SetStatus

func (s *BotMetadata) SetStatus(v string) *BotMetadata

SetStatus sets the Status field's value.

func (*BotMetadata) SetVersion

func (s *BotMetadata) SetVersion(v string) *BotMetadata

SetVersion sets the Version field's value.

func (BotMetadata) String

func (s BotMetadata) String() string

String returns the string representation

type BuiltinIntentMetadata

Provides metadata for a built-in intent. Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/BuiltinIntentMetadata

type BuiltinIntentMetadata struct {

    // A unique identifier for the built-in intent. To find the signature for an
    // intent, see Standard Built-in Intents (https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/built-in-intent-ref/standard-intents)
    // in the Alexa Skills Kit.
    Signature *string `locationName:"signature" type:"string"`

    // A list of identifiers for the locales that the intent supports.
    SupportedLocales []*string `locationName:"supportedLocales" type:"list"`
    // contains filtered or unexported fields
}

func (BuiltinIntentMetadata) GoString

func (s BuiltinIntentMetadata) GoString() string

GoString returns the string representation

func (*BuiltinIntentMetadata) SetSignature

func (s *BuiltinIntentMetadata) SetSignature(v string) *BuiltinIntentMetadata

SetSignature sets the Signature field's value.

func (*BuiltinIntentMetadata) SetSupportedLocales

func (s *BuiltinIntentMetadata) SetSupportedLocales(v []*string) *BuiltinIntentMetadata

SetSupportedLocales sets the SupportedLocales field's value.

func (BuiltinIntentMetadata) String

func (s BuiltinIntentMetadata) String() string

String returns the string representation

type BuiltinIntentSlot

Provides information about a slot used in a built-in intent. Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/BuiltinIntentSlot

type BuiltinIntentSlot struct {

    // A list of the slots defined for the intent.
    Name *string `locationName:"name" type:"string"`
    // contains filtered or unexported fields
}

func (BuiltinIntentSlot) GoString

func (s BuiltinIntentSlot) GoString() string

GoString returns the string representation

func (*BuiltinIntentSlot) SetName

func (s *BuiltinIntentSlot) SetName(v string) *BuiltinIntentSlot

SetName sets the Name field's value.

func (BuiltinIntentSlot) String

func (s BuiltinIntentSlot) String() string

String returns the string representation

type BuiltinSlotTypeMetadata

Provides information about a built in slot type. Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/BuiltinSlotTypeMetadata

type BuiltinSlotTypeMetadata struct {

    // A unique identifier for the built-in slot type. To find the signature for
    // a slot type, see Slot Type Reference (https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/built-in-intent-ref/slot-type-reference)
    // in the Alexa Skills Kit.
    Signature *string `locationName:"signature" type:"string"`

    // A list of target locales for the slot.
    SupportedLocales []*string `locationName:"supportedLocales" type:"list"`
    // contains filtered or unexported fields
}

func (BuiltinSlotTypeMetadata) GoString

func (s BuiltinSlotTypeMetadata) GoString() string

GoString returns the string representation

func (*BuiltinSlotTypeMetadata) SetSignature

func (s *BuiltinSlotTypeMetadata) SetSignature(v string) *BuiltinSlotTypeMetadata

SetSignature sets the Signature field's value.

func (*BuiltinSlotTypeMetadata) SetSupportedLocales

func (s *BuiltinSlotTypeMetadata) SetSupportedLocales(v []*string) *BuiltinSlotTypeMetadata

SetSupportedLocales sets the SupportedLocales field's value.

func (BuiltinSlotTypeMetadata) String

func (s BuiltinSlotTypeMetadata) String() string

String returns the string representation

type CodeHook

Specifies a Lambda function that verifies requests to a bot or fulfills the user's request to a bot.. Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/CodeHook

type CodeHook struct {

    // The version of the request-response that you want Amazon Lex to use to invoke
    // your Lambda function. For more information, see using-lambda.
    //
    // MessageVersion is a required field
    MessageVersion *string `locationName:"messageVersion" min:"1" type:"string" required:"true"`

    // The Amazon Resource Name (ARN) of the Lambda function.
    //
    // Uri is a required field
    Uri *string `locationName:"uri" min:"20" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CodeHook) GoString

func (s CodeHook) GoString() string

GoString returns the string representation

func (*CodeHook) SetMessageVersion

func (s *CodeHook) SetMessageVersion(v string) *CodeHook

SetMessageVersion sets the MessageVersion field's value.

func (*CodeHook) SetUri

func (s *CodeHook) SetUri(v string) *CodeHook

SetUri sets the Uri field's value.

func (CodeHook) String

func (s CodeHook) String() string

String returns the string representation

func (*CodeHook) Validate

func (s *CodeHook) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateBotVersionInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/CreateBotVersionRequest

type CreateBotVersionInput struct {

    // Identifies a specific revision of the $LATEST version of the bot. If you
    // specify a checksum and the $LATEST version of the bot has a different checksum,
    // a PreconditionFailedException exception is returned and Amazon Lex doesn't
    // publish a new version. If you don't specify a checksum, Amazon Lex publishes
    // the $LATEST version.
    Checksum *string `locationName:"checksum" type:"string"`

    // The name of the bot that you want to create a new version of. The name is
    // case sensitive.
    //
    // Name is a required field
    Name *string `location:"uri" locationName:"name" min:"2" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CreateBotVersionInput) GoString

func (s CreateBotVersionInput) GoString() string

GoString returns the string representation

func (*CreateBotVersionInput) SetChecksum

func (s *CreateBotVersionInput) SetChecksum(v string) *CreateBotVersionInput

SetChecksum sets the Checksum field's value.

func (*CreateBotVersionInput) SetName

func (s *CreateBotVersionInput) SetName(v string) *CreateBotVersionInput

SetName sets the Name field's value.

func (CreateBotVersionInput) String

func (s CreateBotVersionInput) String() string

String returns the string representation

func (*CreateBotVersionInput) Validate

func (s *CreateBotVersionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateBotVersionOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/CreateBotVersionResponse

type CreateBotVersionOutput struct {

    // The message that Amazon Lex uses to abort a conversation. For more information,
    // see .
    AbortStatement *Statement `locationName:"abortStatement" type:"structure"`

    // Checksum identifying the version of the bot that was created.
    Checksum *string `locationName:"checksum" type:"string"`

    // For each Amazon Lex bot created with the Amazon Lex Model Building Service,
    // you must specify whether your use of Amazon Lex is related to a website,
    // program, or other application that is directed or targeted, in whole or in
    // part, to children under age 13 and subject to the Children's Online Privacy
    // Protection Act (COPPA) by specifying true or false in the childDirected field.
    // By specifying true in the childDirected field, you confirm that your use
    // of Amazon Lex is related to a website, program, or other application that
    // is directed or targeted, in whole or in part, to children under age 13 and
    // subject to COPPA. By specifying false in the childDirected field, you confirm
    // that your use of Amazon Lex is not related to a website, program, or other
    // application that is directed or targeted, in whole or in part, to children
    // under age 13 and subject to COPPA. You may not specify a default value for
    // the childDirected field that does not accurately reflect whether your use
    // of Amazon Lex is related to a website, program, or other application that
    // is directed or targeted, in whole or in part, to children under age 13 and
    // subject to COPPA.
    //
    // If your use of Amazon Lex relates to a website, program, or other application
    // that is directed in whole or in part, to children under age 13, you must
    // obtain any required verifiable parental consent under COPPA. For information
    // regarding the use of Amazon Lex in connection with websites, programs, or
    // other applications that are directed or targeted, in whole or in part, to
    // children under age 13, see the Amazon Lex FAQ. (https://aws.amazon.com/lex/faqs#data-security)
    ChildDirected *bool `locationName:"childDirected" type:"boolean"`

    // The message that Amazon Lex uses when it doesn't understand the user's request.
    // For more information, see .
    ClarificationPrompt *Prompt `locationName:"clarificationPrompt" type:"structure"`

    // The date when the bot version was created.
    CreatedDate *time.Time `locationName:"createdDate" type:"timestamp" timestampFormat:"unix"`

    // A description of the bot.
    Description *string `locationName:"description" type:"string"`

    // If status is FAILED, Amazon Lex provides the reason that it failed to build
    // the bot.
    FailureReason *string `locationName:"failureReason" type:"string"`

    // The maximum time in seconds that Amazon Lex retains the data gathered in
    // a conversation. For more information, see .
    IdleSessionTTLInSeconds *int64 `locationName:"idleSessionTTLInSeconds" min:"60" type:"integer"`

    // An array of Intent objects. For more information, see .
    Intents []*Intent `locationName:"intents" min:"1" type:"list"`

    // The date when the $LATEST version of this bot was updated.
    LastUpdatedDate *time.Time `locationName:"lastUpdatedDate" type:"timestamp" timestampFormat:"unix"`

    // Specifies the target locale for the bot.
    Locale *string `locationName:"locale" type:"string" enum:"Locale"`

    // The name of the bot.
    Name *string `locationName:"name" min:"2" type:"string"`

    // When you send a request to create or update a bot, Amazon Lex sets the status
    // response element to BUILDING. After Amazon Lex builds the bot, it sets status
    // to READY. If Amazon Lex can't build the bot, it sets status to FAILED. Amazon
    // Lex returns the reason for the failure in the failureReason response element.
    Status *string `locationName:"status" type:"string" enum:"Status"`

    // The version of the bot.
    Version *string `locationName:"version" min:"1" type:"string"`

    // The Amazon Polly voice ID that Amazon Lex uses for voice interactions with
    // the user.
    VoiceId *string `locationName:"voiceId" type:"string"`
    // contains filtered or unexported fields
}

func (CreateBotVersionOutput) GoString

func (s CreateBotVersionOutput) GoString() string

GoString returns the string representation

func (*CreateBotVersionOutput) SetAbortStatement

func (s *CreateBotVersionOutput) SetAbortStatement(v *Statement) *CreateBotVersionOutput

SetAbortStatement sets the AbortStatement field's value.

func (*CreateBotVersionOutput) SetChecksum

func (s *CreateBotVersionOutput) SetChecksum(v string) *CreateBotVersionOutput

SetChecksum sets the Checksum field's value.

func (*CreateBotVersionOutput) SetChildDirected

func (s *CreateBotVersionOutput) SetChildDirected(v bool) *CreateBotVersionOutput

SetChildDirected sets the ChildDirected field's value.

func (*CreateBotVersionOutput) SetClarificationPrompt

func (s *CreateBotVersionOutput) SetClarificationPrompt(v *Prompt) *CreateBotVersionOutput

SetClarificationPrompt sets the ClarificationPrompt field's value.

func (*CreateBotVersionOutput) SetCreatedDate

func (s *CreateBotVersionOutput) SetCreatedDate(v time.Time) *CreateBotVersionOutput

SetCreatedDate sets the CreatedDate field's value.

func (*CreateBotVersionOutput) SetDescription

func (s *CreateBotVersionOutput) SetDescription(v string) *CreateBotVersionOutput

SetDescription sets the Description field's value.

func (*CreateBotVersionOutput) SetFailureReason

func (s *CreateBotVersionOutput) SetFailureReason(v string) *CreateBotVersionOutput

SetFailureReason sets the FailureReason field's value.

func (*CreateBotVersionOutput) SetIdleSessionTTLInSeconds

func (s *CreateBotVersionOutput) SetIdleSessionTTLInSeconds(v int64) *CreateBotVersionOutput

SetIdleSessionTTLInSeconds sets the IdleSessionTTLInSeconds field's value.

func (*CreateBotVersionOutput) SetIntents

func (s *CreateBotVersionOutput) SetIntents(v []*Intent) *CreateBotVersionOutput

SetIntents sets the Intents field's value.

func (*CreateBotVersionOutput) SetLastUpdatedDate

func (s *CreateBotVersionOutput) SetLastUpdatedDate(v time.Time) *CreateBotVersionOutput

SetLastUpdatedDate sets the LastUpdatedDate field's value.

func (*CreateBotVersionOutput) SetLocale

func (s *CreateBotVersionOutput) SetLocale(v string) *CreateBotVersionOutput

SetLocale sets the Locale field's value.

func (*CreateBotVersionOutput) SetName

func (s *CreateBotVersionOutput) SetName(v string) *CreateBotVersionOutput

SetName sets the Name field's value.

func (*CreateBotVersionOutput) SetStatus

func (s *CreateBotVersionOutput) SetStatus(v string) *CreateBotVersionOutput

SetStatus sets the Status field's value.

func (*CreateBotVersionOutput) SetVersion

func (s *CreateBotVersionOutput) SetVersion(v string) *CreateBotVersionOutput

SetVersion sets the Version field's value.

func (*CreateBotVersionOutput) SetVoiceId

func (s *CreateBotVersionOutput) SetVoiceId(v string) *CreateBotVersionOutput

SetVoiceId sets the VoiceId field's value.

func (CreateBotVersionOutput) String

func (s CreateBotVersionOutput) String() string

String returns the string representation

type CreateIntentVersionInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/CreateIntentVersionRequest

type CreateIntentVersionInput struct {

    // Checksum of the $LATEST version of the intent that should be used to create
    // the new version. If you specify a checksum and the $LATEST version of the
    // intent has a different checksum, Amazon Lex returns a PreconditionFailedException
    // exception and doesn't publish a new version. If you don't specify a checksum,
    // Amazon Lex publishes the $LATEST version.
    Checksum *string `locationName:"checksum" type:"string"`

    // The name of the intent that you want to create a new version of. The name
    // is case sensitive.
    //
    // Name is a required field
    Name *string `location:"uri" locationName:"name" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CreateIntentVersionInput) GoString

func (s CreateIntentVersionInput) GoString() string

GoString returns the string representation

func (*CreateIntentVersionInput) SetChecksum

func (s *CreateIntentVersionInput) SetChecksum(v string) *CreateIntentVersionInput

SetChecksum sets the Checksum field's value.

func (*CreateIntentVersionInput) SetName

func (s *CreateIntentVersionInput) SetName(v string) *CreateIntentVersionInput

SetName sets the Name field's value.

func (CreateIntentVersionInput) String

func (s CreateIntentVersionInput) String() string

String returns the string representation

func (*CreateIntentVersionInput) Validate

func (s *CreateIntentVersionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateIntentVersionOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/CreateIntentVersionResponse

type CreateIntentVersionOutput struct {

    // Checksum of the intent version created.
    Checksum *string `locationName:"checksum" type:"string"`

    // After the Lambda function specified in the fulfillmentActivity field fulfills
    // the intent, Amazon Lex conveys this statement to the user.
    ConclusionStatement *Statement `locationName:"conclusionStatement" type:"structure"`

    // If defined, the prompt that Amazon Lex uses to confirm the user's intent
    // before fulfilling it.
    ConfirmationPrompt *Prompt `locationName:"confirmationPrompt" type:"structure"`

    // The date that the intent was created.
    CreatedDate *time.Time `locationName:"createdDate" type:"timestamp" timestampFormat:"unix"`

    // A description of the intent.
    Description *string `locationName:"description" type:"string"`

    // If defined, Amazon Lex invokes this Lambda function for each user input.
    DialogCodeHook *CodeHook `locationName:"dialogCodeHook" type:"structure"`

    // If defined, Amazon Lex uses this prompt to solicit additional user activity
    // after the intent is fulfilled.
    FollowUpPrompt *FollowUpPrompt `locationName:"followUpPrompt" type:"structure"`

    // Describes how the intent is fulfilled.
    FulfillmentActivity *FulfillmentActivity `locationName:"fulfillmentActivity" type:"structure"`

    // The date that the intent was updated.
    LastUpdatedDate *time.Time `locationName:"lastUpdatedDate" type:"timestamp" timestampFormat:"unix"`

    // The name of the intent.
    Name *string `locationName:"name" min:"1" type:"string"`

    // A unique identifier for a built-in intent.
    ParentIntentSignature *string `locationName:"parentIntentSignature" type:"string"`

    // If the user answers "no" to the question defined in confirmationPrompt, Amazon
    // Lex responds with this statement to acknowledge that the intent was canceled.
    RejectionStatement *Statement `locationName:"rejectionStatement" type:"structure"`

    // An array of sample utterances configured for the intent.
    SampleUtterances []*string `locationName:"sampleUtterances" type:"list"`

    // An array of slot types that defines the information required to fulfill the
    // intent.
    Slots []*Slot `locationName:"slots" type:"list"`

    // The version number assigned to the new version of the intent.
    Version *string `locationName:"version" min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (CreateIntentVersionOutput) GoString

func (s CreateIntentVersionOutput) GoString() string

GoString returns the string representation

func (*CreateIntentVersionOutput) SetChecksum

func (s *CreateIntentVersionOutput) SetChecksum(v string) *CreateIntentVersionOutput

SetChecksum sets the Checksum field's value.

func (*CreateIntentVersionOutput) SetConclusionStatement

func (s *CreateIntentVersionOutput) SetConclusionStatement(v *Statement) *CreateIntentVersionOutput

SetConclusionStatement sets the ConclusionStatement field's value.

func (*CreateIntentVersionOutput) SetConfirmationPrompt

func (s *CreateIntentVersionOutput) SetConfirmationPrompt(v *Prompt) *CreateIntentVersionOutput

SetConfirmationPrompt sets the ConfirmationPrompt field's value.

func (*CreateIntentVersionOutput) SetCreatedDate

func (s *CreateIntentVersionOutput) SetCreatedDate(v time.Time) *CreateIntentVersionOutput

SetCreatedDate sets the CreatedDate field's value.

func (*CreateIntentVersionOutput) SetDescription

func (s *CreateIntentVersionOutput) SetDescription(v string) *CreateIntentVersionOutput

SetDescription sets the Description field's value.

func (*CreateIntentVersionOutput) SetDialogCodeHook

func (s *CreateIntentVersionOutput) SetDialogCodeHook(v *CodeHook) *CreateIntentVersionOutput

SetDialogCodeHook sets the DialogCodeHook field's value.

func (*CreateIntentVersionOutput) SetFollowUpPrompt

func (s *CreateIntentVersionOutput) SetFollowUpPrompt(v *FollowUpPrompt) *CreateIntentVersionOutput

SetFollowUpPrompt sets the FollowUpPrompt field's value.

func (*CreateIntentVersionOutput) SetFulfillmentActivity

func (s *CreateIntentVersionOutput) SetFulfillmentActivity(v *FulfillmentActivity) *CreateIntentVersionOutput

SetFulfillmentActivity sets the FulfillmentActivity field's value.

func (*CreateIntentVersionOutput) SetLastUpdatedDate

func (s *CreateIntentVersionOutput) SetLastUpdatedDate(v time.Time) *CreateIntentVersionOutput

SetLastUpdatedDate sets the LastUpdatedDate field's value.

func (*CreateIntentVersionOutput) SetName

func (s *CreateIntentVersionOutput) SetName(v string) *CreateIntentVersionOutput

SetName sets the Name field's value.

func (*CreateIntentVersionOutput) SetParentIntentSignature

func (s *CreateIntentVersionOutput) SetParentIntentSignature(v string) *CreateIntentVersionOutput

SetParentIntentSignature sets the ParentIntentSignature field's value.

func (*CreateIntentVersionOutput) SetRejectionStatement

func (s *CreateIntentVersionOutput) SetRejectionStatement(v *Statement) *CreateIntentVersionOutput

SetRejectionStatement sets the RejectionStatement field's value.

func (*CreateIntentVersionOutput) SetSampleUtterances

func (s *CreateIntentVersionOutput) SetSampleUtterances(v []*string) *CreateIntentVersionOutput

SetSampleUtterances sets the SampleUtterances field's value.

func (*CreateIntentVersionOutput) SetSlots

func (s *CreateIntentVersionOutput) SetSlots(v []*Slot) *CreateIntentVersionOutput

SetSlots sets the Slots field's value.

func (*CreateIntentVersionOutput) SetVersion

func (s *CreateIntentVersionOutput) SetVersion(v string) *CreateIntentVersionOutput

SetVersion sets the Version field's value.

func (CreateIntentVersionOutput) String

func (s CreateIntentVersionOutput) String() string

String returns the string representation

type CreateSlotTypeVersionInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/CreateSlotTypeVersionRequest

type CreateSlotTypeVersionInput struct {

    // Checksum for the $LATEST version of the slot type that you want to publish.
    // If you specify a checksum and the $LATEST version of the slot type has a
    // different checksum, Amazon Lex returns a PreconditionFailedException exception
    // and doesn't publish the new version. If you don't specify a checksum, Amazon
    // Lex publishes the $LATEST version.
    Checksum *string `locationName:"checksum" type:"string"`

    // The name of the slot type that you want to create a new version for. The
    // name is case sensitive.
    //
    // Name is a required field
    Name *string `location:"uri" locationName:"name" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (CreateSlotTypeVersionInput) GoString

func (s CreateSlotTypeVersionInput) GoString() string

GoString returns the string representation

func (*CreateSlotTypeVersionInput) SetChecksum

func (s *CreateSlotTypeVersionInput) SetChecksum(v string) *CreateSlotTypeVersionInput

SetChecksum sets the Checksum field's value.

func (*CreateSlotTypeVersionInput) SetName

func (s *CreateSlotTypeVersionInput) SetName(v string) *CreateSlotTypeVersionInput

SetName sets the Name field's value.

func (CreateSlotTypeVersionInput) String

func (s CreateSlotTypeVersionInput) String() string

String returns the string representation

func (*CreateSlotTypeVersionInput) Validate

func (s *CreateSlotTypeVersionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateSlotTypeVersionOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/CreateSlotTypeVersionResponse

type CreateSlotTypeVersionOutput struct {

    // Checksum of the $LATEST version of the slot type.
    Checksum *string `locationName:"checksum" type:"string"`

    // The date that the slot type was created.
    CreatedDate *time.Time `locationName:"createdDate" type:"timestamp" timestampFormat:"unix"`

    // A description of the slot type.
    Description *string `locationName:"description" type:"string"`

    // A list of EnumerationValue objects that defines the values that the slot
    // type can take.
    EnumerationValues []*EnumerationValue `locationName:"enumerationValues" min:"1" type:"list"`

    // The date that the slot type was updated. When you create a resource, the
    // creation date and last update date are the same.
    LastUpdatedDate *time.Time `locationName:"lastUpdatedDate" type:"timestamp" timestampFormat:"unix"`

    // The name of the slot type.
    Name *string `locationName:"name" min:"1" type:"string"`

    // The version assigned to the new slot type version.
    Version *string `locationName:"version" min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (CreateSlotTypeVersionOutput) GoString

func (s CreateSlotTypeVersionOutput) GoString() string

GoString returns the string representation

func (*CreateSlotTypeVersionOutput) SetChecksum

func (s *CreateSlotTypeVersionOutput) SetChecksum(v string) *CreateSlotTypeVersionOutput

SetChecksum sets the Checksum field's value.

func (*CreateSlotTypeVersionOutput) SetCreatedDate

func (s *CreateSlotTypeVersionOutput) SetCreatedDate(v time.Time) *CreateSlotTypeVersionOutput

SetCreatedDate sets the CreatedDate field's value.

func (*CreateSlotTypeVersionOutput) SetDescription

func (s *CreateSlotTypeVersionOutput) SetDescription(v string) *CreateSlotTypeVersionOutput

SetDescription sets the Description field's value.

func (*CreateSlotTypeVersionOutput) SetEnumerationValues

func (s *CreateSlotTypeVersionOutput) SetEnumerationValues(v []*EnumerationValue) *CreateSlotTypeVersionOutput

SetEnumerationValues sets the EnumerationValues field's value.

func (*CreateSlotTypeVersionOutput) SetLastUpdatedDate

func (s *CreateSlotTypeVersionOutput) SetLastUpdatedDate(v time.Time) *CreateSlotTypeVersionOutput

SetLastUpdatedDate sets the LastUpdatedDate field's value.

func (*CreateSlotTypeVersionOutput) SetName

func (s *CreateSlotTypeVersionOutput) SetName(v string) *CreateSlotTypeVersionOutput

SetName sets the Name field's value.

func (*CreateSlotTypeVersionOutput) SetVersion

func (s *CreateSlotTypeVersionOutput) SetVersion(v string) *CreateSlotTypeVersionOutput

SetVersion sets the Version field's value.

func (CreateSlotTypeVersionOutput) String

func (s CreateSlotTypeVersionOutput) String() string

String returns the string representation

type DeleteBotAliasInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteBotAliasRequest

type DeleteBotAliasInput struct {

    // The name of the bot that the alias points to.
    //
    // BotName is a required field
    BotName *string `location:"uri" locationName:"botName" min:"2" type:"string" required:"true"`

    // The name of the alias to delete. The name is case sensitive.
    //
    // Name is a required field
    Name *string `location:"uri" locationName:"name" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteBotAliasInput) GoString

func (s DeleteBotAliasInput) GoString() string

GoString returns the string representation

func (*DeleteBotAliasInput) SetBotName

func (s *DeleteBotAliasInput) SetBotName(v string) *DeleteBotAliasInput

SetBotName sets the BotName field's value.

func (*DeleteBotAliasInput) SetName

func (s *DeleteBotAliasInput) SetName(v string) *DeleteBotAliasInput

SetName sets the Name field's value.

func (DeleteBotAliasInput) String

func (s DeleteBotAliasInput) String() string

String returns the string representation

func (*DeleteBotAliasInput) Validate

func (s *DeleteBotAliasInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteBotAliasOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteBotAliasOutput

type DeleteBotAliasOutput struct {
    // contains filtered or unexported fields
}

func (DeleteBotAliasOutput) GoString

func (s DeleteBotAliasOutput) GoString() string

GoString returns the string representation

func (DeleteBotAliasOutput) String

func (s DeleteBotAliasOutput) String() string

String returns the string representation

type DeleteBotChannelAssociationInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteBotChannelAssociationRequest

type DeleteBotChannelAssociationInput struct {

    // An alias that points to the specific version of the Amazon Lex bot to which
    // this association is being made.
    //
    // BotAlias is a required field
    BotAlias *string `location:"uri" locationName:"aliasName" min:"1" type:"string" required:"true"`

    // The name of the Amazon Lex bot.
    //
    // BotName is a required field
    BotName *string `location:"uri" locationName:"botName" min:"2" type:"string" required:"true"`

    // The name of the association. The name is case sensitive.
    //
    // Name is a required field
    Name *string `location:"uri" locationName:"name" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteBotChannelAssociationInput) GoString

func (s DeleteBotChannelAssociationInput) GoString() string

GoString returns the string representation

func (*DeleteBotChannelAssociationInput) SetBotAlias

func (s *DeleteBotChannelAssociationInput) SetBotAlias(v string) *DeleteBotChannelAssociationInput

SetBotAlias sets the BotAlias field's value.

func (*DeleteBotChannelAssociationInput) SetBotName

func (s *DeleteBotChannelAssociationInput) SetBotName(v string) *DeleteBotChannelAssociationInput

SetBotName sets the BotName field's value.

func (*DeleteBotChannelAssociationInput) SetName

func (s *DeleteBotChannelAssociationInput) SetName(v string) *DeleteBotChannelAssociationInput

SetName sets the Name field's value.

func (DeleteBotChannelAssociationInput) String

func (s DeleteBotChannelAssociationInput) String() string

String returns the string representation

func (*DeleteBotChannelAssociationInput) Validate

func (s *DeleteBotChannelAssociationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteBotChannelAssociationOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteBotChannelAssociationOutput

type DeleteBotChannelAssociationOutput struct {
    // contains filtered or unexported fields
}

func (DeleteBotChannelAssociationOutput) GoString

func (s DeleteBotChannelAssociationOutput) GoString() string

GoString returns the string representation

func (DeleteBotChannelAssociationOutput) String

func (s DeleteBotChannelAssociationOutput) String() string

String returns the string representation

type DeleteBotInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteBotRequest

type DeleteBotInput struct {

    // The name of the bot. The name is case sensitive.
    //
    // Name is a required field
    Name *string `location:"uri" locationName:"name" min:"2" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteBotInput) GoString

func (s DeleteBotInput) GoString() string

GoString returns the string representation

func (*DeleteBotInput) SetName

func (s *DeleteBotInput) SetName(v string) *DeleteBotInput

SetName sets the Name field's value.

func (DeleteBotInput) String

func (s DeleteBotInput) String() string

String returns the string representation

func (*DeleteBotInput) Validate

func (s *DeleteBotInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteBotOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteBotOutput

type DeleteBotOutput struct {
    // contains filtered or unexported fields
}

func (DeleteBotOutput) GoString

func (s DeleteBotOutput) GoString() string

GoString returns the string representation

func (DeleteBotOutput) String

func (s DeleteBotOutput) String() string

String returns the string representation

type DeleteBotVersionInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteBotVersionRequest

type DeleteBotVersionInput struct {

    // The name of the bot.
    //
    // Name is a required field
    Name *string `location:"uri" locationName:"name" min:"2" type:"string" required:"true"`

    // The version of the bot to delete. You cannot delete the $LATEST version of
    // the bot. To delete the $LATEST version, use the operation.
    //
    // Version is a required field
    Version *string `location:"uri" locationName:"version" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteBotVersionInput) GoString

func (s DeleteBotVersionInput) GoString() string

GoString returns the string representation

func (*DeleteBotVersionInput) SetName

func (s *DeleteBotVersionInput) SetName(v string) *DeleteBotVersionInput

SetName sets the Name field's value.

func (*DeleteBotVersionInput) SetVersion

func (s *DeleteBotVersionInput) SetVersion(v string) *DeleteBotVersionInput

SetVersion sets the Version field's value.

func (DeleteBotVersionInput) String

func (s DeleteBotVersionInput) String() string

String returns the string representation

func (*DeleteBotVersionInput) Validate

func (s *DeleteBotVersionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteBotVersionOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteBotVersionOutput

type DeleteBotVersionOutput struct {
    // contains filtered or unexported fields
}

func (DeleteBotVersionOutput) GoString

func (s DeleteBotVersionOutput) GoString() string

GoString returns the string representation

func (DeleteBotVersionOutput) String

func (s DeleteBotVersionOutput) String() string

String returns the string representation

type DeleteIntentInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteIntentRequest

type DeleteIntentInput struct {

    // The name of the intent. The name is case sensitive.
    //
    // Name is a required field
    Name *string `location:"uri" locationName:"name" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteIntentInput) GoString

func (s DeleteIntentInput) GoString() string

GoString returns the string representation

func (*DeleteIntentInput) SetName

func (s *DeleteIntentInput) SetName(v string) *DeleteIntentInput

SetName sets the Name field's value.

func (DeleteIntentInput) String

func (s DeleteIntentInput) String() string

String returns the string representation

func (*DeleteIntentInput) Validate

func (s *DeleteIntentInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteIntentOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteIntentOutput

type DeleteIntentOutput struct {
    // contains filtered or unexported fields
}

func (DeleteIntentOutput) GoString

func (s DeleteIntentOutput) GoString() string

GoString returns the string representation

func (DeleteIntentOutput) String

func (s DeleteIntentOutput) String() string

String returns the string representation

type DeleteIntentVersionInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteIntentVersionRequest

type DeleteIntentVersionInput struct {

    // The name of the intent.
    //
    // Name is a required field
    Name *string `location:"uri" locationName:"name" min:"1" type:"string" required:"true"`

    // The version of the intent to delete. You cannot delete the $LATEST version
    // of the intent. To delete the $LATEST version, use the operation.
    //
    // Version is a required field
    Version *string `location:"uri" locationName:"version" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteIntentVersionInput) GoString

func (s DeleteIntentVersionInput) GoString() string

GoString returns the string representation

func (*DeleteIntentVersionInput) SetName

func (s *DeleteIntentVersionInput) SetName(v string) *DeleteIntentVersionInput

SetName sets the Name field's value.

func (*DeleteIntentVersionInput) SetVersion

func (s *DeleteIntentVersionInput) SetVersion(v string) *DeleteIntentVersionInput

SetVersion sets the Version field's value.

func (DeleteIntentVersionInput) String

func (s DeleteIntentVersionInput) String() string

String returns the string representation

func (*DeleteIntentVersionInput) Validate

func (s *DeleteIntentVersionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteIntentVersionOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteIntentVersionOutput

type DeleteIntentVersionOutput struct {
    // contains filtered or unexported fields
}

func (DeleteIntentVersionOutput) GoString

func (s DeleteIntentVersionOutput) GoString() string

GoString returns the string representation

func (DeleteIntentVersionOutput) String

func (s DeleteIntentVersionOutput) String() string

String returns the string representation

type DeleteSlotTypeInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteSlotTypeRequest

type DeleteSlotTypeInput struct {

    // The name of the slot type. The name is case sensitive.
    //
    // Name is a required field
    Name *string `location:"uri" locationName:"name" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteSlotTypeInput) GoString

func (s DeleteSlotTypeInput) GoString() string

GoString returns the string representation

func (*DeleteSlotTypeInput) SetName

func (s *DeleteSlotTypeInput) SetName(v string) *DeleteSlotTypeInput

SetName sets the Name field's value.

func (DeleteSlotTypeInput) String

func (s DeleteSlotTypeInput) String() string

String returns the string representation

func (*DeleteSlotTypeInput) Validate

func (s *DeleteSlotTypeInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteSlotTypeOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteSlotTypeOutput

type DeleteSlotTypeOutput struct {
    // contains filtered or unexported fields
}

func (DeleteSlotTypeOutput) GoString

func (s DeleteSlotTypeOutput) GoString() string

GoString returns the string representation

func (DeleteSlotTypeOutput) String

func (s DeleteSlotTypeOutput) String() string

String returns the string representation

type DeleteSlotTypeVersionInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteSlotTypeVersionRequest

type DeleteSlotTypeVersionInput struct {

    // The name of the slot type.
    //
    // Name is a required field
    Name *string `location:"uri" locationName:"name" min:"1" type:"string" required:"true"`

    // The version of the slot type to delete. You cannot delete the $LATEST version
    // of the slot type. To delete the $LATEST version, use the operation.
    //
    // Version is a required field
    Version *string `location:"uri" locationName:"version" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteSlotTypeVersionInput) GoString

func (s DeleteSlotTypeVersionInput) GoString() string

GoString returns the string representation

func (*DeleteSlotTypeVersionInput) SetName

func (s *DeleteSlotTypeVersionInput) SetName(v string) *DeleteSlotTypeVersionInput

SetName sets the Name field's value.

func (*DeleteSlotTypeVersionInput) SetVersion

func (s *DeleteSlotTypeVersionInput) SetVersion(v string) *DeleteSlotTypeVersionInput

SetVersion sets the Version field's value.

func (DeleteSlotTypeVersionInput) String

func (s DeleteSlotTypeVersionInput) String() string

String returns the string representation

func (*DeleteSlotTypeVersionInput) Validate

func (s *DeleteSlotTypeVersionInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteSlotTypeVersionOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteSlotTypeVersionOutput

type DeleteSlotTypeVersionOutput struct {
    // contains filtered or unexported fields
}

func (DeleteSlotTypeVersionOutput) GoString

func (s DeleteSlotTypeVersionOutput) GoString() string

GoString returns the string representation

func (DeleteSlotTypeVersionOutput) String

func (s DeleteSlotTypeVersionOutput) String() string

String returns the string representation

type DeleteUtterancesInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteUtterancesRequest

type DeleteUtterancesInput struct {

    // The name of the bot that stored the utterances.
    //
    // BotName is a required field
    BotName *string `location:"uri" locationName:"botName" min:"2" type:"string" required:"true"`

    // The unique identifier for the user that made the utterances. This is the
    // user ID that was sent in the or operation request that contained the utterance.
    //
    // UserId is a required field
    UserId *string `location:"uri" locationName:"userId" min:"2" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (DeleteUtterancesInput) GoString

func (s DeleteUtterancesInput) GoString() string

GoString returns the string representation

func (*DeleteUtterancesInput) SetBotName

func (s *DeleteUtterancesInput) SetBotName(v string) *DeleteUtterancesInput

SetBotName sets the BotName field's value.

func (*DeleteUtterancesInput) SetUserId

func (s *DeleteUtterancesInput) SetUserId(v string) *DeleteUtterancesInput

SetUserId sets the UserId field's value.

func (DeleteUtterancesInput) String

func (s DeleteUtterancesInput) String() string

String returns the string representation

func (*DeleteUtterancesInput) Validate

func (s *DeleteUtterancesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteUtterancesOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteUtterancesOutput

type DeleteUtterancesOutput struct {
    // contains filtered or unexported fields
}

func (DeleteUtterancesOutput) GoString

func (s DeleteUtterancesOutput) GoString() string

GoString returns the string representation

func (DeleteUtterancesOutput) String

func (s DeleteUtterancesOutput) String() string

String returns the string representation

type EnumerationValue

Each slot type can have a set of values. Each enumeration value represents a value the slot type can take.

For example, a pizza ordering bot could have a slot type that specifies the type of crust that the pizza should have. The slot type could include the values

* thick

* thin

* stuffed

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/EnumerationValue

type EnumerationValue struct {

    // The value of the slot type.
    //
    // Value is a required field
    Value *string `locationName:"value" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (EnumerationValue) GoString

func (s EnumerationValue) GoString() string

GoString returns the string representation

func (*EnumerationValue) SetValue

func (s *EnumerationValue) SetValue(v string) *EnumerationValue

SetValue sets the Value field's value.

func (EnumerationValue) String

func (s EnumerationValue) String() string

String returns the string representation

func (*EnumerationValue) Validate

func (s *EnumerationValue) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type FollowUpPrompt

After an intent is fulfilled, you might prompt the user for additional activity. For example, after the OrderPizza intent is fulfilled (the pizza order is placed with a pizzeria), you might prompt the user to find out whether the user wants to order drinks (another intent you defined in your bot). Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/FollowUpPrompt

type FollowUpPrompt struct {

    // Obtains information from the user.
    //
    // Prompt is a required field
    Prompt *Prompt `locationName:"prompt" type:"structure" required:"true"`

    // If the user answers "no" to the question defined in confirmationPrompt, Amazon
    // Lex responds with this statement to acknowledge that the intent was canceled.
    //
    // RejectionStatement is a required field
    RejectionStatement *Statement `locationName:"rejectionStatement" type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (FollowUpPrompt) GoString

func (s FollowUpPrompt) GoString() string

GoString returns the string representation

func (*FollowUpPrompt) SetPrompt

func (s *FollowUpPrompt) SetPrompt(v *Prompt) *FollowUpPrompt

SetPrompt sets the Prompt field's value.

func (*FollowUpPrompt) SetRejectionStatement

func (s *FollowUpPrompt) SetRejectionStatement(v *Statement) *FollowUpPrompt

SetRejectionStatement sets the RejectionStatement field's value.

func (FollowUpPrompt) String

func (s FollowUpPrompt) String() string

String returns the string representation

func (*FollowUpPrompt) Validate

func (s *FollowUpPrompt) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type FulfillmentActivity

Describes how the intent is fulfilled after the user provides all of the information required for the intent. You can provide a Lambda function to process the intent, or you can return the intent information to the client application. We recommend that you use a Lambda function so that the relevant logic lives in the Cloud and limit the client-side code primarily to presentation. If you need to update the logic, you only update the Lambda function; you don't need to upgrade your client application.

Consider the following examples:

* In a pizza ordering application, after the user provides all of the
information for placing an order, you use a Lambda function to place an
order with a pizzeria.

* In a gaming application, when a user says "pick up a rock," this information
must go back to the client application so that it can perform the operation
and update the graphics. In this case, you want Amazon Lex to return the
intent data to the client.

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/FulfillmentActivity

type FulfillmentActivity struct {

    // A description of the Lambda function that is run to fulfill the intent.
    CodeHook *CodeHook `locationName:"codeHook" type:"structure"`

    // How the intent should be fulfilled, either by running a Lambda function or
    // by returning the slot data to the client application.
    //
    // Type is a required field
    Type *string `locationName:"type" type:"string" required:"true" enum:"FulfillmentActivityType"`
    // contains filtered or unexported fields
}

func (FulfillmentActivity) GoString

func (s FulfillmentActivity) GoString() string

GoString returns the string representation

func (*FulfillmentActivity) SetCodeHook

func (s *FulfillmentActivity) SetCodeHook(v *CodeHook) *FulfillmentActivity

SetCodeHook sets the CodeHook field's value.

func (*FulfillmentActivity) SetType

func (s *FulfillmentActivity) SetType(v string) *FulfillmentActivity

SetType sets the Type field's value.

func (FulfillmentActivity) String

func (s FulfillmentActivity) String() string

String returns the string representation

func (*FulfillmentActivity) Validate

func (s *FulfillmentActivity) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetBotAliasInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBotAliasRequest

type GetBotAliasInput struct {

    // The name of the bot.
    //
    // BotName is a required field
    BotName *string `location:"uri" locationName:"botName" min:"2" type:"string" required:"true"`

    // The name of the bot alias. The name is case sensitive.
    //
    // Name is a required field
    Name *string `location:"uri" locationName:"name" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (GetBotAliasInput) GoString

func (s GetBotAliasInput) GoString() string

GoString returns the string representation

func (*GetBotAliasInput) SetBotName

func (s *GetBotAliasInput) SetBotName(v string) *GetBotAliasInput

SetBotName sets the BotName field's value.

func (*GetBotAliasInput) SetName

func (s *GetBotAliasInput) SetName(v string) *GetBotAliasInput

SetName sets the Name field's value.

func (GetBotAliasInput) String

func (s GetBotAliasInput) String() string

String returns the string representation

func (*GetBotAliasInput) Validate

func (s *GetBotAliasInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetBotAliasOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBotAliasResponse

type GetBotAliasOutput struct {

    // The name of the bot that the alias points to.
    BotName *string `locationName:"botName" min:"2" type:"string"`

    // The version of the bot that the alias points to.
    BotVersion *string `locationName:"botVersion" min:"1" type:"string"`

    // Checksum of the bot alias.
    Checksum *string `locationName:"checksum" type:"string"`

    // The date that the bot alias was created.
    CreatedDate *time.Time `locationName:"createdDate" type:"timestamp" timestampFormat:"unix"`

    // A description of the bot alias.
    Description *string `locationName:"description" type:"string"`

    // The date that the bot alias was updated. When you create a resource, the
    // creation date and the last updated date are the same.
    LastUpdatedDate *time.Time `locationName:"lastUpdatedDate" type:"timestamp" timestampFormat:"unix"`

    // The name of the bot alias.
    Name *string `locationName:"name" min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (GetBotAliasOutput) GoString

func (s GetBotAliasOutput) GoString() string

GoString returns the string representation

func (*GetBotAliasOutput) SetBotName

func (s *GetBotAliasOutput) SetBotName(v string) *GetBotAliasOutput

SetBotName sets the BotName field's value.

func (*GetBotAliasOutput) SetBotVersion

func (s *GetBotAliasOutput) SetBotVersion(v string) *GetBotAliasOutput

SetBotVersion sets the BotVersion field's value.

func (*GetBotAliasOutput) SetChecksum

func (s *GetBotAliasOutput) SetChecksum(v string) *GetBotAliasOutput

SetChecksum sets the Checksum field's value.

func (*GetBotAliasOutput) SetCreatedDate

func (s *GetBotAliasOutput) SetCreatedDate(v time.Time) *GetBotAliasOutput

SetCreatedDate sets the CreatedDate field's value.

func (*GetBotAliasOutput) SetDescription

func (s *GetBotAliasOutput) SetDescription(v string) *GetBotAliasOutput

SetDescription sets the Description field's value.

func (*GetBotAliasOutput) SetLastUpdatedDate

func (s *GetBotAliasOutput) SetLastUpdatedDate(v time.Time) *GetBotAliasOutput

SetLastUpdatedDate sets the LastUpdatedDate field's value.

func (*GetBotAliasOutput) SetName

func (s *GetBotAliasOutput) SetName(v string) *GetBotAliasOutput

SetName sets the Name field's value.

func (GetBotAliasOutput) String

func (s GetBotAliasOutput) String() string

String returns the string representation

type GetBotAliasesInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBotAliasesRequest

type GetBotAliasesInput struct {

    // The name of the bot.
    //
    // BotName is a required field
    BotName *string `location:"uri" locationName:"botName" min:"2" type:"string" required:"true"`

    // The maximum number of aliases to return in the response. The default is 50.
    // .
    MaxResults *int64 `location:"querystring" locationName:"maxResults" min:"1" type:"integer"`

    // Substring to match in bot alias names. An alias will be returned if any part
    // of its name matches the substring. For example, "xyz" matches both "xyzabc"
    // and "abcxyz."
    NameContains *string `location:"querystring" locationName:"nameContains" min:"1" type:"string"`

    // A pagination token for fetching the next page of aliases. If the response
    // to this call is truncated, Amazon Lex returns a pagination token in the response.
    // To fetch the next page of aliases, specify the pagination token in the next
    // request.
    NextToken *string `location:"querystring" locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

func (GetBotAliasesInput) GoString

func (s GetBotAliasesInput) GoString() string

GoString returns the string representation

func (*GetBotAliasesInput) SetBotName

func (s *GetBotAliasesInput) SetBotName(v string) *GetBotAliasesInput

SetBotName sets the BotName field's value.

func (*GetBotAliasesInput) SetMaxResults

func (s *GetBotAliasesInput) SetMaxResults(v int64) *GetBotAliasesInput

SetMaxResults sets the MaxResults field's value.

func (*GetBotAliasesInput) SetNameContains

func (s *GetBotAliasesInput) SetNameContains(v string) *GetBotAliasesInput

SetNameContains sets the NameContains field's value.

func (*GetBotAliasesInput) SetNextToken

func (s *GetBotAliasesInput) SetNextToken(v string) *GetBotAliasesInput

SetNextToken sets the NextToken field's value.

func (GetBotAliasesInput) String

func (s GetBotAliasesInput) String() string

String returns the string representation

func (*GetBotAliasesInput) Validate

func (s *GetBotAliasesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetBotAliasesOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBotAliasesResponse

type GetBotAliasesOutput struct {

    // An array of BotAliasMetadata objects, each describing a bot alias.
    BotAliases []*BotAliasMetadata `type:"list"`

    // A pagination token for fetching next page of aliases. If the response to
    // this call is truncated, Amazon Lex returns a pagination token in the response.
    // To fetch the next page of aliases, specify the pagination token in the next
    // request.
    NextToken *string `locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

func (GetBotAliasesOutput) GoString

func (s GetBotAliasesOutput) GoString() string

GoString returns the string representation

func (*GetBotAliasesOutput) SetBotAliases

func (s *GetBotAliasesOutput) SetBotAliases(v []*BotAliasMetadata) *GetBotAliasesOutput

SetBotAliases sets the BotAliases field's value.

func (*GetBotAliasesOutput) SetNextToken

func (s *GetBotAliasesOutput) SetNextToken(v string) *GetBotAliasesOutput

SetNextToken sets the NextToken field's value.

func (GetBotAliasesOutput) String

func (s GetBotAliasesOutput) String() string

String returns the string representation

type GetBotChannelAssociationInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBotChannelAssociationRequest

type GetBotChannelAssociationInput struct {

    // An alias pointing to the specific version of the Amazon Lex bot to which
    // this association is being made.
    //
    // BotAlias is a required field
    BotAlias *string `location:"uri" locationName:"aliasName" min:"1" type:"string" required:"true"`

    // The name of the Amazon Lex bot.
    //
    // BotName is a required field
    BotName *string `location:"uri" locationName:"botName" min:"2" type:"string" required:"true"`

    // The name of the association between the bot and the channel. The name is
    // case sensitive.
    //
    // Name is a required field
    Name *string `location:"uri" locationName:"name" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (GetBotChannelAssociationInput) GoString

func (s GetBotChannelAssociationInput) GoString() string

GoString returns the string representation

func (*GetBotChannelAssociationInput) SetBotAlias

func (s *GetBotChannelAssociationInput) SetBotAlias(v string) *GetBotChannelAssociationInput

SetBotAlias sets the BotAlias field's value.

func (*GetBotChannelAssociationInput) SetBotName

func (s *GetBotChannelAssociationInput) SetBotName(v string) *GetBotChannelAssociationInput

SetBotName sets the BotName field's value.

func (*GetBotChannelAssociationInput) SetName

func (s *GetBotChannelAssociationInput) SetName(v string) *GetBotChannelAssociationInput

SetName sets the Name field's value.

func (GetBotChannelAssociationInput) String

func (s GetBotChannelAssociationInput) String() string

String returns the string representation

func (*GetBotChannelAssociationInput) Validate

func (s *GetBotChannelAssociationInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetBotChannelAssociationOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBotChannelAssociationResponse

type GetBotChannelAssociationOutput struct {

    // An alias pointing to the specific version of the Amazon Lex bot to which
    // this association is being made.
    BotAlias *string `locationName:"botAlias" min:"1" type:"string"`

    // Provides information that the messaging platform needs to communicate with
    // the Amazon Lex bot.
    BotConfiguration map[string]*string `locationName:"botConfiguration" min:"1" type:"map"`

    // The name of the Amazon Lex bot.
    BotName *string `locationName:"botName" min:"2" type:"string"`

    // The date that the association between the bot and the channel was created.
    CreatedDate *time.Time `locationName:"createdDate" type:"timestamp" timestampFormat:"unix"`

    // A description of the association between the bot and the channel.
    Description *string `locationName:"description" type:"string"`

    // The name of the association between the bot and the channel.
    Name *string `locationName:"name" min:"1" type:"string"`

    // The type of the messaging platform.
    Type *string `locationName:"type" type:"string" enum:"ChannelType"`
    // contains filtered or unexported fields
}

func (GetBotChannelAssociationOutput) GoString

func (s GetBotChannelAssociationOutput) GoString() string

GoString returns the string representation

func (*GetBotChannelAssociationOutput) SetBotAlias

func (s *GetBotChannelAssociationOutput) SetBotAlias(v string) *GetBotChannelAssociationOutput

SetBotAlias sets the BotAlias field's value.

func (*GetBotChannelAssociationOutput) SetBotConfiguration

func (s *GetBotChannelAssociationOutput) SetBotConfiguration(v map[string]*string) *GetBotChannelAssociationOutput

SetBotConfiguration sets the BotConfiguration field's value.

func (*GetBotChannelAssociationOutput) SetBotName

func (s *GetBotChannelAssociationOutput) SetBotName(v string) *GetBotChannelAssociationOutput

SetBotName sets the BotName field's value.

func (*GetBotChannelAssociationOutput) SetCreatedDate

func (s *GetBotChannelAssociationOutput) SetCreatedDate(v time.Time) *GetBotChannelAssociationOutput

SetCreatedDate sets the CreatedDate field's value.

func (*GetBotChannelAssociationOutput) SetDescription

func (s *GetBotChannelAssociationOutput) SetDescription(v string) *GetBotChannelAssociationOutput

SetDescription sets the Description field's value.

func (*GetBotChannelAssociationOutput) SetName

func (s *GetBotChannelAssociationOutput) SetName(v string) *GetBotChannelAssociationOutput

SetName sets the Name field's value.

func (*GetBotChannelAssociationOutput) SetType

func (s *GetBotChannelAssociationOutput) SetType(v string) *GetBotChannelAssociationOutput

SetType sets the Type field's value.

func (GetBotChannelAssociationOutput) String

func (s GetBotChannelAssociationOutput) String() string

String returns the string representation

type GetBotChannelAssociationsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBotChannelAssociationsRequest

type GetBotChannelAssociationsInput struct {

    // An alias pointing to the specific version of the Amazon Lex bot to which
    // this association is being made.
    //
    // BotAlias is a required field
    BotAlias *string `location:"uri" locationName:"aliasName" min:"1" type:"string" required:"true"`

    // The name of the Amazon Lex bot in the association.
    //
    // BotName is a required field
    BotName *string `location:"uri" locationName:"botName" min:"2" type:"string" required:"true"`

    // The maximum number of associations to return in the response. The default
    // is 50.
    MaxResults *int64 `location:"querystring" locationName:"maxResults" min:"1" type:"integer"`

    // Substring to match in channel association names. An association will be returned
    // if any part of its name matches the substring. For example, "xyz" matches
    // both "xyzabc" and "abcxyz." To return all bot channel associations, use a
    // hyphen ("-") as the nameContains parameter.
    NameContains *string `location:"querystring" locationName:"nameContains" min:"1" type:"string"`

    // A pagination token for fetching the next page of associations. If the response
    // to this call is truncated, Amazon Lex returns a pagination token in the response.
    // To fetch the next page of associations, specify the pagination token in the
    // next request.
    NextToken *string `location:"querystring" locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

func (GetBotChannelAssociationsInput) GoString

func (s GetBotChannelAssociationsInput) GoString() string

GoString returns the string representation

func (*GetBotChannelAssociationsInput) SetBotAlias

func (s *GetBotChannelAssociationsInput) SetBotAlias(v string) *GetBotChannelAssociationsInput

SetBotAlias sets the BotAlias field's value.

func (*GetBotChannelAssociationsInput) SetBotName

func (s *GetBotChannelAssociationsInput) SetBotName(v string) *GetBotChannelAssociationsInput

SetBotName sets the BotName field's value.

func (*GetBotChannelAssociationsInput) SetMaxResults

func (s *GetBotChannelAssociationsInput) SetMaxResults(v int64) *GetBotChannelAssociationsInput

SetMaxResults sets the MaxResults field's value.

func (*GetBotChannelAssociationsInput) SetNameContains

func (s *GetBotChannelAssociationsInput) SetNameContains(v string) *GetBotChannelAssociationsInput

SetNameContains sets the NameContains field's value.

func (*GetBotChannelAssociationsInput) SetNextToken

func (s *GetBotChannelAssociationsInput) SetNextToken(v string) *GetBotChannelAssociationsInput

SetNextToken sets the NextToken field's value.

func (GetBotChannelAssociationsInput) String

func (s GetBotChannelAssociationsInput) String() string

String returns the string representation

func (*GetBotChannelAssociationsInput) Validate

func (s *GetBotChannelAssociationsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetBotChannelAssociationsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBotChannelAssociationsResponse

type GetBotChannelAssociationsOutput struct {

    // An array of objects, one for each association, that provides information
    // about the Amazon Lex bot and its association with the channel.
    BotChannelAssociations []*BotChannelAssociation `locationName:"botChannelAssociations" type:"list"`

    // A pagination token that fetches the next page of associations. If the response
    // to this call is truncated, Amazon Lex returns a pagination token in the response.
    // To fetch the next page of associations, specify the pagination token in the
    // next request.
    NextToken *string `locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

func (GetBotChannelAssociationsOutput) GoString

func (s GetBotChannelAssociationsOutput) GoString() string

GoString returns the string representation

func (*GetBotChannelAssociationsOutput) SetBotChannelAssociations

func (s *GetBotChannelAssociationsOutput) SetBotChannelAssociations(v []*BotChannelAssociation) *GetBotChannelAssociationsOutput

SetBotChannelAssociations sets the BotChannelAssociations field's value.

func (*GetBotChannelAssociationsOutput) SetNextToken

func (s *GetBotChannelAssociationsOutput) SetNextToken(v string) *GetBotChannelAssociationsOutput

SetNextToken sets the NextToken field's value.

func (GetBotChannelAssociationsOutput) String

func (s GetBotChannelAssociationsOutput) String() string

String returns the string representation

type GetBotInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBotRequest

type GetBotInput struct {

    // The name of the bot. The name is case sensitive.
    //
    // Name is a required field
    Name *string `location:"uri" locationName:"name" min:"2" type:"string" required:"true"`

    // The version or alias of the bot.
    //
    // VersionOrAlias is a required field
    VersionOrAlias *string `location:"uri" locationName:"versionoralias" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (GetBotInput) GoString

func (s GetBotInput) GoString() string

GoString returns the string representation

func (*GetBotInput) SetName

func (s *GetBotInput) SetName(v string) *GetBotInput

SetName sets the Name field's value.

func (*GetBotInput) SetVersionOrAlias

func (s *GetBotInput) SetVersionOrAlias(v string) *GetBotInput

SetVersionOrAlias sets the VersionOrAlias field's value.

func (GetBotInput) String

func (s GetBotInput) String() string

String returns the string representation

func (*GetBotInput) Validate

func (s *GetBotInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetBotOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBotResponse

type GetBotOutput struct {

    // The message that Amazon Lex returns when the user elects to end the conversation
    // without completing it. For more information, see .
    AbortStatement *Statement `locationName:"abortStatement" type:"structure"`

    // Checksum of the bot used to identify a specific revision of the bot's $LATEST
    // version.
    Checksum *string `locationName:"checksum" type:"string"`

    // For each Amazon Lex bot created with the Amazon Lex Model Building Service,
    // you must specify whether your use of Amazon Lex is related to a website,
    // program, or other application that is directed or targeted, in whole or in
    // part, to children under age 13 and subject to the Children's Online Privacy
    // Protection Act (COPPA) by specifying true or false in the childDirected field.
    // By specifying true in the childDirected field, you confirm that your use
    // of Amazon Lex is related to a website, program, or other application that
    // is directed or targeted, in whole or in part, to children under age 13 and
    // subject to COPPA. By specifying false in the childDirected field, you confirm
    // that your use of Amazon Lex is not related to a website, program, or other
    // application that is directed or targeted, in whole or in part, to children
    // under age 13 and subject to COPPA. You may not specify a default value for
    // the childDirected field that does not accurately reflect whether your use
    // of Amazon Lex is related to a website, program, or other application that
    // is directed or targeted, in whole or in part, to children under age 13 and
    // subject to COPPA.
    //
    // If your use of Amazon Lex relates to a website, program, or other application
    // that is directed in whole or in part, to children under age 13, you must
    // obtain any required verifiable parental consent under COPPA. For information
    // regarding the use of Amazon Lex in connection with websites, programs, or
    // other applications that are directed or targeted, in whole or in part, to
    // children under age 13, see the Amazon Lex FAQ. (https://aws.amazon.com/lex/faqs#data-security)
    ChildDirected *bool `locationName:"childDirected" type:"boolean"`

    // The message Amazon Lex uses when it doesn't understand the user's request.
    // For more information, see .
    ClarificationPrompt *Prompt `locationName:"clarificationPrompt" type:"structure"`

    // The date that the bot was created.
    CreatedDate *time.Time `locationName:"createdDate" type:"timestamp" timestampFormat:"unix"`

    // A description of the bot.
    Description *string `locationName:"description" type:"string"`

    // If status is FAILED, Amazon Lex explains why it failed to build the bot.
    FailureReason *string `locationName:"failureReason" type:"string"`

    // The maximum time in seconds that Amazon Lex retains the data gathered in
    // a conversation. For more information, see .
    IdleSessionTTLInSeconds *int64 `locationName:"idleSessionTTLInSeconds" min:"60" type:"integer"`

    // An array of intent objects. For more information, see .
    Intents []*Intent `locationName:"intents" min:"1" type:"list"`

    // The date that the bot was updated. When you create a resource, the creation
    // date and last updated date are the same.
    LastUpdatedDate *time.Time `locationName:"lastUpdatedDate" type:"timestamp" timestampFormat:"unix"`

    // The target locale for the bot.
    Locale *string `locationName:"locale" type:"string" enum:"Locale"`

    // The name of the bot.
    Name *string `locationName:"name" min:"2" type:"string"`

    // The status of the bot. If the bot is ready to run, the status is READY. If
    // there was a problem with building the bot, the status is FAILED and the failureReason
    // explains why the bot did not build. If the bot was saved but not built, the
    // status is NOT BUILT.
    Status *string `locationName:"status" type:"string" enum:"Status"`

    // The version of the bot. For a new bot, the version is always $LATEST.
    Version *string `locationName:"version" min:"1" type:"string"`

    // The Amazon Polly voice ID that Amazon Lex uses for voice interaction with
    // the user. For more information, see .
    VoiceId *string `locationName:"voiceId" type:"string"`
    // contains filtered or unexported fields
}

func (GetBotOutput) GoString

func (s GetBotOutput) GoString() string

GoString returns the string representation

func (*GetBotOutput) SetAbortStatement

func (s *GetBotOutput) SetAbortStatement(v *Statement) *GetBotOutput

SetAbortStatement sets the AbortStatement field's value.

func (*GetBotOutput) SetChecksum

func (s *GetBotOutput) SetChecksum(v string) *GetBotOutput

SetChecksum sets the Checksum field's value.

func (*GetBotOutput) SetChildDirected

func (s *GetBotOutput) SetChildDirected(v bool) *GetBotOutput

SetChildDirected sets the ChildDirected field's value.

func (*GetBotOutput) SetClarificationPrompt

func (s *GetBotOutput) SetClarificationPrompt(v *Prompt) *GetBotOutput

SetClarificationPrompt sets the ClarificationPrompt field's value.

func (*GetBotOutput) SetCreatedDate

func (s *GetBotOutput) SetCreatedDate(v time.Time) *GetBotOutput

SetCreatedDate sets the CreatedDate field's value.

func (*GetBotOutput) SetDescription

func (s *GetBotOutput) SetDescription(v string) *GetBotOutput

SetDescription sets the Description field's value.

func (*GetBotOutput) SetFailureReason

func (s *GetBotOutput) SetFailureReason(v string) *GetBotOutput

SetFailureReason sets the FailureReason field's value.

func (*GetBotOutput) SetIdleSessionTTLInSeconds

func (s *GetBotOutput) SetIdleSessionTTLInSeconds(v int64) *GetBotOutput

SetIdleSessionTTLInSeconds sets the IdleSessionTTLInSeconds field's value.

func (*GetBotOutput) SetIntents

func (s *GetBotOutput) SetIntents(v []*Intent) *GetBotOutput

SetIntents sets the Intents field's value.

func (*GetBotOutput) SetLastUpdatedDate

func (s *GetBotOutput) SetLastUpdatedDate(v time.Time) *GetBotOutput

SetLastUpdatedDate sets the LastUpdatedDate field's value.

func (*GetBotOutput) SetLocale

func (s *GetBotOutput) SetLocale(v string) *GetBotOutput

SetLocale sets the Locale field's value.

func (*GetBotOutput) SetName

func (s *GetBotOutput) SetName(v string) *GetBotOutput

SetName sets the Name field's value.

func (*GetBotOutput) SetStatus

func (s *GetBotOutput) SetStatus(v string) *GetBotOutput

SetStatus sets the Status field's value.

func (*GetBotOutput) SetVersion

func (s *GetBotOutput) SetVersion(v string) *GetBotOutput

SetVersion sets the Version field's value.

func (*GetBotOutput) SetVoiceId

func (s *GetBotOutput) SetVoiceId(v string) *GetBotOutput

SetVoiceId sets the VoiceId field's value.

func (GetBotOutput) String

func (s GetBotOutput) String() string

String returns the string representation

type GetBotVersionsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBotVersionsRequest

type GetBotVersionsInput struct {

    // The maximum number of bot versions to return in the response. The default
    // is 10.
    MaxResults *int64 `location:"querystring" locationName:"maxResults" min:"1" type:"integer"`

    // The name of the bot for which versions should be returned.
    //
    // Name is a required field
    Name *string `location:"uri" locationName:"name" min:"2" type:"string" required:"true"`

    // A pagination token for fetching the next page of bot versions. If the response
    // to this call is truncated, Amazon Lex returns a pagination token in the response.
    // To fetch the next page of versions, specify the pagination token in the next
    // request.
    NextToken *string `location:"querystring" locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

func (GetBotVersionsInput) GoString

func (s GetBotVersionsInput) GoString() string

GoString returns the string representation

func (*GetBotVersionsInput) SetMaxResults

func (s *GetBotVersionsInput) SetMaxResults(v int64) *GetBotVersionsInput

SetMaxResults sets the MaxResults field's value.

func (*GetBotVersionsInput) SetName

func (s *GetBotVersionsInput) SetName(v string) *GetBotVersionsInput

SetName sets the Name field's value.

func (*GetBotVersionsInput) SetNextToken

func (s *GetBotVersionsInput) SetNextToken(v string) *GetBotVersionsInput

SetNextToken sets the NextToken field's value.

func (GetBotVersionsInput) String

func (s GetBotVersionsInput) String() string

String returns the string representation

func (*GetBotVersionsInput) Validate

func (s *GetBotVersionsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetBotVersionsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBotVersionsResponse

type GetBotVersionsOutput struct {

    // An array of BotMetadata objects, one for each numbered version of the bot
    // plus one for the $LATEST version.
    Bots []*BotMetadata `locationName:"bots" type:"list"`

    // A pagination token for fetching the next page of bot versions. If the response
    // to this call is truncated, Amazon Lex returns a pagination token in the response.
    // To fetch the next page of versions, specify the pagination token in the next
    // request.
    NextToken *string `locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

func (GetBotVersionsOutput) GoString

func (s GetBotVersionsOutput) GoString() string

GoString returns the string representation

func (*GetBotVersionsOutput) SetBots

func (s *GetBotVersionsOutput) SetBots(v []*BotMetadata) *GetBotVersionsOutput

SetBots sets the Bots field's value.

func (*GetBotVersionsOutput) SetNextToken

func (s *GetBotVersionsOutput) SetNextToken(v string) *GetBotVersionsOutput

SetNextToken sets the NextToken field's value.

func (GetBotVersionsOutput) String

func (s GetBotVersionsOutput) String() string

String returns the string representation

type GetBotsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBotsRequest

type GetBotsInput struct {

    // The maximum number of bots to return in the response that the request will
    // return. The default is 10.
    MaxResults *int64 `location:"querystring" locationName:"maxResults" min:"1" type:"integer"`

    // Substring to match in bot names. A bot will be returned if any part of its
    // name matches the substring. For example, "xyz" matches both "xyzabc" and
    // "abcxyz."
    NameContains *string `location:"querystring" locationName:"nameContains" min:"2" type:"string"`

    // A pagination token that fetches the next page of bots. If the response to
    // this call is truncated, Amazon Lex returns a pagination token in the response.
    // To fetch the next page of bots, specify the pagination token in the next
    // request.
    NextToken *string `location:"querystring" locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

func (GetBotsInput) GoString

func (s GetBotsInput) GoString() string

GoString returns the string representation

func (*GetBotsInput) SetMaxResults

func (s *GetBotsInput) SetMaxResults(v int64) *GetBotsInput

SetMaxResults sets the MaxResults field's value.

func (*GetBotsInput) SetNameContains

func (s *GetBotsInput) SetNameContains(v string) *GetBotsInput

SetNameContains sets the NameContains field's value.

func (*GetBotsInput) SetNextToken

func (s *GetBotsInput) SetNextToken(v string) *GetBotsInput

SetNextToken sets the NextToken field's value.

func (GetBotsInput) String

func (s GetBotsInput) String() string

String returns the string representation

func (*GetBotsInput) Validate

func (s *GetBotsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetBotsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBotsResponse

type GetBotsOutput struct {

    // An array of botMetadata objects, with one entry for each bot.
    Bots []*BotMetadata `locationName:"bots" type:"list"`

    // If the response is truncated, it includes a pagination token that you can
    // specify in your next request to fetch the next page of bots.
    NextToken *string `locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

func (GetBotsOutput) GoString

func (s GetBotsOutput) GoString() string

GoString returns the string representation

func (*GetBotsOutput) SetBots

func (s *GetBotsOutput) SetBots(v []*BotMetadata) *GetBotsOutput

SetBots sets the Bots field's value.

func (*GetBotsOutput) SetNextToken

func (s *GetBotsOutput) SetNextToken(v string) *GetBotsOutput

SetNextToken sets the NextToken field's value.

func (GetBotsOutput) String

func (s GetBotsOutput) String() string

String returns the string representation

type GetBuiltinIntentInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBuiltinIntentRequest

type GetBuiltinIntentInput struct {

    // The unique identifier for a built-in intent. To find the signature for an
    // intent, see Standard Built-in Intents (https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/built-in-intent-ref/standard-intents)
    // in the Alexa Skills Kit.
    //
    // Signature is a required field
    Signature *string `location:"uri" locationName:"signature" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (GetBuiltinIntentInput) GoString

func (s GetBuiltinIntentInput) GoString() string

GoString returns the string representation

func (*GetBuiltinIntentInput) SetSignature

func (s *GetBuiltinIntentInput) SetSignature(v string) *GetBuiltinIntentInput

SetSignature sets the Signature field's value.

func (GetBuiltinIntentInput) String

func (s GetBuiltinIntentInput) String() string

String returns the string representation

func (*GetBuiltinIntentInput) Validate

func (s *GetBuiltinIntentInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetBuiltinIntentOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBuiltinIntentResponse

type GetBuiltinIntentOutput struct {

    // The unique identifier for a built-in intent.
    Signature *string `locationName:"signature" type:"string"`

    // An array of BuiltinIntentSlot objects, one entry for each slot type in the
    // intent.
    Slots []*BuiltinIntentSlot `locationName:"slots" type:"list"`

    // A list of locales that the intent supports.
    SupportedLocales []*string `locationName:"supportedLocales" type:"list"`
    // contains filtered or unexported fields
}

func (GetBuiltinIntentOutput) GoString

func (s GetBuiltinIntentOutput) GoString() string

GoString returns the string representation

func (*GetBuiltinIntentOutput) SetSignature

func (s *GetBuiltinIntentOutput) SetSignature(v string) *GetBuiltinIntentOutput

SetSignature sets the Signature field's value.

func (*GetBuiltinIntentOutput) SetSlots

func (s *GetBuiltinIntentOutput) SetSlots(v []*BuiltinIntentSlot) *GetBuiltinIntentOutput

SetSlots sets the Slots field's value.

func (*GetBuiltinIntentOutput) SetSupportedLocales

func (s *GetBuiltinIntentOutput) SetSupportedLocales(v []*string) *GetBuiltinIntentOutput

SetSupportedLocales sets the SupportedLocales field's value.

func (GetBuiltinIntentOutput) String

func (s GetBuiltinIntentOutput) String() string

String returns the string representation

type GetBuiltinIntentsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBuiltinIntentsRequest

type GetBuiltinIntentsInput struct {

    // A list of locales that the intent supports.
    Locale *string `location:"querystring" locationName:"locale" type:"string" enum:"Locale"`

    // The maximum number of intents to return in the response. The default is 10.
    MaxResults *int64 `location:"querystring" locationName:"maxResults" min:"1" type:"integer"`

    // A pagination token that fetches the next page of intents. If this API call
    // is truncated, Amazon Lex returns a pagination token in the response. To fetch
    // the next page of intents, use the pagination token in the next request.
    NextToken *string `location:"querystring" locationName:"nextToken" type:"string"`

    // Substring to match in built-in intent signatures. An intent will be returned
    // if any part of its signature matches the substring. For example, "xyz" matches
    // both "xyzabc" and "abcxyz." To find the signature for an intent, see Standard
    // Built-in Intents (https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/built-in-intent-ref/standard-intents)
    // in the Alexa Skills Kit.
    SignatureContains *string `location:"querystring" locationName:"signatureContains" type:"string"`
    // contains filtered or unexported fields
}

func (GetBuiltinIntentsInput) GoString

func (s GetBuiltinIntentsInput) GoString() string

GoString returns the string representation

func (*GetBuiltinIntentsInput) SetLocale

func (s *GetBuiltinIntentsInput) SetLocale(v string) *GetBuiltinIntentsInput

SetLocale sets the Locale field's value.

func (*GetBuiltinIntentsInput) SetMaxResults

func (s *GetBuiltinIntentsInput) SetMaxResults(v int64) *GetBuiltinIntentsInput

SetMaxResults sets the MaxResults field's value.

func (*GetBuiltinIntentsInput) SetNextToken

func (s *GetBuiltinIntentsInput) SetNextToken(v string) *GetBuiltinIntentsInput

SetNextToken sets the NextToken field's value.

func (*GetBuiltinIntentsInput) SetSignatureContains

func (s *GetBuiltinIntentsInput) SetSignatureContains(v string) *GetBuiltinIntentsInput

SetSignatureContains sets the SignatureContains field's value.

func (GetBuiltinIntentsInput) String

func (s GetBuiltinIntentsInput) String() string

String returns the string representation

func (*GetBuiltinIntentsInput) Validate

func (s *GetBuiltinIntentsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetBuiltinIntentsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBuiltinIntentsResponse

type GetBuiltinIntentsOutput struct {

    // An array of builtinIntentMetadata objects, one for each intent in the response.
    Intents []*BuiltinIntentMetadata `locationName:"intents" type:"list"`

    // A pagination token that fetches the next page of intents. If the response
    // to this API call is truncated, Amazon Lex returns a pagination token in the
    // response. To fetch the next page of intents, specify the pagination token
    // in the next request.
    NextToken *string `locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

func (GetBuiltinIntentsOutput) GoString

func (s GetBuiltinIntentsOutput) GoString() string

GoString returns the string representation

func (*GetBuiltinIntentsOutput) SetIntents

func (s *GetBuiltinIntentsOutput) SetIntents(v []*BuiltinIntentMetadata) *GetBuiltinIntentsOutput

SetIntents sets the Intents field's value.

func (*GetBuiltinIntentsOutput) SetNextToken

func (s *GetBuiltinIntentsOutput) SetNextToken(v string) *GetBuiltinIntentsOutput

SetNextToken sets the NextToken field's value.

func (GetBuiltinIntentsOutput) String

func (s GetBuiltinIntentsOutput) String() string

String returns the string representation

type GetBuiltinSlotTypesInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBuiltinSlotTypesRequest

type GetBuiltinSlotTypesInput struct {

    // A list of locales that the slot type supports.
    Locale *string `location:"querystring" locationName:"locale" type:"string" enum:"Locale"`

    // The maximum number of slot types to return in the response. The default is
    // 10.
    MaxResults *int64 `location:"querystring" locationName:"maxResults" min:"1" type:"integer"`

    // A pagination token that fetches the next page of slot types. If the response
    // to this API call is truncated, Amazon Lex returns a pagination token in the
    // response. To fetch the next page of slot types, specify the pagination token
    // in the next request.
    NextToken *string `location:"querystring" locationName:"nextToken" type:"string"`

    // Substring to match in built-in slot type signatures. A slot type will be
    // returned if any part of its signature matches the substring. For example,
    // "xyz" matches both "xyzabc" and "abcxyz."
    SignatureContains *string `location:"querystring" locationName:"signatureContains" type:"string"`
    // contains filtered or unexported fields
}

func (GetBuiltinSlotTypesInput) GoString

func (s GetBuiltinSlotTypesInput) GoString() string

GoString returns the string representation

func (*GetBuiltinSlotTypesInput) SetLocale

func (s *GetBuiltinSlotTypesInput) SetLocale(v string) *GetBuiltinSlotTypesInput

SetLocale sets the Locale field's value.

func (*GetBuiltinSlotTypesInput) SetMaxResults

func (s *GetBuiltinSlotTypesInput) SetMaxResults(v int64) *GetBuiltinSlotTypesInput

SetMaxResults sets the MaxResults field's value.

func (*GetBuiltinSlotTypesInput) SetNextToken

func (s *GetBuiltinSlotTypesInput) SetNextToken(v string) *GetBuiltinSlotTypesInput

SetNextToken sets the NextToken field's value.

func (*GetBuiltinSlotTypesInput) SetSignatureContains

func (s *GetBuiltinSlotTypesInput) SetSignatureContains(v string) *GetBuiltinSlotTypesInput

SetSignatureContains sets the SignatureContains field's value.

func (GetBuiltinSlotTypesInput) String

func (s GetBuiltinSlotTypesInput) String() string

String returns the string representation

func (*GetBuiltinSlotTypesInput) Validate

func (s *GetBuiltinSlotTypesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetBuiltinSlotTypesOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBuiltinSlotTypesResponse

type GetBuiltinSlotTypesOutput struct {

    // If the response is truncated, the response includes a pagination token that
    // you can use in your next request to fetch the next page of slot types.
    NextToken *string `locationName:"nextToken" type:"string"`

    // An array of BuiltInSlotTypeMetadata objects, one entry for each slot type
    // returned.
    SlotTypes []*BuiltinSlotTypeMetadata `locationName:"slotTypes" type:"list"`
    // contains filtered or unexported fields
}

func (GetBuiltinSlotTypesOutput) GoString

func (s GetBuiltinSlotTypesOutput) GoString() string

GoString returns the string representation

func (*GetBuiltinSlotTypesOutput) SetNextToken

func (s *GetBuiltinSlotTypesOutput) SetNextToken(v string) *GetBuiltinSlotTypesOutput

SetNextToken sets the NextToken field's value.

func (*GetBuiltinSlotTypesOutput) SetSlotTypes

func (s *GetBuiltinSlotTypesOutput) SetSlotTypes(v []*BuiltinSlotTypeMetadata) *GetBuiltinSlotTypesOutput

SetSlotTypes sets the SlotTypes field's value.

func (GetBuiltinSlotTypesOutput) String

func (s GetBuiltinSlotTypesOutput) String() string

String returns the string representation

type GetIntentInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetIntentRequest

type GetIntentInput struct {

    // The name of the intent. The name is case sensitive.
    //
    // Name is a required field
    Name *string `location:"uri" locationName:"name" min:"1" type:"string" required:"true"`

    // The version of the intent.
    //
    // Version is a required field
    Version *string `location:"uri" locationName:"version" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (GetIntentInput) GoString

func (s GetIntentInput) GoString() string

GoString returns the string representation

func (*GetIntentInput) SetName

func (s *GetIntentInput) SetName(v string) *GetIntentInput

SetName sets the Name field's value.

func (*GetIntentInput) SetVersion

func (s *GetIntentInput) SetVersion(v string) *GetIntentInput

SetVersion sets the Version field's value.

func (GetIntentInput) String

func (s GetIntentInput) String() string

String returns the string representation

func (*GetIntentInput) Validate

func (s *GetIntentInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetIntentOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetIntentResponse

type GetIntentOutput struct {

    // Checksum of the intent.
    Checksum *string `locationName:"checksum" type:"string"`

    // After the Lambda function specified in the fulfillmentActivity element fulfills
    // the intent, Amazon Lex conveys this statement to the user.
    ConclusionStatement *Statement `locationName:"conclusionStatement" type:"structure"`

    // If defined in the bot, Amazon Lex uses prompt to confirm the intent before
    // fulfilling the user's request. For more information, see .
    ConfirmationPrompt *Prompt `locationName:"confirmationPrompt" type:"structure"`

    // The date that the intent was created.
    CreatedDate *time.Time `locationName:"createdDate" type:"timestamp" timestampFormat:"unix"`

    // A description of the intent.
    Description *string `locationName:"description" type:"string"`

    // If defined in the bot, Amazon Amazon Lex invokes this Lambda function for
    // each user input. For more information, see .
    DialogCodeHook *CodeHook `locationName:"dialogCodeHook" type:"structure"`

    // If defined in the bot, Amazon Lex uses this prompt to solicit additional
    // user activity after the intent is fulfilled. For more information, see .
    FollowUpPrompt *FollowUpPrompt `locationName:"followUpPrompt" type:"structure"`

    // Describes how the intent is fulfilled. For more information, see .
    FulfillmentActivity *FulfillmentActivity `locationName:"fulfillmentActivity" type:"structure"`

    // The date that the intent was updated. When you create a resource, the creation
    // date and the last updated date are the same.
    LastUpdatedDate *time.Time `locationName:"lastUpdatedDate" type:"timestamp" timestampFormat:"unix"`

    // The name of the intent.
    Name *string `locationName:"name" min:"1" type:"string"`

    // A unique identifier for a built-in intent.
    ParentIntentSignature *string `locationName:"parentIntentSignature" type:"string"`

    // If the user answers "no" to the question defined in confirmationPrompt, Amazon
    // Lex responds with this statement to acknowledge that the intent was canceled.
    RejectionStatement *Statement `locationName:"rejectionStatement" type:"structure"`

    // An array of sample utterances configured for the intent.
    SampleUtterances []*string `locationName:"sampleUtterances" type:"list"`

    // An array of intent slots configured for the intent.
    Slots []*Slot `locationName:"slots" type:"list"`

    // The version of the intent.
    Version *string `locationName:"version" min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (GetIntentOutput) GoString

func (s GetIntentOutput) GoString() string

GoString returns the string representation

func (*GetIntentOutput) SetChecksum

func (s *GetIntentOutput) SetChecksum(v string) *GetIntentOutput

SetChecksum sets the Checksum field's value.

func (*GetIntentOutput) SetConclusionStatement

func (s *GetIntentOutput) SetConclusionStatement(v *Statement) *GetIntentOutput

SetConclusionStatement sets the ConclusionStatement field's value.

func (*GetIntentOutput) SetConfirmationPrompt

func (s *GetIntentOutput) SetConfirmationPrompt(v *Prompt) *GetIntentOutput

SetConfirmationPrompt sets the ConfirmationPrompt field's value.

func (*GetIntentOutput) SetCreatedDate

func (s *GetIntentOutput) SetCreatedDate(v time.Time) *GetIntentOutput

SetCreatedDate sets the CreatedDate field's value.

func (*GetIntentOutput) SetDescription

func (s *GetIntentOutput) SetDescription(v string) *GetIntentOutput

SetDescription sets the Description field's value.

func (*GetIntentOutput) SetDialogCodeHook

func (s *GetIntentOutput) SetDialogCodeHook(v *CodeHook) *GetIntentOutput

SetDialogCodeHook sets the DialogCodeHook field's value.

func (*GetIntentOutput) SetFollowUpPrompt

func (s *GetIntentOutput) SetFollowUpPrompt(v *FollowUpPrompt) *GetIntentOutput

SetFollowUpPrompt sets the FollowUpPrompt field's value.

func (*GetIntentOutput) SetFulfillmentActivity

func (s *GetIntentOutput) SetFulfillmentActivity(v *FulfillmentActivity) *GetIntentOutput

SetFulfillmentActivity sets the FulfillmentActivity field's value.

func (*GetIntentOutput) SetLastUpdatedDate

func (s *GetIntentOutput) SetLastUpdatedDate(v time.Time) *GetIntentOutput

SetLastUpdatedDate sets the LastUpdatedDate field's value.

func (*GetIntentOutput) SetName

func (s *GetIntentOutput) SetName(v string) *GetIntentOutput

SetName sets the Name field's value.

func (*GetIntentOutput) SetParentIntentSignature

func (s *GetIntentOutput) SetParentIntentSignature(v string) *GetIntentOutput

SetParentIntentSignature sets the ParentIntentSignature field's value.

func (*GetIntentOutput) SetRejectionStatement

func (s *GetIntentOutput) SetRejectionStatement(v *Statement) *GetIntentOutput

SetRejectionStatement sets the RejectionStatement field's value.

func (*GetIntentOutput) SetSampleUtterances

func (s *GetIntentOutput) SetSampleUtterances(v []*string) *GetIntentOutput

SetSampleUtterances sets the SampleUtterances field's value.

func (*GetIntentOutput) SetSlots

func (s *GetIntentOutput) SetSlots(v []*Slot) *GetIntentOutput

SetSlots sets the Slots field's value.

func (*GetIntentOutput) SetVersion

func (s *GetIntentOutput) SetVersion(v string) *GetIntentOutput

SetVersion sets the Version field's value.

func (GetIntentOutput) String

func (s GetIntentOutput) String() string

String returns the string representation

type GetIntentVersionsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetIntentVersionsRequest

type GetIntentVersionsInput struct {

    // The maximum number of intent versions to return in the response. The default
    // is 10.
    MaxResults *int64 `location:"querystring" locationName:"maxResults" min:"1" type:"integer"`

    // The name of the intent for which versions should be returned.
    //
    // Name is a required field
    Name *string `location:"uri" locationName:"name" min:"1" type:"string" required:"true"`

    // A pagination token for fetching the next page of intent versions. If the
    // response to this call is truncated, Amazon Lex returns a pagination token
    // in the response. To fetch the next page of versions, specify the pagination
    // token in the next request.
    NextToken *string `location:"querystring" locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

func (GetIntentVersionsInput) GoString

func (s GetIntentVersionsInput) GoString() string

GoString returns the string representation

func (*GetIntentVersionsInput) SetMaxResults

func (s *GetIntentVersionsInput) SetMaxResults(v int64) *GetIntentVersionsInput

SetMaxResults sets the MaxResults field's value.

func (*GetIntentVersionsInput) SetName

func (s *GetIntentVersionsInput) SetName(v string) *GetIntentVersionsInput

SetName sets the Name field's value.

func (*GetIntentVersionsInput) SetNextToken

func (s *GetIntentVersionsInput) SetNextToken(v string) *GetIntentVersionsInput

SetNextToken sets the NextToken field's value.

func (GetIntentVersionsInput) String

func (s GetIntentVersionsInput) String() string

String returns the string representation

func (*GetIntentVersionsInput) Validate

func (s *GetIntentVersionsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetIntentVersionsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetIntentVersionsResponse

type GetIntentVersionsOutput struct {

    // An array of IntentMetadata objects, one for each numbered version of the
    // intent plus one for the $LATEST version.
    Intents []*IntentMetadata `locationName:"intents" type:"list"`

    // A pagination token for fetching the next page of intent versions. If the
    // response to this call is truncated, Amazon Lex returns a pagination token
    // in the response. To fetch the next page of versions, specify the pagination
    // token in the next request.
    NextToken *string `locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

func (GetIntentVersionsOutput) GoString

func (s GetIntentVersionsOutput) GoString() string

GoString returns the string representation

func (*GetIntentVersionsOutput) SetIntents

func (s *GetIntentVersionsOutput) SetIntents(v []*IntentMetadata) *GetIntentVersionsOutput

SetIntents sets the Intents field's value.

func (*GetIntentVersionsOutput) SetNextToken

func (s *GetIntentVersionsOutput) SetNextToken(v string) *GetIntentVersionsOutput

SetNextToken sets the NextToken field's value.

func (GetIntentVersionsOutput) String

func (s GetIntentVersionsOutput) String() string

String returns the string representation

type GetIntentsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetIntentsRequest

type GetIntentsInput struct {

    // The maximum number of intents to return in the response. The default is 10.
    MaxResults *int64 `location:"querystring" locationName:"maxResults" min:"1" type:"integer"`

    // Substring to match in intent names. An intent will be returned if any part
    // of its name matches the substring. For example, "xyz" matches both "xyzabc"
    // and "abcxyz."
    NameContains *string `location:"querystring" locationName:"nameContains" min:"1" type:"string"`

    // A pagination token that fetches the next page of intents. If the response
    // to this API call is truncated, Amazon Lex returns a pagination token in the
    // response. To fetch the next page of intents, specify the pagination token
    // in the next request.
    NextToken *string `location:"querystring" locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

func (GetIntentsInput) GoString

func (s GetIntentsInput) GoString() string

GoString returns the string representation

func (*GetIntentsInput) SetMaxResults

func (s *GetIntentsInput) SetMaxResults(v int64) *GetIntentsInput

SetMaxResults sets the MaxResults field's value.

func (*GetIntentsInput) SetNameContains

func (s *GetIntentsInput) SetNameContains(v string) *GetIntentsInput

SetNameContains sets the NameContains field's value.

func (*GetIntentsInput) SetNextToken

func (s *GetIntentsInput) SetNextToken(v string) *GetIntentsInput

SetNextToken sets the NextToken field's value.

func (GetIntentsInput) String

func (s GetIntentsInput) String() string

String returns the string representation

func (*GetIntentsInput) Validate

func (s *GetIntentsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetIntentsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetIntentsResponse

type GetIntentsOutput struct {

    // An array of Intent objects. For more information, see .
    Intents []*IntentMetadata `locationName:"intents" type:"list"`

    // If the response is truncated, the response includes a pagination token that
    // you can specify in your next request to fetch the next page of intents.
    NextToken *string `locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

func (GetIntentsOutput) GoString

func (s GetIntentsOutput) GoString() string

GoString returns the string representation

func (*GetIntentsOutput) SetIntents

func (s *GetIntentsOutput) SetIntents(v []*IntentMetadata) *GetIntentsOutput

SetIntents sets the Intents field's value.

func (*GetIntentsOutput) SetNextToken

func (s *GetIntentsOutput) SetNextToken(v string) *GetIntentsOutput

SetNextToken sets the NextToken field's value.

func (GetIntentsOutput) String

func (s GetIntentsOutput) String() string

String returns the string representation

type GetSlotTypeInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetSlotTypeRequest

type GetSlotTypeInput struct {

    // The name of the slot type. The name is case sensitive.
    //
    // Name is a required field
    Name *string `location:"uri" locationName:"name" min:"1" type:"string" required:"true"`

    // The version of the slot type.
    //
    // Version is a required field
    Version *string `location:"uri" locationName:"version" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (GetSlotTypeInput) GoString

func (s GetSlotTypeInput) GoString() string

GoString returns the string representation

func (*GetSlotTypeInput) SetName

func (s *GetSlotTypeInput) SetName(v string) *GetSlotTypeInput

SetName sets the Name field's value.

func (*GetSlotTypeInput) SetVersion

func (s *GetSlotTypeInput) SetVersion(v string) *GetSlotTypeInput

SetVersion sets the Version field's value.

func (GetSlotTypeInput) String

func (s GetSlotTypeInput) String() string

String returns the string representation

func (*GetSlotTypeInput) Validate

func (s *GetSlotTypeInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetSlotTypeOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetSlotTypeResponse

type GetSlotTypeOutput struct {

    // Checksum of the $LATEST version of the slot type.
    Checksum *string `locationName:"checksum" type:"string"`

    // The date that the slot type was created.
    CreatedDate *time.Time `locationName:"createdDate" type:"timestamp" timestampFormat:"unix"`

    // A description of the slot type.
    Description *string `locationName:"description" type:"string"`

    // A list of EnumerationValue objects that defines the values that the slot
    // type can take.
    EnumerationValues []*EnumerationValue `locationName:"enumerationValues" min:"1" type:"list"`

    // The date that the slot type was updated. When you create a resource, the
    // creation date and last update date are the same.
    LastUpdatedDate *time.Time `locationName:"lastUpdatedDate" type:"timestamp" timestampFormat:"unix"`

    // The name of the slot type.
    Name *string `locationName:"name" min:"1" type:"string"`

    // The version of the slot type.
    Version *string `locationName:"version" min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (GetSlotTypeOutput) GoString

func (s GetSlotTypeOutput) GoString() string

GoString returns the string representation

func (*GetSlotTypeOutput) SetChecksum

func (s *GetSlotTypeOutput) SetChecksum(v string) *GetSlotTypeOutput

SetChecksum sets the Checksum field's value.

func (*GetSlotTypeOutput) SetCreatedDate

func (s *GetSlotTypeOutput) SetCreatedDate(v time.Time) *GetSlotTypeOutput

SetCreatedDate sets the CreatedDate field's value.

func (*GetSlotTypeOutput) SetDescription

func (s *GetSlotTypeOutput) SetDescription(v string) *GetSlotTypeOutput

SetDescription sets the Description field's value.

func (*GetSlotTypeOutput) SetEnumerationValues

func (s *GetSlotTypeOutput) SetEnumerationValues(v []*EnumerationValue) *GetSlotTypeOutput

SetEnumerationValues sets the EnumerationValues field's value.

func (*GetSlotTypeOutput) SetLastUpdatedDate

func (s *GetSlotTypeOutput) SetLastUpdatedDate(v time.Time) *GetSlotTypeOutput

SetLastUpdatedDate sets the LastUpdatedDate field's value.

func (*GetSlotTypeOutput) SetName

func (s *GetSlotTypeOutput) SetName(v string) *GetSlotTypeOutput

SetName sets the Name field's value.

func (*GetSlotTypeOutput) SetVersion

func (s *GetSlotTypeOutput) SetVersion(v string) *GetSlotTypeOutput

SetVersion sets the Version field's value.

func (GetSlotTypeOutput) String

func (s GetSlotTypeOutput) String() string

String returns the string representation

type GetSlotTypeVersionsInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetSlotTypeVersionsRequest

type GetSlotTypeVersionsInput struct {

    // The maximum number of slot type versions to return in the response. The default
    // is 10.
    MaxResults *int64 `location:"querystring" locationName:"maxResults" min:"1" type:"integer"`

    // The name of the slot type for which versions should be returned.
    //
    // Name is a required field
    Name *string `location:"uri" locationName:"name" min:"1" type:"string" required:"true"`

    // A pagination token for fetching the next page of slot type versions. If the
    // response to this call is truncated, Amazon Lex returns a pagination token
    // in the response. To fetch the next page of versions, specify the pagination
    // token in the next request.
    NextToken *string `location:"querystring" locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

func (GetSlotTypeVersionsInput) GoString

func (s GetSlotTypeVersionsInput) GoString() string

GoString returns the string representation

func (*GetSlotTypeVersionsInput) SetMaxResults

func (s *GetSlotTypeVersionsInput) SetMaxResults(v int64) *GetSlotTypeVersionsInput

SetMaxResults sets the MaxResults field's value.

func (*GetSlotTypeVersionsInput) SetName

func (s *GetSlotTypeVersionsInput) SetName(v string) *GetSlotTypeVersionsInput

SetName sets the Name field's value.

func (*GetSlotTypeVersionsInput) SetNextToken

func (s *GetSlotTypeVersionsInput) SetNextToken(v string) *GetSlotTypeVersionsInput

SetNextToken sets the NextToken field's value.

func (GetSlotTypeVersionsInput) String

func (s GetSlotTypeVersionsInput) String() string

String returns the string representation

func (*GetSlotTypeVersionsInput) Validate

func (s *GetSlotTypeVersionsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetSlotTypeVersionsOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetSlotTypeVersionsResponse

type GetSlotTypeVersionsOutput struct {

    // A pagination token for fetching the next page of slot type versions. If the
    // response to this call is truncated, Amazon Lex returns a pagination token
    // in the response. To fetch the next page of versions, specify the pagination
    // token in the next request.
    NextToken *string `locationName:"nextToken" type:"string"`

    // An array of SlotTypeMetadata objects, one for each numbered version of the
    // slot type plus one for the $LATEST version.
    SlotTypes []*SlotTypeMetadata `locationName:"slotTypes" type:"list"`
    // contains filtered or unexported fields
}

func (GetSlotTypeVersionsOutput) GoString

func (s GetSlotTypeVersionsOutput) GoString() string

GoString returns the string representation

func (*GetSlotTypeVersionsOutput) SetNextToken

func (s *GetSlotTypeVersionsOutput) SetNextToken(v string) *GetSlotTypeVersionsOutput

SetNextToken sets the NextToken field's value.

func (*GetSlotTypeVersionsOutput) SetSlotTypes

func (s *GetSlotTypeVersionsOutput) SetSlotTypes(v []*SlotTypeMetadata) *GetSlotTypeVersionsOutput

SetSlotTypes sets the SlotTypes field's value.

func (GetSlotTypeVersionsOutput) String

func (s GetSlotTypeVersionsOutput) String() string

String returns the string representation

type GetSlotTypesInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetSlotTypesRequest

type GetSlotTypesInput struct {

    // The maximum number of slot types to return in the response. The default is
    // 10.
    MaxResults *int64 `location:"querystring" locationName:"maxResults" min:"1" type:"integer"`

    // Substring to match in slot type names. A slot type will be returned if any
    // part of its name matches the substring. For example, "xyz" matches both "xyzabc"
    // and "abcxyz."
    NameContains *string `location:"querystring" locationName:"nameContains" min:"1" type:"string"`

    // A pagination token that fetches the next page of slot types. If the response
    // to this API call is truncated, Amazon Lex returns a pagination token in the
    // response. To fetch next page of slot types, specify the pagination token
    // in the next request.
    NextToken *string `location:"querystring" locationName:"nextToken" type:"string"`
    // contains filtered or unexported fields
}

func (GetSlotTypesInput) GoString

func (s GetSlotTypesInput) GoString() string

GoString returns the string representation

func (*GetSlotTypesInput) SetMaxResults

func (s *GetSlotTypesInput) SetMaxResults(v int64) *GetSlotTypesInput

SetMaxResults sets the MaxResults field's value.

func (*GetSlotTypesInput) SetNameContains

func (s *GetSlotTypesInput) SetNameContains(v string) *GetSlotTypesInput

SetNameContains sets the NameContains field's value.

func (*GetSlotTypesInput) SetNextToken

func (s *GetSlotTypesInput) SetNextToken(v string) *GetSlotTypesInput

SetNextToken sets the NextToken field's value.

func (GetSlotTypesInput) String

func (s GetSlotTypesInput) String() string

String returns the string representation

func (*GetSlotTypesInput) Validate

func (s *GetSlotTypesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetSlotTypesOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetSlotTypesResponse

type GetSlotTypesOutput struct {

    // If the response is truncated, it includes a pagination token that you can
    // specify in your next request to fetch the next page of slot types.
    NextToken *string `locationName:"nextToken" type:"string"`

    // An array of objects, one for each slot type, that provides information such
    // as the name of the slot type, the version, and a description.
    SlotTypes []*SlotTypeMetadata `locationName:"slotTypes" type:"list"`
    // contains filtered or unexported fields
}

func (GetSlotTypesOutput) GoString

func (s GetSlotTypesOutput) GoString() string

GoString returns the string representation

func (*GetSlotTypesOutput) SetNextToken

func (s *GetSlotTypesOutput) SetNextToken(v string) *GetSlotTypesOutput

SetNextToken sets the NextToken field's value.

func (*GetSlotTypesOutput) SetSlotTypes

func (s *GetSlotTypesOutput) SetSlotTypes(v []*SlotTypeMetadata) *GetSlotTypesOutput

SetSlotTypes sets the SlotTypes field's value.

func (GetSlotTypesOutput) String

func (s GetSlotTypesOutput) String() string

String returns the string representation

type GetUtterancesViewInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetUtterancesViewRequest

type GetUtterancesViewInput struct {

    // The name of the bot for which utterance information should be returned.
    //
    // BotName is a required field
    BotName *string `location:"uri" locationName:"botname" min:"2" type:"string" required:"true"`

    // An array of bot versions for which utterance information should be returned.
    // The limit is 5 versions per request.
    //
    // BotVersions is a required field
    BotVersions []*string `location:"querystring" locationName:"bot_versions" min:"1" type:"list" required:"true"`

    // To return utterances that were recognized and handled, useDetected. To return
    // utterances that were not recognized, use Missed.
    //
    // StatusType is a required field
    StatusType *string `location:"querystring" locationName:"status_type" type:"string" required:"true" enum:"StatusType"`
    // contains filtered or unexported fields
}

func (GetUtterancesViewInput) GoString

func (s GetUtterancesViewInput) GoString() string

GoString returns the string representation

func (*GetUtterancesViewInput) SetBotName

func (s *GetUtterancesViewInput) SetBotName(v string) *GetUtterancesViewInput

SetBotName sets the BotName field's value.

func (*GetUtterancesViewInput) SetBotVersions

func (s *GetUtterancesViewInput) SetBotVersions(v []*string) *GetUtterancesViewInput

SetBotVersions sets the BotVersions field's value.

func (*GetUtterancesViewInput) SetStatusType

func (s *GetUtterancesViewInput) SetStatusType(v string) *GetUtterancesViewInput

SetStatusType sets the StatusType field's value.

func (GetUtterancesViewInput) String

func (s GetUtterancesViewInput) String() string

String returns the string representation

func (*GetUtterancesViewInput) Validate

func (s *GetUtterancesViewInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetUtterancesViewOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetUtterancesViewResponse

type GetUtterancesViewOutput struct {

    // The name of the bot for which utterance information was returned.
    BotName *string `locationName:"botName" min:"2" type:"string"`

    // An array of objects, each containing a list of objects describing the utterances
    // that were processed by your bot. The response contains a maximum of 100 UtteranceData
    // objects for each version.
    Utterances []*UtteranceList `locationName:"utterances" type:"list"`
    // contains filtered or unexported fields
}

func (GetUtterancesViewOutput) GoString

func (s GetUtterancesViewOutput) GoString() string

GoString returns the string representation

func (*GetUtterancesViewOutput) SetBotName

func (s *GetUtterancesViewOutput) SetBotName(v string) *GetUtterancesViewOutput

SetBotName sets the BotName field's value.

func (*GetUtterancesViewOutput) SetUtterances

func (s *GetUtterancesViewOutput) SetUtterances(v []*UtteranceList) *GetUtterancesViewOutput

SetUtterances sets the Utterances field's value.

func (GetUtterancesViewOutput) String

func (s GetUtterancesViewOutput) String() string

String returns the string representation

type Intent

Identifies the specific version of an intent. Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/Intent

type Intent struct {

    // The name of the intent.
    //
    // IntentName is a required field
    IntentName *string `locationName:"intentName" min:"1" type:"string" required:"true"`

    // The version of the intent.
    //
    // IntentVersion is a required field
    IntentVersion *string `locationName:"intentVersion" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (Intent) GoString

func (s Intent) GoString() string

GoString returns the string representation

func (*Intent) SetIntentName

func (s *Intent) SetIntentName(v string) *Intent

SetIntentName sets the IntentName field's value.

func (*Intent) SetIntentVersion

func (s *Intent) SetIntentVersion(v string) *Intent

SetIntentVersion sets the IntentVersion field's value.

func (Intent) String

func (s Intent) String() string

String returns the string representation

func (*Intent) Validate

func (s *Intent) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type IntentMetadata

Provides information about an intent. Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/IntentMetadata

type IntentMetadata struct {

    // The date that the intent was created.
    CreatedDate *time.Time `locationName:"createdDate" type:"timestamp" timestampFormat:"unix"`

    // A description of the intent.
    Description *string `locationName:"description" type:"string"`

    // The date that the intent was updated. When you create an intent, the creation
    // date and last updated date are the same.
    LastUpdatedDate *time.Time `locationName:"lastUpdatedDate" type:"timestamp" timestampFormat:"unix"`

    // The name of the intent.
    Name *string `locationName:"name" min:"1" type:"string"`

    // The version of the intent.
    Version *string `locationName:"version" min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (IntentMetadata) GoString

func (s IntentMetadata) GoString() string

GoString returns the string representation

func (*IntentMetadata) SetCreatedDate

func (s *IntentMetadata) SetCreatedDate(v time.Time) *IntentMetadata

SetCreatedDate sets the CreatedDate field's value.

func (*IntentMetadata) SetDescription

func (s *IntentMetadata) SetDescription(v string) *IntentMetadata

SetDescription sets the Description field's value.

func (*IntentMetadata) SetLastUpdatedDate

func (s *IntentMetadata) SetLastUpdatedDate(v time.Time) *IntentMetadata

SetLastUpdatedDate sets the LastUpdatedDate field's value.

func (*IntentMetadata) SetName

func (s *IntentMetadata) SetName(v string) *IntentMetadata

SetName sets the Name field's value.

func (*IntentMetadata) SetVersion

func (s *IntentMetadata) SetVersion(v string) *IntentMetadata

SetVersion sets the Version field's value.

func (IntentMetadata) String

func (s IntentMetadata) String() string

String returns the string representation

type LexModelBuildingService

LexModelBuildingService provides the API operation methods for making requests to Amazon Lex Model Building Service. See this package's package overview docs for details on the service.

LexModelBuildingService methods are safe to use concurrently. It is not safe to modify mutate any of the struct's properties though.

type LexModelBuildingService struct {
    *client.Client
}

func New

func New(p client.ConfigProvider, cfgs ...*aws.Config) *LexModelBuildingService

New creates a new instance of the LexModelBuildingService client with a session. If additional configuration is needed for the client instance use the optional aws.Config parameter to add your extra config.

Example:

// Create a LexModelBuildingService client from just a session.
svc := lexmodelbuildingservice.New(mySession)

// Create a LexModelBuildingService client with additional configuration
svc := lexmodelbuildingservice.New(mySession, aws.NewConfig().WithRegion("us-west-2"))

func (*LexModelBuildingService) CreateBotVersion

func (c *LexModelBuildingService) CreateBotVersion(input *CreateBotVersionInput) (*CreateBotVersionOutput, error)

CreateBotVersion API operation for Amazon Lex Model Building Service.

Creates a new version of the bot based on the $LATEST version. If the $LATEST version of this resource hasn't changed since you created the last version, Amazon Lex doesn't create a new version. It returns the last created version.

You can update only the $LATEST version of the bot. You can't update the numbered versions that you create with the CreateBotVersion operation.

When you create the first version of a bot, Amazon Lex sets the version to 1. Subsequent versions increment by 1. For more information, see versioning-intro.

This operation requires permission for the lex:CreateBotVersion action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Lex Model Building Service's API operation CreateBotVersion for usage and error information.

Returned Error Codes:

* ErrCodeNotFoundException "NotFoundException"
The resource specified in the request was not found. Check the resource and
try again.

* ErrCodeConflictException "ConflictException"
There was a conflict processing the request. Try your request again.

* ErrCodeLimitExceededException "LimitExceededException"
The request exceeded a limit. Try your request again.

* ErrCodeInternalFailureException "InternalFailureException"
An internal Amazon Lex error occurred. Try your request again.

* ErrCodeBadRequestException "BadRequestException"
The request is not well formed. For example, a value is invalid or a required
field is missing. Check the field values, and try again.

* ErrCodePreconditionFailedException "PreconditionFailedException"
The checksum of the resource that you are trying to change does not match
the checksum in the request. Check the resource's checksum and try again.

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/CreateBotVersion

func (*LexModelBuildingService) CreateBotVersionRequest

func (c *LexModelBuildingService) CreateBotVersionRequest(input *CreateBotVersionInput) (req *request.Request, output *CreateBotVersionOutput)

CreateBotVersionRequest generates a "aws/request.Request" representing the client's request for the CreateBotVersion operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateBotVersion for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateBotVersion method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateBotVersionRequest method.
req, resp := client.CreateBotVersionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/CreateBotVersion

func (*LexModelBuildingService) CreateBotVersionWithContext

func (c *LexModelBuildingService) CreateBotVersionWithContext(ctx aws.Context, input *CreateBotVersionInput, opts ...request.Option) (*CreateBotVersionOutput, error)

CreateBotVersionWithContext is the same as CreateBotVersion with the addition of the ability to pass a context and additional request options.

See CreateBotVersion for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) CreateIntentVersion

func (c *LexModelBuildingService) CreateIntentVersion(input *CreateIntentVersionInput) (*CreateIntentVersionOutput, error)

CreateIntentVersion API operation for Amazon Lex Model Building Service.

Creates a new version of an intent based on the $LATEST version of the intent. If the $LATEST version of this intent hasn't changed since you last updated it, Amazon Lex doesn't create a new version. It returns the last version you created.

You can update only the $LATEST version of the intent. You can't update the numbered versions that you create with the CreateIntentVersion operation.

When you create a version of an intent, Amazon Lex sets the version to 1. Subsequent versions increment by 1. For more information, see versioning-intro.

This operation requires permissions to perform the lex:CreateIntentVersion action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Lex Model Building Service's API operation CreateIntentVersion for usage and error information.

Returned Error Codes:

* ErrCodeNotFoundException "NotFoundException"
The resource specified in the request was not found. Check the resource and
try again.

* ErrCodeConflictException "ConflictException"
There was a conflict processing the request. Try your request again.

* ErrCodeLimitExceededException "LimitExceededException"
The request exceeded a limit. Try your request again.

* ErrCodeInternalFailureException "InternalFailureException"
An internal Amazon Lex error occurred. Try your request again.

* ErrCodeBadRequestException "BadRequestException"
The request is not well formed. For example, a value is invalid or a required
field is missing. Check the field values, and try again.

* ErrCodePreconditionFailedException "PreconditionFailedException"
The checksum of the resource that you are trying to change does not match
the checksum in the request. Check the resource's checksum and try again.

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/CreateIntentVersion

func (*LexModelBuildingService) CreateIntentVersionRequest

func (c *LexModelBuildingService) CreateIntentVersionRequest(input *CreateIntentVersionInput) (req *request.Request, output *CreateIntentVersionOutput)

CreateIntentVersionRequest generates a "aws/request.Request" representing the client's request for the CreateIntentVersion operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateIntentVersion for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateIntentVersion method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateIntentVersionRequest method.
req, resp := client.CreateIntentVersionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/CreateIntentVersion

func (*LexModelBuildingService) CreateIntentVersionWithContext

func (c *LexModelBuildingService) CreateIntentVersionWithContext(ctx aws.Context, input *CreateIntentVersionInput, opts ...request.Option) (*CreateIntentVersionOutput, error)

CreateIntentVersionWithContext is the same as CreateIntentVersion with the addition of the ability to pass a context and additional request options.

See CreateIntentVersion for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) CreateSlotTypeVersion

func (c *LexModelBuildingService) CreateSlotTypeVersion(input *CreateSlotTypeVersionInput) (*CreateSlotTypeVersionOutput, error)

CreateSlotTypeVersion API operation for Amazon Lex Model Building Service.

Creates a new version of a slot type based on the $LATEST version of the specified slot type. If the $LATEST version of this resource has not changed since the last version that you created, Amazon Lex doesn't create a new version. It returns the last version that you created.

You can update only the $LATEST version of a slot type. You can't update the numbered versions that you create with the CreateSlotTypeVersion operation.

When you create a version of a slot type, Amazon Lex sets the version to 1. Subsequent versions increment by 1. For more information, see versioning-intro.

This operation requires permissions for the lex:CreateSlotTypeVersion action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Lex Model Building Service's API operation CreateSlotTypeVersion for usage and error information.

Returned Error Codes:

* ErrCodeNotFoundException "NotFoundException"
The resource specified in the request was not found. Check the resource and
try again.

* ErrCodeConflictException "ConflictException"
There was a conflict processing the request. Try your request again.

* ErrCodeLimitExceededException "LimitExceededException"
The request exceeded a limit. Try your request again.

* ErrCodeInternalFailureException "InternalFailureException"
An internal Amazon Lex error occurred. Try your request again.

* ErrCodeBadRequestException "BadRequestException"
The request is not well formed. For example, a value is invalid or a required
field is missing. Check the field values, and try again.

* ErrCodePreconditionFailedException "PreconditionFailedException"
The checksum of the resource that you are trying to change does not match
the checksum in the request. Check the resource's checksum and try again.

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/CreateSlotTypeVersion

func (*LexModelBuildingService) CreateSlotTypeVersionRequest

func (c *LexModelBuildingService) CreateSlotTypeVersionRequest(input *CreateSlotTypeVersionInput) (req *request.Request, output *CreateSlotTypeVersionOutput)

CreateSlotTypeVersionRequest generates a "aws/request.Request" representing the client's request for the CreateSlotTypeVersion operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See CreateSlotTypeVersion for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the CreateSlotTypeVersion method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the CreateSlotTypeVersionRequest method.
req, resp := client.CreateSlotTypeVersionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/CreateSlotTypeVersion

func (*LexModelBuildingService) CreateSlotTypeVersionWithContext

func (c *LexModelBuildingService) CreateSlotTypeVersionWithContext(ctx aws.Context, input *CreateSlotTypeVersionInput, opts ...request.Option) (*CreateSlotTypeVersionOutput, error)

CreateSlotTypeVersionWithContext is the same as CreateSlotTypeVersion with the addition of the ability to pass a context and additional request options.

See CreateSlotTypeVersion for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) DeleteBot

func (c *LexModelBuildingService) DeleteBot(input *DeleteBotInput) (*DeleteBotOutput, error)

DeleteBot API operation for Amazon Lex Model Building Service.

Deletes all versions of the bot, including the $LATEST version. To delete a specific version of the bot, use the operation.

If a bot has an alias, you can't delete it. Instead, the DeleteBot operation returns a ResourceInUseException exception that includes a reference to the alias that refers to the bot. To remove the reference to the bot, delete the alias. If you get the same exception again, delete the referring alias until the DeleteBot operation is successful.

This operation requires permissions for the lex:DeleteBot action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Lex Model Building Service's API operation DeleteBot for usage and error information.

Returned Error Codes:

* ErrCodeNotFoundException "NotFoundException"
The resource specified in the request was not found. Check the resource and
try again.

* ErrCodeConflictException "ConflictException"
There was a conflict processing the request. Try your request again.

* ErrCodeLimitExceededException "LimitExceededException"
The request exceeded a limit. Try your request again.

* ErrCodeInternalFailureException "InternalFailureException"
An internal Amazon Lex error occurred. Try your request again.

* ErrCodeBadRequestException "BadRequestException"
The request is not well formed. For example, a value is invalid or a required
field is missing. Check the field values, and try again.

* ErrCodeResourceInUseException "ResourceInUseException"
The resource that you are attempting to delete is referred to by another
resource. Use this information to remove references to the resource that
you are trying to delete.

The body of the exception contains a JSON object that describes the resource.

{ "resourceType": BOT | BOTALIAS | BOTCHANNEL | INTENT,

"resourceReference": {

"name": string, "version": string } }

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteBot

func (*LexModelBuildingService) DeleteBotAlias

func (c *LexModelBuildingService) DeleteBotAlias(input *DeleteBotAliasInput) (*DeleteBotAliasOutput, error)

DeleteBotAlias API operation for Amazon Lex Model Building Service.

Deletes an alias for the specified bot.

You can't delete an alias that is used in the association between a bot and a messaging channel. If an alias is used in a channel association, the DeleteBot operation returns a ResourceInUseException exception that includes a reference to the channel association that refers to the bot. You can remove the reference to the alias by deleting the channel association. If you get the same exception again, delete the referring association until the DeleteBotAlias operation is successful.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Lex Model Building Service's API operation DeleteBotAlias for usage and error information.

Returned Error Codes:

* ErrCodeNotFoundException "NotFoundException"
The resource specified in the request was not found. Check the resource and
try again.

* ErrCodeConflictException "ConflictException"
There was a conflict processing the request. Try your request again.

* ErrCodeLimitExceededException "LimitExceededException"
The request exceeded a limit. Try your request again.

* ErrCodeInternalFailureException "InternalFailureException"
An internal Amazon Lex error occurred. Try your request again.

* ErrCodeBadRequestException "BadRequestException"
The request is not well formed. For example, a value is invalid or a required
field is missing. Check the field values, and try again.

* ErrCodeResourceInUseException "ResourceInUseException"
The resource that you are attempting to delete is referred to by another
resource. Use this information to remove references to the resource that
you are trying to delete.

The body of the exception contains a JSON object that describes the resource.

{ "resourceType": BOT | BOTALIAS | BOTCHANNEL | INTENT,

"resourceReference": {

"name": string, "version": string } }

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteBotAlias

func (*LexModelBuildingService) DeleteBotAliasRequest

func (c *LexModelBuildingService) DeleteBotAliasRequest(input *DeleteBotAliasInput) (req *request.Request, output *DeleteBotAliasOutput)

DeleteBotAliasRequest generates a "aws/request.Request" representing the client's request for the DeleteBotAlias operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteBotAlias for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteBotAlias method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteBotAliasRequest method.
req, resp := client.DeleteBotAliasRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteBotAlias

func (*LexModelBuildingService) DeleteBotAliasWithContext

func (c *LexModelBuildingService) DeleteBotAliasWithContext(ctx aws.Context, input *DeleteBotAliasInput, opts ...request.Option) (*DeleteBotAliasOutput, error)

DeleteBotAliasWithContext is the same as DeleteBotAlias with the addition of the ability to pass a context and additional request options.

See DeleteBotAlias for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) DeleteBotChannelAssociation

func (c *LexModelBuildingService) DeleteBotChannelAssociation(input *DeleteBotChannelAssociationInput) (*DeleteBotChannelAssociationOutput, error)

DeleteBotChannelAssociation API operation for Amazon Lex Model Building Service.

Deletes the association between an Amazon Lex bot and a messaging platform.

This operation requires permission for the lex:DeleteBotChannelAssociation action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Lex Model Building Service's API operation DeleteBotChannelAssociation for usage and error information.

Returned Error Codes:

* ErrCodeNotFoundException "NotFoundException"
The resource specified in the request was not found. Check the resource and
try again.

* ErrCodeConflictException "ConflictException"
There was a conflict processing the request. Try your request again.

* ErrCodeLimitExceededException "LimitExceededException"
The request exceeded a limit. Try your request again.

* ErrCodeInternalFailureException "InternalFailureException"
An internal Amazon Lex error occurred. Try your request again.

* ErrCodeBadRequestException "BadRequestException"
The request is not well formed. For example, a value is invalid or a required
field is missing. Check the field values, and try again.

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteBotChannelAssociation

func (*LexModelBuildingService) DeleteBotChannelAssociationRequest

func (c *LexModelBuildingService) DeleteBotChannelAssociationRequest(input *DeleteBotChannelAssociationInput) (req *request.Request, output *DeleteBotChannelAssociationOutput)

DeleteBotChannelAssociationRequest generates a "aws/request.Request" representing the client's request for the DeleteBotChannelAssociation operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteBotChannelAssociation for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteBotChannelAssociation method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteBotChannelAssociationRequest method.
req, resp := client.DeleteBotChannelAssociationRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteBotChannelAssociation

func (*LexModelBuildingService) DeleteBotChannelAssociationWithContext

func (c *LexModelBuildingService) DeleteBotChannelAssociationWithContext(ctx aws.Context, input *DeleteBotChannelAssociationInput, opts ...request.Option) (*DeleteBotChannelAssociationOutput, error)

DeleteBotChannelAssociationWithContext is the same as DeleteBotChannelAssociation with the addition of the ability to pass a context and additional request options.

See DeleteBotChannelAssociation for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) DeleteBotRequest

func (c *LexModelBuildingService) DeleteBotRequest(input *DeleteBotInput) (req *request.Request, output *DeleteBotOutput)

DeleteBotRequest generates a "aws/request.Request" representing the client's request for the DeleteBot operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteBot for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteBot method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteBotRequest method.
req, resp := client.DeleteBotRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteBot

func (*LexModelBuildingService) DeleteBotVersion

func (c *LexModelBuildingService) DeleteBotVersion(input *DeleteBotVersionInput) (*DeleteBotVersionOutput, error)

DeleteBotVersion API operation for Amazon Lex Model Building Service.

Deletes a specific version of a bot. To delete all versions of a bot, use the operation.

This operation requires permissions for the lex:DeleteBotVersion action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Lex Model Building Service's API operation DeleteBotVersion for usage and error information.

Returned Error Codes:

* ErrCodeNotFoundException "NotFoundException"
The resource specified in the request was not found. Check the resource and
try again.

* ErrCodeConflictException "ConflictException"
There was a conflict processing the request. Try your request again.

* ErrCodeLimitExceededException "LimitExceededException"
The request exceeded a limit. Try your request again.

* ErrCodeInternalFailureException "InternalFailureException"
An internal Amazon Lex error occurred. Try your request again.

* ErrCodeBadRequestException "BadRequestException"
The request is not well formed. For example, a value is invalid or a required
field is missing. Check the field values, and try again.

* ErrCodeResourceInUseException "ResourceInUseException"
The resource that you are attempting to delete is referred to by another
resource. Use this information to remove references to the resource that
you are trying to delete.

The body of the exception contains a JSON object that describes the resource.

{ "resourceType": BOT | BOTALIAS | BOTCHANNEL | INTENT,

"resourceReference": {

"name": string, "version": string } }

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteBotVersion

func (*LexModelBuildingService) DeleteBotVersionRequest

func (c *LexModelBuildingService) DeleteBotVersionRequest(input *DeleteBotVersionInput) (req *request.Request, output *DeleteBotVersionOutput)

DeleteBotVersionRequest generates a "aws/request.Request" representing the client's request for the DeleteBotVersion operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteBotVersion for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteBotVersion method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteBotVersionRequest method.
req, resp := client.DeleteBotVersionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteBotVersion

func (*LexModelBuildingService) DeleteBotVersionWithContext

func (c *LexModelBuildingService) DeleteBotVersionWithContext(ctx aws.Context, input *DeleteBotVersionInput, opts ...request.Option) (*DeleteBotVersionOutput, error)

DeleteBotVersionWithContext is the same as DeleteBotVersion with the addition of the ability to pass a context and additional request options.

See DeleteBotVersion for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) DeleteBotWithContext

func (c *LexModelBuildingService) DeleteBotWithContext(ctx aws.Context, input *DeleteBotInput, opts ...request.Option) (*DeleteBotOutput, error)

DeleteBotWithContext is the same as DeleteBot with the addition of the ability to pass a context and additional request options.

See DeleteBot for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) DeleteIntent

func (c *LexModelBuildingService) DeleteIntent(input *DeleteIntentInput) (*DeleteIntentOutput, error)

DeleteIntent API operation for Amazon Lex Model Building Service.

Deletes all versions of the intent, including the $LATEST version. To delete a specific version of the intent, use the operation.

You can delete a version of an intent only if it is not referenced. To delete an intent that is referred to in one or more bots (see how-it-works), you must remove those references first.

If you get the ResourceInUseException exception, it provides an example reference that shows where the intent is referenced. To remove the reference to the intent, either update the bot or delete it. If you get the same exception when you attempt to delete the intent again, repeat until the intent has no references and the call to DeleteIntent is successful.

This operation requires permission for the lex:DeleteIntent action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Lex Model Building Service's API operation DeleteIntent for usage and error information.

Returned Error Codes:

* ErrCodeNotFoundException "NotFoundException"
The resource specified in the request was not found. Check the resource and
try again.

* ErrCodeConflictException "ConflictException"
There was a conflict processing the request. Try your request again.

* ErrCodeLimitExceededException "LimitExceededException"
The request exceeded a limit. Try your request again.

* ErrCodeInternalFailureException "InternalFailureException"
An internal Amazon Lex error occurred. Try your request again.

* ErrCodeBadRequestException "BadRequestException"
The request is not well formed. For example, a value is invalid or a required
field is missing. Check the field values, and try again.

* ErrCodeResourceInUseException "ResourceInUseException"
The resource that you are attempting to delete is referred to by another
resource. Use this information to remove references to the resource that
you are trying to delete.

The body of the exception contains a JSON object that describes the resource.

{ "resourceType": BOT | BOTALIAS | BOTCHANNEL | INTENT,

"resourceReference": {

"name": string, "version": string } }

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteIntent

func (*LexModelBuildingService) DeleteIntentRequest

func (c *LexModelBuildingService) DeleteIntentRequest(input *DeleteIntentInput) (req *request.Request, output *DeleteIntentOutput)

DeleteIntentRequest generates a "aws/request.Request" representing the client's request for the DeleteIntent operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteIntent for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteIntent method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteIntentRequest method.
req, resp := client.DeleteIntentRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteIntent

func (*LexModelBuildingService) DeleteIntentVersion

func (c *LexModelBuildingService) DeleteIntentVersion(input *DeleteIntentVersionInput) (*DeleteIntentVersionOutput, error)

DeleteIntentVersion API operation for Amazon Lex Model Building Service.

Deletes a specific version of an intent. To delete all versions of a intent, use the operation.

This operation requires permissions for the lex:DeleteIntentVersion action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Lex Model Building Service's API operation DeleteIntentVersion for usage and error information.

Returned Error Codes:

* ErrCodeNotFoundException "NotFoundException"
The resource specified in the request was not found. Check the resource and
try again.

* ErrCodeConflictException "ConflictException"
There was a conflict processing the request. Try your request again.

* ErrCodeLimitExceededException "LimitExceededException"
The request exceeded a limit. Try your request again.

* ErrCodeInternalFailureException "InternalFailureException"
An internal Amazon Lex error occurred. Try your request again.

* ErrCodeBadRequestException "BadRequestException"
The request is not well formed. For example, a value is invalid or a required
field is missing. Check the field values, and try again.

* ErrCodeResourceInUseException "ResourceInUseException"
The resource that you are attempting to delete is referred to by another
resource. Use this information to remove references to the resource that
you are trying to delete.

The body of the exception contains a JSON object that describes the resource.

{ "resourceType": BOT | BOTALIAS | BOTCHANNEL | INTENT,

"resourceReference": {

"name": string, "version": string } }

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteIntentVersion

func (*LexModelBuildingService) DeleteIntentVersionRequest

func (c *LexModelBuildingService) DeleteIntentVersionRequest(input *DeleteIntentVersionInput) (req *request.Request, output *DeleteIntentVersionOutput)

DeleteIntentVersionRequest generates a "aws/request.Request" representing the client's request for the DeleteIntentVersion operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteIntentVersion for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteIntentVersion method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteIntentVersionRequest method.
req, resp := client.DeleteIntentVersionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteIntentVersion

func (*LexModelBuildingService) DeleteIntentVersionWithContext

func (c *LexModelBuildingService) DeleteIntentVersionWithContext(ctx aws.Context, input *DeleteIntentVersionInput, opts ...request.Option) (*DeleteIntentVersionOutput, error)

DeleteIntentVersionWithContext is the same as DeleteIntentVersion with the addition of the ability to pass a context and additional request options.

See DeleteIntentVersion for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) DeleteIntentWithContext

func (c *LexModelBuildingService) DeleteIntentWithContext(ctx aws.Context, input *DeleteIntentInput, opts ...request.Option) (*DeleteIntentOutput, error)

DeleteIntentWithContext is the same as DeleteIntent with the addition of the ability to pass a context and additional request options.

See DeleteIntent for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) DeleteSlotType

func (c *LexModelBuildingService) DeleteSlotType(input *DeleteSlotTypeInput) (*DeleteSlotTypeOutput, error)

DeleteSlotType API operation for Amazon Lex Model Building Service.

Deletes all versions of the slot type, including the $LATEST version. To delete a specific version of the slot type, use the operation.

You can delete a version of a slot type only if it is not referenced. To delete a slot type that is referred to in one or more intents, you must remove those references first.

If you get the ResourceInUseException exception, the exception provides an example reference that shows the intent where the slot type is referenced. To remove the reference to the slot type, either update the intent or delete it. If you get the same exception when you attempt to delete the slot type again, repeat until the slot type has no references and the DeleteSlotType call is successful.

This operation requires permission for the lex:DeleteSlotType action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Lex Model Building Service's API operation DeleteSlotType for usage and error information.

Returned Error Codes:

* ErrCodeNotFoundException "NotFoundException"
The resource specified in the request was not found. Check the resource and
try again.

* ErrCodeConflictException "ConflictException"
There was a conflict processing the request. Try your request again.

* ErrCodeLimitExceededException "LimitExceededException"
The request exceeded a limit. Try your request again.

* ErrCodeInternalFailureException "InternalFailureException"
An internal Amazon Lex error occurred. Try your request again.

* ErrCodeBadRequestException "BadRequestException"
The request is not well formed. For example, a value is invalid or a required
field is missing. Check the field values, and try again.

* ErrCodeResourceInUseException "ResourceInUseException"
The resource that you are attempting to delete is referred to by another
resource. Use this information to remove references to the resource that
you are trying to delete.

The body of the exception contains a JSON object that describes the resource.

{ "resourceType": BOT | BOTALIAS | BOTCHANNEL | INTENT,

"resourceReference": {

"name": string, "version": string } }

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteSlotType

func (*LexModelBuildingService) DeleteSlotTypeRequest

func (c *LexModelBuildingService) DeleteSlotTypeRequest(input *DeleteSlotTypeInput) (req *request.Request, output *DeleteSlotTypeOutput)

DeleteSlotTypeRequest generates a "aws/request.Request" representing the client's request for the DeleteSlotType operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteSlotType for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteSlotType method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteSlotTypeRequest method.
req, resp := client.DeleteSlotTypeRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteSlotType

func (*LexModelBuildingService) DeleteSlotTypeVersion

func (c *LexModelBuildingService) DeleteSlotTypeVersion(input *DeleteSlotTypeVersionInput) (*DeleteSlotTypeVersionOutput, error)

DeleteSlotTypeVersion API operation for Amazon Lex Model Building Service.

Deletes a specific version of a slot type. To delete all versions of a slot type, use the operation.

This operation requires permissions for the lex:DeleteSlotTypeVersion action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Lex Model Building Service's API operation DeleteSlotTypeVersion for usage and error information.

Returned Error Codes:

* ErrCodeNotFoundException "NotFoundException"
The resource specified in the request was not found. Check the resource and
try again.

* ErrCodeConflictException "ConflictException"
There was a conflict processing the request. Try your request again.

* ErrCodeLimitExceededException "LimitExceededException"
The request exceeded a limit. Try your request again.

* ErrCodeInternalFailureException "InternalFailureException"
An internal Amazon Lex error occurred. Try your request again.

* ErrCodeBadRequestException "BadRequestException"
The request is not well formed. For example, a value is invalid or a required
field is missing. Check the field values, and try again.

* ErrCodeResourceInUseException "ResourceInUseException"
The resource that you are attempting to delete is referred to by another
resource. Use this information to remove references to the resource that
you are trying to delete.

The body of the exception contains a JSON object that describes the resource.

{ "resourceType": BOT | BOTALIAS | BOTCHANNEL | INTENT,

"resourceReference": {

"name": string, "version": string } }

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteSlotTypeVersion

func (*LexModelBuildingService) DeleteSlotTypeVersionRequest

func (c *LexModelBuildingService) DeleteSlotTypeVersionRequest(input *DeleteSlotTypeVersionInput) (req *request.Request, output *DeleteSlotTypeVersionOutput)

DeleteSlotTypeVersionRequest generates a "aws/request.Request" representing the client's request for the DeleteSlotTypeVersion operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteSlotTypeVersion for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteSlotTypeVersion method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteSlotTypeVersionRequest method.
req, resp := client.DeleteSlotTypeVersionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteSlotTypeVersion

func (*LexModelBuildingService) DeleteSlotTypeVersionWithContext

func (c *LexModelBuildingService) DeleteSlotTypeVersionWithContext(ctx aws.Context, input *DeleteSlotTypeVersionInput, opts ...request.Option) (*DeleteSlotTypeVersionOutput, error)

DeleteSlotTypeVersionWithContext is the same as DeleteSlotTypeVersion with the addition of the ability to pass a context and additional request options.

See DeleteSlotTypeVersion for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) DeleteSlotTypeWithContext

func (c *LexModelBuildingService) DeleteSlotTypeWithContext(ctx aws.Context, input *DeleteSlotTypeInput, opts ...request.Option) (*DeleteSlotTypeOutput, error)

DeleteSlotTypeWithContext is the same as DeleteSlotType with the addition of the ability to pass a context and additional request options.

See DeleteSlotType for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) DeleteUtterances

func (c *LexModelBuildingService) DeleteUtterances(input *DeleteUtterancesInput) (*DeleteUtterancesOutput, error)

DeleteUtterances API operation for Amazon Lex Model Building Service.

Deletes stored utterances.

Amazon Lex stores the utterances that users send to your bot unless the childDirected field in the bot is set to true. Utterances are stored for 15 days for use with the operation, and then stored indefinately for use in improving the ability of your bot to respond to user input.

Use the DeleteStoredUtterances operation to manually delete stored utterances for a specific user.

This operation requires permissions for the lex:DeleteUtterances action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Lex Model Building Service's API operation DeleteUtterances for usage and error information.

Returned Error Codes:

* ErrCodeNotFoundException "NotFoundException"
The resource specified in the request was not found. Check the resource and
try again.

* ErrCodeLimitExceededException "LimitExceededException"
The request exceeded a limit. Try your request again.

* ErrCodeInternalFailureException "InternalFailureException"
An internal Amazon Lex error occurred. Try your request again.

* ErrCodeBadRequestException "BadRequestException"
The request is not well formed. For example, a value is invalid or a required
field is missing. Check the field values, and try again.

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteUtterances

func (*LexModelBuildingService) DeleteUtterancesRequest

func (c *LexModelBuildingService) DeleteUtterancesRequest(input *DeleteUtterancesInput) (req *request.Request, output *DeleteUtterancesOutput)

DeleteUtterancesRequest generates a "aws/request.Request" representing the client's request for the DeleteUtterances operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See DeleteUtterances for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the DeleteUtterances method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the DeleteUtterancesRequest method.
req, resp := client.DeleteUtterancesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/DeleteUtterances

func (*LexModelBuildingService) DeleteUtterancesWithContext

func (c *LexModelBuildingService) DeleteUtterancesWithContext(ctx aws.Context, input *DeleteUtterancesInput, opts ...request.Option) (*DeleteUtterancesOutput, error)

DeleteUtterancesWithContext is the same as DeleteUtterances with the addition of the ability to pass a context and additional request options.

See DeleteUtterances for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) GetBot

func (c *LexModelBuildingService) GetBot(input *GetBotInput) (*GetBotOutput, error)

GetBot API operation for Amazon Lex Model Building Service.

Returns metadata information for a specific bot. You must provide the bot name and the bot version or alias.

The GetBot operation requires permissions for the lex:GetBot action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Lex Model Building Service's API operation GetBot for usage and error information.

Returned Error Codes:

* ErrCodeNotFoundException "NotFoundException"
The resource specified in the request was not found. Check the resource and
try again.

* ErrCodeLimitExceededException "LimitExceededException"
The request exceeded a limit. Try your request again.

* ErrCodeInternalFailureException "InternalFailureException"
An internal Amazon Lex error occurred. Try your request again.

* ErrCodeBadRequestException "BadRequestException"
The request is not well formed. For example, a value is invalid or a required
field is missing. Check the field values, and try again.

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBot

Example (Shared00)

To get information about a bot This example shows how to get configuration information for a bot.

Code:

svc := lexmodelbuildingservice.New(session.New())
input := &lexmodelbuildingservice.GetBotInput{
    Name:           aws.String("DocOrderPizza"),
    VersionOrAlias: aws.String("$LATEST"),
}

result, err := svc.GetBot(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case lexmodelbuildingservice.ErrCodeNotFoundException:
            fmt.Println(lexmodelbuildingservice.ErrCodeNotFoundException, aerr.Error())
        case lexmodelbuildingservice.ErrCodeLimitExceededException:
            fmt.Println(lexmodelbuildingservice.ErrCodeLimitExceededException, aerr.Error())
        case lexmodelbuildingservice.ErrCodeInternalFailureException:
            fmt.Println(lexmodelbuildingservice.ErrCodeInternalFailureException, aerr.Error())
        case lexmodelbuildingservice.ErrCodeBadRequestException:
            fmt.Println(lexmodelbuildingservice.ErrCodeBadRequestException, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*LexModelBuildingService) GetBotAlias

func (c *LexModelBuildingService) GetBotAlias(input *GetBotAliasInput) (*GetBotAliasOutput, error)

GetBotAlias API operation for Amazon Lex Model Building Service.

Returns information about an Amazon Lex bot alias. For more information about aliases, see versioning-aliases.

This operation requires permissions for the lex:GetBotAlias action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Lex Model Building Service's API operation GetBotAlias for usage and error information.

Returned Error Codes:

* ErrCodeNotFoundException "NotFoundException"
The resource specified in the request was not found. Check the resource and
try again.

* ErrCodeLimitExceededException "LimitExceededException"
The request exceeded a limit. Try your request again.

* ErrCodeInternalFailureException "InternalFailureException"
An internal Amazon Lex error occurred. Try your request again.

* ErrCodeBadRequestException "BadRequestException"
The request is not well formed. For example, a value is invalid or a required
field is missing. Check the field values, and try again.

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBotAlias

func (*LexModelBuildingService) GetBotAliasRequest

func (c *LexModelBuildingService) GetBotAliasRequest(input *GetBotAliasInput) (req *request.Request, output *GetBotAliasOutput)

GetBotAliasRequest generates a "aws/request.Request" representing the client's request for the GetBotAlias operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See GetBotAlias for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetBotAlias method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetBotAliasRequest method.
req, resp := client.GetBotAliasRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBotAlias

func (*LexModelBuildingService) GetBotAliasWithContext

func (c *LexModelBuildingService) GetBotAliasWithContext(ctx aws.Context, input *GetBotAliasInput, opts ...request.Option) (*GetBotAliasOutput, error)

GetBotAliasWithContext is the same as GetBotAlias with the addition of the ability to pass a context and additional request options.

See GetBotAlias for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) GetBotAliases

func (c *LexModelBuildingService) GetBotAliases(input *GetBotAliasesInput) (*GetBotAliasesOutput, error)

GetBotAliases API operation for Amazon Lex Model Building Service.

Returns a list of aliases for a specified Amazon Lex bot.

This operation requires permissions for the lex:GetBotAliases action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Lex Model Building Service's API operation GetBotAliases for usage and error information.

Returned Error Codes:

* ErrCodeLimitExceededException "LimitExceededException"
The request exceeded a limit. Try your request again.

* ErrCodeInternalFailureException "InternalFailureException"
An internal Amazon Lex error occurred. Try your request again.

* ErrCodeBadRequestException "BadRequestException"
The request is not well formed. For example, a value is invalid or a required
field is missing. Check the field values, and try again.

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBotAliases

func (*LexModelBuildingService) GetBotAliasesPages

func (c *LexModelBuildingService) GetBotAliasesPages(input *GetBotAliasesInput, fn func(*GetBotAliasesOutput, bool) bool) error

GetBotAliasesPages iterates over the pages of a GetBotAliases operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See GetBotAliases method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a GetBotAliases operation.
pageNum := 0
err := client.GetBotAliasesPages(params,
    func(page *GetBotAliasesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*LexModelBuildingService) GetBotAliasesPagesWithContext

func (c *LexModelBuildingService) GetBotAliasesPagesWithContext(ctx aws.Context, input *GetBotAliasesInput, fn func(*GetBotAliasesOutput, bool) bool, opts ...request.Option) error

GetBotAliasesPagesWithContext same as GetBotAliasesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) GetBotAliasesRequest

func (c *LexModelBuildingService) GetBotAliasesRequest(input *GetBotAliasesInput) (req *request.Request, output *GetBotAliasesOutput)

GetBotAliasesRequest generates a "aws/request.Request" representing the client's request for the GetBotAliases operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See GetBotAliases for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetBotAliases method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetBotAliasesRequest method.
req, resp := client.GetBotAliasesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBotAliases

func (*LexModelBuildingService) GetBotAliasesWithContext

func (c *LexModelBuildingService) GetBotAliasesWithContext(ctx aws.Context, input *GetBotAliasesInput, opts ...request.Option) (*GetBotAliasesOutput, error)

GetBotAliasesWithContext is the same as GetBotAliases with the addition of the ability to pass a context and additional request options.

See GetBotAliases for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) GetBotChannelAssociation

func (c *LexModelBuildingService) GetBotChannelAssociation(input *GetBotChannelAssociationInput) (*GetBotChannelAssociationOutput, error)

GetBotChannelAssociation API operation for Amazon Lex Model Building Service.

Returns information about the association between an Amazon Lex bot and a messaging platform.

This operation requires permissions for the lex:GetBotChannelAssociation action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Lex Model Building Service's API operation GetBotChannelAssociation for usage and error information.

Returned Error Codes:

* ErrCodeNotFoundException "NotFoundException"
The resource specified in the request was not found. Check the resource and
try again.

* ErrCodeLimitExceededException "LimitExceededException"
The request exceeded a limit. Try your request again.

* ErrCodeInternalFailureException "InternalFailureException"
An internal Amazon Lex error occurred. Try your request again.

* ErrCodeBadRequestException "BadRequestException"
The request is not well formed. For example, a value is invalid or a required
field is missing. Check the field values, and try again.

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBotChannelAssociation

func (*LexModelBuildingService) GetBotChannelAssociationRequest

func (c *LexModelBuildingService) GetBotChannelAssociationRequest(input *GetBotChannelAssociationInput) (req *request.Request, output *GetBotChannelAssociationOutput)

GetBotChannelAssociationRequest generates a "aws/request.Request" representing the client's request for the GetBotChannelAssociation operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See GetBotChannelAssociation for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetBotChannelAssociation method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetBotChannelAssociationRequest method.
req, resp := client.GetBotChannelAssociationRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBotChannelAssociation

func (*LexModelBuildingService) GetBotChannelAssociationWithContext

func (c *LexModelBuildingService) GetBotChannelAssociationWithContext(ctx aws.Context, input *GetBotChannelAssociationInput, opts ...request.Option) (*GetBotChannelAssociationOutput, error)

GetBotChannelAssociationWithContext is the same as GetBotChannelAssociation with the addition of the ability to pass a context and additional request options.

See GetBotChannelAssociation for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) GetBotChannelAssociations

func (c *LexModelBuildingService) GetBotChannelAssociations(input *GetBotChannelAssociationsInput) (*GetBotChannelAssociationsOutput, error)

GetBotChannelAssociations API operation for Amazon Lex Model Building Service.

Returns a list of all of the channels associated with the specified bot.

The GetBotChannelAssociations operation requires permissions for the lex:GetBotChannelAssociations action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Lex Model Building Service's API operation GetBotChannelAssociations for usage and error information.

Returned Error Codes:

* ErrCodeLimitExceededException "LimitExceededException"
The request exceeded a limit. Try your request again.

* ErrCodeInternalFailureException "InternalFailureException"
An internal Amazon Lex error occurred. Try your request again.

* ErrCodeBadRequestException "BadRequestException"
The request is not well formed. For example, a value is invalid or a required
field is missing. Check the field values, and try again.

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBotChannelAssociations

func (*LexModelBuildingService) GetBotChannelAssociationsPages

func (c *LexModelBuildingService) GetBotChannelAssociationsPages(input *GetBotChannelAssociationsInput, fn func(*GetBotChannelAssociationsOutput, bool) bool) error

GetBotChannelAssociationsPages iterates over the pages of a GetBotChannelAssociations operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See GetBotChannelAssociations method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a GetBotChannelAssociations operation.
pageNum := 0
err := client.GetBotChannelAssociationsPages(params,
    func(page *GetBotChannelAssociationsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*LexModelBuildingService) GetBotChannelAssociationsPagesWithContext

func (c *LexModelBuildingService) GetBotChannelAssociationsPagesWithContext(ctx aws.Context, input *GetBotChannelAssociationsInput, fn func(*GetBotChannelAssociationsOutput, bool) bool, opts ...request.Option) error

GetBotChannelAssociationsPagesWithContext same as GetBotChannelAssociationsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) GetBotChannelAssociationsRequest

func (c *LexModelBuildingService) GetBotChannelAssociationsRequest(input *GetBotChannelAssociationsInput) (req *request.Request, output *GetBotChannelAssociationsOutput)

GetBotChannelAssociationsRequest generates a "aws/request.Request" representing the client's request for the GetBotChannelAssociations operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See GetBotChannelAssociations for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetBotChannelAssociations method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetBotChannelAssociationsRequest method.
req, resp := client.GetBotChannelAssociationsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBotChannelAssociations

func (*LexModelBuildingService) GetBotChannelAssociationsWithContext

func (c *LexModelBuildingService) GetBotChannelAssociationsWithContext(ctx aws.Context, input *GetBotChannelAssociationsInput, opts ...request.Option) (*GetBotChannelAssociationsOutput, error)

GetBotChannelAssociationsWithContext is the same as GetBotChannelAssociations with the addition of the ability to pass a context and additional request options.

See GetBotChannelAssociations for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) GetBotRequest

func (c *LexModelBuildingService) GetBotRequest(input *GetBotInput) (req *request.Request, output *GetBotOutput)

GetBotRequest generates a "aws/request.Request" representing the client's request for the GetBot operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See GetBot for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetBot method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetBotRequest method.
req, resp := client.GetBotRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBot

func (*LexModelBuildingService) GetBotVersions

func (c *LexModelBuildingService) GetBotVersions(input *GetBotVersionsInput) (*GetBotVersionsOutput, error)

GetBotVersions API operation for Amazon Lex Model Building Service.

Gets information about all of the versions of a bot.

The GetBotVersions operation returns a BotMetadata object for each version of a bot. For example, if a bot has three numbered versions, the GetBotVersions operation returns four BotMetadata objects in the response, one for each numbered version and one for the $LATEST version.

The GetBotVersions operation always returns at least one version, the $LATEST version.

This operation requires permissions for the lex:GetBotVersions action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Lex Model Building Service's API operation GetBotVersions for usage and error information.

Returned Error Codes:

* ErrCodeNotFoundException "NotFoundException"
The resource specified in the request was not found. Check the resource and
try again.

* ErrCodeLimitExceededException "LimitExceededException"
The request exceeded a limit. Try your request again.

* ErrCodeInternalFailureException "InternalFailureException"
An internal Amazon Lex error occurred. Try your request again.

* ErrCodeBadRequestException "BadRequestException"
The request is not well formed. For example, a value is invalid or a required
field is missing. Check the field values, and try again.

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBotVersions

func (*LexModelBuildingService) GetBotVersionsPages

func (c *LexModelBuildingService) GetBotVersionsPages(input *GetBotVersionsInput, fn func(*GetBotVersionsOutput, bool) bool) error

GetBotVersionsPages iterates over the pages of a GetBotVersions operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See GetBotVersions method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a GetBotVersions operation.
pageNum := 0
err := client.GetBotVersionsPages(params,
    func(page *GetBotVersionsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*LexModelBuildingService) GetBotVersionsPagesWithContext

func (c *LexModelBuildingService) GetBotVersionsPagesWithContext(ctx aws.Context, input *GetBotVersionsInput, fn func(*GetBotVersionsOutput, bool) bool, opts ...request.Option) error

GetBotVersionsPagesWithContext same as GetBotVersionsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) GetBotVersionsRequest

func (c *LexModelBuildingService) GetBotVersionsRequest(input *GetBotVersionsInput) (req *request.Request, output *GetBotVersionsOutput)

GetBotVersionsRequest generates a "aws/request.Request" representing the client's request for the GetBotVersions operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See GetBotVersions for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetBotVersions method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetBotVersionsRequest method.
req, resp := client.GetBotVersionsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBotVersions

func (*LexModelBuildingService) GetBotVersionsWithContext

func (c *LexModelBuildingService) GetBotVersionsWithContext(ctx aws.Context, input *GetBotVersionsInput, opts ...request.Option) (*GetBotVersionsOutput, error)

GetBotVersionsWithContext is the same as GetBotVersions with the addition of the ability to pass a context and additional request options.

See GetBotVersions for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) GetBotWithContext

func (c *LexModelBuildingService) GetBotWithContext(ctx aws.Context, input *GetBotInput, opts ...request.Option) (*GetBotOutput, error)

GetBotWithContext is the same as GetBot with the addition of the ability to pass a context and additional request options.

See GetBot for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) GetBots

func (c *LexModelBuildingService) GetBots(input *GetBotsInput) (*GetBotsOutput, error)

GetBots API operation for Amazon Lex Model Building Service.

Returns bot information as follows:

* If you provide the nameContains field, the response includes information
for the $LATEST version of all bots whose name contains the specified
string.

* If you don't specify the nameContains field, the operation returns information
about the $LATEST version of all of your bots.

This operation requires permission for the lex:GetBots action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Lex Model Building Service's API operation GetBots for usage and error information.

Returned Error Codes:

* ErrCodeNotFoundException "NotFoundException"
The resource specified in the request was not found. Check the resource and
try again.

* ErrCodeLimitExceededException "LimitExceededException"
The request exceeded a limit. Try your request again.

* ErrCodeInternalFailureException "InternalFailureException"
An internal Amazon Lex error occurred. Try your request again.

* ErrCodeBadRequestException "BadRequestException"
The request is not well formed. For example, a value is invalid or a required
field is missing. Check the field values, and try again.

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBots

Example (Shared00)

To get a list of bots This example shows how to get a list of all of the bots in your account.

Code:

svc := lexmodelbuildingservice.New(session.New())
input := &lexmodelbuildingservice.GetBotsInput{
    MaxResults: aws.Int64(5),
    NextToken:  aws.String(""),
}

result, err := svc.GetBots(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case lexmodelbuildingservice.ErrCodeNotFoundException:
            fmt.Println(lexmodelbuildingservice.ErrCodeNotFoundException, aerr.Error())
        case lexmodelbuildingservice.ErrCodeLimitExceededException:
            fmt.Println(lexmodelbuildingservice.ErrCodeLimitExceededException, aerr.Error())
        case lexmodelbuildingservice.ErrCodeInternalFailureException:
            fmt.Println(lexmodelbuildingservice.ErrCodeInternalFailureException, aerr.Error())
        case lexmodelbuildingservice.ErrCodeBadRequestException:
            fmt.Println(lexmodelbuildingservice.ErrCodeBadRequestException, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*LexModelBuildingService) GetBotsPages

func (c *LexModelBuildingService) GetBotsPages(input *GetBotsInput, fn func(*GetBotsOutput, bool) bool) error

GetBotsPages iterates over the pages of a GetBots operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See GetBots method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a GetBots operation.
pageNum := 0
err := client.GetBotsPages(params,
    func(page *GetBotsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*LexModelBuildingService) GetBotsPagesWithContext

func (c *LexModelBuildingService) GetBotsPagesWithContext(ctx aws.Context, input *GetBotsInput, fn func(*GetBotsOutput, bool) bool, opts ...request.Option) error

GetBotsPagesWithContext same as GetBotsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) GetBotsRequest

func (c *LexModelBuildingService) GetBotsRequest(input *GetBotsInput) (req *request.Request, output *GetBotsOutput)

GetBotsRequest generates a "aws/request.Request" representing the client's request for the GetBots operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See GetBots for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetBots method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetBotsRequest method.
req, resp := client.GetBotsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBots

func (*LexModelBuildingService) GetBotsWithContext

func (c *LexModelBuildingService) GetBotsWithContext(ctx aws.Context, input *GetBotsInput, opts ...request.Option) (*GetBotsOutput, error)

GetBotsWithContext is the same as GetBots with the addition of the ability to pass a context and additional request options.

See GetBots for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) GetBuiltinIntent

func (c *LexModelBuildingService) GetBuiltinIntent(input *GetBuiltinIntentInput) (*GetBuiltinIntentOutput, error)

GetBuiltinIntent API operation for Amazon Lex Model Building Service.

Returns information about a built-in intent.

This operation requires permission for the lex:GetBuiltinIntent action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Lex Model Building Service's API operation GetBuiltinIntent for usage and error information.

Returned Error Codes:

* ErrCodeNotFoundException "NotFoundException"
The resource specified in the request was not found. Check the resource and
try again.

* ErrCodeLimitExceededException "LimitExceededException"
The request exceeded a limit. Try your request again.

* ErrCodeInternalFailureException "InternalFailureException"
An internal Amazon Lex error occurred. Try your request again.

* ErrCodeBadRequestException "BadRequestException"
The request is not well formed. For example, a value is invalid or a required
field is missing. Check the field values, and try again.

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBuiltinIntent

func (*LexModelBuildingService) GetBuiltinIntentRequest

func (c *LexModelBuildingService) GetBuiltinIntentRequest(input *GetBuiltinIntentInput) (req *request.Request, output *GetBuiltinIntentOutput)

GetBuiltinIntentRequest generates a "aws/request.Request" representing the client's request for the GetBuiltinIntent operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See GetBuiltinIntent for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetBuiltinIntent method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetBuiltinIntentRequest method.
req, resp := client.GetBuiltinIntentRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBuiltinIntent

func (*LexModelBuildingService) GetBuiltinIntentWithContext

func (c *LexModelBuildingService) GetBuiltinIntentWithContext(ctx aws.Context, input *GetBuiltinIntentInput, opts ...request.Option) (*GetBuiltinIntentOutput, error)

GetBuiltinIntentWithContext is the same as GetBuiltinIntent with the addition of the ability to pass a context and additional request options.

See GetBuiltinIntent for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) GetBuiltinIntents

func (c *LexModelBuildingService) GetBuiltinIntents(input *GetBuiltinIntentsInput) (*GetBuiltinIntentsOutput, error)

GetBuiltinIntents API operation for Amazon Lex Model Building Service.

Gets a list of built-in intents that meet the specified criteria.

This operation requires permission for the lex:GetBuiltinIntents action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Lex Model Building Service's API operation GetBuiltinIntents for usage and error information.

Returned Error Codes:

* ErrCodeLimitExceededException "LimitExceededException"
The request exceeded a limit. Try your request again.

* ErrCodeInternalFailureException "InternalFailureException"
An internal Amazon Lex error occurred. Try your request again.

* ErrCodeBadRequestException "BadRequestException"
The request is not well formed. For example, a value is invalid or a required
field is missing. Check the field values, and try again.

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBuiltinIntents

func (*LexModelBuildingService) GetBuiltinIntentsPages

func (c *LexModelBuildingService) GetBuiltinIntentsPages(input *GetBuiltinIntentsInput, fn func(*GetBuiltinIntentsOutput, bool) bool) error

GetBuiltinIntentsPages iterates over the pages of a GetBuiltinIntents operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See GetBuiltinIntents method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a GetBuiltinIntents operation.
pageNum := 0
err := client.GetBuiltinIntentsPages(params,
    func(page *GetBuiltinIntentsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*LexModelBuildingService) GetBuiltinIntentsPagesWithContext

func (c *LexModelBuildingService) GetBuiltinIntentsPagesWithContext(ctx aws.Context, input *GetBuiltinIntentsInput, fn func(*GetBuiltinIntentsOutput, bool) bool, opts ...request.Option) error

GetBuiltinIntentsPagesWithContext same as GetBuiltinIntentsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) GetBuiltinIntentsRequest

func (c *LexModelBuildingService) GetBuiltinIntentsRequest(input *GetBuiltinIntentsInput) (req *request.Request, output *GetBuiltinIntentsOutput)

GetBuiltinIntentsRequest generates a "aws/request.Request" representing the client's request for the GetBuiltinIntents operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See GetBuiltinIntents for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetBuiltinIntents method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetBuiltinIntentsRequest method.
req, resp := client.GetBuiltinIntentsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBuiltinIntents

func (*LexModelBuildingService) GetBuiltinIntentsWithContext

func (c *LexModelBuildingService) GetBuiltinIntentsWithContext(ctx aws.Context, input *GetBuiltinIntentsInput, opts ...request.Option) (*GetBuiltinIntentsOutput, error)

GetBuiltinIntentsWithContext is the same as GetBuiltinIntents with the addition of the ability to pass a context and additional request options.

See GetBuiltinIntents for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) GetBuiltinSlotTypes

func (c *LexModelBuildingService) GetBuiltinSlotTypes(input *GetBuiltinSlotTypesInput) (*GetBuiltinSlotTypesOutput, error)

GetBuiltinSlotTypes API operation for Amazon Lex Model Building Service.

Gets a list of built-in slot types that meet the specified criteria.

For a list of built-in slot types, see Slot Type Reference (https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/built-in-intent-ref/slot-type-reference) in the Alexa Skills Kit.

This operation requires permission for the lex:GetBuiltInSlotTypes action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Lex Model Building Service's API operation GetBuiltinSlotTypes for usage and error information.

Returned Error Codes:

* ErrCodeLimitExceededException "LimitExceededException"
The request exceeded a limit. Try your request again.

* ErrCodeInternalFailureException "InternalFailureException"
An internal Amazon Lex error occurred. Try your request again.

* ErrCodeBadRequestException "BadRequestException"
The request is not well formed. For example, a value is invalid or a required
field is missing. Check the field values, and try again.

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBuiltinSlotTypes

func (*LexModelBuildingService) GetBuiltinSlotTypesPages

func (c *LexModelBuildingService) GetBuiltinSlotTypesPages(input *GetBuiltinSlotTypesInput, fn func(*GetBuiltinSlotTypesOutput, bool) bool) error

GetBuiltinSlotTypesPages iterates over the pages of a GetBuiltinSlotTypes operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See GetBuiltinSlotTypes method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a GetBuiltinSlotTypes operation.
pageNum := 0
err := client.GetBuiltinSlotTypesPages(params,
    func(page *GetBuiltinSlotTypesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*LexModelBuildingService) GetBuiltinSlotTypesPagesWithContext

func (c *LexModelBuildingService) GetBuiltinSlotTypesPagesWithContext(ctx aws.Context, input *GetBuiltinSlotTypesInput, fn func(*GetBuiltinSlotTypesOutput, bool) bool, opts ...request.Option) error

GetBuiltinSlotTypesPagesWithContext same as GetBuiltinSlotTypesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) GetBuiltinSlotTypesRequest

func (c *LexModelBuildingService) GetBuiltinSlotTypesRequest(input *GetBuiltinSlotTypesInput) (req *request.Request, output *GetBuiltinSlotTypesOutput)

GetBuiltinSlotTypesRequest generates a "aws/request.Request" representing the client's request for the GetBuiltinSlotTypes operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See GetBuiltinSlotTypes for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetBuiltinSlotTypes method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetBuiltinSlotTypesRequest method.
req, resp := client.GetBuiltinSlotTypesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetBuiltinSlotTypes

func (*LexModelBuildingService) GetBuiltinSlotTypesWithContext

func (c *LexModelBuildingService) GetBuiltinSlotTypesWithContext(ctx aws.Context, input *GetBuiltinSlotTypesInput, opts ...request.Option) (*GetBuiltinSlotTypesOutput, error)

GetBuiltinSlotTypesWithContext is the same as GetBuiltinSlotTypes with the addition of the ability to pass a context and additional request options.

See GetBuiltinSlotTypes for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) GetIntent

func (c *LexModelBuildingService) GetIntent(input *GetIntentInput) (*GetIntentOutput, error)

GetIntent API operation for Amazon Lex Model Building Service.

Returns information about an intent. In addition to the intent name, you must specify the intent version.

This operation requires permissions to perform the lex:GetIntent action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Lex Model Building Service's API operation GetIntent for usage and error information.

Returned Error Codes:

* ErrCodeNotFoundException "NotFoundException"
The resource specified in the request was not found. Check the resource and
try again.

* ErrCodeLimitExceededException "LimitExceededException"
The request exceeded a limit. Try your request again.

* ErrCodeInternalFailureException "InternalFailureException"
An internal Amazon Lex error occurred. Try your request again.

* ErrCodeBadRequestException "BadRequestException"
The request is not well formed. For example, a value is invalid or a required
field is missing. Check the field values, and try again.

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetIntent

Example (Shared00)

To get a information about an intent This example shows how to get information about an intent.

Code:

svc := lexmodelbuildingservice.New(session.New())
input := &lexmodelbuildingservice.GetIntentInput{
    Name:    aws.String("DocOrderPizza"),
    Version: aws.String("$LATEST"),
}

result, err := svc.GetIntent(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case lexmodelbuildingservice.ErrCodeNotFoundException:
            fmt.Println(lexmodelbuildingservice.ErrCodeNotFoundException, aerr.Error())
        case lexmodelbuildingservice.ErrCodeLimitExceededException:
            fmt.Println(lexmodelbuildingservice.ErrCodeLimitExceededException, aerr.Error())
        case lexmodelbuildingservice.ErrCodeInternalFailureException:
            fmt.Println(lexmodelbuildingservice.ErrCodeInternalFailureException, aerr.Error())
        case lexmodelbuildingservice.ErrCodeBadRequestException:
            fmt.Println(lexmodelbuildingservice.ErrCodeBadRequestException, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*LexModelBuildingService) GetIntentRequest

func (c *LexModelBuildingService) GetIntentRequest(input *GetIntentInput) (req *request.Request, output *GetIntentOutput)

GetIntentRequest generates a "aws/request.Request" representing the client's request for the GetIntent operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See GetIntent for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetIntent method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetIntentRequest method.
req, resp := client.GetIntentRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetIntent

func (*LexModelBuildingService) GetIntentVersions

func (c *LexModelBuildingService) GetIntentVersions(input *GetIntentVersionsInput) (*GetIntentVersionsOutput, error)

GetIntentVersions API operation for Amazon Lex Model Building Service.

Gets information about all of the versions of an intent.

The GetIntentVersions operation returns an IntentMetadata object for each version of an intent. For example, if an intent has three numbered versions, the GetIntentVersions operation returns four IntentMetadata objects in the response, one for each numbered version and one for the $LATEST version.

The GetIntentVersions operation always returns at least one version, the $LATEST version.

This operation requires permissions for the lex:GetIntentVersions action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Lex Model Building Service's API operation GetIntentVersions for usage and error information.

Returned Error Codes:

* ErrCodeNotFoundException "NotFoundException"
The resource specified in the request was not found. Check the resource and
try again.

* ErrCodeLimitExceededException "LimitExceededException"
The request exceeded a limit. Try your request again.

* ErrCodeInternalFailureException "InternalFailureException"
An internal Amazon Lex error occurred. Try your request again.

* ErrCodeBadRequestException "BadRequestException"
The request is not well formed. For example, a value is invalid or a required
field is missing. Check the field values, and try again.

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetIntentVersions

func (*LexModelBuildingService) GetIntentVersionsPages

func (c *LexModelBuildingService) GetIntentVersionsPages(input *GetIntentVersionsInput, fn func(*GetIntentVersionsOutput, bool) bool) error

GetIntentVersionsPages iterates over the pages of a GetIntentVersions operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See GetIntentVersions method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a GetIntentVersions operation.
pageNum := 0
err := client.GetIntentVersionsPages(params,
    func(page *GetIntentVersionsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*LexModelBuildingService) GetIntentVersionsPagesWithContext

func (c *LexModelBuildingService) GetIntentVersionsPagesWithContext(ctx aws.Context, input *GetIntentVersionsInput, fn func(*GetIntentVersionsOutput, bool) bool, opts ...request.Option) error

GetIntentVersionsPagesWithContext same as GetIntentVersionsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) GetIntentVersionsRequest

func (c *LexModelBuildingService) GetIntentVersionsRequest(input *GetIntentVersionsInput) (req *request.Request, output *GetIntentVersionsOutput)

GetIntentVersionsRequest generates a "aws/request.Request" representing the client's request for the GetIntentVersions operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See GetIntentVersions for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetIntentVersions method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetIntentVersionsRequest method.
req, resp := client.GetIntentVersionsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetIntentVersions

func (*LexModelBuildingService) GetIntentVersionsWithContext

func (c *LexModelBuildingService) GetIntentVersionsWithContext(ctx aws.Context, input *GetIntentVersionsInput, opts ...request.Option) (*GetIntentVersionsOutput, error)

GetIntentVersionsWithContext is the same as GetIntentVersions with the addition of the ability to pass a context and additional request options.

See GetIntentVersions for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) GetIntentWithContext

func (c *LexModelBuildingService) GetIntentWithContext(ctx aws.Context, input *GetIntentInput, opts ...request.Option) (*GetIntentOutput, error)

GetIntentWithContext is the same as GetIntent with the addition of the ability to pass a context and additional request options.

See GetIntent for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) GetIntents

func (c *LexModelBuildingService) GetIntents(input *GetIntentsInput) (*GetIntentsOutput, error)

GetIntents API operation for Amazon Lex Model Building Service.

Returns intent information as follows:

* If you specify the nameContains field, returns the $LATEST version of
all intents that contain the specified string.

*  If you don't specify the nameContains field, returns information about
the $LATEST version of all intents.

The operation requires permission for the lex:GetIntents action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Lex Model Building Service's API operation GetIntents for usage and error information.

Returned Error Codes:

* ErrCodeNotFoundException "NotFoundException"
The resource specified in the request was not found. Check the resource and
try again.

* ErrCodeLimitExceededException "LimitExceededException"
The request exceeded a limit. Try your request again.

* ErrCodeInternalFailureException "InternalFailureException"
An internal Amazon Lex error occurred. Try your request again.

* ErrCodeBadRequestException "BadRequestException"
The request is not well formed. For example, a value is invalid or a required
field is missing. Check the field values, and try again.

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetIntents

Example (Shared00)

To get a list of intents This example shows how to get a list of all of the intents in your account.

Code:

svc := lexmodelbuildingservice.New(session.New())
input := &lexmodelbuildingservice.GetIntentsInput{
    MaxResults: aws.Int64(10),
    NextToken:  aws.String(""),
}

result, err := svc.GetIntents(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case lexmodelbuildingservice.ErrCodeNotFoundException:
            fmt.Println(lexmodelbuildingservice.ErrCodeNotFoundException, aerr.Error())
        case lexmodelbuildingservice.ErrCodeLimitExceededException:
            fmt.Println(lexmodelbuildingservice.ErrCodeLimitExceededException, aerr.Error())
        case lexmodelbuildingservice.ErrCodeInternalFailureException:
            fmt.Println(lexmodelbuildingservice.ErrCodeInternalFailureException, aerr.Error())
        case lexmodelbuildingservice.ErrCodeBadRequestException:
            fmt.Println(lexmodelbuildingservice.ErrCodeBadRequestException, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*LexModelBuildingService) GetIntentsPages

func (c *LexModelBuildingService) GetIntentsPages(input *GetIntentsInput, fn func(*GetIntentsOutput, bool) bool) error

GetIntentsPages iterates over the pages of a GetIntents operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See GetIntents method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a GetIntents operation.
pageNum := 0
err := client.GetIntentsPages(params,
    func(page *GetIntentsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*LexModelBuildingService) GetIntentsPagesWithContext

func (c *LexModelBuildingService) GetIntentsPagesWithContext(ctx aws.Context, input *GetIntentsInput, fn func(*GetIntentsOutput, bool) bool, opts ...request.Option) error

GetIntentsPagesWithContext same as GetIntentsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) GetIntentsRequest

func (c *LexModelBuildingService) GetIntentsRequest(input *GetIntentsInput) (req *request.Request, output *GetIntentsOutput)

GetIntentsRequest generates a "aws/request.Request" representing the client's request for the GetIntents operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See GetIntents for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetIntents method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetIntentsRequest method.
req, resp := client.GetIntentsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetIntents

func (*LexModelBuildingService) GetIntentsWithContext

func (c *LexModelBuildingService) GetIntentsWithContext(ctx aws.Context, input *GetIntentsInput, opts ...request.Option) (*GetIntentsOutput, error)

GetIntentsWithContext is the same as GetIntents with the addition of the ability to pass a context and additional request options.

See GetIntents for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) GetSlotType

func (c *LexModelBuildingService) GetSlotType(input *GetSlotTypeInput) (*GetSlotTypeOutput, error)

GetSlotType API operation for Amazon Lex Model Building Service.

Returns information about a specific version of a slot type. In addition to specifying the slot type name, you must specify the slot type version.

This operation requires permissions for the lex:GetSlotType action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Lex Model Building Service's API operation GetSlotType for usage and error information.

Returned Error Codes:

* ErrCodeNotFoundException "NotFoundException"
The resource specified in the request was not found. Check the resource and
try again.

* ErrCodeLimitExceededException "LimitExceededException"
The request exceeded a limit. Try your request again.

* ErrCodeInternalFailureException "InternalFailureException"
An internal Amazon Lex error occurred. Try your request again.

* ErrCodeBadRequestException "BadRequestException"
The request is not well formed. For example, a value is invalid or a required
field is missing. Check the field values, and try again.

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetSlotType

Example (Shared00)

To get information about a slot type This example shows how to get information about a slot type.

Code:

svc := lexmodelbuildingservice.New(session.New())
input := &lexmodelbuildingservice.GetSlotTypeInput{
    Name:    aws.String("DocPizzaCrustType"),
    Version: aws.String("$LATEST"),
}

result, err := svc.GetSlotType(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case lexmodelbuildingservice.ErrCodeNotFoundException:
            fmt.Println(lexmodelbuildingservice.ErrCodeNotFoundException, aerr.Error())
        case lexmodelbuildingservice.ErrCodeLimitExceededException:
            fmt.Println(lexmodelbuildingservice.ErrCodeLimitExceededException, aerr.Error())
        case lexmodelbuildingservice.ErrCodeInternalFailureException:
            fmt.Println(lexmodelbuildingservice.ErrCodeInternalFailureException, aerr.Error())
        case lexmodelbuildingservice.ErrCodeBadRequestException:
            fmt.Println(lexmodelbuildingservice.ErrCodeBadRequestException, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*LexModelBuildingService) GetSlotTypeRequest

func (c *LexModelBuildingService) GetSlotTypeRequest(input *GetSlotTypeInput) (req *request.Request, output *GetSlotTypeOutput)

GetSlotTypeRequest generates a "aws/request.Request" representing the client's request for the GetSlotType operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See GetSlotType for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetSlotType method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetSlotTypeRequest method.
req, resp := client.GetSlotTypeRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetSlotType

func (*LexModelBuildingService) GetSlotTypeVersions

func (c *LexModelBuildingService) GetSlotTypeVersions(input *GetSlotTypeVersionsInput) (*GetSlotTypeVersionsOutput, error)

GetSlotTypeVersions API operation for Amazon Lex Model Building Service.

Gets information about all versions of a slot type.

The GetSlotTypeVersions operation returns a SlotTypeMetadata object for each version of a slot type. For example, if a slot type has three numbered versions, the GetSlotTypeVersions operation returns four SlotTypeMetadata objects in the response, one for each numbered version and one for the $LATEST version.

The GetSlotTypeVersions operation always returns at least one version, the $LATEST version.

This operation requires permissions for the lex:GetSlotTypeVersions action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Lex Model Building Service's API operation GetSlotTypeVersions for usage and error information.

Returned Error Codes:

* ErrCodeNotFoundException "NotFoundException"
The resource specified in the request was not found. Check the resource and
try again.

* ErrCodeLimitExceededException "LimitExceededException"
The request exceeded a limit. Try your request again.

* ErrCodeInternalFailureException "InternalFailureException"
An internal Amazon Lex error occurred. Try your request again.

* ErrCodeBadRequestException "BadRequestException"
The request is not well formed. For example, a value is invalid or a required
field is missing. Check the field values, and try again.

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetSlotTypeVersions

func (*LexModelBuildingService) GetSlotTypeVersionsPages

func (c *LexModelBuildingService) GetSlotTypeVersionsPages(input *GetSlotTypeVersionsInput, fn func(*GetSlotTypeVersionsOutput, bool) bool) error

GetSlotTypeVersionsPages iterates over the pages of a GetSlotTypeVersions operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See GetSlotTypeVersions method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a GetSlotTypeVersions operation.
pageNum := 0
err := client.GetSlotTypeVersionsPages(params,
    func(page *GetSlotTypeVersionsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*LexModelBuildingService) GetSlotTypeVersionsPagesWithContext

func (c *LexModelBuildingService) GetSlotTypeVersionsPagesWithContext(ctx aws.Context, input *GetSlotTypeVersionsInput, fn func(*GetSlotTypeVersionsOutput, bool) bool, opts ...request.Option) error

GetSlotTypeVersionsPagesWithContext same as GetSlotTypeVersionsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) GetSlotTypeVersionsRequest

func (c *LexModelBuildingService) GetSlotTypeVersionsRequest(input *GetSlotTypeVersionsInput) (req *request.Request, output *GetSlotTypeVersionsOutput)

GetSlotTypeVersionsRequest generates a "aws/request.Request" representing the client's request for the GetSlotTypeVersions operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See GetSlotTypeVersions for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetSlotTypeVersions method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetSlotTypeVersionsRequest method.
req, resp := client.GetSlotTypeVersionsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetSlotTypeVersions

func (*LexModelBuildingService) GetSlotTypeVersionsWithContext

func (c *LexModelBuildingService) GetSlotTypeVersionsWithContext(ctx aws.Context, input *GetSlotTypeVersionsInput, opts ...request.Option) (*GetSlotTypeVersionsOutput, error)

GetSlotTypeVersionsWithContext is the same as GetSlotTypeVersions with the addition of the ability to pass a context and additional request options.

See GetSlotTypeVersions for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) GetSlotTypeWithContext

func (c *LexModelBuildingService) GetSlotTypeWithContext(ctx aws.Context, input *GetSlotTypeInput, opts ...request.Option) (*GetSlotTypeOutput, error)

GetSlotTypeWithContext is the same as GetSlotType with the addition of the ability to pass a context and additional request options.

See GetSlotType for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) GetSlotTypes

func (c *LexModelBuildingService) GetSlotTypes(input *GetSlotTypesInput) (*GetSlotTypesOutput, error)

GetSlotTypes API operation for Amazon Lex Model Building Service.

Returns slot type information as follows:

* If you specify the nameContains field, returns the $LATEST version of
all slot types that contain the specified string.

*  If you don't specify the nameContains field, returns information about
the $LATEST version of all slot types.

The operation requires permission for the lex:GetSlotTypes action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Lex Model Building Service's API operation GetSlotTypes for usage and error information.

Returned Error Codes:

* ErrCodeNotFoundException "NotFoundException"
The resource specified in the request was not found. Check the resource and
try again.

* ErrCodeLimitExceededException "LimitExceededException"
The request exceeded a limit. Try your request again.

* ErrCodeInternalFailureException "InternalFailureException"
An internal Amazon Lex error occurred. Try your request again.

* ErrCodeBadRequestException "BadRequestException"
The request is not well formed. For example, a value is invalid or a required
field is missing. Check the field values, and try again.

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetSlotTypes

Example (Shared00)

To get a list of slot types This example shows how to get a list of all of the slot types in your account.

Code:

svc := lexmodelbuildingservice.New(session.New())
input := &lexmodelbuildingservice.GetSlotTypesInput{
    MaxResults: aws.Int64(10),
    NextToken:  aws.String(""),
}

result, err := svc.GetSlotTypes(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case lexmodelbuildingservice.ErrCodeNotFoundException:
            fmt.Println(lexmodelbuildingservice.ErrCodeNotFoundException, aerr.Error())
        case lexmodelbuildingservice.ErrCodeLimitExceededException:
            fmt.Println(lexmodelbuildingservice.ErrCodeLimitExceededException, aerr.Error())
        case lexmodelbuildingservice.ErrCodeInternalFailureException:
            fmt.Println(lexmodelbuildingservice.ErrCodeInternalFailureException, aerr.Error())
        case lexmodelbuildingservice.ErrCodeBadRequestException:
            fmt.Println(lexmodelbuildingservice.ErrCodeBadRequestException, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*LexModelBuildingService) GetSlotTypesPages

func (c *LexModelBuildingService) GetSlotTypesPages(input *GetSlotTypesInput, fn func(*GetSlotTypesOutput, bool) bool) error

GetSlotTypesPages iterates over the pages of a GetSlotTypes operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See GetSlotTypes method for more information on how to use this operation.

Note: This operation can generate multiple requests to a service.

// Example iterating over at most 3 pages of a GetSlotTypes operation.
pageNum := 0
err := client.GetSlotTypesPages(params,
    func(page *GetSlotTypesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*LexModelBuildingService) GetSlotTypesPagesWithContext

func (c *LexModelBuildingService) GetSlotTypesPagesWithContext(ctx aws.Context, input *GetSlotTypesInput, fn func(*GetSlotTypesOutput, bool) bool, opts ...request.Option) error

GetSlotTypesPagesWithContext same as GetSlotTypesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) GetSlotTypesRequest

func (c *LexModelBuildingService) GetSlotTypesRequest(input *GetSlotTypesInput) (req *request.Request, output *GetSlotTypesOutput)

GetSlotTypesRequest generates a "aws/request.Request" representing the client's request for the GetSlotTypes operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See GetSlotTypes for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetSlotTypes method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetSlotTypesRequest method.
req, resp := client.GetSlotTypesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetSlotTypes

func (*LexModelBuildingService) GetSlotTypesWithContext

func (c *LexModelBuildingService) GetSlotTypesWithContext(ctx aws.Context, input *GetSlotTypesInput, opts ...request.Option) (*GetSlotTypesOutput, error)

GetSlotTypesWithContext is the same as GetSlotTypes with the addition of the ability to pass a context and additional request options.

See GetSlotTypes for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) GetUtterancesView

func (c *LexModelBuildingService) GetUtterancesView(input *GetUtterancesViewInput) (*GetUtterancesViewOutput, error)

GetUtterancesView API operation for Amazon Lex Model Building Service.

Use the GetUtterancesView operation to get information about the utterances that your users have made to your bot. You can use this list to tune the utterances that your bot responds to.

For example, say that you have created a bot to order flowers. After your users have used your bot for a while, use the GetUtterancesView operation to see the requests that they have made and whether they have been successful. You might find that the utterance "I want flowers" is not being recognized. You could add this utterance to the OrderFlowers intent so that your bot recognizes that utterance.

After you publish a new version of a bot, you can get information about the old version and the new so that you can compare the performance across the two versions.

Data is available for the last 15 days. You can request information for up to 5 versions in each request. The response contains information about a maximum of 100 utterances for each version.

If the bot's childDirected field is set to true, utterances for the bot are not stored and cannot be retrieved with the GetUtterancesView operation. For more information, see .

This operation requires permissions for the lex:GetUtterancesView action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Lex Model Building Service's API operation GetUtterancesView for usage and error information.

Returned Error Codes:

* ErrCodeLimitExceededException "LimitExceededException"
The request exceeded a limit. Try your request again.

* ErrCodeInternalFailureException "InternalFailureException"
An internal Amazon Lex error occurred. Try your request again.

* ErrCodeBadRequestException "BadRequestException"
The request is not well formed. For example, a value is invalid or a required
field is missing. Check the field values, and try again.

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetUtterancesView

func (*LexModelBuildingService) GetUtterancesViewRequest

func (c *LexModelBuildingService) GetUtterancesViewRequest(input *GetUtterancesViewInput) (req *request.Request, output *GetUtterancesViewOutput)

GetUtterancesViewRequest generates a "aws/request.Request" representing the client's request for the GetUtterancesView operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See GetUtterancesView for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the GetUtterancesView method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the GetUtterancesViewRequest method.
req, resp := client.GetUtterancesViewRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/GetUtterancesView

func (*LexModelBuildingService) GetUtterancesViewWithContext

func (c *LexModelBuildingService) GetUtterancesViewWithContext(ctx aws.Context, input *GetUtterancesViewInput, opts ...request.Option) (*GetUtterancesViewOutput, error)

GetUtterancesViewWithContext is the same as GetUtterancesView with the addition of the ability to pass a context and additional request options.

See GetUtterancesView for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) PutBot

func (c *LexModelBuildingService) PutBot(input *PutBotInput) (*PutBotOutput, error)

PutBot API operation for Amazon Lex Model Building Service.

Creates an Amazon Lex conversational bot or replaces an existing bot. When you create or update a bot you only required to specify a name. You can use this to add intents later, or to remove intents from an existing bot. When you create a bot with a name only, the bot is created or updated but Amazon Lex returns the response FAILED. You can build the bot after you add one or more intents. For more information about Amazon Lex bots, see how-it-works.

If you specify the name of an existing bot, the fields in the request replace the existing values in the $LATESTversion of the bot. Amazon Lex removes any fields that you don't provide values for in the request, except for the idleTTLInSecondsand privacySettingsfields, which are set to their default values. If you don't specify values for required fields, Amazon Lex throws an exception.

This operation requires permissions for the lex:PutBotaction. For more information, see auth-and-access-control

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Lex Model Building Service's API operation PutBot for usage and error information.

Returned Error Codes:

* ErrCodeConflictException "ConflictException"
There was a conflict processing the request. Try your request again.

* ErrCodeLimitExceededException "LimitExceededException"
The request exceeded a limit. Try your request again.

* ErrCodeInternalFailureException "InternalFailureException"
An internal Amazon Lex error occurred. Try your request again.

* ErrCodeBadRequestException "BadRequestException"
The request is not well formed. For example, a value is invalid or a required
field is missing. Check the field values, and try again.

* ErrCodePreconditionFailedException "PreconditionFailedException"
The checksum of the resource that you are trying to change does not match
the checksum in the request. Check the resource's checksum and try again.

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/PutBot

Example (Shared00)

To create a bot This example shows how to create a bot for ordering pizzas.

Code:

svc := lexmodelbuildingservice.New(session.New())
input := &lexmodelbuildingservice.PutBotInput{
    AbortStatement: &lexmodelbuildingservice.Statement{
        Messages: []*lexmodelbuildingservice.Message{
            {
                Content:     aws.String("I don't understand. Can you try again?"),
                ContentType: aws.String("PlainText"),
            },
            {
                Content:     aws.String("I'm sorry, I don't understand."),
                ContentType: aws.String("PlainText"),
            },
        },
    },
    ChildDirected: aws.Bool(true),
    ClarificationPrompt: &lexmodelbuildingservice.Prompt{
        MaxAttempts: aws.Int64(1),
        Messages: []*lexmodelbuildingservice.Message{
            {
                Content:     aws.String("I'm sorry, I didn't hear that. Can you repeate what you just said?"),
                ContentType: aws.String("PlainText"),
            },
            {
                Content:     aws.String("Can you say that again?"),
                ContentType: aws.String("PlainText"),
            },
        },
    },
    Description:             aws.String("Orders a pizza from a local pizzeria."),
    IdleSessionTTLInSeconds: aws.Int64(300),
    Intents: []*lexmodelbuildingservice.Intent{
        {
            IntentName:    aws.String("DocOrderPizza"),
            IntentVersion: aws.String("$LATEST"),
        },
    },
    Locale:          aws.String("en-US"),
    Name:            aws.String("DocOrderPizzaBot"),
    ProcessBehavior: aws.String("SAVE"),
}

result, err := svc.PutBot(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case lexmodelbuildingservice.ErrCodeConflictException:
            fmt.Println(lexmodelbuildingservice.ErrCodeConflictException, aerr.Error())
        case lexmodelbuildingservice.ErrCodeLimitExceededException:
            fmt.Println(lexmodelbuildingservice.ErrCodeLimitExceededException, aerr.Error())
        case lexmodelbuildingservice.ErrCodeInternalFailureException:
            fmt.Println(lexmodelbuildingservice.ErrCodeInternalFailureException, aerr.Error())
        case lexmodelbuildingservice.ErrCodeBadRequestException:
            fmt.Println(lexmodelbuildingservice.ErrCodeBadRequestException, aerr.Error())
        case lexmodelbuildingservice.ErrCodePreconditionFailedException:
            fmt.Println(lexmodelbuildingservice.ErrCodePreconditionFailedException, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*LexModelBuildingService) PutBotAlias

func (c *LexModelBuildingService) PutBotAlias(input *PutBotAliasInput) (*PutBotAliasOutput, error)

PutBotAlias API operation for Amazon Lex Model Building Service.

Creates an alias for the specified version of the bot or replaces an alias for the specified bot. To change the version of the bot that the alias points to, replace the alias. For more information about aliases, see versioning-aliases.

This operation requires permissions for the lex:PutBotAlias action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Lex Model Building Service's API operation PutBotAlias for usage and error information.

Returned Error Codes:

* ErrCodeConflictException "ConflictException"
There was a conflict processing the request. Try your request again.

* ErrCodeLimitExceededException "LimitExceededException"
The request exceeded a limit. Try your request again.

* ErrCodeInternalFailureException "InternalFailureException"
An internal Amazon Lex error occurred. Try your request again.

* ErrCodeBadRequestException "BadRequestException"
The request is not well formed. For example, a value is invalid or a required
field is missing. Check the field values, and try again.

* ErrCodePreconditionFailedException "PreconditionFailedException"
The checksum of the resource that you are trying to change does not match
the checksum in the request. Check the resource's checksum and try again.

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/PutBotAlias

func (*LexModelBuildingService) PutBotAliasRequest

func (c *LexModelBuildingService) PutBotAliasRequest(input *PutBotAliasInput) (req *request.Request, output *PutBotAliasOutput)

PutBotAliasRequest generates a "aws/request.Request" representing the client's request for the PutBotAlias operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See PutBotAlias for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the PutBotAlias method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the PutBotAliasRequest method.
req, resp := client.PutBotAliasRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/PutBotAlias

func (*LexModelBuildingService) PutBotAliasWithContext

func (c *LexModelBuildingService) PutBotAliasWithContext(ctx aws.Context, input *PutBotAliasInput, opts ...request.Option) (*PutBotAliasOutput, error)

PutBotAliasWithContext is the same as PutBotAlias with the addition of the ability to pass a context and additional request options.

See PutBotAlias for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) PutBotRequest

func (c *LexModelBuildingService) PutBotRequest(input *PutBotInput) (req *request.Request, output *PutBotOutput)

PutBotRequest generates a "aws/request.Request" representing the client's request for the PutBot operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See PutBot for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the PutBot method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the PutBotRequest method.
req, resp := client.PutBotRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/PutBot

func (*LexModelBuildingService) PutBotWithContext

func (c *LexModelBuildingService) PutBotWithContext(ctx aws.Context, input *PutBotInput, opts ...request.Option) (*PutBotOutput, error)

PutBotWithContext is the same as PutBot with the addition of the ability to pass a context and additional request options.

See PutBot for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) PutIntent

func (c *LexModelBuildingService) PutIntent(input *PutIntentInput) (*PutIntentOutput, error)

PutIntent API operation for Amazon Lex Model Building Service.

Creates an intent or replaces an existing intent.

To define the interaction between the user and your bot, you use one or more intents. For a pizza ordering bot, for example, you would create an OrderPizza intent.

To create an intent or replace an existing intent, you must provide the following:

* Intent name. For example, OrderPizza.

* Sample utterances. For example, "Can I order a pizza, please." and "I
want to order a pizza."

* Information to be gathered. You specify slot types for the information
that your bot will request from the user. You can specify standard slot
types, such as a date or a time, or custom slot types such as the size
and crust of a pizza.

* How the intent will be fulfilled. You can provide a Lambda function
or configure the intent to return the intent information to the client
application. If you use a Lambda function, when all of the intent information
is available, Amazon Lex invokes your Lambda function. If you configure
your intent to return the intent information to the client application.

You can specify other optional information in the request, such as:

* A confirmation prompt to ask the user to confirm an intent. For example,
"Shall I order your pizza?"

* A conclusion statement to send to the user after the intent has been
fulfilled. For example, "I placed your pizza order."

* A follow-up prompt that asks the user for additional activity. For example,
asking "Do you want to order a drink with your pizza?"

If you specify an existing intent name to update the intent, Amazon Lex replaces the values in the $LATEST version of the slot type with the values in the request. Amazon Lex removes fields that you don't provide in the request. If you don't specify the required fields, Amazon Lex throws an exception.

For more information, see how-it-works.

This operation requires permissions for the lex:PutIntent action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Lex Model Building Service's API operation PutIntent for usage and error information.

Returned Error Codes:

* ErrCodeConflictException "ConflictException"
There was a conflict processing the request. Try your request again.

* ErrCodeLimitExceededException "LimitExceededException"
The request exceeded a limit. Try your request again.

* ErrCodeInternalFailureException "InternalFailureException"
An internal Amazon Lex error occurred. Try your request again.

* ErrCodeBadRequestException "BadRequestException"
The request is not well formed. For example, a value is invalid or a required
field is missing. Check the field values, and try again.

* ErrCodePreconditionFailedException "PreconditionFailedException"
The checksum of the resource that you are trying to change does not match
the checksum in the request. Check the resource's checksum and try again.

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/PutIntent

Example (Shared00)

To create an intent This example shows how to create an intent for ordering pizzas.

Code:

svc := lexmodelbuildingservice.New(session.New())
input := &lexmodelbuildingservice.PutIntentInput{
    ConclusionStatement: &lexmodelbuildingservice.Statement{
        Messages: []*lexmodelbuildingservice.Message{
            {
                Content:     aws.String("All right, I ordered  you a {Crust} crust {Type} pizza with {Sauce} sauce."),
                ContentType: aws.String("PlainText"),
            },
            {
                Content:     aws.String("OK, your {Crust} crust {Type} pizza with {Sauce} sauce is on the way."),
                ContentType: aws.String("PlainText"),
            },
        },
        ResponseCard: aws.String("foo"),
    },
    ConfirmationPrompt: &lexmodelbuildingservice.Prompt{
        MaxAttempts: aws.Int64(1),
        Messages: []*lexmodelbuildingservice.Message{
            {
                Content:     aws.String("Should I order  your {Crust} crust {Type} pizza with {Sauce} sauce?"),
                ContentType: aws.String("PlainText"),
            },
        },
    },
    Description: aws.String("Order a pizza from a local pizzeria."),
    FulfillmentActivity: &lexmodelbuildingservice.FulfillmentActivity{
        Type: aws.String("ReturnIntent"),
    },
    Name: aws.String("DocOrderPizza"),
    RejectionStatement: &lexmodelbuildingservice.Statement{
        Messages: []*lexmodelbuildingservice.Message{
            {
                Content:     aws.String("Ok, I'll cancel your order."),
                ContentType: aws.String("PlainText"),
            },
            {
                Content:     aws.String("I cancelled your order."),
                ContentType: aws.String("PlainText"),
            },
        },
    },
    SampleUtterances: []*string{
        aws.String("Order me a pizza."),
        aws.String("Order me a {Type} pizza."),
        aws.String("I want a {Crust} crust {Type} pizza"),
        aws.String("I want a {Crust} crust {Type} pizza with {Sauce} sauce."),
    },
    Slots: []*lexmodelbuildingservice.Slot{
        {
            Description: aws.String("The type of pizza to order."),
            Name:        aws.String("Type"),
            Priority:    aws.Int64(1),
            SampleUtterances: []*string{
                aws.String("Get me a {Type} pizza."),
                aws.String("A {Type} pizza please."),
                aws.String("I'd like a {Type} pizza."),
            },
            SlotConstraint:  aws.String("Required"),
            SlotType:        aws.String("DocPizzaType"),
            SlotTypeVersion: aws.String("$LATEST"),
        },
        {
            Description: aws.String("The type of pizza crust to order."),
            Name:        aws.String("Crust"),
            Priority:    aws.Int64(2),
            SampleUtterances: []*string{
                aws.String("Make it a {Crust} crust."),
                aws.String("I'd like a {Crust} crust."),
            },
            SlotConstraint:  aws.String("Required"),
            SlotType:        aws.String("DocPizzaCrustType"),
            SlotTypeVersion: aws.String("$LATEST"),
        },
        {
            Description: aws.String("The type of sauce to use on the pizza."),
            Name:        aws.String("Sauce"),
            Priority:    aws.Int64(3),
            SampleUtterances: []*string{
                aws.String("Make it {Sauce} sauce."),
                aws.String("I'd like {Sauce} sauce."),
            },
            SlotConstraint:  aws.String("Required"),
            SlotType:        aws.String("DocPizzaSauceType"),
            SlotTypeVersion: aws.String("$LATEST"),
        },
    },
}

result, err := svc.PutIntent(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case lexmodelbuildingservice.ErrCodeConflictException:
            fmt.Println(lexmodelbuildingservice.ErrCodeConflictException, aerr.Error())
        case lexmodelbuildingservice.ErrCodeLimitExceededException:
            fmt.Println(lexmodelbuildingservice.ErrCodeLimitExceededException, aerr.Error())
        case lexmodelbuildingservice.ErrCodeInternalFailureException:
            fmt.Println(lexmodelbuildingservice.ErrCodeInternalFailureException, aerr.Error())
        case lexmodelbuildingservice.ErrCodeBadRequestException:
            fmt.Println(lexmodelbuildingservice.ErrCodeBadRequestException, aerr.Error())
        case lexmodelbuildingservice.ErrCodePreconditionFailedException:
            fmt.Println(lexmodelbuildingservice.ErrCodePreconditionFailedException, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*LexModelBuildingService) PutIntentRequest

func (c *LexModelBuildingService) PutIntentRequest(input *PutIntentInput) (req *request.Request, output *PutIntentOutput)

PutIntentRequest generates a "aws/request.Request" representing the client's request for the PutIntent operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See PutIntent for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the PutIntent method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the PutIntentRequest method.
req, resp := client.PutIntentRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/PutIntent

func (*LexModelBuildingService) PutIntentWithContext

func (c *LexModelBuildingService) PutIntentWithContext(ctx aws.Context, input *PutIntentInput, opts ...request.Option) (*PutIntentOutput, error)

PutIntentWithContext is the same as PutIntent with the addition of the ability to pass a context and additional request options.

See PutIntent for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*LexModelBuildingService) PutSlotType

func (c *LexModelBuildingService) PutSlotType(input *PutSlotTypeInput) (*PutSlotTypeOutput, error)

PutSlotType API operation for Amazon Lex Model Building Service.

Creates a custom slot type or replaces an existing custom slot type.

To create a custom slot type, specify a name for the slot type and a set of enumeration values, which are the values that a slot of this type can assume. For more information, see how-it-works.

If you specify the name of an existing slot type, the fields in the request replace the existing values in the $LATEST version of the slot type. Amazon Lex removes the fields that you don't provide in the request. If you don't specify required fields, Amazon Lex throws an exception.

This operation requires permissions for the lex:PutSlotType action.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for Amazon Lex Model Building Service's API operation PutSlotType for usage and error information.

Returned Error Codes:

* ErrCodeConflictException "ConflictException"
There was a conflict processing the request. Try your request again.

* ErrCodeLimitExceededException "LimitExceededException"
The request exceeded a limit. Try your request again.

* ErrCodeInternalFailureException "InternalFailureException"
An internal Amazon Lex error occurred. Try your request again.

* ErrCodeBadRequestException "BadRequestException"
The request is not well formed. For example, a value is invalid or a required
field is missing. Check the field values, and try again.

* ErrCodePreconditionFailedException "PreconditionFailedException"
The checksum of the resource that you are trying to change does not match
the checksum in the request. Check the resource's checksum and try again.

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/PutSlotType

Example (Shared00)

To Create a Slot Type This example shows how to create a slot type that describes pizza sauces.

Code:

svc := lexmodelbuildingservice.New(session.New())
input := &lexmodelbuildingservice.PutSlotTypeInput{
    Description: aws.String("Available pizza sauces"),
    EnumerationValues: []*lexmodelbuildingservice.EnumerationValue{
        {
            Value: aws.String("red"),
        },
        {
            Value: aws.String("white"),
        },
    },
    Name: aws.String("PizzaSauceType"),
}

result, err := svc.PutSlotType(input)
if err != nil {
    if aerr, ok := err.(awserr.Error); ok {
        switch aerr.Code() {
        case lexmodelbuildingservice.ErrCodeConflictException:
            fmt.Println(lexmodelbuildingservice.ErrCodeConflictException, aerr.Error())
        case lexmodelbuildingservice.ErrCodeLimitExceededException:
            fmt.Println(lexmodelbuildingservice.ErrCodeLimitExceededException, aerr.Error())
        case lexmodelbuildingservice.ErrCodeInternalFailureException:
            fmt.Println(lexmodelbuildingservice.ErrCodeInternalFailureException, aerr.Error())
        case lexmodelbuildingservice.ErrCodeBadRequestException:
            fmt.Println(lexmodelbuildingservice.ErrCodeBadRequestException, aerr.Error())
        case lexmodelbuildingservice.ErrCodePreconditionFailedException:
            fmt.Println(lexmodelbuildingservice.ErrCodePreconditionFailedException, aerr.Error())
        default:
            fmt.Println(aerr.Error())
        }
    } else {
        // Print the error, cast err to awserr.Error to get the Code and
        // Message from an error.
        fmt.Println(err.Error())
    }
    return
}

fmt.Println(result)

func (*LexModelBuildingService) PutSlotTypeRequest

func (c *LexModelBuildingService) PutSlotTypeRequest(input *PutSlotTypeInput) (req *request.Request, output *PutSlotTypeOutput)

PutSlotTypeRequest generates a "aws/request.Request" representing the client's request for the PutSlotType operation. The "output" return value can be used to capture response data after the request's "Send" method is called.

See PutSlotType for usage and error information.

Creating a request object using this method should be used when you want to inject custom logic into the request's lifecycle using a custom handler, or if you want to access properties on the request object before or after sending the request. If you just want the service response, call the PutSlotType method directly instead.

Note: You must call the "Send" method on the returned request object in order to execute the request.

// Example sending a request using the PutSlotTypeRequest method.
req, resp := client.PutSlotTypeRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/PutSlotType

func (*LexModelBuildingService) PutSlotTypeWithContext

func (c *LexModelBuildingService) PutSlotTypeWithContext(ctx aws.Context, input *PutSlotTypeInput, opts ...request.Option) (*PutSlotTypeOutput, error)

PutSlotTypeWithContext is the same as PutSlotType with the addition of the ability to pass a context and additional request options.

See PutSlotType for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

type Message

The message object that provides the message text and its type. Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/Message

type Message struct {

    // The text of the message.
    //
    // Content is a required field
    Content *string `locationName:"content" min:"1" type:"string" required:"true"`

    // The content type of the message string.
    //
    // ContentType is a required field
    ContentType *string `locationName:"contentType" type:"string" required:"true" enum:"ContentType"`
    // contains filtered or unexported fields
}

func (Message) GoString

func (s Message) GoString() string

GoString returns the string representation

func (*Message) SetContent

func (s *Message) SetContent(v string) *Message

SetContent sets the Content field's value.

func (*Message) SetContentType

func (s *Message) SetContentType(v string) *Message

SetContentType sets the ContentType field's value.

func (Message) String

func (s Message) String() string

String returns the string representation

func (*Message) Validate

func (s *Message) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type Prompt

Obtains information from the user. To define a prompt, provide one or more messages and specify the number of attempts to get information from the user. If you provide more than one message, Amazon Lex chooses one of the messages to use to prompt the user. For more information, see how-it-works. Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/Prompt

type Prompt struct {

    // The number of times to prompt the user for information.
    //
    // MaxAttempts is a required field
    MaxAttempts *int64 `locationName:"maxAttempts" min:"1" type:"integer" required:"true"`

    // An array of objects, each of which provides a message string and its type.
    // You can specify the message string in plain text or in Speech Synthesis Markup
    // Language (SSML).
    //
    // Messages is a required field
    Messages []*Message `locationName:"messages" min:"1" type:"list" required:"true"`

    // A response card. Amazon Lex uses this prompt at runtime, in the PostText
    // API response. It substitutes session attributes and slot values for placeholders
    // in the response card. For more information, see ex-resp-card.
    ResponseCard *string `locationName:"responseCard" min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (Prompt) GoString

func (s Prompt) GoString() string

GoString returns the string representation

func (*Prompt) SetMaxAttempts

func (s *Prompt) SetMaxAttempts(v int64) *Prompt

SetMaxAttempts sets the MaxAttempts field's value.

func (*Prompt) SetMessages

func (s *Prompt) SetMessages(v []*Message) *Prompt

SetMessages sets the Messages field's value.

func (*Prompt) SetResponseCard

func (s *Prompt) SetResponseCard(v string) *Prompt

SetResponseCard sets the ResponseCard field's value.

func (Prompt) String

func (s Prompt) String() string

String returns the string representation

func (*Prompt) Validate

func (s *Prompt) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutBotAliasInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/PutBotAliasRequest

type PutBotAliasInput struct {

    // The name of the bot.
    //
    // BotName is a required field
    BotName *string `location:"uri" locationName:"botName" min:"2" type:"string" required:"true"`

    // The version of the bot.
    //
    // BotVersion is a required field
    BotVersion *string `locationName:"botVersion" min:"1" type:"string" required:"true"`

    // Identifies a specific revision of the $LATEST version.
    //
    // When you create a new bot alias, leave the checksum field blank. If you specify
    // a checksum you get a BadRequestException exception.
    //
    // When you want to update a bot alias, set the checksum field to the checksum
    // of the most recent revision of the $LATEST version. If you don't specify
    // the  checksum field, or if the checksum does not match the $LATEST version,
    // you get a PreconditionFailedException exception.
    Checksum *string `locationName:"checksum" type:"string"`

    // A description of the alias.
    Description *string `locationName:"description" type:"string"`

    // The name of the alias. The name is not case sensitive.
    //
    // Name is a required field
    Name *string `location:"uri" locationName:"name" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (PutBotAliasInput) GoString

func (s PutBotAliasInput) GoString() string

GoString returns the string representation

func (*PutBotAliasInput) SetBotName

func (s *PutBotAliasInput) SetBotName(v string) *PutBotAliasInput

SetBotName sets the BotName field's value.

func (*PutBotAliasInput) SetBotVersion

func (s *PutBotAliasInput) SetBotVersion(v string) *PutBotAliasInput

SetBotVersion sets the BotVersion field's value.

func (*PutBotAliasInput) SetChecksum

func (s *PutBotAliasInput) SetChecksum(v string) *PutBotAliasInput

SetChecksum sets the Checksum field's value.

func (*PutBotAliasInput) SetDescription

func (s *PutBotAliasInput) SetDescription(v string) *PutBotAliasInput

SetDescription sets the Description field's value.

func (*PutBotAliasInput) SetName

func (s *PutBotAliasInput) SetName(v string) *PutBotAliasInput

SetName sets the Name field's value.

func (PutBotAliasInput) String

func (s PutBotAliasInput) String() string

String returns the string representation

func (*PutBotAliasInput) Validate

func (s *PutBotAliasInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutBotAliasOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/PutBotAliasResponse

type PutBotAliasOutput struct {

    // The name of the bot that the alias points to.
    BotName *string `locationName:"botName" min:"2" type:"string"`

    // The version of the bot that the alias points to.
    BotVersion *string `locationName:"botVersion" min:"1" type:"string"`

    // The checksum for the current version of the alias.
    Checksum *string `locationName:"checksum" type:"string"`

    // The date that the bot alias was created.
    CreatedDate *time.Time `locationName:"createdDate" type:"timestamp" timestampFormat:"unix"`

    // A description of the alias.
    Description *string `locationName:"description" type:"string"`

    // The date that the bot alias was updated. When you create a resource, the
    // creation date and the last updated date are the same.
    LastUpdatedDate *time.Time `locationName:"lastUpdatedDate" type:"timestamp" timestampFormat:"unix"`

    // The name of the alias.
    Name *string `locationName:"name" min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (PutBotAliasOutput) GoString

func (s PutBotAliasOutput) GoString() string

GoString returns the string representation

func (*PutBotAliasOutput) SetBotName

func (s *PutBotAliasOutput) SetBotName(v string) *PutBotAliasOutput

SetBotName sets the BotName field's value.

func (*PutBotAliasOutput) SetBotVersion

func (s *PutBotAliasOutput) SetBotVersion(v string) *PutBotAliasOutput

SetBotVersion sets the BotVersion field's value.

func (*PutBotAliasOutput) SetChecksum

func (s *PutBotAliasOutput) SetChecksum(v string) *PutBotAliasOutput

SetChecksum sets the Checksum field's value.

func (*PutBotAliasOutput) SetCreatedDate

func (s *PutBotAliasOutput) SetCreatedDate(v time.Time) *PutBotAliasOutput

SetCreatedDate sets the CreatedDate field's value.

func (*PutBotAliasOutput) SetDescription

func (s *PutBotAliasOutput) SetDescription(v string) *PutBotAliasOutput

SetDescription sets the Description field's value.

func (*PutBotAliasOutput) SetLastUpdatedDate

func (s *PutBotAliasOutput) SetLastUpdatedDate(v time.Time) *PutBotAliasOutput

SetLastUpdatedDate sets the LastUpdatedDate field's value.

func (*PutBotAliasOutput) SetName

func (s *PutBotAliasOutput) SetName(v string) *PutBotAliasOutput

SetName sets the Name field's value.

func (PutBotAliasOutput) String

func (s PutBotAliasOutput) String() string

String returns the string representation

type PutBotInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/PutBotRequest

type PutBotInput struct {

    // When Amazon Lex can't understand the user's input in context, it tries to
    // elicit the information a few times. After that, Amazon Lex sends the message
    // defined in abortStatement to the user, and then aborts the conversation.
    // To set the number of retries, use the valueElicitationPrompt field for the
    // slot type.
    //
    // For example, in a pizza ordering bot, Amazon Lex might ask a user "What type
    // of crust would you like?" If the user's response is not one of the expected
    // responses (for example, "thin crust, "deep dish," etc.), Amazon Lex tries
    // to elicit a correct response a few more times.
    //
    // For example, in a pizza ordering application, OrderPizza might be one of
    // the intents. This intent might require the CrustType slot. You specify the
    // valueElicitationPrompt field when you create the CrustType slot.
    AbortStatement *Statement `locationName:"abortStatement" type:"structure"`

    // Identifies a specific revision of the $LATEST version.
    //
    // When you create a new bot, leave the checksum field blank. If you specify
    // a checksum you get a BadRequestException exception.
    //
    // When you want to update a bot, set the checksum field to the checksum of
    // the most recent revision of the $LATEST version. If you don't specify the
    //  checksum field, or if the checksum does not match the $LATEST version, you
    // get a PreconditionFailedException exception.
    Checksum *string `locationName:"checksum" type:"string"`

    // For each Amazon Lex bot created with the Amazon Lex Model Building Service,
    // you must specify whether your use of Amazon Lex is related to a website,
    // program, or other application that is directed or targeted, in whole or in
    // part, to children under age 13 and subject to the Children's Online Privacy
    // Protection Act (COPPA) by specifying true or false in the childDirected field.
    // By specifying true in the childDirected field, you confirm that your use
    // of Amazon Lex is related to a website, program, or other application that
    // is directed or targeted, in whole or in part, to children under age 13 and
    // subject to COPPA. By specifying false in the childDirected field, you confirm
    // that your use of Amazon Lex is not related to a website, program, or other
    // application that is directed or targeted, in whole or in part, to children
    // under age 13 and subject to COPPA. You may not specify a default value for
    // the childDirected field that does not accurately reflect whether your use
    // of Amazon Lex is related to a website, program, or other application that
    // is directed or targeted, in whole or in part, to children under age 13 and
    // subject to COPPA.
    //
    // If your use of Amazon Lex relates to a website, program, or other application
    // that is directed in whole or in part, to children under age 13, you must
    // obtain any required verifiable parental consent under COPPA. For information
    // regarding the use of Amazon Lex in connection with websites, programs, or
    // other applications that are directed or targeted, in whole or in part, to
    // children under age 13, see the Amazon Lex FAQ. (https://aws.amazon.com/lex/faqs#data-security)
    //
    // ChildDirected is a required field
    ChildDirected *bool `locationName:"childDirected" type:"boolean" required:"true"`

    // When Amazon Lex doesn't understand the user's intent, it uses one of these
    // messages to get clarification. For example, "Sorry, I didn't understand.
    // Please repeat." Amazon Lex repeats the clarification prompt the number of
    // times specified in maxAttempts. If Amazon Lex still can't understand, it
    // sends the message specified in abortStatement.
    ClarificationPrompt *Prompt `locationName:"clarificationPrompt" type:"structure"`

    // A description of the bot.
    Description *string `locationName:"description" type:"string"`

    // The maximum time in seconds that Amazon Lex retains the data gathered in
    // a conversation.
    //
    // A user interaction session remains active for the amount of time specified.
    // If no conversation occurs during this time, the session expires and Amazon
    // Lex deletes any data provided before the timeout.
    //
    // For example, suppose that a user chooses the OrderPizza intent, but gets
    // sidetracked halfway through placing an order. If the user doesn't complete
    // the order within the specified time, Amazon Lex discards the slot information
    // that it gathered, and the user must start over.
    //
    // If you don't include the idleSessionTTLInSeconds element in a PutBot operation
    // request, Amazon Lex uses the default value. This is also true if the request
    // replaces an existing bot.
    //
    // The default is 300 seconds (5 minutes).
    IdleSessionTTLInSeconds *int64 `locationName:"idleSessionTTLInSeconds" min:"60" type:"integer"`

    // An array of Intent objects. Each intent represents a command that a user
    // can express. For example, a pizza ordering bot might support an OrderPizza
    // intent. For more information, see how-it-works.
    Intents []*Intent `locationName:"intents" min:"1" type:"list"`

    // Specifies the target locale for the bot. Any intent used in the bot must
    // be compatible with the locale of the bot.
    //
    // The default is en-US.
    //
    // Locale is a required field
    Locale *string `locationName:"locale" type:"string" required:"true" enum:"Locale"`

    // The name of the bot. The name is not case sensitive.
    //
    // Name is a required field
    Name *string `location:"uri" locationName:"name" min:"2" type:"string" required:"true"`

    // If you set the processBehavior element to Build, Amazon Lex builds the bot
    // so that it can be run. If you set the element to SaveAmazon Lex saves the
    // bot, but doesn't build it.
    //
    // If you don't specify this value, the default value is Save.
    ProcessBehavior *string `locationName:"processBehavior" type:"string" enum:"ProcessBehavior"`

    // The Amazon Polly voice ID that you want Amazon Lex to use for voice interactions
    // with the user. The locale configured for the voice must match the locale
    // of the bot. For more information, see Voice (http://docs.aws.amazon.com/polly/latest/dg/API_Voice.html)
    // in the Amazon Polly Developer Guide.
    VoiceId *string `locationName:"voiceId" type:"string"`
    // contains filtered or unexported fields
}

func (PutBotInput) GoString

func (s PutBotInput) GoString() string

GoString returns the string representation

func (*PutBotInput) SetAbortStatement

func (s *PutBotInput) SetAbortStatement(v *Statement) *PutBotInput

SetAbortStatement sets the AbortStatement field's value.

func (*PutBotInput) SetChecksum

func (s *PutBotInput) SetChecksum(v string) *PutBotInput

SetChecksum sets the Checksum field's value.

func (*PutBotInput) SetChildDirected

func (s *PutBotInput) SetChildDirected(v bool) *PutBotInput

SetChildDirected sets the ChildDirected field's value.

func (*PutBotInput) SetClarificationPrompt

func (s *PutBotInput) SetClarificationPrompt(v *Prompt) *PutBotInput

SetClarificationPrompt sets the ClarificationPrompt field's value.

func (*PutBotInput) SetDescription

func (s *PutBotInput) SetDescription(v string) *PutBotInput

SetDescription sets the Description field's value.

func (*PutBotInput) SetIdleSessionTTLInSeconds

func (s *PutBotInput) SetIdleSessionTTLInSeconds(v int64) *PutBotInput

SetIdleSessionTTLInSeconds sets the IdleSessionTTLInSeconds field's value.

func (*PutBotInput) SetIntents

func (s *PutBotInput) SetIntents(v []*Intent) *PutBotInput

SetIntents sets the Intents field's value.

func (*PutBotInput) SetLocale

func (s *PutBotInput) SetLocale(v string) *PutBotInput

SetLocale sets the Locale field's value.

func (*PutBotInput) SetName

func (s *PutBotInput) SetName(v string) *PutBotInput

SetName sets the Name field's value.

func (*PutBotInput) SetProcessBehavior

func (s *PutBotInput) SetProcessBehavior(v string) *PutBotInput

SetProcessBehavior sets the ProcessBehavior field's value.

func (*PutBotInput) SetVoiceId

func (s *PutBotInput) SetVoiceId(v string) *PutBotInput

SetVoiceId sets the VoiceId field's value.

func (PutBotInput) String

func (s PutBotInput) String() string

String returns the string representation

func (*PutBotInput) Validate

func (s *PutBotInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutBotOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/PutBotResponse

type PutBotOutput struct {

    // The message that Amazon Lex uses to abort a conversation. For more information,
    // see .
    AbortStatement *Statement `locationName:"abortStatement" type:"structure"`

    // Checksum of the bot that you created.
    Checksum *string `locationName:"checksum" type:"string"`

    // For each Amazon Lex bot created with the Amazon Lex Model Building Service,
    // you must specify whether your use of Amazon Lex is related to a website,
    // program, or other application that is directed or targeted, in whole or in
    // part, to children under age 13 and subject to the Children's Online Privacy
    // Protection Act (COPPA) by specifying true or false in the childDirected field.
    // By specifying true in the childDirected field, you confirm that your use
    // of Amazon Lex is related to a website, program, or other application that
    // is directed or targeted, in whole or in part, to children under age 13 and
    // subject to COPPA. By specifying false in the childDirected field, you confirm
    // that your use of Amazon Lex is not related to a website, program, or other
    // application that is directed or targeted, in whole or in part, to children
    // under age 13 and subject to COPPA. You may not specify a default value for
    // the childDirected field that does not accurately reflect whether your use
    // of Amazon Lex is related to a website, program, or other application that
    // is directed or targeted, in whole or in part, to children under age 13 and
    // subject to COPPA.
    //
    // If your use of Amazon Lex relates to a website, program, or other application
    // that is directed in whole or in part, to children under age 13, you must
    // obtain any required verifiable parental consent under COPPA. For information
    // regarding the use of Amazon Lex in connection with websites, programs, or
    // other applications that are directed or targeted, in whole or in part, to
    // children under age 13, see the Amazon Lex FAQ. (https://aws.amazon.com/lex/faqs#data-security)
    ChildDirected *bool `locationName:"childDirected" type:"boolean"`

    // The prompts that Amazon Lex uses when it doesn't understand the user's intent.
    // For more information, see .
    ClarificationPrompt *Prompt `locationName:"clarificationPrompt" type:"structure"`

    // The date that the bot was created.
    CreatedDate *time.Time `locationName:"createdDate" type:"timestamp" timestampFormat:"unix"`

    // A description of the bot.
    Description *string `locationName:"description" type:"string"`

    // If status is FAILED, Amazon Lex provides the reason that it failed to build
    // the bot.
    FailureReason *string `locationName:"failureReason" type:"string"`

    // The maximum length of time that Amazon Lex retains the data gathered in a
    // conversation. For more information, see .
    IdleSessionTTLInSeconds *int64 `locationName:"idleSessionTTLInSeconds" min:"60" type:"integer"`

    // An array of Intent objects. For more information, see .
    Intents []*Intent `locationName:"intents" min:"1" type:"list"`

    // The date that the bot was updated. When you create a resource, the creation
    // date and last updated date are the same.
    LastUpdatedDate *time.Time `locationName:"lastUpdatedDate" type:"timestamp" timestampFormat:"unix"`

    // The target locale for the bot.
    Locale *string `locationName:"locale" type:"string" enum:"Locale"`

    // The name of the bot.
    Name *string `locationName:"name" min:"2" type:"string"`

    // When you send a request to create a bot with processBehavior set to BUILD,
    // Amazon Lex sets the status response element to BUILDING. After Amazon Lex
    // builds the bot, it sets status to READY. If Amazon Lex can't build the bot,
    // Amazon Lex sets status to FAILED. Amazon Lex returns the reason for the failure
    // in the failureReason response element.
    //
    // When you set processBehaviorto SAVE, Amazon Lex sets the status code to NOT
    // BUILT.
    Status *string `locationName:"status" type:"string" enum:"Status"`

    // The version of the bot. For a new bot, the version is always $LATEST.
    Version *string `locationName:"version" min:"1" type:"string"`

    // The Amazon Polly voice ID that Amazon Lex uses for voice interaction with
    // the user. For more information, see .
    VoiceId *string `locationName:"voiceId" type:"string"`
    // contains filtered or unexported fields
}

func (PutBotOutput) GoString

func (s PutBotOutput) GoString() string

GoString returns the string representation

func (*PutBotOutput) SetAbortStatement

func (s *PutBotOutput) SetAbortStatement(v *Statement) *PutBotOutput

SetAbortStatement sets the AbortStatement field's value.

func (*PutBotOutput) SetChecksum

func (s *PutBotOutput) SetChecksum(v string) *PutBotOutput

SetChecksum sets the Checksum field's value.

func (*PutBotOutput) SetChildDirected

func (s *PutBotOutput) SetChildDirected(v bool) *PutBotOutput

SetChildDirected sets the ChildDirected field's value.

func (*PutBotOutput) SetClarificationPrompt

func (s *PutBotOutput) SetClarificationPrompt(v *Prompt) *PutBotOutput

SetClarificationPrompt sets the ClarificationPrompt field's value.

func (*PutBotOutput) SetCreatedDate

func (s *PutBotOutput) SetCreatedDate(v time.Time) *PutBotOutput

SetCreatedDate sets the CreatedDate field's value.

func (*PutBotOutput) SetDescription

func (s *PutBotOutput) SetDescription(v string) *PutBotOutput

SetDescription sets the Description field's value.

func (*PutBotOutput) SetFailureReason

func (s *PutBotOutput) SetFailureReason(v string) *PutBotOutput

SetFailureReason sets the FailureReason field's value.

func (*PutBotOutput) SetIdleSessionTTLInSeconds

func (s *PutBotOutput) SetIdleSessionTTLInSeconds(v int64) *PutBotOutput

SetIdleSessionTTLInSeconds sets the IdleSessionTTLInSeconds field's value.

func (*PutBotOutput) SetIntents

func (s *PutBotOutput) SetIntents(v []*Intent) *PutBotOutput

SetIntents sets the Intents field's value.

func (*PutBotOutput) SetLastUpdatedDate

func (s *PutBotOutput) SetLastUpdatedDate(v time.Time) *PutBotOutput

SetLastUpdatedDate sets the LastUpdatedDate field's value.

func (*PutBotOutput) SetLocale

func (s *PutBotOutput) SetLocale(v string) *PutBotOutput

SetLocale sets the Locale field's value.

func (*PutBotOutput) SetName

func (s *PutBotOutput) SetName(v string) *PutBotOutput

SetName sets the Name field's value.

func (*PutBotOutput) SetStatus

func (s *PutBotOutput) SetStatus(v string) *PutBotOutput

SetStatus sets the Status field's value.

func (*PutBotOutput) SetVersion

func (s *PutBotOutput) SetVersion(v string) *PutBotOutput

SetVersion sets the Version field's value.

func (*PutBotOutput) SetVoiceId

func (s *PutBotOutput) SetVoiceId(v string) *PutBotOutput

SetVoiceId sets the VoiceId field's value.

func (PutBotOutput) String

func (s PutBotOutput) String() string

String returns the string representation

type PutIntentInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/PutIntentRequest

type PutIntentInput struct {

    // Identifies a specific revision of the $LATEST version.
    //
    // When you create a new intent, leave the checksum field blank. If you specify
    // a checksum you get a BadRequestException exception.
    //
    // When you want to update a intent, set the checksum field to the checksum
    // of the most recent revision of the $LATEST version. If you don't specify
    // the  checksum field, or if the checksum does not match the $LATEST version,
    // you get a PreconditionFailedException exception.
    Checksum *string `locationName:"checksum" type:"string"`

    // The statement that you want Amazon Lex to convey to the user after the intent
    // is successfully fulfilled by the Lambda function.
    //
    // This element is relevant only if you provide a Lambda function in the fulfillmentActivity.
    // If you return the intent to the client application, you can't specify this
    // element.
    //
    // The followUpPrompt and conclusionStatement are mutually exclusive. You can
    // specify only one.
    ConclusionStatement *Statement `locationName:"conclusionStatement" type:"structure"`

    // Prompts the user to confirm the intent. This question should have a yes or
    // no answer.
    //
    // Amazon Lex uses this prompt to ensure that the user acknowledges that the
    // intent is ready for fulfillment. For example, with the OrderPizza intent,
    // you might want to confirm that the order is correct before placing it. For
    // other intents, such as intents that simply respond to user questions, you
    // might not need to ask the user for confirmation before providing the information.
    //
    // You you must provide both the rejectionStatement and the confirmationPrompt,
    // or neither.
    ConfirmationPrompt *Prompt `locationName:"confirmationPrompt" type:"structure"`

    // A description of the intent.
    Description *string `locationName:"description" type:"string"`

    // Specifies a Lambda function to invoke for each user input. You can invoke
    // this Lambda function to personalize user interaction.
    //
    // For example, suppose your bot determines that the user is John. Your Lambda
    // function might retrieve John's information from a backend database and prepopulate
    // some of the values. For example, if you find that John is gluten intolerant,
    // you might set the corresponding intent slot, GlutenIntolerant, to true. You
    // might find John's phone number and set the corresponding session attribute.
    DialogCodeHook *CodeHook `locationName:"dialogCodeHook" type:"structure"`

    // A user prompt for additional activity after an intent is fulfilled. For example,
    // after the OrderPizza intent is fulfilled (your Lambda function placed an
    // order with a pizzeria), you might prompt the user to find if they want to
    // order a drink (assuming that you have defined an OrderDrink intent in your
    // bot).
    //
    // The followUpPrompt and conclusionStatement are mutually exclusive. You can
    // specify only one. For example, your bot may not solicit both the following:
    //
    //  Follow up prompt - "$session.FirstName, your pizza order has been placed.
    // Would you like to order a drink or a dessert?"
    //
    //  Conclusion statement - "$session.FirstName, your pizza order has been placed."
    FollowUpPrompt *FollowUpPrompt `locationName:"followUpPrompt" type:"structure"`

    // Describes how the intent is fulfilled. For example, after a user provides
    // all of the information for a pizza order, fulfillmentActivity defines how
    // the bot places an order with a local pizza store.
    //
    // You might configure Amazon Lex to return all of the intent information to
    // the client application, or direct it to invoke a Lambda function that can
    // process the intent (for example, place an order with a pizzeria).
    FulfillmentActivity *FulfillmentActivity `locationName:"fulfillmentActivity" type:"structure"`

    // The name of the intent. The name is not case sensitive.
    //
    // The name can't match a built-in intent name, or a built-in intent name with
    // "AMAZON." removed. For example, because there is a built-in intent called
    // AMAZON.HelpIntent, you can't create a custom intent called HelpIntent.
    //
    // For a list of built-in intents, see Standard Built-in Intents (https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/built-in-intent-ref/standard-intents)
    // in the Alexa Skills Kit.
    //
    // Name is a required field
    Name *string `location:"uri" locationName:"name" min:"1" type:"string" required:"true"`

    // A unique identifier for the built-in intent to base this intent on. To find
    // the signature for an intent, see Standard Built-in Intents (https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/built-in-intent-ref/standard-intents)
    // in the Alexa Skills Kit.
    ParentIntentSignature *string `locationName:"parentIntentSignature" type:"string"`

    // When the user answers "no" to the question defined in confirmationPrompt,
    // Amazon Lex responds with this statement to acknowledge that the intent was
    // canceled.
    //
    // You must provide both the rejectionStatement and the confirmationPrompt,
    // or neither.
    RejectionStatement *Statement `locationName:"rejectionStatement" type:"structure"`

    // An array of utterances (strings) that a user might say to signal the intent.
    // For example, "I want {PizzaSize} pizza", "Order {Quantity} {PizzaSize} pizzas".
    //
    // In each utterance, a slot name is enclosed in curly braces.
    SampleUtterances []*string `locationName:"sampleUtterances" type:"list"`

    // An array of intent slots. At runtime, Amazon Lex elicits required slot values
    // from the user using prompts defined in the slots. For more information, see
    // <xref linkend="how-it-works"/>.
    Slots []*Slot `locationName:"slots" type:"list"`
    // contains filtered or unexported fields
}

func (PutIntentInput) GoString

func (s PutIntentInput) GoString() string

GoString returns the string representation

func (*PutIntentInput) SetChecksum

func (s *PutIntentInput) SetChecksum(v string) *PutIntentInput

SetChecksum sets the Checksum field's value.

func (*PutIntentInput) SetConclusionStatement

func (s *PutIntentInput) SetConclusionStatement(v *Statement) *PutIntentInput

SetConclusionStatement sets the ConclusionStatement field's value.

func (*PutIntentInput) SetConfirmationPrompt

func (s *PutIntentInput) SetConfirmationPrompt(v *Prompt) *PutIntentInput

SetConfirmationPrompt sets the ConfirmationPrompt field's value.

func (*PutIntentInput) SetDescription

func (s *PutIntentInput) SetDescription(v string) *PutIntentInput

SetDescription sets the Description field's value.

func (*PutIntentInput) SetDialogCodeHook

func (s *PutIntentInput) SetDialogCodeHook(v *CodeHook) *PutIntentInput

SetDialogCodeHook sets the DialogCodeHook field's value.

func (*PutIntentInput) SetFollowUpPrompt

func (s *PutIntentInput) SetFollowUpPrompt(v *FollowUpPrompt) *PutIntentInput

SetFollowUpPrompt sets the FollowUpPrompt field's value.

func (*PutIntentInput) SetFulfillmentActivity

func (s *PutIntentInput) SetFulfillmentActivity(v *FulfillmentActivity) *PutIntentInput

SetFulfillmentActivity sets the FulfillmentActivity field's value.

func (*PutIntentInput) SetName

func (s *PutIntentInput) SetName(v string) *PutIntentInput

SetName sets the Name field's value.

func (*PutIntentInput) SetParentIntentSignature

func (s *PutIntentInput) SetParentIntentSignature(v string) *PutIntentInput

SetParentIntentSignature sets the ParentIntentSignature field's value.

func (*PutIntentInput) SetRejectionStatement

func (s *PutIntentInput) SetRejectionStatement(v *Statement) *PutIntentInput

SetRejectionStatement sets the RejectionStatement field's value.

func (*PutIntentInput) SetSampleUtterances

func (s *PutIntentInput) SetSampleUtterances(v []*string) *PutIntentInput

SetSampleUtterances sets the SampleUtterances field's value.

func (*PutIntentInput) SetSlots

func (s *PutIntentInput) SetSlots(v []*Slot) *PutIntentInput

SetSlots sets the Slots field's value.

func (PutIntentInput) String

func (s PutIntentInput) String() string

String returns the string representation

func (*PutIntentInput) Validate

func (s *PutIntentInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutIntentOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/PutIntentResponse

type PutIntentOutput struct {

    // Checksum of the $LATESTversion of the intent created or updated.
    Checksum *string `locationName:"checksum" type:"string"`

    // After the Lambda function specified in thefulfillmentActivityintent fulfills
    // the intent, Amazon Lex conveys this statement to the user.
    ConclusionStatement *Statement `locationName:"conclusionStatement" type:"structure"`

    // If defined in the intent, Amazon Lex prompts the user to confirm the intent
    // before fulfilling it.
    ConfirmationPrompt *Prompt `locationName:"confirmationPrompt" type:"structure"`

    // The date that the intent was created.
    CreatedDate *time.Time `locationName:"createdDate" type:"timestamp" timestampFormat:"unix"`

    // A description of the intent.
    Description *string `locationName:"description" type:"string"`

    // If defined in the intent, Amazon Lex invokes this Lambda function for each
    // user input.
    DialogCodeHook *CodeHook `locationName:"dialogCodeHook" type:"structure"`

    // If defined in the intent, Amazon Lex uses this prompt to solicit additional
    // user activity after the intent is fulfilled.
    FollowUpPrompt *FollowUpPrompt `locationName:"followUpPrompt" type:"structure"`

    // If defined in the intent, Amazon Lex invokes this Lambda function to fulfill
    // the intent after the user provides all of the information required by the
    // intent.
    FulfillmentActivity *FulfillmentActivity `locationName:"fulfillmentActivity" type:"structure"`

    // The date that the intent was updated. When you create a resource, the creation
    // date and last update dates are the same.
    LastUpdatedDate *time.Time `locationName:"lastUpdatedDate" type:"timestamp" timestampFormat:"unix"`

    // The name of the intent.
    Name *string `locationName:"name" min:"1" type:"string"`

    // A unique identifier for the built-in intent that this intent is based on.
    ParentIntentSignature *string `locationName:"parentIntentSignature" type:"string"`

    // If the user answers "no" to the question defined in confirmationPrompt Amazon
    // Lex responds with this statement to acknowledge that the intent was canceled.
    RejectionStatement *Statement `locationName:"rejectionStatement" type:"structure"`

    // An array of sample utterances that are configured for the intent.
    SampleUtterances []*string `locationName:"sampleUtterances" type:"list"`

    // An array of intent slots that are configured for the intent.
    Slots []*Slot `locationName:"slots" type:"list"`

    // The version of the intent. For a new intent, the version is always $LATEST.
    Version *string `locationName:"version" min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (PutIntentOutput) GoString

func (s PutIntentOutput) GoString() string

GoString returns the string representation

func (*PutIntentOutput) SetChecksum

func (s *PutIntentOutput) SetChecksum(v string) *PutIntentOutput

SetChecksum sets the Checksum field's value.

func (*PutIntentOutput) SetConclusionStatement

func (s *PutIntentOutput) SetConclusionStatement(v *Statement) *PutIntentOutput

SetConclusionStatement sets the ConclusionStatement field's value.

func (*PutIntentOutput) SetConfirmationPrompt

func (s *PutIntentOutput) SetConfirmationPrompt(v *Prompt) *PutIntentOutput

SetConfirmationPrompt sets the ConfirmationPrompt field's value.

func (*PutIntentOutput) SetCreatedDate

func (s *PutIntentOutput) SetCreatedDate(v time.Time) *PutIntentOutput

SetCreatedDate sets the CreatedDate field's value.

func (*PutIntentOutput) SetDescription

func (s *PutIntentOutput) SetDescription(v string) *PutIntentOutput

SetDescription sets the Description field's value.

func (*PutIntentOutput) SetDialogCodeHook

func (s *PutIntentOutput) SetDialogCodeHook(v *CodeHook) *PutIntentOutput

SetDialogCodeHook sets the DialogCodeHook field's value.

func (*PutIntentOutput) SetFollowUpPrompt

func (s *PutIntentOutput) SetFollowUpPrompt(v *FollowUpPrompt) *PutIntentOutput

SetFollowUpPrompt sets the FollowUpPrompt field's value.

func (*PutIntentOutput) SetFulfillmentActivity

func (s *PutIntentOutput) SetFulfillmentActivity(v *FulfillmentActivity) *PutIntentOutput

SetFulfillmentActivity sets the FulfillmentActivity field's value.

func (*PutIntentOutput) SetLastUpdatedDate

func (s *PutIntentOutput) SetLastUpdatedDate(v time.Time) *PutIntentOutput

SetLastUpdatedDate sets the LastUpdatedDate field's value.

func (*PutIntentOutput) SetName

func (s *PutIntentOutput) SetName(v string) *PutIntentOutput

SetName sets the Name field's value.

func (*PutIntentOutput) SetParentIntentSignature

func (s *PutIntentOutput) SetParentIntentSignature(v string) *PutIntentOutput

SetParentIntentSignature sets the ParentIntentSignature field's value.

func (*PutIntentOutput) SetRejectionStatement

func (s *PutIntentOutput) SetRejectionStatement(v *Statement) *PutIntentOutput

SetRejectionStatement sets the RejectionStatement field's value.

func (*PutIntentOutput) SetSampleUtterances

func (s *PutIntentOutput) SetSampleUtterances(v []*string) *PutIntentOutput

SetSampleUtterances sets the SampleUtterances field's value.

func (*PutIntentOutput) SetSlots

func (s *PutIntentOutput) SetSlots(v []*Slot) *PutIntentOutput

SetSlots sets the Slots field's value.

func (*PutIntentOutput) SetVersion

func (s *PutIntentOutput) SetVersion(v string) *PutIntentOutput

SetVersion sets the Version field's value.

func (PutIntentOutput) String

func (s PutIntentOutput) String() string

String returns the string representation

type PutSlotTypeInput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/PutSlotTypeRequest

type PutSlotTypeInput struct {

    // Identifies a specific revision of the $LATEST version.
    //
    // When you create a new slot type, leave the checksum field blank. If you specify
    // a checksum you get a BadRequestException exception.
    //
    // When you want to update a slot type, set the checksum field to the checksum
    // of the most recent revision of the $LATEST version. If you don't specify
    // the  checksum field, or if the checksum does not match the $LATEST version,
    // you get a PreconditionFailedException exception.
    Checksum *string `locationName:"checksum" type:"string"`

    // A description of the slot type.
    Description *string `locationName:"description" type:"string"`

    // A list of EnumerationValue objects that defines the values that the slot
    // type can take.
    EnumerationValues []*EnumerationValue `locationName:"enumerationValues" min:"1" type:"list"`

    // The name of the slot type. The name is not case sensitive.
    //
    // The name can't match a built-in slot type name, or a built-in slot type name
    // with "AMAZON." removed. For example, because there is a built-in slot type
    // called AMAZON.DATE, you can't create a custom slot type called DATE.
    //
    // For a list of built-in slot types, see Slot Type Reference (https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/built-in-intent-ref/slot-type-reference)
    // in the Alexa Skills Kit.
    //
    // Name is a required field
    Name *string `location:"uri" locationName:"name" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (PutSlotTypeInput) GoString

func (s PutSlotTypeInput) GoString() string

GoString returns the string representation

func (*PutSlotTypeInput) SetChecksum

func (s *PutSlotTypeInput) SetChecksum(v string) *PutSlotTypeInput

SetChecksum sets the Checksum field's value.

func (*PutSlotTypeInput) SetDescription

func (s *PutSlotTypeInput) SetDescription(v string) *PutSlotTypeInput

SetDescription sets the Description field's value.

func (*PutSlotTypeInput) SetEnumerationValues

func (s *PutSlotTypeInput) SetEnumerationValues(v []*EnumerationValue) *PutSlotTypeInput

SetEnumerationValues sets the EnumerationValues field's value.

func (*PutSlotTypeInput) SetName

func (s *PutSlotTypeInput) SetName(v string) *PutSlotTypeInput

SetName sets the Name field's value.

func (PutSlotTypeInput) String

func (s PutSlotTypeInput) String() string

String returns the string representation

func (*PutSlotTypeInput) Validate

func (s *PutSlotTypeInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutSlotTypeOutput

Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/PutSlotTypeResponse

type PutSlotTypeOutput struct {

    // Checksum of the $LATEST version of the slot type.
    Checksum *string `locationName:"checksum" type:"string"`

    // The date that the slot type was created.
    CreatedDate *time.Time `locationName:"createdDate" type:"timestamp" timestampFormat:"unix"`

    // A description of the slot type.
    Description *string `locationName:"description" type:"string"`

    // A list of EnumerationValue objects that defines the values that the slot
    // type can take.
    EnumerationValues []*EnumerationValue `locationName:"enumerationValues" min:"1" type:"list"`

    // The date that the slot type was updated. When you create a slot type, the
    // creation date and last update date are the same.
    LastUpdatedDate *time.Time `locationName:"lastUpdatedDate" type:"timestamp" timestampFormat:"unix"`

    // The name of the slot type.
    Name *string `locationName:"name" min:"1" type:"string"`

    // The version of the slot type. For a new slot type, the version is always
    // $LATEST.
    Version *string `locationName:"version" min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (PutSlotTypeOutput) GoString

func (s PutSlotTypeOutput) GoString() string

GoString returns the string representation

func (*PutSlotTypeOutput) SetChecksum

func (s *PutSlotTypeOutput) SetChecksum(v string) *PutSlotTypeOutput

SetChecksum sets the Checksum field's value.

func (*PutSlotTypeOutput) SetCreatedDate

func (s *PutSlotTypeOutput) SetCreatedDate(v time.Time) *PutSlotTypeOutput

SetCreatedDate sets the CreatedDate field's value.

func (*PutSlotTypeOutput) SetDescription

func (s *PutSlotTypeOutput) SetDescription(v string) *PutSlotTypeOutput

SetDescription sets the Description field's value.

func (*PutSlotTypeOutput) SetEnumerationValues

func (s *PutSlotTypeOutput) SetEnumerationValues(v []*EnumerationValue) *PutSlotTypeOutput

SetEnumerationValues sets the EnumerationValues field's value.

func (*PutSlotTypeOutput) SetLastUpdatedDate

func (s *PutSlotTypeOutput) SetLastUpdatedDate(v time.Time) *PutSlotTypeOutput

SetLastUpdatedDate sets the LastUpdatedDate field's value.

func (*PutSlotTypeOutput) SetName

func (s *PutSlotTypeOutput) SetName(v string) *PutSlotTypeOutput

SetName sets the Name field's value.

func (*PutSlotTypeOutput) SetVersion

func (s *PutSlotTypeOutput) SetVersion(v string) *PutSlotTypeOutput

SetVersion sets the Version field's value.

func (PutSlotTypeOutput) String

func (s PutSlotTypeOutput) String() string

String returns the string representation

type ResourceReference

Describes the resource that refers to the resource that you are attempting to delete. This object is returned as part of the ResourceInUseException exception. Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/ResourceReference

type ResourceReference struct {

    // The name of the resource that is using the resource that you are trying to
    // delete.
    Name *string `locationName:"name" min:"1" type:"string"`

    // The version of the resource that is using the resource that you are trying
    // to delete.
    Version *string `locationName:"version" min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (ResourceReference) GoString

func (s ResourceReference) GoString() string

GoString returns the string representation

func (*ResourceReference) SetName

func (s *ResourceReference) SetName(v string) *ResourceReference

SetName sets the Name field's value.

func (*ResourceReference) SetVersion

func (s *ResourceReference) SetVersion(v string) *ResourceReference

SetVersion sets the Version field's value.

func (ResourceReference) String

func (s ResourceReference) String() string

String returns the string representation

type Slot

Identifies the version of a specific slot. Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/Slot

type Slot struct {

    // A description of the slot.
    Description *string `locationName:"description" type:"string"`

    // The name of the slot.
    //
    // Name is a required field
    Name *string `locationName:"name" min:"1" type:"string" required:"true"`

    // Directs Lex the order in which to elicit this slot value from the user. For
    // example, if the intent has two slots with priorities 1 and 2, AWS Lex first
    // elicits a value for the slot with priority 1.
    //
    // If multiple slots share the same priority, the order in which Lex elicits
    // values is arbitrary.
    Priority *int64 `locationName:"priority" type:"integer"`

    // A set of possible responses for the slot type used by text-based clients.
    // A user chooses an option from the response card, instead of using text to
    // reply.
    ResponseCard *string `locationName:"responseCard" min:"1" type:"string"`

    // If you know a specific pattern with which users might respond to an Amazon
    // Lex request for a slot value, you can provide those utterances to improve
    // accuracy. This is optional. In most cases, Amazon Lex is capable of understanding
    // user utterances.
    SampleUtterances []*string `locationName:"sampleUtterances" type:"list"`

    // Specifies whether the slot is required or optional.
    //
    // SlotConstraint is a required field
    SlotConstraint *string `locationName:"slotConstraint" type:"string" required:"true" enum:"SlotConstraint"`

    // The type of the slot, either a custom slot type that you defined or one of
    // the built-in slot types.
    SlotType *string `locationName:"slotType" min:"1" type:"string"`

    // The version of the slot type.
    SlotTypeVersion *string `locationName:"slotTypeVersion" min:"1" type:"string"`

    // The prompt that Amazon Lex uses to elicit the slot value from the user.
    ValueElicitationPrompt *Prompt `locationName:"valueElicitationPrompt" type:"structure"`
    // contains filtered or unexported fields
}

func (Slot) GoString

func (s Slot) GoString() string

GoString returns the string representation

func (*Slot) SetDescription

func (s *Slot) SetDescription(v string) *Slot

SetDescription sets the Description field's value.

func (*Slot) SetName

func (s *Slot) SetName(v string) *Slot

SetName sets the Name field's value.

func (*Slot) SetPriority

func (s *Slot) SetPriority(v int64) *Slot

SetPriority sets the Priority field's value.

func (*Slot) SetResponseCard

func (s *Slot) SetResponseCard(v string) *Slot

SetResponseCard sets the ResponseCard field's value.

func (*Slot) SetSampleUtterances

func (s *Slot) SetSampleUtterances(v []*string) *Slot

SetSampleUtterances sets the SampleUtterances field's value.

func (*Slot) SetSlotConstraint

func (s *Slot) SetSlotConstraint(v string) *Slot

SetSlotConstraint sets the SlotConstraint field's value.

func (*Slot) SetSlotType

func (s *Slot) SetSlotType(v string) *Slot

SetSlotType sets the SlotType field's value.

func (*Slot) SetSlotTypeVersion

func (s *Slot) SetSlotTypeVersion(v string) *Slot

SetSlotTypeVersion sets the SlotTypeVersion field's value.

func (*Slot) SetValueElicitationPrompt

func (s *Slot) SetValueElicitationPrompt(v *Prompt) *Slot

SetValueElicitationPrompt sets the ValueElicitationPrompt field's value.

func (Slot) String

func (s Slot) String() string

String returns the string representation

func (*Slot) Validate

func (s *Slot) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type SlotTypeMetadata

Provides information about a slot type.. Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/SlotTypeMetadata

type SlotTypeMetadata struct {

    // The date that the slot type was created.
    CreatedDate *time.Time `locationName:"createdDate" type:"timestamp" timestampFormat:"unix"`

    // A description of the slot type.
    Description *string `locationName:"description" type:"string"`

    // The date that the slot type was updated. When you create a resource, the
    // creation date and last updated date are the same.
    LastUpdatedDate *time.Time `locationName:"lastUpdatedDate" type:"timestamp" timestampFormat:"unix"`

    // The name of the slot type.
    Name *string `locationName:"name" min:"1" type:"string"`

    // The version of the slot type.
    Version *string `locationName:"version" min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (SlotTypeMetadata) GoString

func (s SlotTypeMetadata) GoString() string

GoString returns the string representation

func (*SlotTypeMetadata) SetCreatedDate

func (s *SlotTypeMetadata) SetCreatedDate(v time.Time) *SlotTypeMetadata

SetCreatedDate sets the CreatedDate field's value.

func (*SlotTypeMetadata) SetDescription

func (s *SlotTypeMetadata) SetDescription(v string) *SlotTypeMetadata

SetDescription sets the Description field's value.

func (*SlotTypeMetadata) SetLastUpdatedDate

func (s *SlotTypeMetadata) SetLastUpdatedDate(v time.Time) *SlotTypeMetadata

SetLastUpdatedDate sets the LastUpdatedDate field's value.

func (*SlotTypeMetadata) SetName

func (s *SlotTypeMetadata) SetName(v string) *SlotTypeMetadata

SetName sets the Name field's value.

func (*SlotTypeMetadata) SetVersion

func (s *SlotTypeMetadata) SetVersion(v string) *SlotTypeMetadata

SetVersion sets the Version field's value.

func (SlotTypeMetadata) String

func (s SlotTypeMetadata) String() string

String returns the string representation

type Statement

A collection of messages that convey information to the user. At runtime, Amazon Lex selects the message to convey. Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/Statement

type Statement struct {

    // A collection of message objects.
    //
    // Messages is a required field
    Messages []*Message `locationName:"messages" min:"1" type:"list" required:"true"`

    // At runtime, if the client is using the API, Amazon Lex includes the response
    // card in the response. It substitutes all of the session attributes and slot
    // values for placeholders in the response card.
    ResponseCard *string `locationName:"responseCard" min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (Statement) GoString

func (s Statement) GoString() string

GoString returns the string representation

func (*Statement) SetMessages

func (s *Statement) SetMessages(v []*Message) *Statement

SetMessages sets the Messages field's value.

func (*Statement) SetResponseCard

func (s *Statement) SetResponseCard(v string) *Statement

SetResponseCard sets the ResponseCard field's value.

func (Statement) String

func (s Statement) String() string

String returns the string representation

func (*Statement) Validate

func (s *Statement) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type UtteranceData

Provides information about a single utterance that was made to your bot. Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/UtteranceData

type UtteranceData struct {

    // The number of times that the utterance was processed.
    Count *int64 `locationName:"count" type:"integer"`

    // The total number of individuals that used the utterance.
    DistinctUsers *int64 `locationName:"distinctUsers" type:"integer"`

    // The date that the utterance was first recorded.
    FirstUtteredDate *time.Time `locationName:"firstUtteredDate" type:"timestamp" timestampFormat:"unix"`

    // The date that the utterance was last recorded.
    LastUtteredDate *time.Time `locationName:"lastUtteredDate" type:"timestamp" timestampFormat:"unix"`

    // The text that was entered by the user or the text representation of an audio
    // clip.
    UtteranceString *string `locationName:"utteranceString" min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (UtteranceData) GoString

func (s UtteranceData) GoString() string

GoString returns the string representation

func (*UtteranceData) SetCount

func (s *UtteranceData) SetCount(v int64) *UtteranceData

SetCount sets the Count field's value.

func (*UtteranceData) SetDistinctUsers

func (s *UtteranceData) SetDistinctUsers(v int64) *UtteranceData

SetDistinctUsers sets the DistinctUsers field's value.

func (*UtteranceData) SetFirstUtteredDate

func (s *UtteranceData) SetFirstUtteredDate(v time.Time) *UtteranceData

SetFirstUtteredDate sets the FirstUtteredDate field's value.

func (*UtteranceData) SetLastUtteredDate

func (s *UtteranceData) SetLastUtteredDate(v time.Time) *UtteranceData

SetLastUtteredDate sets the LastUtteredDate field's value.

func (*UtteranceData) SetUtteranceString

func (s *UtteranceData) SetUtteranceString(v string) *UtteranceData

SetUtteranceString sets the UtteranceString field's value.

func (UtteranceData) String

func (s UtteranceData) String() string

String returns the string representation

type UtteranceList

Provides a list of utterances that have been made to a specific version of your bot. The list contains a maximum of 100 utterances. Please also see https://docs.aws.amazon.com/goto/WebAPI/lex-models-2017-04-19/UtteranceList

type UtteranceList struct {

    // The version of the bot that processed the list.
    BotVersion *string `locationName:"botVersion" min:"1" type:"string"`

    // One or more objects that contain information about the utterances that have
    // been made to a bot. The maximum number of object is 100.
    Utterances []*UtteranceData `locationName:"utterances" type:"list"`
    // contains filtered or unexported fields
}

func (UtteranceList) GoString

func (s UtteranceList) GoString() string

GoString returns the string representation

func (*UtteranceList) SetBotVersion

func (s *UtteranceList) SetBotVersion(v string) *UtteranceList

SetBotVersion sets the BotVersion field's value.

func (*UtteranceList) SetUtterances

func (s *UtteranceList) SetUtterances(v []*UtteranceData) *UtteranceList

SetUtterances sets the Utterances field's value.

func (UtteranceList) String

func (s UtteranceList) String() string

String returns the string representation

Subdirectories

Name Synopsis
..
lexmodelbuildingserviceiface Package lexmodelbuildingserviceiface provides an interface to enable mocking the Amazon Lex Model Building Service service client for testing your code.