[go: up one dir, main page]

types

package
v1.9.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 10, 2025 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AccessDeniedException

type AccessDeniedException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

This exception is thrown when a request is denied per access permissions

func (*AccessDeniedException) Error

func (e *AccessDeniedException) Error() string

func (*AccessDeniedException) ErrorCode

func (e *AccessDeniedException) ErrorCode() string

func (*AccessDeniedException) ErrorFault

func (e *AccessDeniedException) ErrorFault() smithy.ErrorFault

func (*AccessDeniedException) ErrorMessage

func (e *AccessDeniedException) ErrorMessage() string

type AudioExtractionCategory

type AudioExtractionCategory struct {

	// State
	//
	// This member is required.
	State State

	// List of Audio Extraction Category Type
	Types []AudioExtractionCategoryType
	// contains filtered or unexported fields
}

Category of Audio Extraction

type AudioExtractionCategoryType

type AudioExtractionCategoryType string
const (
	AudioExtractionCategoryTypeAudioContentModeration AudioExtractionCategoryType = "AUDIO_CONTENT_MODERATION"
	AudioExtractionCategoryTypeTranscript             AudioExtractionCategoryType = "TRANSCRIPT"
	AudioExtractionCategoryTypeTopicContentModeration AudioExtractionCategoryType = "TOPIC_CONTENT_MODERATION"
)

Enum values for AudioExtractionCategoryType

func (AudioExtractionCategoryType) Values

Values returns all known values for AudioExtractionCategoryType. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type AudioOverrideConfiguration added in v1.3.0

type AudioOverrideConfiguration struct {

	// Configuration to enable/disable processing of modality
	ModalityProcessing *ModalityProcessingConfiguration
	// contains filtered or unexported fields
}

Override Configuration of Audio

type AudioStandardExtraction

type AudioStandardExtraction struct {

	// Category of Audio Extraction
	//
	// This member is required.
	Category *AudioExtractionCategory
	// contains filtered or unexported fields
}

Standard Extraction Configuration of Audio

type AudioStandardGenerativeField

type AudioStandardGenerativeField struct {

	// State
	//
	// This member is required.
	State State

	// List of Audio Standard Generative Field Type
	Types []AudioStandardGenerativeFieldType
	// contains filtered or unexported fields
}

Standard Generative Field Configuration of Audio

type AudioStandardGenerativeFieldType

type AudioStandardGenerativeFieldType string
const (
	AudioStandardGenerativeFieldTypeAudioSummary AudioStandardGenerativeFieldType = "AUDIO_SUMMARY"
	AudioStandardGenerativeFieldTypeIab          AudioStandardGenerativeFieldType = "IAB"
	AudioStandardGenerativeFieldTypeTopicSummary AudioStandardGenerativeFieldType = "TOPIC_SUMMARY"
)

Enum values for AudioStandardGenerativeFieldType

func (AudioStandardGenerativeFieldType) Values

Values returns all known values for AudioStandardGenerativeFieldType. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type AudioStandardOutputConfiguration

type AudioStandardOutputConfiguration struct {

	// Standard Extraction Configuration of Audio
	Extraction *AudioStandardExtraction

	// Standard Generative Field Configuration of Audio
	GenerativeField *AudioStandardGenerativeField
	// contains filtered or unexported fields
}

Standard Output Configuration of Audio

type Blueprint

type Blueprint struct {

	// ARN of a Blueprint
	//
	// This member is required.
	BlueprintArn *string

	// Name of the Blueprint
	//
	// This member is required.
	BlueprintName *string

	// Time Stamp
	//
	// This member is required.
	CreationTime *time.Time

	// Time Stamp
	//
	// This member is required.
	LastModifiedTime *time.Time

	// Schema of the blueprint
	//
	// This member is required.
	Schema *string

	// Type
	//
	// This member is required.
	Type Type

	// Stage of the Blueprint
	BlueprintStage BlueprintStage

	// Blueprint Version
	BlueprintVersion *string

	// KMS Encryption Context
	KmsEncryptionContext map[string]string

	// KMS Key Identifier
	KmsKeyId *string
	// contains filtered or unexported fields
}

Contains the information of a Blueprint.

type BlueprintFilter

type BlueprintFilter struct {

	// ARN of a Blueprint
	//
	// This member is required.
	BlueprintArn *string

	// Stage of the Blueprint
	BlueprintStage BlueprintStage

	// Blueprint Version
	BlueprintVersion *string
	// contains filtered or unexported fields
}

