types

package
v1.9.8 Latest Latest
Warning

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

Go to latest
Published: May 23, 2024 License: Apache-2.0 Imports: 3 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
}

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 BackupObject

type BackupObject struct {

	// Object name
	//
	// This member is required.
	Name *string

	// Object checksum
	//
	// This member is required.
	ObjectChecksum *string

	// Checksum algorithm
	//
	// This member is required.
	ObjectChecksumAlgorithm SummaryChecksumAlgorithm

	// Object token
	//
	// This member is required.
	ObjectToken *string

	// Number of chunks in object
	ChunksCount *int64

	// Metadata string associated with the Object
	MetadataString *string
	// contains filtered or unexported fields
}

Object

type Chunk

type Chunk struct {

	// Chunk checksum
	//
	// This member is required.
	Checksum *string

	// Checksum algorithm
	//
	// This member is required.
	ChecksumAlgorithm DataChecksumAlgorithm

	// Chunk token
	//
	// This member is required.
	ChunkToken *string

	// Chunk index
	//
	// This member is required.
	Index int64

	// Chunk length
	//
	// This member is required.
	Length int64
	// contains filtered or unexported fields
}

Chunk

type DataAlreadyExistsException

type DataAlreadyExistsException struct {
	Message *string

	ErrorCodeOverride *string

	Checksum          *string
	ChecksumAlgorithm *string
	// contains filtered or unexported fields
}

Non-retryable exception. Attempted to create already existing object or chunk. This message contains a checksum of already presented data.

func (*DataAlreadyExistsException) Error

func (*DataAlreadyExistsException) ErrorCode

func (e *DataAlreadyExistsException) ErrorCode() string

func (*DataAlreadyExistsException) ErrorFault

func (*DataAlreadyExistsException) ErrorMessage

func (e *DataAlreadyExistsException) ErrorMessage() string

type DataChecksumAlgorithm

type DataChecksumAlgorithm string
const (
	DataChecksumAlgorithmSha256 DataChecksumAlgorithm = "SHA256"
)

Enum values for DataChecksumAlgorithm

func (DataChecksumAlgorithm) Values

Values returns all known values for DataChecksumAlgorithm. 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 IllegalArgumentException

type IllegalArgumentException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

Non-retryable exception, indicates client error (wrong argument passed to API). See exception message for details.

func (*IllegalArgumentException) Error

func (e *IllegalArgumentException) Error() string

func (*IllegalArgumentException) ErrorCode

func (e *IllegalArgumentException) ErrorCode() string

func (*IllegalArgumentException) ErrorFault

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

func (*IllegalArgumentException) ErrorMessage

func (e *IllegalArgumentException) ErrorMessage() string

type KMSInvalidKeyUsageException

type KMSInvalidKeyUsageException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

Non-retryable exception. Indicates the KMS key usage is incorrect. See exception message for details.

func (*KMSInvalidKeyUsageException) Error

func (*KMSInvalidKeyUsageException) ErrorCode

func (e *KMSInvalidKeyUsageException) ErrorCode() string

func (*KMSInvalidKeyUsageException) ErrorFault

func (*KMSInvalidKeyUsageException) ErrorMessage

func (e *KMSInvalidKeyUsageException) ErrorMessage() string

type NotReadableInputStreamException

type NotReadableInputStreamException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

Retryalble exception. Indicated issues while reading an input stream due to the networking issues or connection drop on the client side.

func (*NotReadableInputStreamException) Error

func (*NotReadableInputStreamException) ErrorCode

func (e *NotReadableInputStreamException) ErrorCode() string

func (*NotReadableInputStreamException) ErrorFault

func (*NotReadableInputStreamException) ErrorMessage

func (e *NotReadableInputStreamException) ErrorMessage() string

type ResourceNotFoundException

type ResourceNotFoundException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

Non-retryable exception. Attempted to make an operation on non-existing or expired resource.

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 RetryableException

type RetryableException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

Retryable exception. In general indicates internal failure that can be fixed by retry.

func (*RetryableException) Error

func (e *RetryableException) Error() string

func (*RetryableException) ErrorCode

func (e *RetryableException) ErrorCode() string

func (*RetryableException) ErrorFault

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

func (*RetryableException) ErrorMessage

func (e *RetryableException) ErrorMessage() string

type ServiceInternalException

type ServiceInternalException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

Deprecated. To be removed from the model.

func (*ServiceInternalException) Error

func (e *ServiceInternalException) Error() string

func (*ServiceInternalException) ErrorCode

func (e *ServiceInternalException) ErrorCode() string

func (*ServiceInternalException) ErrorFault

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

func (*ServiceInternalException) ErrorMessage

func (e *ServiceInternalException) ErrorMessage() string

type ServiceUnavailableException

type ServiceUnavailableException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

Retryable exception, indicates internal server error.

func (*ServiceUnavailableException) Error

func (*ServiceUnavailableException) ErrorCode

func (e *ServiceUnavailableException) ErrorCode() string

func (*ServiceUnavailableException) ErrorFault

func (*ServiceUnavailableException) ErrorMessage

func (e *ServiceUnavailableException) ErrorMessage() string

type SummaryChecksumAlgorithm

type SummaryChecksumAlgorithm string
const (
	SummaryChecksumAlgorithmSummary SummaryChecksumAlgorithm = "SUMMARY"
)

Enum values for SummaryChecksumAlgorithm

func (SummaryChecksumAlgorithm) Values

Values returns all known values for SummaryChecksumAlgorithm. 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 ThrottlingException

type ThrottlingException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

Increased rate over throttling limits. Can be retried with exponential backoff.

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

Jump to

Keyboard shortcuts

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