-
Notifications
You must be signed in to change notification settings - Fork 638
/
api_op_DeleteVocabulary.go
124 lines (102 loc) · 3.58 KB
/
api_op_DeleteVocabulary.go
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
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package transcribe
import (
"context"
"github.com/aws/aws-sdk-go-v2/aws"
"github.com/aws/aws-sdk-go-v2/internal/awsutil"
"github.com/aws/aws-sdk-go-v2/private/protocol"
"github.com/aws/aws-sdk-go-v2/private/protocol/jsonrpc"
)
// Please also see https://docs.aws.amazon.com/goto/WebAPI/transcribe-2017-10-26/DeleteVocabularyRequest
type DeleteVocabularyInput struct {
_ struct{} `type:"structure"`
// The name of the vocabulary to delete.
//
// VocabularyName is a required field
VocabularyName *string `min:"1" type:"string" required:"true"`
}
// String returns the string representation
func (s DeleteVocabularyInput) String() string {
return awsutil.Prettify(s)
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DeleteVocabularyInput) Validate() error {
invalidParams := aws.ErrInvalidParams{Context: "DeleteVocabularyInput"}
if s.VocabularyName == nil {
invalidParams.Add(aws.NewErrParamRequired("VocabularyName"))
}
if s.VocabularyName != nil && len(*s.VocabularyName) < 1 {
invalidParams.Add(aws.NewErrParamMinLen("VocabularyName", 1))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/transcribe-2017-10-26/DeleteVocabularyOutput
type DeleteVocabularyOutput struct {
_ struct{} `type:"structure"`
}
// String returns the string representation
func (s DeleteVocabularyOutput) String() string {
return awsutil.Prettify(s)
}
const opDeleteVocabulary = "DeleteVocabulary"
// DeleteVocabularyRequest returns a request value for making API operation for
// Amazon Transcribe Service.
//
// Deletes a vocabulary from Amazon Transcribe.
//
// // Example sending a request using DeleteVocabularyRequest.
// req := client.DeleteVocabularyRequest(params)
// resp, err := req.Send(context.TODO())
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/transcribe-2017-10-26/DeleteVocabulary
func (c *Client) DeleteVocabularyRequest(input *DeleteVocabularyInput) DeleteVocabularyRequest {
op := &aws.Operation{
Name: opDeleteVocabulary,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DeleteVocabularyInput{}
}
req := c.newRequest(op, input, &DeleteVocabularyOutput{})
req.Handlers.Unmarshal.Remove(jsonrpc.UnmarshalHandler)
req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
return DeleteVocabularyRequest{Request: req, Input: input, Copy: c.DeleteVocabularyRequest}
}
// DeleteVocabularyRequest is the request type for the
// DeleteVocabulary API operation.
type DeleteVocabularyRequest struct {
*aws.Request
Input *DeleteVocabularyInput
Copy func(*DeleteVocabularyInput) DeleteVocabularyRequest
}
// Send marshals and sends the DeleteVocabulary API request.
func (r DeleteVocabularyRequest) Send(ctx context.Context) (*DeleteVocabularyResponse, error) {
r.Request.SetContext(ctx)
err := r.Request.Send()
if err != nil {
return nil, err
}
resp := &DeleteVocabularyResponse{
DeleteVocabularyOutput: r.Request.Data.(*DeleteVocabularyOutput),
response: &aws.Response{Request: r.Request},
}
return resp, nil
}
// DeleteVocabularyResponse is the response type for the
// DeleteVocabulary API operation.
type DeleteVocabularyResponse struct {
*DeleteVocabularyOutput
response *aws.Response
}
// SDKResponseMetdata returns the response metadata for the
// DeleteVocabulary request.
func (r *DeleteVocabularyResponse) SDKResponseMetdata() *aws.Response {
return r.response
}