Blueprint Filter

type BlueprintItem

type BlueprintItem struct {

	// ARN of a Blueprint
	//
	// This member is required.
	BlueprintArn *string

	// Stage of the Blueprint
	BlueprintStage BlueprintStage

	// Blueprint Version
	BlueprintVersion *string
	// contains filtered or unexported fields
}

Blueprint Item

type BlueprintStage

type BlueprintStage string
const (
	BlueprintStageDevelopment BlueprintStage = "DEVELOPMENT"
	BlueprintStageLive        BlueprintStage = "LIVE"
)

Enum values for BlueprintStage

func (BlueprintStage) Values

func (BlueprintStage) Values() []BlueprintStage

Values returns all known values for BlueprintStage. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type BlueprintStageFilter

type BlueprintStageFilter string
const (
	BlueprintStageFilterDevelopment BlueprintStageFilter = "DEVELOPMENT"
	BlueprintStageFilterLive        BlueprintStageFilter = "LIVE"
	BlueprintStageFilterAll         BlueprintStageFilter = "ALL"
)

Enum values for BlueprintStageFilter

func (BlueprintStageFilter) Values

Values returns all known values for BlueprintStageFilter. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type BlueprintSummary

type BlueprintSummary struct {

	// ARN of a Blueprint
	//
	// This member is required.
	BlueprintArn *string

	// Time Stamp
	//
	// This member is required.
	CreationTime *time.Time

	// Name of the Blueprint
	BlueprintName *string

	// Stage of the Blueprint
	BlueprintStage BlueprintStage

	// Blueprint Version
	BlueprintVersion *string

	// Time Stamp
	LastModifiedTime *time.Time
	// contains filtered or unexported fields
}

Summary of a Blueprint

type ConflictException

type ConflictException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

This exception is thrown when there is a conflict performing an operation

func (*ConflictException) Error

func (e *ConflictException) Error() string

func (*ConflictException) ErrorCode

func (e *ConflictException) ErrorCode() string

func (*ConflictException) ErrorFault

func (e *ConflictException) ErrorFault() smithy.ErrorFault

func (*ConflictException) ErrorMessage

func (e *ConflictException) ErrorMessage() string

type CustomOutputConfiguration

type CustomOutputConfiguration struct {

	// List of Blueprint Item
	Blueprints []BlueprintItem
	// contains filtered or unexported fields
}

Custom output configuration

type DataAutomationProject

type DataAutomationProject struct {

	// Time Stamp
	//
	// This member is required.
	CreationTime *time.Time

	// Time Stamp
	//
	// This member is required.
	LastModifiedTime *time.Time

	// ARN of a DataAutomationProject
	//
	// This member is required.
	ProjectArn *string

	// Name of the DataAutomationProject
	//
	// This member is required.
	ProjectName *string

	// Status of Data Automation Project
	//
	// This member is required.
	Status DataAutomationProjectStatus

	// Custom output configuration
	CustomOutputConfiguration *CustomOutputConfiguration

	// KMS Encryption Context
	KmsEncryptionContext map[string]string

	// KMS Key Identifier
	KmsKeyId *string

	// Override configuration
	OverrideConfiguration *OverrideConfiguration

	// Description of the DataAutomationProject
	ProjectDescription *string

	// Stage of the Project
	ProjectStage DataAutomationProjectStage

	// Standard output configuration
	StandardOutputConfiguration *StandardOutputConfiguration
	// contains filtered or unexported fields
}

Contains the information of a DataAutomationProject.

type DataAutomationProjectFilter

type DataAutomationProjectFilter struct {

	// ARN of a DataAutomationProject
	//
	// This member is required.
	ProjectArn *string

	// Stage of the Project
	ProjectStage DataAutomationProjectStage
	// contains filtered or unexported fields
}

Data Automation Project Filter

type DataAutomationProjectStage

type DataAutomationProjectStage string
const (
	DataAutomationProjectStageDevelopment DataAutomationProjectStage = "DEVELOPMENT"
	DataAutomationProjectStageLive        DataAutomationProjectStage = "LIVE"
)

Enum values for DataAutomationProjectStage

func (DataAutomationProjectStage) Values

Values returns all known values for DataAutomationProjectStage. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type DataAutomationProjectStageFilter

type DataAutomationProjectStageFilter string
const (
	DataAutomationProjectStageFilterDevelopment DataAutomationProjectStageFilter = "DEVELOPMENT"
	DataAutomationProjectStageFilterLive        DataAutomationProjectStageFilter = "LIVE"
	DataAutomationProjectStageFilterAll         DataAutomationProjectStageFilter = "ALL"
)

