Class: Aws::KeyspacesStreams::Types::ValidationException
- Inherits:
-
Struct
- Object
- Struct
- Aws::KeyspacesStreams::Types::ValidationException
- 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
-
#error_code ⇒ String
An error occurred validating your request.
-
#message ⇒ String
The input fails to satisfy the constraints specified by the service.
Instance Attribute Details
#error_code ⇒ String
An error occurred validating your request. See the error message for details.
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 |
#message ⇒ String
The input fails to satisfy the constraints specified by the service. Check the error details and modify your request.
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 |