package types
import "github.com/aws/aws-sdk-go-v2/service/iotdataplane/types"
Index ¶
- type ConflictException
- func (e *ConflictException) Error() string
- func (e *ConflictException) ErrorCode() string
- func (e *ConflictException) ErrorFault() smithy.ErrorFault
- func (e *ConflictException) ErrorMessage() string
- type InternalFailureException
- func (e *InternalFailureException) Error() string
- func (e *InternalFailureException) ErrorCode() string
- func (e *InternalFailureException) ErrorFault() smithy.ErrorFault
- func (e *InternalFailureException) ErrorMessage() string
- type InvalidRequestException
- func (e *InvalidRequestException) Error() string
- func (e *InvalidRequestException) ErrorCode() string
- func (e *InvalidRequestException) ErrorFault() smithy.ErrorFault
- func (e *InvalidRequestException) ErrorMessage() string
- type MethodNotAllowedException
- func (e *MethodNotAllowedException) Error() string
- func (e *MethodNotAllowedException) ErrorCode() string
- func (e *MethodNotAllowedException) ErrorFault() smithy.ErrorFault
- func (e *MethodNotAllowedException) ErrorMessage() string
- type PayloadFormatIndicator
- type RequestEntityTooLargeException
- func (e *RequestEntityTooLargeException) Error() string
- func (e *RequestEntityTooLargeException) ErrorCode() string
- func (e *RequestEntityTooLargeException) ErrorFault() smithy.ErrorFault
- func (e *RequestEntityTooLargeException) ErrorMessage() string
- type ResourceNotFoundException
- func (e *ResourceNotFoundException) Error() string
- func (e *ResourceNotFoundException) ErrorCode() string
- func (e *ResourceNotFoundException) ErrorFault() smithy.ErrorFault
- func (e *ResourceNotFoundException) ErrorMessage() string
- type RetainedMessageSummary
- type ServiceUnavailableException
- func (e *ServiceUnavailableException) Error() string
- func (e *ServiceUnavailableException) ErrorCode() string
- func (e *ServiceUnavailableException) ErrorFault() smithy.ErrorFault
- func (e *ServiceUnavailableException) ErrorMessage() string
- type ThrottlingException
- func (e *ThrottlingException) Error() string
- func (e *ThrottlingException) ErrorCode() string
- func (e *ThrottlingException) ErrorFault() smithy.ErrorFault
- func (e *ThrottlingException) ErrorMessage() string
- type UnauthorizedException
- func (e *UnauthorizedException) Error() string
- func (e *UnauthorizedException) ErrorCode() string
- func (e *UnauthorizedException) ErrorFault() smithy.ErrorFault
- func (e *UnauthorizedException) ErrorMessage() string
- type UnsupportedDocumentEncodingException
Types ¶
type ConflictException ¶
type ConflictException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The specified version does not match the version of the document.
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 InternalFailureException ¶
type InternalFailureException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
An unexpected error has occurred.
func (*InternalFailureException) Error ¶
func (e *InternalFailureException) Error() string
func (*InternalFailureException) ErrorCode ¶
func (e *InternalFailureException) ErrorCode() string
func (*InternalFailureException) ErrorFault ¶
func (e *InternalFailureException) ErrorFault() smithy.ErrorFault
func (*InternalFailureException) ErrorMessage ¶
func (e *InternalFailureException) ErrorMessage() string
type InvalidRequestException ¶
type InvalidRequestException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The request is not valid.
func (*InvalidRequestException) Error ¶
func (e *InvalidRequestException) Error() string
func (*InvalidRequestException) ErrorCode ¶
func (e *InvalidRequestException) ErrorCode() string
func (*InvalidRequestException) ErrorFault ¶
func (e *InvalidRequestException) ErrorFault() smithy.ErrorFault
func (*InvalidRequestException) ErrorMessage ¶
func (e *InvalidRequestException) ErrorMessage() string
type MethodNotAllowedException ¶
type MethodNotAllowedException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The specified combination of HTTP verb and URI is not supported.
func (*MethodNotAllowedException) Error ¶
func (e *MethodNotAllowedException) Error() string
func (*MethodNotAllowedException) ErrorCode ¶
func (e *MethodNotAllowedException) ErrorCode() string
func (*MethodNotAllowedException) ErrorFault ¶
func (e *MethodNotAllowedException) ErrorFault() smithy.ErrorFault
func (*MethodNotAllowedException) ErrorMessage ¶
func (e *MethodNotAllowedException) ErrorMessage() string
type PayloadFormatIndicator ¶
type PayloadFormatIndicator string
const ( PayloadFormatIndicatorUnspecifiedBytes PayloadFormatIndicator = "UNSPECIFIED_BYTES" PayloadFormatIndicatorUtf8Data PayloadFormatIndicator = "UTF8_DATA" )
Enum values for PayloadFormatIndicator
func (PayloadFormatIndicator) Values ¶
func (PayloadFormatIndicator) Values() []PayloadFormatIndicator
Values returns all known values for PayloadFormatIndicator. 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 RequestEntityTooLargeException ¶
type RequestEntityTooLargeException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The payload exceeds the maximum size allowed.
func (*RequestEntityTooLargeException) Error ¶
func (e *RequestEntityTooLargeException) Error() string
func (*RequestEntityTooLargeException) ErrorCode ¶
func (e *RequestEntityTooLargeException) ErrorCode() string
func (*RequestEntityTooLargeException) ErrorFault ¶
func (e *RequestEntityTooLargeException) ErrorFault() smithy.ErrorFault
func (*RequestEntityTooLargeException) ErrorMessage ¶
func (e *RequestEntityTooLargeException) ErrorMessage() string
type ResourceNotFoundException ¶
type ResourceNotFoundException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
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 RetainedMessageSummary ¶
type RetainedMessageSummary struct { // The Epoch date and time, in milliseconds, when the retained message was stored // by IoT. LastModifiedTime int64 // The size of the retained message's payload in bytes. PayloadSize int64 // The quality of service (QoS) level used to publish the retained message. Qos int32 // The topic name to which the retained message was published. Topic *string // contains filtered or unexported fields }
Information about a single retained message.
type ServiceUnavailableException ¶
type ServiceUnavailableException struct { string *string // contains filtered or unexported fields }*
The service is temporarily unavailable.
func (*ServiceUnavailableException) Error ¶
func (e *ServiceUnavailableException) Error() string
func (*ServiceUnavailableException) ErrorCode ¶
func (e *ServiceUnavailableException) ErrorCode() string
func (*ServiceUnavailableException) ErrorFault ¶
func (e *ServiceUnavailableException) ErrorFault() smithy.ErrorFault
func (*ServiceUnavailableException) ErrorMessage ¶
func (e *ServiceUnavailableException) ErrorMessage() string
type ThrottlingException ¶
type ThrottlingException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The rate 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 UnauthorizedException ¶
You are not authorized to perform this operation.
func (*UnauthorizedException) Error ¶
func (e *UnauthorizedException) Error() string
func (*UnauthorizedException) ErrorCode ¶
func (e *UnauthorizedException) ErrorCode() string
func (*UnauthorizedException) ErrorFault ¶
func (e *UnauthorizedException) ErrorFault() smithy.ErrorFault
func (*UnauthorizedException) ErrorMessage ¶
func (e *UnauthorizedException) ErrorMessage() string
type UnsupportedDocumentEncodingException ¶
type UnsupportedDocumentEncodingException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The document encoding is not supported.
func (*UnsupportedDocumentEncodingException) Error ¶
func (e *UnsupportedDocumentEncodingException) Error() string
func (*UnsupportedDocumentEncodingException) ErrorCode ¶
func (e *UnsupportedDocumentEncodingException) ErrorCode() string
func (*UnsupportedDocumentEncodingException) ErrorFault ¶
func (e *UnsupportedDocumentEncodingException) ErrorFault() smithy.ErrorFault
func (*UnsupportedDocumentEncodingException) ErrorMessage ¶
func (e *UnsupportedDocumentEncodingException) ErrorMessage() string
Source Files ¶
- Version
- v1.27.2 (latest)
- Published
- Apr 3, 2025
- Platform
- linux/amd64
- Imports
- 3 packages
- Last checked
- 2 hours ago –
Tools for package owners.