package types
import "github.com/aws/aws-sdk-go-v2/service/ebs/types"
Index ¶
- type AccessDeniedException
- func (e *AccessDeniedException) Error() string
- func (e *AccessDeniedException) ErrorCode() string
- func (e *AccessDeniedException) ErrorFault() smithy.ErrorFault
- func (e *AccessDeniedException) ErrorMessage() string
- type AccessDeniedExceptionReason
- type Block
- type ChangedBlock
- type ChecksumAggregationMethod
- type ChecksumAlgorithm
- type ConcurrentLimitExceededException
- func (e *ConcurrentLimitExceededException) Error() string
- func (e *ConcurrentLimitExceededException) ErrorCode() string
- func (e *ConcurrentLimitExceededException) ErrorFault() smithy.ErrorFault
- func (e *ConcurrentLimitExceededException) ErrorMessage() string
- type ConflictException
- func (e *ConflictException) Error() string
- func (e *ConflictException) ErrorCode() string
- func (e *ConflictException) ErrorFault() smithy.ErrorFault
- func (e *ConflictException) ErrorMessage() string
- type InternalServerException
- func (e *InternalServerException) Error() string
- func (e *InternalServerException) ErrorCode() string
- func (e *InternalServerException) ErrorFault() smithy.ErrorFault
- func (e *InternalServerException) ErrorMessage() string
- type RequestThrottledException
- func (e *RequestThrottledException) Error() string
- func (e *RequestThrottledException) ErrorCode() string
- func (e *RequestThrottledException) ErrorFault() smithy.ErrorFault
- func (e *RequestThrottledException) ErrorMessage() string
- type RequestThrottledExceptionReason
- type ResourceNotFoundException
- func (e *ResourceNotFoundException) Error() string
- func (e *ResourceNotFoundException) ErrorCode() string
- func (e *ResourceNotFoundException) ErrorFault() smithy.ErrorFault
- func (e *ResourceNotFoundException) ErrorMessage() string
- type ResourceNotFoundExceptionReason
- type ServiceQuotaExceededException
- func (e *ServiceQuotaExceededException) Error() string
- func (e *ServiceQuotaExceededException) ErrorCode() string
- func (e *ServiceQuotaExceededException) ErrorFault() smithy.ErrorFault
- func (e *ServiceQuotaExceededException) ErrorMessage() string
- type ServiceQuotaExceededExceptionReason
- type Status
- type Tag
- type ValidationException
- func (e *ValidationException) Error() string
- func (e *ValidationException) ErrorCode() string
- func (e *ValidationException) ErrorFault() smithy.ErrorFault
- func (e *ValidationException) ErrorMessage() string
- type ValidationExceptionReason
Types ¶
type AccessDeniedException ¶
type AccessDeniedException struct { Message *string Reason AccessDeniedExceptionReason }
You do not have sufficient access to perform this action.
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 AccessDeniedExceptionReason ¶
type AccessDeniedExceptionReason string
const ( AccessDeniedExceptionReason = "UNAUTHORIZED_ACCOUNT" AccessDeniedExceptionReasonDependencyAccessDenied AccessDeniedExceptionReason = "DEPENDENCY_ACCESS_DENIED" )
Enum values for AccessDeniedExceptionReason
func (AccessDeniedExceptionReason) Values ¶
func (AccessDeniedExceptionReason) Values() []AccessDeniedExceptionReason
Values returns all known values for AccessDeniedExceptionReason. 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 Block ¶
type Block struct { // The block index. BlockIndex *int32 // The block token for the block index. BlockToken *string }
A block of data in an Amazon Elastic Block Store snapshot.
type ChangedBlock ¶
type ChangedBlock struct { // The block index. BlockIndex *int32 // The block token for the block index of the FirstSnapshotId specified in the // ListChangedBlocks operation. This value is absent if the first snapshot does not // have the changed block that is on the second snapshot. FirstBlockToken *string // The block token for the block index of the SecondSnapshotId specified in the // ListChangedBlocks operation. SecondBlockToken *string }
A block of data in an Amazon Elastic Block Store snapshot that is different from another snapshot of the same volume/snapshot lineage.
type ChecksumAggregationMethod ¶
type ChecksumAggregationMethod string
const ( ChecksumAggregationMethodChecksumAggregationLinear ChecksumAggregationMethod = "LINEAR" )
Enum values for ChecksumAggregationMethod
func (ChecksumAggregationMethod) Values ¶
func (ChecksumAggregationMethod) Values() []ChecksumAggregationMethod
Values returns all known values for ChecksumAggregationMethod. 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 ChecksumAlgorithm ¶
type ChecksumAlgorithm string
const ( ChecksumAlgorithmChecksumAlgorithmSha256 ChecksumAlgorithm = "SHA256" )
Enum values for ChecksumAlgorithm
func (ChecksumAlgorithm) Values ¶
func (ChecksumAlgorithm) Values() []ChecksumAlgorithm
Values returns all known values for ChecksumAlgorithm. 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 ConcurrentLimitExceededException ¶
type ConcurrentLimitExceededException struct { Message *string }
You have reached the limit for concurrent API requests. For more information, see Optimizing performance of the EBS direct APIs (https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-accessing-snapshot.html#ebsapi-performance) in the Amazon Elastic Compute Cloud User Guide.
func (*ConcurrentLimitExceededException) Error ¶
func (e *ConcurrentLimitExceededException) Error() string
func (*ConcurrentLimitExceededException) ErrorCode ¶
func (e *ConcurrentLimitExceededException) ErrorCode() string
func (*ConcurrentLimitExceededException) ErrorFault ¶
func (e *ConcurrentLimitExceededException) ErrorFault() smithy.ErrorFault
func (*ConcurrentLimitExceededException) ErrorMessage ¶
func (e *ConcurrentLimitExceededException) ErrorMessage() string
type ConflictException ¶
type ConflictException struct { Message *string }
The request uses the same client token as a previous, but non-identical request.
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 InternalServerException ¶
type InternalServerException struct { Message *string }
An internal error has occurred.
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 RequestThrottledException ¶
type RequestThrottledException struct { Message *string Reason RequestThrottledExceptionReason }
The number of API requests has exceed the maximum allowed API request throttling limit.
func (*RequestThrottledException) Error ¶
func (e *RequestThrottledException) Error() string
func (*RequestThrottledException) ErrorCode ¶
func (e *RequestThrottledException) ErrorCode() string
func (*RequestThrottledException) ErrorFault ¶
func (e *RequestThrottledException) ErrorFault() smithy.ErrorFault
func (*RequestThrottledException) ErrorMessage ¶
func (e *RequestThrottledException) ErrorMessage() string
type RequestThrottledExceptionReason ¶
type RequestThrottledExceptionReason string
const ( RequestThrottledExceptionReasonAccountThrottled RequestThrottledExceptionReason = "ACCOUNT_THROTTLED" RequestThrottledExceptionReasonDependencyRequestThrottled RequestThrottledExceptionReason = "DEPENDENCY_REQUEST_THROTTLED" )
Enum values for RequestThrottledExceptionReason
func (RequestThrottledExceptionReason) Values ¶
func (RequestThrottledExceptionReason) Values() []RequestThrottledExceptionReason
Values returns all known values for RequestThrottledExceptionReason. 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 ResourceNotFoundException ¶
type ResourceNotFoundException struct { Message *string Reason ResourceNotFoundExceptionReason }
The specified resource does not exist.
func (*ResourceNotFoundException) Error ¶
func (e *ResourceNotFoundException) Error() string
func (*ResourceNotFoundException) ErrorCode ¶
func (e *ResourceNotFoundException) ErrorCode() string
func (*ResourceNotFoundException) ErrorFault ¶
func (e *ResourceNotFoundException) ErrorFault() smithy.ErrorFault
func (*ResourceNotFoundException) ErrorMessage ¶
func (e *ResourceNotFoundException) ErrorMessage() string
type ResourceNotFoundExceptionReason ¶
type ResourceNotFoundExceptionReason string
const ( ResourceNotFoundExceptionReasonSnapshotNotFound ResourceNotFoundExceptionReason = "SNAPSHOT_NOT_FOUND" ResourceNotFoundExceptionReasonDependencyResourceNotFound ResourceNotFoundExceptionReason = "DEPENDENCY_RESOURCE_NOT_FOUND" )
Enum values for ResourceNotFoundExceptionReason
func (ResourceNotFoundExceptionReason) Values ¶
func (ResourceNotFoundExceptionReason) Values() []ResourceNotFoundExceptionReason
Values returns all known values for ResourceNotFoundExceptionReason. 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 Reason ServiceQuotaExceededExceptionReason }
Your current service quotas do not allow you to perform this action.
func (*ServiceQuotaExceededException) Error ¶
func (e *ServiceQuotaExceededException) Error() string
func (*ServiceQuotaExceededException) ErrorCode ¶
func (e *ServiceQuotaExceededException) ErrorCode() string
func (*ServiceQuotaExceededException) ErrorFault ¶
func (e *ServiceQuotaExceededException) ErrorFault() smithy.ErrorFault
func (*ServiceQuotaExceededException) ErrorMessage ¶
func (e *ServiceQuotaExceededException) ErrorMessage() string
type ServiceQuotaExceededExceptionReason ¶
type ServiceQuotaExceededExceptionReason string
const ( ServiceQuotaExceededExceptionReasonDependencyServiceQuotaExceeded ServiceQuotaExceededExceptionReason = "DEPENDENCY_SERVICE_QUOTA_EXCEEDED" )
Enum values for ServiceQuotaExceededExceptionReason
func (ServiceQuotaExceededExceptionReason) Values ¶
func (ServiceQuotaExceededExceptionReason) Values() []ServiceQuotaExceededExceptionReason
Values returns all known values for ServiceQuotaExceededExceptionReason. 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 Status ¶
type Status string
const ( StatusCompleted Status = "completed" StatusPending Status = "pending" StatusError Status = "error" )
Enum values for Status
func (Status) Values ¶
Values returns all known values for Status. 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 ¶
Describes a tag.
type ValidationException ¶
type ValidationException struct { Message *string Reason ValidationExceptionReason }
The input fails to satisfy the constraints of the EBS direct APIs.
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 ValidationExceptionReason ¶
type ValidationExceptionReason string
const ( ValidationExceptionReasonInvalidCustomerKey ValidationExceptionReason = "INVALID_CUSTOMER_KEY" ValidationExceptionReasonInvalidPageToken ValidationExceptionReason = "INVALID_PAGE_TOKEN" ValidationExceptionReasonInvalidBlockToken ValidationExceptionReason = "INVALID_BLOCK_TOKEN" ValidationExceptionReasonInvalidSnapshotId ValidationExceptionReason = "INVALID_SNAPSHOT_ID" ValidationExceptionReason = "UNRELATED_SNAPSHOTS" ValidationExceptionReasonInvalidBlock ValidationExceptionReason = "INVALID_BLOCK" ValidationExceptionReasonInvalidContentEncoding ValidationExceptionReason = "INVALID_CONTENT_ENCODING" ValidationExceptionReasonInvalidTag ValidationExceptionReason = "INVALID_TAG" ValidationExceptionReasonInvalidDependencyRequest ValidationExceptionReason = "INVALID_DEPENDENCY_REQUEST" ValidationExceptionReasonInvalidParameterValue ValidationExceptionReason = "INVALID_PARAMETER_VALUE" ValidationExceptionReasonInvalidVolumeSize ValidationExceptionReason = "INVALID_VOLUME_SIZE" )
Enum values for ValidationExceptionReason
func (ValidationExceptionReason) Values ¶
func (ValidationExceptionReason) Values() []ValidationExceptionReason
Values returns all known values for ValidationExceptionReason. 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.
Source Files ¶
- Version
- v1.1.2
- Published
- Mar 13, 2021
- Platform
- js/wasm
- Imports
- 2 packages
- Last checked
- 36 minutes ago –
Tools for package owners.