Enum values for DataAutomationProjectStageFilter

func (DataAutomationProjectStageFilter) Values

Values returns all known values for DataAutomationProjectStageFilter. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type DataAutomationProjectStatus

type DataAutomationProjectStatus string
const (
	DataAutomationProjectStatusCompleted  DataAutomationProjectStatus = "COMPLETED"
	DataAutomationProjectStatusInProgress DataAutomationProjectStatus = "IN_PROGRESS"
	DataAutomationProjectStatusFailed     DataAutomationProjectStatus = "FAILED"
)

Enum values for DataAutomationProjectStatus

func (DataAutomationProjectStatus) Values

Values returns all known values for DataAutomationProjectStatus. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type DataAutomationProjectSummary

type DataAutomationProjectSummary struct {

	// Time Stamp
	//
	// This member is required.
	CreationTime *time.Time

	// ARN of a DataAutomationProject
	//
	// This member is required.
	ProjectArn *string

	// Name of the DataAutomationProject
	ProjectName *string

	// Stage of the Project
	ProjectStage DataAutomationProjectStage
	// contains filtered or unexported fields
}

Summary of a DataAutomationProject

type DesiredModality added in v1.3.0

type DesiredModality string
const (
	DesiredModalityImage    DesiredModality = "IMAGE"
	DesiredModalityDocument DesiredModality = "DOCUMENT"
	DesiredModalityAudio    DesiredModality = "AUDIO"
	DesiredModalityVideo    DesiredModality = "VIDEO"
)

Enum values for DesiredModality

func (DesiredModality) Values added in v1.3.0

func (DesiredModality) Values() []DesiredModality

Values returns all known values for DesiredModality. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type DocumentBoundingBox

type DocumentBoundingBox struct {

	// State
	//
	// This member is required.
	State State
	// contains filtered or unexported fields
}

Bounding Box Configuration of Document Extraction

type DocumentExtractionGranularity

type DocumentExtractionGranularity struct {

	// List of Document Extraction Granularity Type
	Types []DocumentExtractionGranularityType
	// contains filtered or unexported fields
}

Granularity of Document Extraction

type DocumentExtractionGranularityType

type DocumentExtractionGranularityType string
const (
	DocumentExtractionGranularityTypeDocument DocumentExtractionGranularityType = "DOCUMENT"
	DocumentExtractionGranularityTypePage     DocumentExtractionGranularityType = "PAGE"
	DocumentExtractionGranularityTypeElement  DocumentExtractionGranularityType = "ELEMENT"
	DocumentExtractionGranularityTypeWord     DocumentExtractionGranularityType = "WORD"
	DocumentExtractionGranularityTypeLine     DocumentExtractionGranularityType = "LINE"
)

Enum values for DocumentExtractionGranularityType

func (DocumentExtractionGranularityType) Values

Values returns all known values for DocumentExtractionGranularityType. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type DocumentOutputAdditionalFileFormat

type DocumentOutputAdditionalFileFormat struct {

	// State
	//
	// This member is required.
	State State
	// contains filtered or unexported fields
}

Additional File Format of Document Output

type DocumentOutputFormat

type DocumentOutputFormat struct {

	// Additional File Format of Document Output
	//
	// This member is required.
	AdditionalFileFormat *DocumentOutputAdditionalFileFormat

	// Text Format of Document Output
	//
	// This member is required.
	TextFormat *DocumentOutputTextFormat
	// contains filtered or unexported fields
}

Output Format of Document

type DocumentOutputTextFormat

type DocumentOutputTextFormat struct {

	// List of Document Output Text Format Type
	Types []DocumentOutputTextFormatType
	// contains filtered or unexported fields
}

Text Format of Document Output

type DocumentOutputTextFormatType

type DocumentOutputTextFormatType string
const (
	DocumentOutputTextFormatTypePlainText DocumentOutputTextFormatType = "PLAIN_TEXT"
	DocumentOutputTextFormatTypeMarkdown  DocumentOutputTextFormatType = "MARKDOWN"
	DocumentOutputTextFormatTypeHtml      DocumentOutputTextFormatType = "HTML"
	DocumentOutputTextFormatTypeCsv       DocumentOutputTextFormatType = "CSV"
)

Enum values for DocumentOutputTextFormatType

func (DocumentOutputTextFormatType) Values

