1// Code generated by smithy-go-codegen DO NOT EDIT.
2
3package lexmodelsv2
4
5import (
6	"context"
7	awsmiddleware "github.com/aws/aws-sdk-go-v2/aws/middleware"
8	"github.com/aws/aws-sdk-go-v2/aws/signer/v4"
9	"github.com/aws/smithy-go/middleware"
10	smithyhttp "github.com/aws/smithy-go/transport/http"
11)
12
13// Deletes a slot type from a bot locale. If a slot is using the slot type, Amazon
14// Lex throws a ResourceInUseException exception. To avoid the exception, set the
15// skipResourceInUseCheck parameter to true.
16func (c *Client) DeleteSlotType(ctx context.Context, params *DeleteSlotTypeInput, optFns ...func(*Options)) (*DeleteSlotTypeOutput, error) {
17	if params == nil {
18		params = &DeleteSlotTypeInput{}
19	}
20
21	result, metadata, err := c.invokeOperation(ctx, "DeleteSlotType", params, optFns, addOperationDeleteSlotTypeMiddlewares)
22	if err != nil {
23		return nil, err
24	}
25
26	out := result.(*DeleteSlotTypeOutput)
27	out.ResultMetadata = metadata
28	return out, nil
29}
30
31type DeleteSlotTypeInput struct {
32
33	// The identifier of the bot associated with the slot type.
34	//
35	// This member is required.
36	BotId *string
37
38	// The version of the bot associated with the slot type.
39	//
40	// This member is required.
41	BotVersion *string
42
43	// The identifier of the language and locale that the slot type will be deleted
44	// from. The string must match one of the supported locales. For more information,
45	// see https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html
46	// (https://docs.aws.amazon.com/lex/latest/dg/supported-locales.html).
47	//
48	// This member is required.
49	LocaleId *string
50
51	// The identifier of the slot type to delete.
52	//
53	// This member is required.
54	SlotTypeId *string
55
56	// By default, the DeleteSlotType operations throws a ResourceInUseException
57	// exception if you try to delete a slot type used by a slot. Set the
58	// skipResourceInUseCheck parameter to true to skip this check and remove the slot
59	// type even if a slot uses it.
60	SkipResourceInUseCheck bool
61}
62
63type DeleteSlotTypeOutput struct {
64	// Metadata pertaining to the operation's result.
65	ResultMetadata middleware.Metadata
66}
67
68func addOperationDeleteSlotTypeMiddlewares(stack *middleware.Stack, options Options) (err error) {
69	err = stack.Serialize.Add(&awsRestjson1_serializeOpDeleteSlotType{}, middleware.After)
70	if err != nil {
71		return err
72	}
73	err = stack.Deserialize.Add(&awsRestjson1_deserializeOpDeleteSlotType{}, middleware.After)
74	if err != nil {
75		return err
76	}
77	if err = addSetLoggerMiddleware(stack, options); err != nil {
78		return err
79	}
80	if err = awsmiddleware.AddClientRequestIDMiddleware(stack); err != nil {
81		return err
82	}
83	if err = smithyhttp.AddComputeContentLengthMiddleware(stack); err != nil {
84		return err
85	}
86	if err = addResolveEndpointMiddleware(stack, options); err != nil {
87		return err
88	}
89	if err = v4.AddComputePayloadSHA256Middleware(stack); err != nil {
90		return err
91	}
92	if err = addRetryMiddlewares(stack, options); err != nil {
93		return err
94	}
95	if err = addHTTPSignerV4Middleware(stack, options); err != nil {
96		return err
97	}
98	if err = awsmiddleware.AddRawResponseToMetadata(stack); err != nil {
99		return err
100	}
101	if err = awsmiddleware.AddRecordResponseTiming(stack); err != nil {
102		return err
103	}
104	if err = addClientUserAgent(stack); err != nil {
105		return err
106	}
107	if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil {
108		return err
109	}
110	if err = smithyhttp.AddCloseResponseBodyMiddleware(stack); err != nil {
111		return err
112	}
113	if err = addOpDeleteSlotTypeValidationMiddleware(stack); err != nil {
114		return err
115	}
116	if err = stack.Initialize.Add(newServiceMetadataMiddleware_opDeleteSlotType(options.Region), middleware.Before); err != nil {
117		return err
118	}
119	if err = addRequestIDRetrieverMiddleware(stack); err != nil {
120		return err
121	}
122	if err = addResponseErrorMiddleware(stack); err != nil {
123		return err
124	}
125	if err = addRequestResponseLogging(stack, options); err != nil {
126		return err
127	}
128	return nil
129}
130
131func newServiceMetadataMiddleware_opDeleteSlotType(region string) *awsmiddleware.RegisterServiceMetadata {
132	return &awsmiddleware.RegisterServiceMetadata{
133		Region:        region,
134		ServiceID:     ServiceID,
135		SigningName:   "lex",
136		OperationName: "DeleteSlotType",
137	}
138}
139