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
|
// 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 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.
func (c *Client) CreateBotVersion(ctx context.Context, params *CreateBotVersionInput, optFns ...func(*Options)) (*CreateBotVersionOutput, error) {
if params == nil {
params = &CreateBotVersionInput{}
}
result, metadata, err := c.invokeOperation(ctx, "CreateBotVersion", params, optFns, c.addOperationCreateBotVersionMiddlewares)
if err != nil {
return nil, err
}
out := result.(*CreateBotVersionOutput)
out.ResultMetadata = metadata
return out, nil
}
type CreateBotVersionInput struct {
// The name of the bot that you want to create a new version of. The name is case
// sensitive.
//
// This member is required.
Name *string
// 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
noSmithyDocumentSerde
}
type CreateBotVersionOutput struct {
// The message that Amazon Lex uses to cancel a conversation. For more
// information, see PutBot .
AbortStatement *types.Statement
// Checksum identifying the version of the bot that was created.
Checksum *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
// The message that Amazon Lex uses when it doesn't understand the user's request.
// For more information, see PutBot .
ClarificationPrompt *types.Prompt
// The date when the bot version was created.
CreatedDate *time.Time
// A description of the bot.
Description *string
// Indicates whether utterances entered by the user should be sent to Amazon
// Comprehend for sentiment analysis.
DetectSentiment *bool
// Indicates whether the bot uses accuracy improvements. true indicates that the
// bot is using the improvements, otherwise, false .
EnableModelImprovements *bool
// If status is FAILED , Amazon Lex provides the reason that it failed to build the
// bot.
FailureReason *string
// The maximum time in seconds that Amazon Lex retains the data gathered in a
// conversation. For more information, see PutBot .
IdleSessionTTLInSeconds *int32
// An array of Intent objects. For more information, see PutBot .
Intents []types.Intent
// The date when the $LATEST version of this bot was updated.
LastUpdatedDate *time.Time
// Specifies the target locale for the bot.
Locale types.Locale
// The name of the bot.
Name *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 types.Status
// The version of the bot.
Version *string
// The Amazon Polly voice ID that Amazon Lex uses for voice interactions with the
// user.
VoiceId *string
// Metadata pertaining to the operation's result.
ResultMetadata middleware.Metadata
noSmithyDocumentSerde
}
func (c *Client) addOperationCreateBotVersionMiddlewares(stack *middleware.Stack, options Options) (err error) {
if err := stack.Serialize.Add(&setOperationInputMiddleware{}, middleware.After); err != nil {
return err
}
err = stack.Serialize.Add(&awsRestjson1_serializeOpCreateBotVersion{}, middleware.After)
if err != nil {
return err
}
err = stack.Deserialize.Add(&awsRestjson1_deserializeOpCreateBotVersion{}, middleware.After)
if err != nil {
return err
}
if err := addProtocolFinalizerMiddlewares(stack, options, "CreateBotVersion"); 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 = addOpCreateBotVersionValidationMiddleware(stack); err != nil {
return err
}
if err = stack.Initialize.Add(newServiceMetadataMiddleware_opCreateBotVersion(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_opCreateBotVersion(region string) *awsmiddleware.RegisterServiceMetadata {
return &awsmiddleware.RegisterServiceMetadata{
Region: region,
ServiceID: ServiceID,
OperationName: "CreateBotVersion",
}
}
|