Values returns all known values for DocumentOutputTextFormatType. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type DocumentOverrideConfiguration

type DocumentOverrideConfiguration struct {

	// Configuration to enable/disable processing of modality
	ModalityProcessing *ModalityProcessingConfiguration

	// Configuration of Splitter
	Splitter *SplitterConfiguration
	// contains filtered or unexported fields
}

Override Configuration of Document

type DocumentStandardExtraction

type DocumentStandardExtraction struct {

	// Bounding Box Configuration of Document Extraction
	//
	// This member is required.
	BoundingBox *DocumentBoundingBox

	// Granularity of Document Extraction
	//
	// This member is required.
	Granularity *DocumentExtractionGranularity
	// contains filtered or unexported fields
}

Standard Extraction Configuration of Document

type DocumentStandardGenerativeField

type DocumentStandardGenerativeField struct {

	// State
	//
	// This member is required.
	State State
	// contains filtered or unexported fields
}

Standard Generative Field Configuration of Document

type DocumentStandardOutputConfiguration

type DocumentStandardOutputConfiguration struct {

	// Standard Extraction Configuration of Document
	Extraction *DocumentStandardExtraction

	// Standard Generative Field Configuration of Document
	GenerativeField *DocumentStandardGenerativeField

	// Output Format of Document
	OutputFormat *DocumentOutputFormat
	// contains filtered or unexported fields
}

Standard Output Configuration of Document

type EncryptionConfiguration

type EncryptionConfiguration struct {

	// KMS Key Identifier
	//
	// This member is required.
	KmsKeyId *string

	// KMS Encryption Context
	KmsEncryptionContext map[string]string
	// contains filtered or unexported fields
}

KMS Encryption Configuration

type ImageBoundingBox

type ImageBoundingBox struct {

	// State
	//
	// This member is required.
	State State
	// contains filtered or unexported fields
}

Bounding Box Configuration of Image Extraction

type ImageExtractionCategory

type ImageExtractionCategory struct {

	// State
	//
	// This member is required.
	State State

	// List of Image Extraction Category
	Types []ImageExtractionCategoryType
	// contains filtered or unexported fields
}

Category of Image Extraction

type ImageExtractionCategoryType

type ImageExtractionCategoryType string
const (
	ImageExtractionCategoryTypeContentModeration ImageExtractionCategoryType = "CONTENT_MODERATION"
	ImageExtractionCategoryTypeTextDetection     ImageExtractionCategoryType = "TEXT_DETECTION"
	ImageExtractionCategoryTypeLogos             ImageExtractionCategoryType = "LOGOS"
)

Enum values for ImageExtractionCategoryType

func (ImageExtractionCategoryType) Values

Values returns all known values for ImageExtractionCategoryType. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type ImageOverrideConfiguration added in v1.3.0

type ImageOverrideConfiguration struct {

	// Configuration to enable/disable processing of modality
	ModalityProcessing *ModalityProcessingConfiguration
	// contains filtered or unexported fields
}

Override Configuration of Image

type ImageStandardExtraction

type ImageStandardExtraction struct {

	// Bounding Box Configuration of Image Extraction
	//
	// This member is required.
	BoundingBox *ImageBoundingBox

	// Category of Image Extraction
	//
	// This member is required.
	Category *ImageExtractionCategory
	// contains filtered or unexported fields
}

Standard Extraction Configuration of Image

type ImageStandardGenerativeField

type ImageStandardGenerativeField struct {

	// State
	//
	// This member is required.
	State State

	// List of Image Standard Generative Field Type
	Types []ImageStandardGenerativeFieldType
	// contains filtered or unexported fields
}

Standard Generative Field Configuration of Image

type ImageStandardGenerativeFieldType

type ImageStandardGenerativeFieldType string
const (
	ImageStandardGenerativeFieldTypeImageSummary ImageStandardGenerativeFieldType = "IMAGE_SUMMARY"
	ImageStandardGenerativeFieldTypeIab          ImageStandardGenerativeFieldType = "IAB"
)

Enum values for ImageStandardGenerativeFieldType

func (ImageStandardGenerativeFieldType) Values

Values returns all known values for ImageStandardGenerativeFieldType. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type ImageStandardOutputConfiguration

type ImageStandardOutputConfiguration struct {

	// Standard Extraction Configuration of Image
	Extraction *ImageStandardExtraction

	// Standard Generative Field Configuration of Image
	GenerativeField *ImageStandardGenerativeField
	// contains filtered or unexported fields
}

