Documentation ¶
Index ¶
- type AccessDeniedException
- type ConflictException
- type EndpointTemporarilyUnavailableException
- type InternalServerException
- type ResourceNotFoundException
- type RoutingControlState
- type ThrottlingException
- type UpdateRoutingControlStateEntry
- type ValidationException
- type ValidationExceptionField
- type ValidationExceptionReason
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AccessDeniedException ¶
type AccessDeniedException struct { Message *string // contains filtered or unexported fields }
You don't have sufficient permissions to query the routing control state.
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 ConflictException ¶
type ConflictException struct { Message *string ResourceId *string ResourceType *string // contains filtered or unexported fields }
There was a conflict with this request. Try again.
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 EndpointTemporarilyUnavailableException ¶
type EndpointTemporarilyUnavailableException struct { // contains filtered or unexported fields }
The cluster endpoint isn't available. Try another cluster endpoint.
func (*EndpointTemporarilyUnavailableException) Error ¶
func (e *EndpointTemporarilyUnavailableException) Error() string
func (*EndpointTemporarilyUnavailableException) ErrorCode ¶
func (e *EndpointTemporarilyUnavailableException) ErrorCode() string
func (*EndpointTemporarilyUnavailableException) ErrorFault ¶
func (e *EndpointTemporarilyUnavailableException) ErrorFault() smithy.ErrorFault
func (*EndpointTemporarilyUnavailableException) ErrorMessage ¶
func (e *EndpointTemporarilyUnavailableException) ErrorMessage() string
type InternalServerException ¶
type InternalServerException struct { Message *string RetryAfterSeconds int32 // contains filtered or unexported fields }
There was an unexpected error during processing of the 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 ResourceNotFoundException ¶
type ResourceNotFoundException struct { Message *string ResourceId *string ResourceType *string // contains filtered or unexported fields }
The request references a routing control that was not found.
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 RoutingControlState ¶
type RoutingControlState string
const ( RoutingControlStateOn RoutingControlState = "On" RoutingControlStateOff RoutingControlState = "Off" )
Enum values for RoutingControlState
func (RoutingControlState) Values ¶
func (RoutingControlState) Values() []RoutingControlState
Values returns all known values for RoutingControlState. 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 RetryAfterSeconds int32 // contains filtered or unexported fields }
The request was denied because of request throttling.
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 UpdateRoutingControlStateEntry ¶
type UpdateRoutingControlStateEntry struct { // The Amazon Resource Number (ARN) for the routing control state entry. // // This member is required. RoutingControlArn *string // The routing control state in a set of routing control state entries. // // This member is required. RoutingControlState RoutingControlState // contains filtered or unexported fields }
A routing control state.
type ValidationException ¶
type ValidationException struct { Message *string Reason ValidationExceptionReason Fields []ValidationExceptionField // contains filtered or unexported fields }
There was a validation error on the request.
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 { // Information about the validation exception. // // This member is required. Message *string // The field that had the validation exception. // // This member is required. Name *string // contains filtered or unexported fields }
There was a validation error on the request.
type ValidationExceptionReason ¶
type ValidationExceptionReason string
const ( ValidationExceptionReasonUnknownOperation ValidationExceptionReason = "unknownOperation" ValidationExceptionReasonCannotParse ValidationExceptionReason = "cannotParse" ValidationExceptionReasonFieldValidationFailed ValidationExceptionReason = "fieldValidationFailed" ValidationExceptionReasonOther ValidationExceptionReason = "other" )
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.