-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
errors.go
56 lines (47 loc) · 2.19 KB
/
errors.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
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package transcribestreamingservice
import (
"github.com/aws/aws-sdk-go/private/protocol"
)
const (
// ErrCodeBadRequestException for service response error code
// "BadRequestException".
//
// One or more arguments to the StartStreamTranscription or StartMedicalStreamTranscription
// operation was invalid. For example, MediaEncoding was not set to a valid
// encoding, or LanguageCode was not set to a valid code. Check the parameters
// and try your request again.
ErrCodeBadRequestException = "BadRequestException"
// ErrCodeConflictException for service response error code
// "ConflictException".
//
// A new stream started with the same session ID. The current stream has been
// terminated.
ErrCodeConflictException = "ConflictException"
// ErrCodeInternalFailureException for service response error code
// "InternalFailureException".
//
// A problem occurred while processing the audio. Amazon Transcribe or Amazon
// Transcribe Medical terminated processing. Try your request again.
ErrCodeInternalFailureException = "InternalFailureException"
// ErrCodeLimitExceededException for service response error code
// "LimitExceededException".
//
// You have exceeded the maximum number of concurrent transcription streams,
// are starting transcription streams too quickly, or the maximum audio length
// of 4 hours. Wait until a stream has finished processing, or break your audio
// stream into smaller chunks and try your request again.
ErrCodeLimitExceededException = "LimitExceededException"
// ErrCodeServiceUnavailableException for service response error code
// "ServiceUnavailableException".
//
// Service is currently unavailable. Try your request later.
ErrCodeServiceUnavailableException = "ServiceUnavailableException"
)
var exceptionFromCode = map[string]func(protocol.ResponseMetadata) error{
"BadRequestException": newErrorBadRequestException,
"ConflictException": newErrorConflictException,
"InternalFailureException": newErrorInternalFailureException,
"LimitExceededException": newErrorLimitExceededException,
"ServiceUnavailableException": newErrorServiceUnavailableException,
}