Standard Output Configuration of Image

type InternalServerException

type InternalServerException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

This exception is thrown if there was an unexpected error during processing of request

func (*InternalServerException) Error

func (e *InternalServerException) Error() string

func (*InternalServerException) ErrorCode

func (e *InternalServerException) ErrorCode() string

func (*InternalServerException) ErrorFault

func (e *InternalServerException) ErrorFault() smithy.ErrorFault

func (*InternalServerException) ErrorMessage

func (e *InternalServerException) ErrorMessage() string

type ModalityProcessingConfiguration added in v1.3.0

type ModalityProcessingConfiguration struct {

	// State
	State State
	// contains filtered or unexported fields
}

Configuration to enable/disable processing of modality

type ModalityRoutingConfiguration added in v1.3.0

type ModalityRoutingConfiguration struct {

	// Desired Modality types
	Jpeg DesiredModality

	// Desired Modality types
	Mov DesiredModality

	// Desired Modality types
	Mp4 DesiredModality

	// Desired Modality types
	Png DesiredModality
	// contains filtered or unexported fields
}

Configuration for routing file type to desired modality

type OverrideConfiguration

type OverrideConfiguration struct {

	// Override Configuration of Audio
	Audio *AudioOverrideConfiguration

	// Override Configuration of Document
	Document *DocumentOverrideConfiguration

	// Override Configuration of Image
	Image *ImageOverrideConfiguration

	// Configuration for routing file type to desired modality
	ModalityRouting *ModalityRoutingConfiguration

	// Override Configuration of Video
	Video *VideoOverrideConfiguration
	// contains filtered or unexported fields
}

Override configuration

type ResourceNotFoundException

type ResourceNotFoundException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

This exception is thrown when a resource referenced by the operation does not exist

func (*ResourceNotFoundException) Error

func (e *ResourceNotFoundException) Error() string

func (*ResourceNotFoundException) ErrorCode

func (e *ResourceNotFoundException) ErrorCode() string

func (*ResourceNotFoundException) ErrorFault

func (*ResourceNotFoundException) ErrorMessage

func (e *ResourceNotFoundException) ErrorMessage() string

type ResourceOwner

type ResourceOwner string
const (
	ResourceOwnerService ResourceOwner = "SERVICE"
	ResourceOwnerAccount ResourceOwner = "ACCOUNT"
)

Enum values for ResourceOwner

func (ResourceOwner) Values

func (ResourceOwner) Values() []ResourceOwner

Values returns all known values for ResourceOwner. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type ServiceQuotaExceededException

type ServiceQuotaExceededException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

This exception is thrown when a request is made beyond the service quota

func (*ServiceQuotaExceededException) Error

func (*ServiceQuotaExceededException) ErrorCode

func (e *ServiceQuotaExceededException) ErrorCode() string

func (*ServiceQuotaExceededException) ErrorFault

func (*ServiceQuotaExceededException) ErrorMessage

func (e *ServiceQuotaExceededException) ErrorMessage() string

type SplitterConfiguration

type SplitterConfiguration struct {

	// State
	State State
	// contains filtered or unexported fields
}

Configuration of Splitter

type StandardOutputConfiguration

type StandardOutputConfiguration struct {

	// Standard Output Configuration of Audio
	Audio *AudioStandardOutputConfiguration

	// Standard Output Configuration of Document
	Document *DocumentStandardOutputConfiguration

	// Standard Output Configuration of Image
	Image *ImageStandardOutputConfiguration

	// Standard Output Configuration of Video
	Video *VideoStandardOutputConfiguration
	// contains filtered or unexported fields
}

Standard output configuration

type State

type State string
const (
	StateEnabled  State = "ENABLED"
	StateDisabled State = "DISABLED"
)

Enum values for State

func (State) Values

func (State) Values() []State

Values returns all known values for State. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type Tag added in v1.2.0

type Tag struct {

	// Defines the context of the tag.
	//
	// This member is required.
	Key *string

	// Defines the value within the context. e.g. <key=reason, value=training>.
	//
	// This member is required.
	Value *string
	// contains filtered or unexported fields
}

Key value pair of a tag

type ThrottlingException

type ThrottlingException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

This exception is thrown when the number of requests exceeds the limit

func (*ThrottlingException) Error

func (e *ThrottlingException) Error() string

func (*ThrottlingException) ErrorCode

func (e *ThrottlingException) ErrorCode() string

func (*ThrottlingException) ErrorFault

