1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package lexmodelbuildingservice
import (
"context"
"fmt"
awsmiddleware "github.com/aws/aws-sdk-go-v2/aws/middleware"
"github.com/aws/aws-sdk-go-v2/aws/signer/v4"
"github.com/aws/aws-sdk-go-v2/service/lexmodelbuildingservice/types"
"github.com/aws/smithy-go/middleware"
smithyhttp "github.com/aws/smithy-go/transport/http"
"time"
)
// 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 intent 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. When you
// update the $LATEST version of an intent, the status field of any bot that uses
// the $LATEST version of the intent is set to NOT_BUILT . For more information,
// see how-it-works . This operation requires permissions for the lex:PutIntent
// action.
func (c *Client) PutIntent(ctx context.Context, params *PutIntentInput, optFns ...func(*Options)) (*PutIntentOutput, error) {
if params == nil {
params = &PutIntentInput{}
}
result, metadata, err := c.invokeOperation(ctx, "PutIntent", params, optFns, c.addOperationPutIntentMiddlewares)
if err != nil {
return nil, err
}
out := result.(*PutIntentOutput)
out.ResultMetadata = metadata
return out, nil
}
type PutIntentInput struct {
// 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.
//
// This member is required.
Name *string
// 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
// 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 *types.Statement
// 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 *types.Prompt
// When set to true a new numbered version of the intent is created. This is the
// same as calling the CreateIntentVersion operation. If you do not specify
// createVersion , the default is false .
CreateVersion *bool
// A description of the intent.
Description *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 *types.CodeHook
// Amazon Lex uses this prompt to solicit additional activity after fulfilling an
// intent. For example, after the OrderPizza intent is fulfilled, you might prompt
// the user to order a drink. The action that Amazon Lex takes depends on the
// user's response, as follows:
// - If the user says "Yes" it responds with the clarification prompt that is
// configured for the bot.
// - if the user says "Yes" and continues with an utterance that triggers an
// intent it starts a conversation for the intent.
// - If the user says "No" it responds with the rejection statement configured
// for the the follow-up prompt.
// - If it doesn't recognize the utterance it repeats the follow-up prompt
// again.
// The followUpPrompt field and the conclusionStatement field are mutually
// exclusive. You can specify only one.
FollowUpPrompt *types.FollowUpPrompt
// Required. 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 *types.FulfillmentActivity
// An array of InputContext objects that lists the contexts that must be active
// for Amazon Lex to choose the intent in a conversation with the user.
InputContexts []types.InputContext
// Configuration information required to use the AMAZON.KendraSearchIntent intent
// to connect to an Amazon Kendra index. For more information, see
// AMAZON.KendraSearchIntent (http://docs.aws.amazon.com/lex/latest/dg/built-in-intent-kendra-search.html)
// .
KendraConfiguration *types.KendraConfiguration
// An array of OutputContext objects that lists the contexts that the intent
// activates when the intent is fulfilled.
OutputContexts []types.OutputContext
// 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
// 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 *types.Statement
// 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
// 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
// how-it-works .
Slots []types.Slot
noSmithyDocumentSerde
}
type PutIntentOutput struct {
// Checksum of the $LATEST version of the intent created or updated.
Checksum *string
// After the Lambda function specified in the fulfillmentActivity intent fulfills
// the intent, Amazon Lex conveys this statement to the user.
ConclusionStatement *types.Statement
// If defined in the intent, Amazon Lex prompts the user to confirm the intent
// before fulfilling it.
ConfirmationPrompt *types.Prompt
// True if a new version of the intent was created. If the createVersion field was
// not specified in the request, the createVersion field is set to false in the
// response.
CreateVersion *bool
// The date that the intent was created.
CreatedDate *time.Time
// A description of the intent.
Description *string
// If defined in the intent, Amazon Lex invokes this Lambda function for each user
// input.
DialogCodeHook *types.CodeHook
// If defined in the intent, Amazon Lex uses this prompt to solicit additional
// user activity after the intent is fulfilled.
FollowUpPrompt *types.FollowUpPrompt
// 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 *types.FulfillmentActivity
// An array of InputContext objects that lists the contexts that must be active
// for Amazon Lex to choose the intent in a conversation with the user.
InputContexts []types.InputContext
// Configuration information, if any, required to connect to an Amazon Kendra
// index and use the AMAZON.KendraSearchIntent intent.
KendraConfiguration *types.KendraConfiguration
// 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
// The name of the intent.
Name *string
// An array of OutputContext objects that lists the contexts that the intent
// activates when the intent is fulfilled.
OutputContexts []types.OutputContext
// A unique identifier for the built-in intent that this intent is based on.
ParentIntentSignature *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 *types.Statement
// An array of sample utterances that are configured for the intent.
SampleUtterances []string
// An array of intent slots that are configured for the intent.
Slots []types.Slot
// The version of the intent. For a new intent, the version is always $LATEST .
Version *string
// Metadata pertaining to the operation's result.
ResultMetadata middleware.Metadata
noSmithyDocumentSerde
}
func (c *Client) addOperationPutIntentMiddlewares(stack *middleware.Stack, options Options) (err error) {
if err := stack.Serialize.Add(&setOperationInputMiddleware{}, middleware.After); err != nil {
return err
}
err = stack.Serialize.Add(&awsRestjson1_serializeOpPutIntent{}, middleware.After)
if err != nil {
return err
}
err = stack.Deserialize.Add(&awsRestjson1_deserializeOpPutIntent{}, middleware.After)
if err != nil {
return err
}
if err := addProtocolFinalizerMiddlewares(stack, options, "PutIntent"); err != nil {
return fmt.Errorf("add protocol finalizers: %v", err)
}
if err = addlegacyEndpointContextSetter(stack, options); err != nil {
return err
}
if err = addSetLoggerMiddleware(stack, options); err != nil {
return err
}
if err = awsmiddleware.AddClientRequestIDMiddleware(stack); err != nil {
return err
}
if err = smithyhttp.AddComputeContentLengthMiddleware(stack); err != nil {
return err
}
if err = addResolveEndpointMiddleware(stack, options); err != nil {
return err
}
if err = v4.AddComputePayloadSHA256Middleware(stack); err != nil {
return err
}
if err = addRetryMiddlewares(stack, options); err != nil {
return err
}
if err = awsmiddleware.AddRawResponseToMetadata(stack); err != nil {
return err
}
if err = awsmiddleware.AddRecordResponseTiming(stack); err != nil {
return err
}
if err = addClientUserAgent(stack, options); err != nil {
return err
}
if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil {
return err
}
if err = smithyhttp.AddCloseResponseBodyMiddleware(stack); err != nil {
return err
}
if err = addSetLegacyContextSigningOptionsMiddleware(stack); err != nil {
return err
}
if err = addOpPutIntentValidationMiddleware(stack); err != nil {
return err
}
if err = stack.Initialize.Add(newServiceMetadataMiddleware_opPutIntent(options.Region), middleware.Before); err != nil {
return err
}
if err = awsmiddleware.AddRecursionDetection(stack); err != nil {
return err
}
if err = addRequestIDRetrieverMiddleware(stack); err != nil {
return err
}
if err = addResponseErrorMiddleware(stack); err != nil {
return err
}
if err = addRequestResponseLogging(stack, options); err != nil {
return err
}
if err = addDisableHTTPSMiddleware(stack, options); err != nil {
return err
}
return nil
}
func newServiceMetadataMiddleware_opPutIntent(region string) *awsmiddleware.RegisterServiceMetadata {
return &awsmiddleware.RegisterServiceMetadata{
Region: region,
ServiceID: ServiceID,
OperationName: "PutIntent",
}
}
|