1// Code generated by smithy-go-codegen DO NOT EDIT.
2
3package transcribe
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/aws-sdk-go-v2/service/transcribe/types"
10	"github.com/aws/smithy-go/middleware"
11	smithyhttp "github.com/aws/smithy-go/transport/http"
12	"time"
13)
14
15// Retrieves information about a medical vocabulary.
16func (c *Client) GetMedicalVocabulary(ctx context.Context, params *GetMedicalVocabularyInput, optFns ...func(*Options)) (*GetMedicalVocabularyOutput, error) {
17	if params == nil {
18		params = &GetMedicalVocabularyInput{}
19	}
20
21	result, metadata, err := c.invokeOperation(ctx, "GetMedicalVocabulary", params, optFns, addOperationGetMedicalVocabularyMiddlewares)
22	if err != nil {
23		return nil, err
24	}
25
26	out := result.(*GetMedicalVocabularyOutput)
27	out.ResultMetadata = metadata
28	return out, nil
29}
30
31type GetMedicalVocabularyInput struct {
32
33	// The name of the vocabulary that you want information about. The value is case
34	// sensitive.
35	//
36	// This member is required.
37	VocabularyName *string
38}
39
40type GetMedicalVocabularyOutput struct {
41
42	// The location in Amazon S3 where the vocabulary is stored. Use this URI to get
43	// the contents of the vocabulary. You can download your vocabulary from the URI
44	// for a limited time.
45	DownloadUri *string
46
47	// If the VocabularyState is FAILED, this field contains information about why the
48	// job failed.
49	FailureReason *string
50
51	// The valid language code for your vocabulary entries.
52	LanguageCode types.LanguageCode
53
54	// The date and time that the vocabulary was last modified with a text file
55	// different from the one that was previously used.
56	LastModifiedTime *time.Time
57
58	// The name of the vocabulary returned by Amazon Transcribe Medical.
59	VocabularyName *string
60
61	// The processing state of the vocabulary. If the VocabularyState is READY then you
62	// can use it in the StartMedicalTranscriptionJob operation.
63	VocabularyState types.VocabularyState
64
65	// Metadata pertaining to the operation's result.
66	ResultMetadata middleware.Metadata
67}
68
69func addOperationGetMedicalVocabularyMiddlewares(stack *middleware.Stack, options Options) (err error) {
70	err = stack.Serialize.Add(&awsAwsjson11_serializeOpGetMedicalVocabulary{}, middleware.After)
71	if err != nil {
72		return err
73	}
74	err = stack.Deserialize.Add(&awsAwsjson11_deserializeOpGetMedicalVocabulary{}, middleware.After)
75	if err != nil {
76		return err
77	}
78	if err = addSetLoggerMiddleware(stack, options); err != nil {
79		return err
80	}
81	if err = awsmiddleware.AddClientRequestIDMiddleware(stack); err != nil {
82		return err
83	}
84	if err = smithyhttp.AddComputeContentLengthMiddleware(stack); err != nil {
85		return err
86	}
87	if err = addResolveEndpointMiddleware(stack, options); err != nil {
88		return err
89	}
90	if err = v4.AddComputePayloadSHA256Middleware(stack); err != nil {
91		return err
92	}
93	if err = addRetryMiddlewares(stack, options); err != nil {
94		return err
95	}
96	if err = addHTTPSignerV4Middleware(stack, options); err != nil {
97		return err
98	}
99	if err = awsmiddleware.AddRawResponseToMetadata(stack); err != nil {
100		return err
101	}
102	if err = awsmiddleware.AddRecordResponseTiming(stack); err != nil {
103		return err
104	}
105	if err = addClientUserAgent(stack); err != nil {
106		return err
107	}
108	if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil {
109		return err
110	}
111	if err = smithyhttp.AddCloseResponseBodyMiddleware(stack); err != nil {
112		return err
113	}
114	if err = addOpGetMedicalVocabularyValidationMiddleware(stack); err != nil {
115		return err
116	}
117	if err = stack.Initialize.Add(newServiceMetadataMiddleware_opGetMedicalVocabulary(options.Region), middleware.Before); err != nil {
118		return err
119	}
120	if err = addRequestIDRetrieverMiddleware(stack); err != nil {
121		return err
122	}
123	if err = addResponseErrorMiddleware(stack); err != nil {
124		return err
125	}
126	if err = addRequestResponseLogging(stack, options); err != nil {
127		return err
128	}
129	return nil
130}
131
132func newServiceMetadataMiddleware_opGetMedicalVocabulary(region string) *awsmiddleware.RegisterServiceMetadata {
133	return &awsmiddleware.RegisterServiceMetadata{
134		Region:        region,
135		ServiceID:     ServiceID,
136		SigningName:   "transcribe",
137		OperationName: "GetMedicalVocabulary",
138	}
139}
140