func (e *ThrottlingException) ErrorFault() smithy.ErrorFault

func (*ThrottlingException) ErrorMessage

func (e *ThrottlingException) ErrorMessage() string

type Type

type Type string
const (
	TypeDocument Type = "DOCUMENT"
	TypeImage    Type = "IMAGE"
	TypeAudio    Type = "AUDIO"
	TypeVideo    Type = "VIDEO"
)

Enum values for Type

func (Type) Values

func (Type) Values() []Type

Values returns all known values for Type. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type ValidationException

type ValidationException struct {
	Message *string

	ErrorCodeOverride *string

	FieldList []ValidationExceptionField
	// contains filtered or unexported fields
}

This exception is thrown when the request's input validation fails

func (*ValidationException) Error

func (e *ValidationException) Error() string

func (*ValidationException) ErrorCode

func (e *ValidationException) ErrorCode() string

func (*ValidationException) ErrorFault

func (e *ValidationException) ErrorFault() smithy.ErrorFault

func (*ValidationException) ErrorMessage

func (e *ValidationException) ErrorMessage() string

type ValidationExceptionField

type ValidationExceptionField struct {

	// Non Blank String
	//
	// This member is required.
	Message *string

	// Non Blank String
	//
	// This member is required.
	Name *string
	// contains filtered or unexported fields
}

Stores information about a field passed inside a request that resulted in an exception

type VideoBoundingBox

type VideoBoundingBox struct {

	// State
	//
	// This member is required.
	State State
	// contains filtered or unexported fields
}

Bounding Box Configuration of Video Extraction

type VideoExtractionCategory

type VideoExtractionCategory struct {

	// State
	//
	// This member is required.
	State State

	// List of Video Extraction Category Type
	Types []VideoExtractionCategoryType
	// contains filtered or unexported fields
}

Category of Video Extraction

type VideoExtractionCategoryType

type VideoExtractionCategoryType string
const (
	VideoExtractionCategoryTypeContentModeration VideoExtractionCategoryType = "CONTENT_MODERATION"
	VideoExtractionCategoryTypeTextDetection     VideoExtractionCategoryType = "TEXT_DETECTION"
	VideoExtractionCategoryTypeTranscript        VideoExtractionCategoryType = "TRANSCRIPT"
	VideoExtractionCategoryTypeLogos             VideoExtractionCategoryType = "LOGOS"
)

Enum values for VideoExtractionCategoryType

func (VideoExtractionCategoryType) Values

Values returns all known values for VideoExtractionCategoryType. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type VideoOverrideConfiguration added in v1.3.0

type VideoOverrideConfiguration struct {

	// Configuration to enable/disable processing of modality
	ModalityProcessing *ModalityProcessingConfiguration
	// contains filtered or unexported fields
}

Override Configuration of Video

type VideoStandardExtraction

type VideoStandardExtraction struct {

	// Bounding Box Configuration of Video Extraction
	//
	// This member is required.
	BoundingBox *VideoBoundingBox

	// Category of Video Extraction
	//
	// This member is required.
	Category *VideoExtractionCategory
	// contains filtered or unexported fields
}

Standard Extraction Configuration of Video

type VideoStandardGenerativeField

type VideoStandardGenerativeField struct {

	// State
	//
	// This member is required.
	State State

	// List of Video Standard Generative Field Type
	Types []VideoStandardGenerativeFieldType
	// contains filtered or unexported fields
}

Standard Generative Field Configuration of Video

type VideoStandardGenerativeFieldType

type VideoStandardGenerativeFieldType string
const (
	VideoStandardGenerativeFieldTypeVideoSummary   VideoStandardGenerativeFieldType = "VIDEO_SUMMARY"
	VideoStandardGenerativeFieldTypeIab            VideoStandardGenerativeFieldType = "IAB"
	VideoStandardGenerativeFieldTypeChapterSummary VideoStandardGenerativeFieldType = "CHAPTER_SUMMARY"
)

Enum values for VideoStandardGenerativeFieldType

func (VideoStandardGenerativeFieldType) Values

Values returns all known values for VideoStandardGenerativeFieldType. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type VideoStandardOutputConfiguration

type VideoStandardOutputConfiguration struct {

	// Standard Extraction Configuration of Video
	Extraction *VideoStandardExtraction

	// Standard Generative Field Configuration of Video
	GenerativeField *VideoStandardGenerativeField
	// contains filtered or unexported fields
}

Standard Output Configuration of Video

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL