Class: Aws::KeyspacesStreams::Types::ValidationException

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-keyspacesstreams/lib/aws-sdk-keyspacesstreams/types.rb

Overview

The request validation failed because one or more input parameters failed validation.

This exception occurs when there are syntax errors in the request, field constraints are violated, or required parameters are missing. To help you fix the issue, the exception message provides details about which parameter failed and why.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#error_codeString

An error occurred validating your request. See the error message for details.

Returns:

  • (String)


825
826
827
828
829
830
# File 'gems/aws-sdk-keyspacesstreams/lib/aws-sdk-keyspacesstreams/types.rb', line 825

class ValidationException < Struct.new(
  :message,
  :error_code)
  SENSITIVE = []
  include Aws::Structure
end

#messageString

The input fails to satisfy the constraints specified by the service. Check the error details and modify your request.

Returns:

  • (String)


825
826
827
828
829
830
# File 'gems/aws-sdk-keyspacesstreams/lib/aws-sdk-keyspacesstreams/types.rb', line 825

class ValidationException < Struct.new(
  :message,
  :error_code)
  SENSITIVE = []
  include Aws::Structure
end