Documentation ¶
Index ¶
- type AccessDeniedException
- type ConflictException
- type EndpointTemporarilyUnavailableException
- type InternalServerException
- type ResourceNotFoundException
- type RoutingControl
- type RoutingControlState
- type ServiceLimitExceededException
- 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 ErrorCodeOverride *string // contains filtered or unexported fields }
You don't have sufficient permissions 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 ConflictException ¶
type ConflictException struct { Message *string ErrorCodeOverride *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 ErrorCodeOverride *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 ErrorCodeOverride *string ResourceId *string ResourceType *string // contains filtered or unexported fields }
The request references a routing control or control panel 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 RoutingControl ¶ added in v1.9.0
type RoutingControl struct { // The Amazon Resource Name (ARN) of the control panel where the routing control // is located. ControlPanelArn *string // The name of the control panel where the routing control is located. Only ASCII // characters are supported for control panel names. ControlPanelName *string // The Amazon Web Services account ID of the routing control owner. Owner *string // The Amazon Resource Name (ARN) of the routing control. RoutingControlArn *string // The name of the routing control. RoutingControlName *string // The current state of the routing control. When a routing control state is set // to ON, traffic flows to a cell. When the state is set to OFF, traffic does not // flow. RoutingControlState RoutingControlState // contains filtered or unexported fields }
A routing control, which is a simple on/off switch that you can use to route traffic to cells. When a routing control state is set to ON, traffic flows to a cell. When the state is set to OFF, traffic does not flow.
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 ServiceLimitExceededException ¶ added in v1.9.0
type ServiceLimitExceededException struct { Message *string ErrorCodeOverride *string ResourceId *string ResourceType *string LimitCode *string ServiceCode *string // contains filtered or unexported fields }
The request can't update that many routing control states at the same time. Try again with fewer routing control states.
func (*ServiceLimitExceededException) Error ¶ added in v1.9.0
func (e *ServiceLimitExceededException) Error() string
func (*ServiceLimitExceededException) ErrorCode ¶ added in v1.9.0
func (e *ServiceLimitExceededException) ErrorCode() string
func (*ServiceLimitExceededException) ErrorFault ¶ added in v1.9.0
func (e *ServiceLimitExceededException) ErrorFault() smithy.ErrorFault
func (*ServiceLimitExceededException) ErrorMessage ¶ added in v1.9.0
func (e *ServiceLimitExceededException) ErrorMessage() string
type ThrottlingException ¶
type ThrottlingException struct { Message *string ErrorCodeOverride *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 Name (ARN) for a 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 entry.
type ValidationException ¶
type ValidationException struct { Message *string ErrorCodeOverride *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.