package translate
import "github.com/aws/aws-sdk-go-v2/service/translate"
Package translate provides the client and types for making API requests to Amazon Translate.
Provides translation between one source language and another of the same set of languages.
See https://docs.aws.amazon.com/goto/WebAPI/translate-2017-07-01 for more information on this service.
See translate package documentation for more information. https://docs.aws.amazon.com/sdk-for-go/api/service/translate/
Using the Client
To use Amazon Translate with the SDK use the New function to create a new service client. With that client you can make API requests to the service. These clients are safe to use concurrently.
See the SDK's documentation for more information on how to use the SDK. https://docs.aws.amazon.com/sdk-for-go/api/
See aws.Config documentation for more information on configuring SDK clients. https://docs.aws.amazon.com/sdk-for-go/api/aws/#Config
See the Amazon Translate client for more information on creating client for this service. https://docs.aws.amazon.com/sdk-for-go/api/service/translate/#New
Index ¶
- Constants
- type AppliedTerminology
- type Client
- func New(config aws.Config) *Client
- func (c *Client) DeleteTerminologyRequest(input *DeleteTerminologyInput) DeleteTerminologyRequest
- func (c *Client) GetTerminologyRequest(input *GetTerminologyInput) GetTerminologyRequest
- func (c *Client) ImportTerminologyRequest(input *ImportTerminologyInput) ImportTerminologyRequest
- func (c *Client) ListTerminologiesRequest(input *ListTerminologiesInput) ListTerminologiesRequest
- func (c *Client) TranslateTextRequest(input *TranslateTextInput) TranslateTextRequest
- type DeleteTerminologyInput
- type DeleteTerminologyOutput
- type DeleteTerminologyRequest
- type DeleteTerminologyResponse
- type EncryptionKey
- type EncryptionKeyType
- func (enum EncryptionKeyType) MarshalValue() (string, error)
- func (enum EncryptionKeyType) MarshalValueBuf(b []byte) ([]byte, error)
- type GetTerminologyInput
- type GetTerminologyOutput
- type GetTerminologyRequest
- type GetTerminologyResponse
- type ImportTerminologyInput
- type ImportTerminologyOutput
- type ImportTerminologyRequest
- type ImportTerminologyResponse
- type ListTerminologiesInput
- type ListTerminologiesOutput
- type ListTerminologiesRequest
- type ListTerminologiesResponse
- type MergeStrategy
- func (enum MergeStrategy) MarshalValue() (string, error)
- func (enum MergeStrategy) MarshalValueBuf(b []byte) ([]byte, error)
- type Term
- type TerminologyData
- type TerminologyDataFormat
- func (enum TerminologyDataFormat) MarshalValue() (string, error)
- func (enum TerminologyDataFormat) MarshalValueBuf(b []byte) ([]byte, error)
- type TerminologyDataLocation
- type TerminologyProperties
- type TranslateTextInput
- type TranslateTextOutput
- type TranslateTextRequest
- type TranslateTextResponse
Constants ¶
const ( ServiceName = "Amazon Translate" // Service's name ServiceID = "Translate" // Service's identifier EndpointsID = "translate" // Service's Endpoint identifier )
const ( // ErrCodeDetectedLanguageLowConfidenceException for service response error code // "DetectedLanguageLowConfidenceException". // // The confidence that Amazon Comprehend accurately detected the source language // is low. If a low confidence level is acceptable for your application, you // can use the language in the exception to call Amazon Translate again. For // more information, see the DetectDominantLanguage (https://docs.aws.amazon.com/comprehend/latest/dg/API_DetectDominantLanguage.html) // operation in the Amazon Comprehend Developer Guide. ErrCodeDetectedLanguageLowConfidenceException = "DetectedLanguageLowConfidenceException" // ErrCodeInternalServerException for service response error code // "InternalServerException". // // An internal server error occurred. Retry your request. ErrCodeInternalServerException = "InternalServerException" // ErrCodeInvalidParameterValueException for service response error code // "InvalidParameterValueException". // // The value of the parameter is invalid. Review the value of the parameter // you are using to correct it, and then retry your operation. ErrCodeInvalidParameterValueException = "InvalidParameterValueException" // ErrCodeInvalidRequestException for service response error code // "InvalidRequestException". // // The request that you made is invalid. Check your request to determine why // it's invalid and then retry the request. ErrCodeInvalidRequestException = "InvalidRequestException" // ErrCodeLimitExceededException for service response error code // "LimitExceededException". // // The specified limit has been exceeded. Review your request and retry it with // a quantity below the stated limit. ErrCodeLimitExceededException = "LimitExceededException" // ErrCodeResourceNotFoundException for service response error code // "ResourceNotFoundException". // // The resource you are looking for has not been found. Review the resource // you're looking for and see if a different resource will accomplish your needs // before retrying the revised request. . ErrCodeResourceNotFoundException = "ResourceNotFoundException" // ErrCodeServiceUnavailableException for service response error code // "ServiceUnavailableException". // // The Amazon Translate service is temporarily unavailable. Please wait a bit // and then retry your request. = "ServiceUnavailableException" // ErrCodeTextSizeLimitExceededException for service response error code // "TextSizeLimitExceededException". // // The size of the text you submitted exceeds the size limit. Reduce the size // of the text or use a smaller document and then retry your request. ErrCodeTextSizeLimitExceededException = "TextSizeLimitExceededException" // ErrCodeTooManyRequestsException for service response error code // "TooManyRequestsException". // // You have made too many requests within a short period of time. Wait for a // short time and then try your request again. ErrCodeTooManyRequestsException = "TooManyRequestsException" // ErrCodeUnsupportedLanguagePairException for service response error code // "UnsupportedLanguagePairException". // // Amazon Translate does not support translation from the language of the source // text into the requested target language. For more information, see how-to-error-msg. ErrCodeUnsupportedLanguagePairException = "UnsupportedLanguagePairException" )
Types ¶
type AppliedTerminology ¶
type AppliedTerminology struct { // The name of the custom terminology applied to the input text by Amazon Translate // for the translated text response. Name *string `min:"1" type:"string"` // The specific terms of the custom terminology applied to the input text by // Amazon Translate for the translated text response. A maximum of 250 terms // will be returned, and the specific terms applied will be the first 250 terms // in the source text. Terms []Term `type:"list"` // contains filtered or unexported fields }
The custom terminology applied to the input text by Amazon Translate for the translated text response. This is optional in the response and will only be present if you specified terminology input in the request. Currently, only one terminology can be applied per TranslateText request. Please also see https://docs.aws.amazon.com/goto/WebAPI/translate-2017-07-01/AppliedTerminology
func (AppliedTerminology) String ¶
func (s AppliedTerminology) String() string
String returns the string representation
type Client ¶
Client provides the API operation methods for making requests to Amazon Translate. See this package's package overview docs for details on the service.
The client's methods are safe to use concurrently. It is not safe to modify mutate any of the struct's properties though.
func New ¶
New creates a new instance of the client from the provided Config.
Example:
// Create a client from just a config. svc := translate.New(myConfig)
func (*Client) DeleteTerminologyRequest ¶
func (c *Client) DeleteTerminologyRequest(input *DeleteTerminologyInput) DeleteTerminologyRequest
DeleteTerminologyRequest returns a request value for making API operation for Amazon Translate.
A synchronous action that deletes a custom terminology.
// Example sending a request using DeleteTerminologyRequest. req := client.DeleteTerminologyRequest(params) resp, err := req.Send(context.TODO()) if err == nil { fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/translate-2017-07-01/DeleteTerminology
func (*Client) GetTerminologyRequest ¶
func (c *Client) GetTerminologyRequest(input *GetTerminologyInput) GetTerminologyRequest
GetTerminologyRequest returns a request value for making API operation for Amazon Translate.
Retrieves a custom terminology.
// Example sending a request using GetTerminologyRequest. req := client.GetTerminologyRequest(params) resp, err := req.Send(context.TODO()) if err == nil { fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/translate-2017-07-01/GetTerminology
func (*Client) ImportTerminologyRequest ¶
func (c *Client) ImportTerminologyRequest(input *ImportTerminologyInput) ImportTerminologyRequest
ImportTerminologyRequest returns a request value for making API operation for Amazon Translate.
Creates or updates a custom terminology, depending on whether or not one already exists for the given terminology name. Importing a terminology with the same name as an existing one will merge the terminologies based on the chosen merge strategy. Currently, the only supported merge strategy is OVERWRITE, and so the imported terminology will overwrite an existing terminology of the same name.
If you import a terminology that overwrites an existing one, the new terminology take up to 10 minutes to fully propagate and be available for use in a translation due to cache policies with the DataPlane service that performs the translations.
// Example sending a request using ImportTerminologyRequest. req := client.ImportTerminologyRequest(params) resp, err := req.Send(context.TODO()) if err == nil { fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/translate-2017-07-01/ImportTerminology
func (*Client) ListTerminologiesRequest ¶
func (c *Client) ListTerminologiesRequest(input *ListTerminologiesInput) ListTerminologiesRequest
ListTerminologiesRequest returns a request value for making API operation for Amazon Translate.
Provides a list of custom terminologies associated with your account.
// Example sending a request using ListTerminologiesRequest. req := client.ListTerminologiesRequest(params) resp, err := req.Send(context.TODO()) if err == nil { fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/translate-2017-07-01/ListTerminologies
func (*Client) TranslateTextRequest ¶
func (c *Client) TranslateTextRequest(input *TranslateTextInput) TranslateTextRequest
TranslateTextRequest returns a request value for making API operation for Amazon Translate.
Translates input text from the source language to the target language. It is not necessary to use English (en) as either the source or the target language but not all language combinations are supported by Amazon Translate. For more information, see Supported Language Pairs (http://docs.aws.amazon.com/translate/latest/dg/pairs.html).
Arabic (ar)
Chinese (Simplified) (zh)
Chinese (Traditional) (zh-TW)
Czech (cs)
Danish (da)
Dutch (nl)
English (en)
Finnish (fi)
French (fr)
German (de)
Hebrew (he)
Indonesian (id)
Italian (it)
Japanese (ja)
Korean (ko)
Polish (pl)
Portuguese (pt)
Russian (ru)
Spanish (es)
Swedish (sv)
Turkish (tr)
To have Amazon Translate determine the source language of your text, you can specify auto in the SourceLanguageCode field. If you specify auto, Amazon Translate will call Amazon Comprehend to determine the source language.
// Example sending a request using TranslateTextRequest. req := client.TranslateTextRequest(params) resp, err := req.Send(context.TODO()) if err == nil { fmt.Println(resp) }
Please also see https://docs.aws.amazon.com/goto/WebAPI/translate-2017-07-01/TranslateText
type DeleteTerminologyInput ¶
type DeleteTerminologyInput struct { // The name of the custom terminology being deleted. // // Name is a required field Name *string `min:"1" type:"string" required:"true"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/translate-2017-07-01/DeleteTerminologyRequest
func (DeleteTerminologyInput) String ¶
func (s DeleteTerminologyInput) String() string
String returns the string representation
func (*DeleteTerminologyInput) Validate ¶
func (s *DeleteTerminologyInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type DeleteTerminologyOutput ¶
type DeleteTerminologyOutput struct {
// contains filtered or unexported fields
}
Please also see https://docs.aws.amazon.com/goto/WebAPI/translate-2017-07-01/DeleteTerminologyOutput
func (DeleteTerminologyOutput) String ¶
func (s DeleteTerminologyOutput) String() string
String returns the string representation
type DeleteTerminologyRequest ¶
type DeleteTerminologyRequest struct { *aws.Request Input *DeleteTerminologyInput Copy func(*DeleteTerminologyInput) DeleteTerminologyRequest }
DeleteTerminologyRequest is the request type for the DeleteTerminology API operation.
func (DeleteTerminologyRequest) Send ¶
func (r DeleteTerminologyRequest) Send(ctx context.Context) (*DeleteTerminologyResponse, error)
Send marshals and sends the DeleteTerminology API request.
type DeleteTerminologyResponse ¶
type DeleteTerminologyResponse struct { *DeleteTerminologyOutput // contains filtered or unexported fields }
DeleteTerminologyResponse is the response type for the DeleteTerminology API operation.
func (*DeleteTerminologyResponse) SDKResponseMetdata ¶
func (r *DeleteTerminologyResponse) SDKResponseMetdata() *aws.Response
SDKResponseMetdata returns the response metadata for the DeleteTerminology request.
type EncryptionKey ¶
type EncryptionKey struct { // The Amazon Resource Name (ARN) of the encryption key being used to encrypt // the custom terminology. // // Id is a required field Id *string `min:"1" type:"string" required:"true"` // The type of encryption key used by Amazon Translate to encrypt custom terminologies. // // Type is a required field Type EncryptionKeyType `type:"string" required:"true" enum:"true"` // contains filtered or unexported fields }
The encryption key used to encrypt the custom terminologies used by Amazon Translate. Please also see https://docs.aws.amazon.com/goto/WebAPI/translate-2017-07-01/EncryptionKey
func (EncryptionKey) String ¶
func (s EncryptionKey) String() string
String returns the string representation
func (*EncryptionKey) Validate ¶
func (s *EncryptionKey) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type EncryptionKeyType ¶
type EncryptionKeyType string
const ( EncryptionKeyTypeKms EncryptionKeyType = "KMS" )
Enum values for EncryptionKeyType
func (EncryptionKeyType) MarshalValue ¶
func (enum EncryptionKeyType) MarshalValue() (string, error)
func (EncryptionKeyType) MarshalValueBuf ¶
func (enum EncryptionKeyType) MarshalValueBuf(b []byte) ([]byte, error)
type GetTerminologyInput ¶
type GetTerminologyInput struct { // The name of the custom terminology being retrieved. // // Name is a required field Name *string `min:"1" type:"string" required:"true"` // The data format of the custom terminology being retrieved, either CSV or // TMX. // // TerminologyDataFormat is a required field TerminologyDataFormat TerminologyDataFormat `type:"string" required:"true" enum:"true"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/translate-2017-07-01/GetTerminologyRequest
func (GetTerminologyInput) String ¶
func (s GetTerminologyInput) String() string
String returns the string representation
func (*GetTerminologyInput) Validate ¶
func (s *GetTerminologyInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type GetTerminologyOutput ¶
type GetTerminologyOutput struct { // The data location of the custom terminology being retrieved. The custom terminology // file is returned in a presigned url that has a 30 minute expiration. TerminologyDataLocation *TerminologyDataLocation `type:"structure"` // The properties of the custom terminology being retrieved. TerminologyProperties *TerminologyProperties `type:"structure"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/translate-2017-07-01/GetTerminologyResponse
func (GetTerminologyOutput) String ¶
func (s GetTerminologyOutput) String() string
String returns the string representation
type GetTerminologyRequest ¶
type GetTerminologyRequest struct { *aws.Request Input *GetTerminologyInput Copy func(*GetTerminologyInput) GetTerminologyRequest }
GetTerminologyRequest is the request type for the GetTerminology API operation.
func (GetTerminologyRequest) Send ¶
func (r GetTerminologyRequest) Send(ctx context.Context) (*GetTerminologyResponse, error)
Send marshals and sends the GetTerminology API request.
type GetTerminologyResponse ¶
type GetTerminologyResponse struct { *GetTerminologyOutput // contains filtered or unexported fields }
GetTerminologyResponse is the response type for the GetTerminology API operation.
func (*GetTerminologyResponse) SDKResponseMetdata ¶
func (r *GetTerminologyResponse) SDKResponseMetdata() *aws.Response
SDKResponseMetdata returns the response metadata for the GetTerminology request.
type ImportTerminologyInput ¶
type ImportTerminologyInput struct { // The description of the custom terminology being imported. Description *string `type:"string"` // The encryption key for the custom terminology being imported. EncryptionKey *EncryptionKey `type:"structure"` // The merge strategy of the custom terminology being imported. Currently, only // the OVERWRITE merge strategy is supported. In this case, the imported terminology // will overwrite an existing terminology of the same name. // // MergeStrategy is a required field MergeStrategy MergeStrategy `type:"string" required:"true" enum:"true"` // The name of the custom terminology being imported. // // Name is a required field Name *string `min:"1" type:"string" required:"true"` // The terminology data for the custom terminology being imported. // // TerminologyData is a required field TerminologyData *TerminologyData `type:"structure" required:"true"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/translate-2017-07-01/ImportTerminologyRequest
func (ImportTerminologyInput) String ¶
func (s ImportTerminologyInput) String() string
String returns the string representation
func (*ImportTerminologyInput) Validate ¶
func (s *ImportTerminologyInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ImportTerminologyOutput ¶
type ImportTerminologyOutput struct { // The properties of the custom terminology being imported. TerminologyProperties *TerminologyProperties `type:"structure"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/translate-2017-07-01/ImportTerminologyResponse
func (ImportTerminologyOutput) String ¶
func (s ImportTerminologyOutput) String() string
String returns the string representation
type ImportTerminologyRequest ¶
type ImportTerminologyRequest struct { *aws.Request Input *ImportTerminologyInput Copy func(*ImportTerminologyInput) ImportTerminologyRequest }
ImportTerminologyRequest is the request type for the ImportTerminology API operation.
func (ImportTerminologyRequest) Send ¶
func (r ImportTerminologyRequest) Send(ctx context.Context) (*ImportTerminologyResponse, error)
Send marshals and sends the ImportTerminology API request.
type ImportTerminologyResponse ¶
type ImportTerminologyResponse struct { *ImportTerminologyOutput // contains filtered or unexported fields }
ImportTerminologyResponse is the response type for the ImportTerminology API operation.
func (*ImportTerminologyResponse) SDKResponseMetdata ¶
func (r *ImportTerminologyResponse) SDKResponseMetdata() *aws.Response
SDKResponseMetdata returns the response metadata for the ImportTerminology request.
type ListTerminologiesInput ¶
type ListTerminologiesInput struct { // The maximum number of custom terminologies returned per list request. MaxResults *int64 `min:"1" type:"integer"` // If the result of the request to ListTerminologies was truncated, include // the NextToken to fetch the next group of custom terminologies. NextToken *string `type:"string"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/translate-2017-07-01/ListTerminologiesRequest
func (ListTerminologiesInput) String ¶
func (s ListTerminologiesInput) String() string
String returns the string representation
func (*ListTerminologiesInput) Validate ¶
func (s *ListTerminologiesInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type ListTerminologiesOutput ¶
type ListTerminologiesOutput struct { // If the response to the ListTerminologies was truncated, the NextToken fetches // the next group of custom terminologies. NextToken *string `type:"string"` // The properties list of the custom terminologies returned on the list request. TerminologyPropertiesList []TerminologyProperties `type:"list"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/translate-2017-07-01/ListTerminologiesResponse
func (ListTerminologiesOutput) String ¶
func (s ListTerminologiesOutput) String() string
String returns the string representation
type ListTerminologiesRequest ¶
type ListTerminologiesRequest struct { *aws.Request Input *ListTerminologiesInput Copy func(*ListTerminologiesInput) ListTerminologiesRequest }
ListTerminologiesRequest is the request type for the ListTerminologies API operation.
func (ListTerminologiesRequest) Send ¶
func (r ListTerminologiesRequest) Send(ctx context.Context) (*ListTerminologiesResponse, error)
Send marshals and sends the ListTerminologies API request.
type ListTerminologiesResponse ¶
type ListTerminologiesResponse struct { *ListTerminologiesOutput // contains filtered or unexported fields }
ListTerminologiesResponse is the response type for the ListTerminologies API operation.
func (*ListTerminologiesResponse) SDKResponseMetdata ¶
func (r *ListTerminologiesResponse) SDKResponseMetdata() *aws.Response
SDKResponseMetdata returns the response metadata for the ListTerminologies request.
type MergeStrategy ¶
type MergeStrategy string
const ( MergeStrategyOverwrite MergeStrategy = "OVERWRITE" )
Enum values for MergeStrategy
func (MergeStrategy) MarshalValue ¶
func (enum MergeStrategy) MarshalValue() (string, error)
func (MergeStrategy) MarshalValueBuf ¶
func (enum MergeStrategy) MarshalValueBuf(b []byte) ([]byte, error)
type Term ¶
type Term struct { // The source text of the term being translated by the custom terminology. SourceText *string `type:"string"` // The target text of the term being translated by the custom terminology. TargetText *string `type:"string"` // contains filtered or unexported fields }
The term being translated by the custom terminology. Please also see https://docs.aws.amazon.com/goto/WebAPI/translate-2017-07-01/Term
func (Term) String ¶
String returns the string representation
type TerminologyData ¶
type TerminologyData struct { // The file containing the custom terminology data. // // File is automatically base64 encoded/decoded by the SDK. // // File is a required field File []byte `type:"blob" required:"true"` // The data format of the custom terminology. Either CSV or TMX. // // Format is a required field Format TerminologyDataFormat `type:"string" required:"true" enum:"true"` // contains filtered or unexported fields }
The data associated with the custom terminology. Please also see https://docs.aws.amazon.com/goto/WebAPI/translate-2017-07-01/TerminologyData
func (TerminologyData) String ¶
func (s TerminologyData) String() string
String returns the string representation
func (*TerminologyData) Validate ¶
func (s *TerminologyData) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type TerminologyDataFormat ¶
type TerminologyDataFormat string
const ( TerminologyDataFormatCsv TerminologyDataFormat = "CSV" TerminologyDataFormatTmx TerminologyDataFormat = "TMX" )
Enum values for TerminologyDataFormat
func (TerminologyDataFormat) MarshalValue ¶
func (enum TerminologyDataFormat) MarshalValue() (string, error)
func (TerminologyDataFormat) MarshalValueBuf ¶
func (enum TerminologyDataFormat) MarshalValueBuf(b []byte) ([]byte, error)
type TerminologyDataLocation ¶
type TerminologyDataLocation struct { // The location of the custom terminology data. // // Location is a required field Location *string `type:"string" required:"true"` // The repository type for the custom terminology data. // // RepositoryType is a required field RepositoryType *string `type:"string" required:"true"` // contains filtered or unexported fields }
The location of the custom terminology data. Please also see https://docs.aws.amazon.com/goto/WebAPI/translate-2017-07-01/TerminologyDataLocation
func (TerminologyDataLocation) String ¶
func (s TerminologyDataLocation) String() string
String returns the string representation
type TerminologyProperties ¶
type TerminologyProperties struct { // The Amazon Resource Name (ARN) of the custom terminology. Arn *string `type:"string"` // The time at which the custom terminology was created, based on the timestamp. CreatedAt *time.Time `type:"timestamp"` // The description of the custom terminology properties. Description *string `type:"string"` // The encryption key for the custom terminology. EncryptionKey *EncryptionKey `type:"structure"` // The time at which the custom terminology was last update, based on the timestamp. LastUpdatedAt *time.Time `type:"timestamp"` // The name of the custom terminology. Name *string `min:"1" type:"string"` // The size of the file used when importing a custom terminology. SizeBytes *int64 `type:"integer"` // The language code for the source text of the translation request for which // the custom terminology is being used. SourceLanguageCode *string `min:"2" type:"string"` // The language codes for the target languages available with the custom terminology // file. All possible target languages are returned in array. TargetLanguageCodes []string `type:"list"` // The number of terms included in the custom terminology. TermCount *int64 `type:"integer"` // contains filtered or unexported fields }
The properties of the custom terminology. Please also see https://docs.aws.amazon.com/goto/WebAPI/translate-2017-07-01/TerminologyProperties
func (TerminologyProperties) String ¶
func (s TerminologyProperties) String() string
String returns the string representation
type TranslateTextInput ¶
type TranslateTextInput struct { // The language code for the language of the source text. The language must // be a language supported by Amazon Translate. // // To have Amazon Translate determine the source language of your text, you // can specify auto in the SourceLanguageCode field. If you specify auto, Amazon // Translate will call Amazon Comprehend to determine the source language. // // SourceLanguageCode is a required field SourceLanguageCode *string `min:"2" type:"string" required:"true"` // The language code requested for the language of the target text. The language // must be a language supported by Amazon Translate. // // TargetLanguageCode is a required field TargetLanguageCode *string `min:"2" type:"string" required:"true"` // The TerminologyNames list that is taken as input to the TranslateText request. // This has a minimum length of 0 and a maximum length of 1. TerminologyNames []string `type:"list"` // The text to translate. The text string can be a maximum of 5,000 bytes long. // Depending on your character set, this may be fewer than 5,000 characters. // // Text is a required field Text *string `min:"1" type:"string" required:"true"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/translate-2017-07-01/TranslateTextRequest
func (TranslateTextInput) String ¶
func (s TranslateTextInput) String() string
String returns the string representation
func (*TranslateTextInput) Validate ¶
func (s *TranslateTextInput) Validate() error
Validate inspects the fields of the type to determine if they are valid.
type TranslateTextOutput ¶
type TranslateTextOutput struct { // The names of the custom terminologies applied to the input text by Amazon // Translate for the translated text response. AppliedTerminologies []AppliedTerminology `type:"list"` // The language code for the language of the source text. // // SourceLanguageCode is a required field SourceLanguageCode *string `min:"2" type:"string" required:"true"` // The language code for the language of the target text. // // TargetLanguageCode is a required field TargetLanguageCode *string `min:"2" type:"string" required:"true"` // The the translated text. The maximum length of this text is 5kb. // // TranslatedText is a required field TranslatedText *string `type:"string" required:"true"` // contains filtered or unexported fields }
Please also see https://docs.aws.amazon.com/goto/WebAPI/translate-2017-07-01/TranslateTextResponse
func (TranslateTextOutput) String ¶
func (s TranslateTextOutput) String() string
String returns the string representation
type TranslateTextRequest ¶
type TranslateTextRequest struct { *aws.Request Input *TranslateTextInput Copy func(*TranslateTextInput) TranslateTextRequest }
TranslateTextRequest is the request type for the TranslateText API operation.
func (TranslateTextRequest) Send ¶
func (r TranslateTextRequest) Send(ctx context.Context) (*TranslateTextResponse, error)
Send marshals and sends the TranslateText API request.
type TranslateTextResponse ¶
type TranslateTextResponse struct { *TranslateTextOutput // contains filtered or unexported fields }
TranslateTextResponse is the response type for the TranslateText API operation.
func (*TranslateTextResponse) SDKResponseMetdata ¶
func (r *TranslateTextResponse) SDKResponseMetdata() *aws.Response
SDKResponseMetdata returns the response metadata for the TranslateText request.
Source Files ¶
api_client.go api_doc.go api_enums.go api_errors.go api_op_DeleteTerminology.go api_op_GetTerminology.go api_op_ImportTerminology.go api_op_ListTerminologies.go api_op_TranslateText.go api_types.go
Directories ¶
Path | Synopsis |
---|---|
service/translate/translateiface | Package translateiface provides an interface to enable mocking the Amazon Translate service client for testing your code. |
- Version
- v0.11.0
- Published
- Aug 23, 2019
- Platform
- js/wasm
- Imports
- 7 packages
- Last checked
- now –
Tools for package owners.